@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
::before,
::after {
  box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* ==================================================
   Base
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  font-size: 62.5%;
	scroll-behavior: smooth;
}

img {
  width: 100%;
	height:auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #151515;
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.6;
}

.sp {
  display: none;
}
@media (width <= 768px) {
  .sp {
    display: block;
  }
}

.tb {
  display: none;
}
@media (width <= 992px) {
  .tb {
    display: block;
  }
}

.pc {
  display: block;
}
@media (width <= 768px) {
  .pc {
    display: none;
  }
}

/* 回り込みの基本 */
.alignleft  { float: left;  margin: 0 1.2em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.2em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

/* 画像とキャプションのサイズ調整（横幅広すぎ回避） */
img.alignleft,
img.alignright,
.wp-caption.alignleft,
.wp-caption.alignright {
  max-width: 48%;
  height: auto;
}

/* キャプション付き画像 */
.wp-caption { max-width: 100%; }
.wp-caption .wp-caption-text {
  font-size: 0.85em;
  color: #666;
  text-align: center;
  margin-top: .4em;
}

/* 回り込み解除ユーティリティ */
.u-clearfix::after { content: ""; display: table; clear: both; }

/* スマホでは回り込みを外して縦並びに */
@media (max-width: 768px) {
  .alignleft,
  .alignright {
    float: none;
    display: block;
    margin: 0 auto 1em;
  }
  img.alignleft,
  img.alignright,
  .wp-caption.alignleft,
  .wp-caption.alignright {
    max-width: 100%;
  }
}

/* dlリストの基本スタイル */
.p-page dl {
  margin: 2em 0;
  padding: 0;
}

.p-page dl dt {
  font-weight: 700;
  margin-top: 1em;
}

.p-page dl dd {
  margin: .3em 0 1em 1em;
  line-height: 1.6;
}

.p-page__2col {
  display: flex;
  gap: 32px;
}
@media (width <= 992px) {
  .p-page__2col {
    flex-direction: column-reverse;
  }
}


.l-footer {
  padding: 60px 0 24px 0;
  background: linear-gradient(180deg, #00c2da 0%, #004088 100%);
  color: #fff;
}
.l-footer .l-footer__lead {
  margin: 0 0 28px;
  font-weight: 700;
  font-size: 1.3em;
  letter-spacing: 0.05em;
}
@media (width <= 768px) {
  .l-footer .l-footer__lead {
    font-size: 1.2em;
  }
}
.l-footer .l-footer-nav li {
  font-size: 0.875em;
}
.l-footer .l-footer-nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  gap: 80px;
}
@media (width <= 768px) {
  .l-footer .l-footer-nav {
    flex-direction: column;
    gap: 0;
  }
}
.l-footer .l-footer-nav .sub-menu {
  margin: 0.25em 0 2.8em 1em;
}
.l-footer .l-footer-nav__title {
  font-size: 0.875em;
  margin: 0;
}
.l-footer .l-footer-nav__list {
  margin: 0.25em 0 2.8em 1em;
  font-size: 0.875em;
}
.l-footer .l-footer__disclaimer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-footer .l-footer__disclaimer .l-footer__divider {
  width: 480px;
  height: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  margin: 24px auto;
}
@media (width <= 992px) {
  .l-footer .l-footer__disclaimer .l-footer__divider {
    width: 100%;
  }
}
.l-footer .l-footer__disclaimer p {
  margin: 8px 0 0 0;
  font-size: 0.875em;
}
.l-footer .l-footer__bar {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer .l-footer__bar .l-footer__notice {
  line-height: 1;
  padding: 6px 10px;
  background: #006187;
  white-space: nowrap;
  font-size: 12px;
}

.l-section {
  padding: 60px 0;
}
.l-section:first-child {
    padding-top: 0px;
  }
@media (width <= 992px) {
.l-section--fst{
   padding-top: 24px;
}
}

.l-section__inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

/**
 * ------------------------------------------------
 * FLOCSS Component - Grid & Columns
 * ------------------------------------------------
 *
 * 【使用例】
 *  - .c-grid      => 自動グリッド（等間隔カラム）
 *  - .c-grid-3    => 3カラムのグリッド
 *  - .c-grid-md-2 => 画面幅900px(md)以上で2カラムグリッド
 *  - .c-col-4     => 親がflex/gridのとき4分割（4/12）
 *
 * ※ 親要素に `.c-grid` を指定し、子要素に `.c-col` 系を指定すると柔軟なレイアウトが可能
 */
/* Grid Layout */
.c-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.c-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.c-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.c-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.c-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

@media (min-width: 600px) {
  .c-grid-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 900px) {
  .c-grid-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) {
  .c-grid-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 599px) {
  .c-grid-max-sm-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-sm-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-sm-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-sm-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-sm-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-sm-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 899px) {
  .c-grid-max-md-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-md-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-md-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-md-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1199px) {
  .c-grid-max-lg-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-grid-max-lg-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-grid-max-lg-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-grid-max-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-grid-max-lg-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .c-grid-max-lg-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* Column (c-col) */
.c-col {
  width: 100%;
}

.c-col-1 {
  width: calc(1 / 12 * 100%);
}

.c-col-2 {
  width: calc(2 / 12 * 100%);
}

.c-col-3 {
  width: calc(3 / 12 * 100%);
}

.c-col-4 {
  width: calc(4 / 12 * 100%);
}

.c-col-5 {
  width: calc(5 / 12 * 100%);
}

.c-col-6 {
  width: calc(6 / 12 * 100%);
}

.c-col-7 {
  width: calc(7 / 12 * 100%);
}

.c-col-8 {
  width: calc(8 / 12 * 100%);
}

.c-col-9 {
  width: calc(9 / 12 * 100%);
}

.c-col-10 {
  width: calc(10 / 12 * 100%);
}

.c-col-11 {
  width: calc(11 / 12 * 100%);
}

.c-col-12 {
  width: calc(12 / 12 * 100%);
}

@media (min-width: 600px) {
  .c-col-sm-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-sm-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-sm-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-sm-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-sm-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-sm-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-sm-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-sm-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-sm-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-sm-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-sm-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-sm-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 900px) {
  .c-col-md-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-md-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-md-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-md-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-md-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-md-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-md-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-md-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-md-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-md-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-md-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-md-12 {
    width: calc(12 / 12 * 100%);
  }
}
@media (min-width: 1200px) {
  .c-col-lg-1 {
    width: calc(1 / 12 * 100%);
  }
  .c-col-lg-2 {
    width: calc(2 / 12 * 100%);
  }
  .c-col-lg-3 {
    width: calc(3 / 12 * 100%);
  }
  .c-col-lg-4 {
    width: calc(4 / 12 * 100%);
  }
  .c-col-lg-5 {
    width: calc(5 / 12 * 100%);
  }
  .c-col-lg-6 {
    width: calc(6 / 12 * 100%);
  }
  .c-col-lg-7 {
    width: calc(7 / 12 * 100%);
  }
  .c-col-lg-8 {
    width: calc(8 / 12 * 100%);
  }
  .c-col-lg-9 {
    width: calc(9 / 12 * 100%);
  }
  .c-col-lg-10 {
    width: calc(10 / 12 * 100%);
  }
  .c-col-lg-11 {
    width: calc(11 / 12 * 100%);
  }
  .c-col-lg-12 {
    width: calc(12 / 12 * 100%);
  }
}
.c-col-flex1 {
  flex: 1;
}

.c-col-flex50 {
  flex: 0 0 50%;
}

.c-col-flex33 {
  flex: 0 0 33.3333%;
}

.c-col-flex25 {
  flex: 0 0 25%;
}

@media (width <= 992px) {
  .c-col-flex-lg-1 {
    flex: 1;
  }
}

@media (width <= 768px) {
  .c-col-md-flex1 {
    flex: 1;
  }
}

@media (width <= 992px) {
  .c-flex-lg-col {
    flex-direction: column;
  }
}

@media (width <= 768px) {
  .c-flex-md-col {
    flex-direction: column;
  }
}

/* Flexbox Grid */
.c-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.c-flex-1 {
  flex: 1 1 calc(100% / 1 - 1rem);
}

.c-flex-2 {
  flex: 1 1 calc(100% / 2 - 1rem);
}

.c-flex-3 {
  flex: 1 1 calc(100% / 3 - 1rem);
}

.c-flex-4 {
  flex: 1 1 calc(100% / 4 - 1rem);
}

.c-flex-5 {
  flex: 1 1 calc(100% / 5 - 1rem);
}

.c-flex-6 {
  flex: 1 1 calc(100% / 6 - 1rem);
}

@media (min-width: 600px) {
  .c-flex-sm-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-sm-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-sm-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-sm-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-sm-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-sm-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
@media (min-width: 900px) {
  .c-flex-md-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-md-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-md-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-md-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-md-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-md-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
@media (min-width: 1200px) {
  .c-flex-lg-1 {
    flex: 1 1 calc(100% / 1 - 1rem);
  }
  .c-flex-lg-2 {
    flex: 1 1 calc(100% / 2 - 1rem);
  }
  .c-flex-lg-3 {
    flex: 1 1 calc(100% / 3 - 1rem);
  }
  .c-flex-lg-4 {
    flex: 1 1 calc(100% / 4 - 1rem);
  }
  .c-flex-lg-5 {
    flex: 1 1 calc(100% / 5 - 1rem);
  }
  .c-flex-lg-6 {
    flex: 1 1 calc(100% / 6 - 1rem);
  }
}
.c-col-fill {
  flex: 1 1 auto;
}

/* Align (Flex Alignment) */
.c-align-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-align-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.c-align-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

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

.c-align-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.c-align-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* Gap Utilities */
.c-gap-s {
  gap: 0.5rem;
}

.c-gap-m {
  gap: 1rem;
}

.c-gap-l {
  gap: 2rem;
}

@media (min-width: 600px) {
  .c-gap-sm-s {
    gap: 0.5rem;
  }
  .c-gap-sm-m {
    gap: 1rem;
  }
  .c-gap-sm-l {
    gap: 2rem;
  }
}
@media (min-width: 900px) {
  .c-gap-md-s {
    gap: 0.5rem;
  }
  .c-gap-md-m {
    gap: 1rem;
  }
  .c-gap-md-l {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .c-gap-lg-s {
    gap: 0.5rem;
  }
  .c-gap-lg-m {
    gap: 1rem;
  }
  .c-gap-lg-l {
    gap: 2rem;
  }
}
/* Typography */
.c-lh-tight {
  line-height: 1.2;
}

.c-lh-normal {
  line-height: 1.5;
}

.c-lh-relaxed {
  line-height: 1.75;
}

@media (min-width: 600px) {
  .c-lh-sm-tight {
    line-height: 1.2;
  }
  .c-lh-sm-normal {
    line-height: 1.5;
  }
  .c-lh-sm-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 900px) {
  .c-lh-md-tight {
    line-height: 1.2;
  }
  .c-lh-md-normal {
    line-height: 1.5;
  }
  .c-lh-md-relaxed {
    line-height: 1.75;
  }
}
@media (min-width: 1200px) {
  .c-lh-lg-tight {
    line-height: 1.2;
  }
  .c-lh-lg-normal {
    line-height: 1.5;
  }
  .c-lh-lg-relaxed {
    line-height: 1.75;
  }
}
.c-text-left {
  text-align: left;
}

.c-text-center {
  text-align: center;
}

.c-text-right {
  text-align: right;
}

@media (min-width: 600px) {
  .c-text-sm-left {
    text-align: left;
  }
  .c-text-sm-center {
    text-align: center;
  }
  .c-text-sm-right {
    text-align: right;
  }
}
@media (min-width: 900px) {
  .c-text-md-left {
    text-align: left;
  }
  .c-text-md-center {
    text-align: center;
  }
  .c-text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .c-text-lg-left {
    text-align: left;
  }
  .c-text-lg-center {
    text-align: center;
  }
  .c-text-lg-right {
    text-align: right;
  }
}
.c-card {
  padding: 2rem;
}

.c-hidden {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.c-marker {
  background-image: linear-gradient(#fffd3e, #fffd3e);
  background-position: 0 92%;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  display: inline;
  padding-bottom: 0.2em;
}

.c-decorator:after,
.c-decorator:before {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(-90deg, currentColor 50%, rgba(0, 0, 0, 0) 0);
  background-size: 6px 6px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 1.2em;
}

.c-decorator::after {
  transform: translate(0.2em, -0.3em) rotate(-45deg);
}

.c-decorator::before {
  transform: translate(-0.2em, -0.3em) rotate(45deg);
}

.c-baloon {
  text-align: center;
  color: #ffffff;
  background-color: #858585;
  border-radius: 2rem;
  padding: 1.2rem 0;
  margin-bottom: 3.8rem;
  position: relative;
}

.c-baloon::after {
  content: "";
  width: 2.8rem;
  height: 3.2rem;
  background-color: #858585;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal .c-modal__content {
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  padding: 1rem;
}

.c-list {
  margin: 0;
  padding: 0;
  list-style-position: outside;
}

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

.c-list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-inline li {
  display: inline-block;
  margin-right: 0.5em;
}
.c-list-inline li:last-child {
  margin-right: 0;
}

.c-list-divider {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list-divider li {
  border-bottom: 1px solid #ddd;
  padding: 0.5em 0;
}
.c-list-divider li:last-child {
  border-bottom: none;
}

/**
 * Form Elements (フォーム要素)
 * テキスト系入力、セレクトボックス
 */
.c-input,
.c-textarea,
.c-select {
  display: block;
  width: 100%;
  padding: 0.5em;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-input:focus,
.c-textarea:focus,
.c-select:focus {
  outline: none;
  border-color: #66aaff;
  box-shadow: 0 0 0 2px rgba(102, 170, 255, 0.3);
}

.c-textarea {
  min-height: 4em;
  resize: vertical;
}

/**
 * Label (ラベル)
 * フォーム部品のラベルを統一スタイルに
 */
.c-label {
  display: inline-block;
  margin-bottom: 0.25em;
  font-weight: 600;
  color: #333;
}

/**
 * Custom Checkbox / Radio (チェックボックス・ラジオ)
 * .c-checkbox や .c-radio コンテナ内で input を非表示にし、.c-label の疑似要素で見た目を作る
 */
.c-checkbox,
.c-radio {
  position: relative;
  margin-bottom: 0.5em;
}
.c-checkbox input[type=checkbox],
.c-checkbox input[type=radio],
.c-radio input[type=checkbox],
.c-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-checkbox .c-label::before,
.c-radio .c-label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid #333;
  background: #fff;
  vertical-align: middle;
  margin-right: 0.5em;
  border-radius: 3px;
  box-sizing: border-box;
}
.c-checkbox.c-radio .c-label::before,
.c-radio.c-radio .c-label::before {
  border-radius: 50%;
}
.c-checkbox input:checked + .c-label::before,
.c-radio input:checked + .c-label::before {
  background-color: #333;
}

.c-breadcrumb__list {
  display: flex;
  list-style: none;
	flex-wrap: wrap;
	font-size:.9em;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 8px;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-right: 8px;
}

.c-wh800 {
  max-width: 800px;
  margin: 0 auto;
}

.c-point {
  margin: 4em auto 2em auto;
  position: relative;
  padding: 2.6em 1em 1em 1em;
  text-align: center;
  z-index: 1;
}
@media (width <= 768px) {
  .c-point {
    margin: 3em auto 1.5em auto;
    padding: 2em 1em 0.8em 1em;
  }
}
.c-point::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ff9335;
  z-index: 0;
  transform: translate(6px, 6px);
}
@media (width <= 768px) {
  .c-point::before {
    transform: translate(4px, 4px);
  }
}
.c-point::after {
  content: "";
  border: 1px solid #e20c0c;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-point .c-point__icon {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  top: 0;
  left: 50%;
  width: 2em;
  height: 2em;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (width <= 992px) {
  .c-point .c-point__icon {
    width: 1.5em;
    height: 1.5em;
  }
}
@media (width <= 768px) {
  .c-point .c-point__icon {
    width: 1.3em;
    height: 1.3em;
  }
}
.c-point .c-point__icon p {
  color: #fff;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  font-size: 1.2em;
  padding: 0;
}
@media (width <= 992px) {
  .c-point .c-point__icon p {
    font-size: 1em;
  }
}
@media (width <= 768px) {
  .c-point .c-point__icon p {
    font-size: 0.75em;
  }
}
.c-point .c-point__icon p::after {
  content: "";
  display: none;
}
.c-point p {
  position: relative;
  margin: 0;
  color: #151515;
  text-align: center;
/*   text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); */
  font-weight: 700;
  font-size: 2.2em;
  letter-spacing: 0.04em;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  padding-bottom: 0.15em;
}
@media (width <= 992px) {
  .c-point p {
    font-size: 1.5em;
  }
}
@media (width <= 768px) {
  .c-point p {
    font-size: 1.2em;
  }
}
.c-point p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 103%;
  height: 7px;
  background: repeating-linear-gradient(-90deg, #fff, #fff 2px, #ff9335 2px, #ff9335 4px);
}
@media (width <= 992px) {
  .c-point p::after {
    height: 5px;
  }
}
.c-point p span {
  color: #fff;
  letter-spacing: 0.055em;
}

.c-full {
  overflow: unset;
  padding-bottom: 4em;
}
.c-full .wp-block-cover__image-background {
  position: absolute;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.c-max80 {
  max-width: 80%;
  margin: 0 auto;
}
@media (width <= 992px) {
  .c-max80 {
    max-width: none;
  }
}

.c-banner {
  max-width: 1080px;
  width: 100%;
  height: 400px;
  margin: 2em auto 4em auto;
  position: relative;
}
@media (width <= 992px) {
  .c-banner {
    height: 320px;
  }
}
.c-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #004088;
  top: -8px;
  left: auto;
	  right:6px;
	pointer-events: none;
}
@media (width <= 992px) {
  .c-banner::after {
    top: -6px;
    left: auto;
	  right:6px;
  }
}

@media (width <= 768px) {
  .c-banner::after {
    top: -4px;
    left: auto;
	  right:4px;
  }
}
.c-banner .c-banner__inner {
  padding: 1.6em;
  display: flex;
  background: url(../img/img-banner-bg.jpg?250939) no-repeat center center/cover;
  margin-left: 8px;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: center;
  gap: 2em;
}
@media (width <= 992px) {
  .c-banner .c-banner__inner {
    margin-left: 6px;
    gap: 1.5em;
    padding: 1.2em;
  }
}
@media (width <= 768px) {
  .c-banner .c-banner__inner {
    padding: 1em;
    gap: 1em;
	   margin-left: 4px;
  }
}
@media (width <= 370px) {
  .c-banner .c-banner__inner {
    padding: 1em .5em;
    gap: 1em;
  }
}

.c-banner__triangle{
  position: absolute;
  top: 0;
  left: 6px;
  width: clamp(32px, 6vw, 80px);
  height: clamp(32px, 6vw, 80px);
  background: linear-gradient(135deg, #004088 0%, #00C2DA 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 1;          
}
@media (width <= 768px) {
  .c-banner__triangle {
  left: 4px;
  }
}

.c-banner__triangle--2{
	top:auto;
	left:auto;
	right:0;
	bottom:0;
	clip-path: polygon(100% 100%, 0 100%, 100% 0);
  background: linear-gradient(315deg, #004088 0%, #00C2DA 100%);
}


.c-banner .c-banner__title {
	color: #1565C0;
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.72px;
  background: #fff;
  max-width: 680px;
  width: 100%;
/*   height: 1.35em; */
  margin: 0;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  padding: .2em .2em .225em .2em;
	text-shadow:none;
}
.c-banner h2.c-banner__title::before{
	display:none;
}
.c-banner h2.c-banner__title::after{
	display:none;
}
@media (width <= 992px) {
  .c-banner .c-banner__title {
    font-size: 1.8em;
  }
}
@media (width <= 768px) {
  .c-banner .c-banner__title {
    font-size: 1.5em;
	  padding: 0.2em 0.2em .225em .2em;
  }
}
@media (width <= 340px) {
  .c-banner .c-banner__title {
	  height:auto;
  }
}

.c-banner .c-banner__title .c-banner__title-main{
	font-size:1.61em;
	color: #00478C;
}

@media (width <= 768px) {
  .c-banner .c-banner__title .c-banner__title-main {
	  font-size:1.15em;
  }
}

.c-banner .c-banner__title .c-banner__title-compare{
background: linear-gradient(180deg, #00C2DA 0%, #004088 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
		font-size:1.61em;
}

@media (width <= 768px) {
  .c-banner .c-banner__title .c-banner__title-compare {
	  font-size:1.15em;
  }
}

.c-banner .c-banner__desc {
  color: var(--, #151515);
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.4px;
}
@media (width <= 992px) {
  .c-banner .c-banner__desc {
    font-size: 1.1em;
  }
}
@media (width <= 768px) {
  .c-banner .c-banner__desc {
    font-size: 1em;
  }
}
.c-banner .c-banner__btn {
  margin: 0.5em 0;
}

.c-btn {
  display: inline-flex;
  cursor: pointer;
  text-align: center;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.c-btn__container {
  line-height: 48px;
}

.p-top .c-btn {
	text-decoration:none
}
.p-top .c-btn--blue {
	color:#fff;
	text-decoration:none
}

.c-btn--blue {
  background: #0199c0;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.4px;
  padding: 0 1.6em;
  height: 64px;
}
@media (width <= 992px) {
  .c-btn--blue {
    font-size: 1.1em;
    height: 56px;
  }
}
@media (width <= 768px) {
  .c-btn--blue {
    font-size: 1em;
    height: 48px;
  }
}

.p-top .c-btn--orange{
	color:#fff;
}

.c-btn--orange {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ff9030;
  transform: translate(4px, 4px);
  transition: all 0.3s ease-in-out;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    font-size: 1.35em;
    font-weight: 900;
    letter-spacing: 0.135em;
	color: #fff;
	height:2.8em;
	padding:.8em .5em;
}
.c-btn--orange:hover {
	opacity:.75;
}

@media (width <= 768px) {
  .c-btn--orange {
    font-size: 1em;
  }
}

.c-btn--orange::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -4px;
left: -4px;
  z-index: 1;
  border: 1px solid #e20c0c;
  transition: all 0.3s ease-in-out;
}

.c-banner__btn{
	width:100%;
	max-width:460px;
}

.c-btn--icon img {
  width: 1.2em;
  height: 1.2em;
  margin-left: 0.6em;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.c-linkurl {
  color: #004088;
  text-decoration: underline;
}

.c-side {
  flex: 0 0 25%;
}

.c-main {
  flex: 1;
}

.p-top p.c-sideNav__heading {
  color: #004088;
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 160%;
  border-top: 1px solid #00c2da;
  border-bottom: 1px solid #00c2da;
  background: linear-gradient(270deg, rgba(0, 194, 218, 0.05) 0%, rgba(0, 64, 136, 0.05) 100%);
}
.p-top p.c-sideNav__heading::before {
  content: "";
  display: none;
}

.p-top p.c-sideNav__heading a{
    padding: 1em 0.5em;
    display: block;
	text-decoration:none;
}

.c-sideNav__sections{
	margin:0;
}

.c-sideNav__links {
	margin:0;
}
.c-sideNav__links li {
  padding: 0.5em 1em;
}
.c-sideNav__links .c-sideNav__link {
  position: relative;
  padding-left: 1em;
  display: block;
	padding: 0 1em 0.25em 1em;
	text-decoration:none;
}
.c-sideNav__links .c-sideNav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid #004088;
  border-right: 0;
}

@media (max-width: 992px) {
  .c-side {
    position: fixed;
    top: 40px;
    right: -100%;
    width: 80%;
    height: 100svh;
    z-index: 999;
    background-color: #fff;
    padding: 20px;
    overflow-y: scroll;
    transition: all 0.3s ease;
  }
  .c-side.open {
    right: 0;
  }
}

/*==================================
  Margin (共通 / ブレークポイント別)
==================================*/
/*--- 共通マージン ---*/
.u-mt-s {
  margin-top: 0.25rem;
}

.u-mr-s {
  margin-right: 0.25rem;
}

.u-mb-s {
  margin-bottom: 0.25rem;
}

.u-ml-s {
  margin-left: 0.25rem;
}

.u-mx-s {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.u-my-s {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.u-m-s {
  margin: 0.25rem;
}

.u-mt-m {
  margin-top: 0.5rem;
}

.u-mr-m {
  margin-right: 0.5rem;
}

.u-mb-m {
  margin-bottom: 0.5rem;
}

.u-ml-m {
  margin-left: 0.5rem;
}

.u-mx-m {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.u-my-m {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.u-m-m {
  margin: 0.5rem;
}

.u-mt-l {
  margin-top: 1rem;
}

.u-mr-l {
  margin-right: 1rem;
}

.u-mb-l {
  margin-bottom: 1rem;
}

.u-ml-l {
  margin-left: 1rem;
}

.u-mx-l {
  margin-left: 1rem;
  margin-right: 1rem;
}

.u-my-l {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.u-m-l {
  margin: 1rem;
}

/*--- ブレークポイント別マージン ---*/
@media (width >= 340px) {
  .u-mt-exsm-s {
    margin-top: 0.25rem;
  }
  .u-mr-exsm-s {
    margin-right: 0.25rem;
  }
  .u-mb-exsm-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-exsm-s {
    margin-left: 0.25rem;
  }
  .u-mx-exsm-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-exsm-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-exsm-s {
    margin: 0.25rem;
  }
  .u-mt-exsm-m {
    margin-top: 0.5rem;
  }
  .u-mr-exsm-m {
    margin-right: 0.5rem;
  }
  .u-mb-exsm-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-exsm-m {
    margin-left: 0.5rem;
  }
  .u-mx-exsm-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-exsm-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-exsm-m {
    margin: 0.5rem;
  }
  .u-mt-exsm-l {
    margin-top: 1rem;
  }
  .u-mr-exsm-l {
    margin-right: 1rem;
  }
  .u-mb-exsm-l {
    margin-bottom: 1rem;
  }
  .u-ml-exsm-l {
    margin-left: 1rem;
  }
  .u-mx-exsm-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-exsm-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-exsm-l {
    margin: 1rem;
  }
}
@media (width >= 400px) {
  .u-mt-sm-s {
    margin-top: 0.25rem;
  }
  .u-mr-sm-s {
    margin-right: 0.25rem;
  }
  .u-mb-sm-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-sm-s {
    margin-left: 0.25rem;
  }
  .u-mx-sm-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-sm-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-sm-s {
    margin: 0.25rem;
  }
  .u-mt-sm-m {
    margin-top: 0.5rem;
  }
  .u-mr-sm-m {
    margin-right: 0.5rem;
  }
  .u-mb-sm-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-sm-m {
    margin-left: 0.5rem;
  }
  .u-mx-sm-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-sm-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-sm-m {
    margin: 0.5rem;
  }
  .u-mt-sm-l {
    margin-top: 1rem;
  }
  .u-mr-sm-l {
    margin-right: 1rem;
  }
  .u-mb-sm-l {
    margin-bottom: 1rem;
  }
  .u-ml-sm-l {
    margin-left: 1rem;
  }
  .u-mx-sm-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-sm-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-sm-l {
    margin: 1rem;
  }
}
@media (width >= 768px) {
  .u-mt-md-s {
    margin-top: 0.25rem;
  }
  .u-mr-md-s {
    margin-right: 0.25rem;
  }
  .u-mb-md-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-md-s {
    margin-left: 0.25rem;
  }
  .u-mx-md-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-md-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-md-s {
    margin: 0.25rem;
  }
  .u-mt-md-m {
    margin-top: 0.5rem;
  }
  .u-mr-md-m {
    margin-right: 0.5rem;
  }
  .u-mb-md-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-md-m {
    margin-left: 0.5rem;
  }
  .u-mx-md-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-md-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-md-m {
    margin: 0.5rem;
  }
  .u-mt-md-l {
    margin-top: 1rem;
  }
  .u-mr-md-l {
    margin-right: 1rem;
  }
  .u-mb-md-l {
    margin-bottom: 1rem;
  }
  .u-ml-md-l {
    margin-left: 1rem;
  }
  .u-mx-md-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-md-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-md-l {
    margin: 1rem;
  }
}
@media (width >= 992px) {
  .u-mt-lg-s {
    margin-top: 0.25rem;
  }
  .u-mr-lg-s {
    margin-right: 0.25rem;
  }
  .u-mb-lg-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-lg-s {
    margin-left: 0.25rem;
  }
  .u-mx-lg-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-lg-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-lg-s {
    margin: 0.25rem;
  }
  .u-mt-lg-m {
    margin-top: 0.5rem;
  }
  .u-mr-lg-m {
    margin-right: 0.5rem;
  }
  .u-mb-lg-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-lg-m {
    margin-left: 0.5rem;
  }
  .u-mx-lg-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-lg-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-lg-m {
    margin: 0.5rem;
  }
  .u-mt-lg-l {
    margin-top: 1rem;
  }
  .u-mr-lg-l {
    margin-right: 1rem;
  }
  .u-mb-lg-l {
    margin-bottom: 1rem;
  }
  .u-ml-lg-l {
    margin-left: 1rem;
  }
  .u-mx-lg-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-lg-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-lg-l {
    margin: 1rem;
  }
}
@media (width >= 1200px) {
  .u-mt-xl-s {
    margin-top: 0.25rem;
  }
  .u-mr-xl-s {
    margin-right: 0.25rem;
  }
  .u-mb-xl-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-xl-s {
    margin-left: 0.25rem;
  }
  .u-mx-xl-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-xl-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-xl-s {
    margin: 0.25rem;
  }
  .u-mt-xl-m {
    margin-top: 0.5rem;
  }
  .u-mr-xl-m {
    margin-right: 0.5rem;
  }
  .u-mb-xl-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-xl-m {
    margin-left: 0.5rem;
  }
  .u-mx-xl-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-xl-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-xl-m {
    margin: 0.5rem;
  }
  .u-mt-xl-l {
    margin-top: 1rem;
  }
  .u-mr-xl-l {
    margin-right: 1rem;
  }
  .u-mb-xl-l {
    margin-bottom: 1rem;
  }
  .u-ml-xl-l {
    margin-left: 1rem;
  }
  .u-mx-xl-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-xl-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-xl-l {
    margin: 1rem;
  }
}
@media (width >= 1400px) {
  .u-mt-xxl-s {
    margin-top: 0.25rem;
  }
  .u-mr-xxl-s {
    margin-right: 0.25rem;
  }
  .u-mb-xxl-s {
    margin-bottom: 0.25rem;
  }
  .u-ml-xxl-s {
    margin-left: 0.25rem;
  }
  .u-mx-xxl-s {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }
  .u-my-xxl-s {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .u-m-xxl-s {
    margin: 0.25rem;
  }
  .u-mt-xxl-m {
    margin-top: 0.5rem;
  }
  .u-mr-xxl-m {
    margin-right: 0.5rem;
  }
  .u-mb-xxl-m {
    margin-bottom: 0.5rem;
  }
  .u-ml-xxl-m {
    margin-left: 0.5rem;
  }
  .u-mx-xxl-m {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .u-my-xxl-m {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .u-m-xxl-m {
    margin: 0.5rem;
  }
  .u-mt-xxl-l {
    margin-top: 1rem;
  }
  .u-mr-xxl-l {
    margin-right: 1rem;
  }
  .u-mb-xxl-l {
    margin-bottom: 1rem;
  }
  .u-ml-xxl-l {
    margin-left: 1rem;
  }
  .u-mx-xxl-l {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .u-my-xxl-l {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .u-m-xxl-l {
    margin: 1rem;
  }
}
/*==================================
  Padding (共通 / ブレークポイント別)
==================================*/
/*--- 共通パディング ---*/
.u-pt-s {
  padding-top: 0.25rem;
}

.u-pr-s {
  padding-right: 0.25rem;
}

.u-pb-s {
  padding-bottom: 0.25rem;
}

.u-pl-s {
  padding-left: 0.25rem;
}

.u-px-s {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.u-py-s {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.u-p-s {
  padding: 0.25rem;
}

.u-pt-m {
  padding-top: 0.5rem;
}

.u-pr-m {
  padding-right: 0.5rem;
}

.u-pb-m {
  padding-bottom: 0.5rem;
}

.u-pl-m {
  padding-left: 0.5rem;
}

.u-px-m {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.u-py-m {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.u-p-m {
  padding: 0.5rem;
}

.u-pt-l {
  padding-top: 1rem;
}

.u-pr-l {
  padding-right: 1rem;
}

.u-pb-l {
  padding-bottom: 1rem;
}

.u-pl-l {
  padding-left: 1rem;
}

.u-px-l {
  padding-left: 1rem;
  padding-right: 1rem;
}

.u-py-l {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.u-p-l {
  padding: 1rem;
}

/*--- ブレークポイント別パディング ---*/
@media (width >= 340px) {
  .u-pt-exsm-s {
    padding-top: 0.25rem;
  }
  .u-pr-exsm-s {
    padding-right: 0.25rem;
  }
  .u-pb-exsm-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-exsm-s {
    padding-left: 0.25rem;
  }
  .u-px-exsm-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-exsm-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-exsm-s {
    padding: 0.25rem;
  }
  .u-pt-exsm-m {
    padding-top: 0.5rem;
  }
  .u-pr-exsm-m {
    padding-right: 0.5rem;
  }
  .u-pb-exsm-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-exsm-m {
    padding-left: 0.5rem;
  }
  .u-px-exsm-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-exsm-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-exsm-m {
    padding: 0.5rem;
  }
  .u-pt-exsm-l {
    padding-top: 1rem;
  }
  .u-pr-exsm-l {
    padding-right: 1rem;
  }
  .u-pb-exsm-l {
    padding-bottom: 1rem;
  }
  .u-pl-exsm-l {
    padding-left: 1rem;
  }
  .u-px-exsm-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-exsm-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-exsm-l {
    padding: 1rem;
  }
}
@media (width >= 400px) {
  .u-pt-sm-s {
    padding-top: 0.25rem;
  }
  .u-pr-sm-s {
    padding-right: 0.25rem;
  }
  .u-pb-sm-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-sm-s {
    padding-left: 0.25rem;
  }
  .u-px-sm-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-sm-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-sm-s {
    padding: 0.25rem;
  }
  .u-pt-sm-m {
    padding-top: 0.5rem;
  }
  .u-pr-sm-m {
    padding-right: 0.5rem;
  }
  .u-pb-sm-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-sm-m {
    padding-left: 0.5rem;
  }
  .u-px-sm-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-sm-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-sm-m {
    padding: 0.5rem;
  }
  .u-pt-sm-l {
    padding-top: 1rem;
  }
  .u-pr-sm-l {
    padding-right: 1rem;
  }
  .u-pb-sm-l {
    padding-bottom: 1rem;
  }
  .u-pl-sm-l {
    padding-left: 1rem;
  }
  .u-px-sm-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-sm-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-sm-l {
    padding: 1rem;
  }
}
@media (width >= 768px) {
  .u-pt-md-s {
    padding-top: 0.25rem;
  }
  .u-pr-md-s {
    padding-right: 0.25rem;
  }
  .u-pb-md-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-md-s {
    padding-left: 0.25rem;
  }
  .u-px-md-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-md-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-md-s {
    padding: 0.25rem;
  }
  .u-pt-md-m {
    padding-top: 0.5rem;
  }
  .u-pr-md-m {
    padding-right: 0.5rem;
  }
  .u-pb-md-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-md-m {
    padding-left: 0.5rem;
  }
  .u-px-md-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-md-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-md-m {
    padding: 0.5rem;
  }
  .u-pt-md-l {
    padding-top: 1rem;
  }
  .u-pr-md-l {
    padding-right: 1rem;
  }
  .u-pb-md-l {
    padding-bottom: 1rem;
  }
  .u-pl-md-l {
    padding-left: 1rem;
  }
  .u-px-md-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-md-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-md-l {
    padding: 1rem;
  }
}
@media (width >= 992px) {
  .u-pt-lg-s {
    padding-top: 0.25rem;
  }
  .u-pr-lg-s {
    padding-right: 0.25rem;
  }
  .u-pb-lg-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-lg-s {
    padding-left: 0.25rem;
  }
  .u-px-lg-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-lg-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-lg-s {
    padding: 0.25rem;
  }
  .u-pt-lg-m {
    padding-top: 0.5rem;
  }
  .u-pr-lg-m {
    padding-right: 0.5rem;
  }
  .u-pb-lg-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-lg-m {
    padding-left: 0.5rem;
  }
  .u-px-lg-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-lg-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-lg-m {
    padding: 0.5rem;
  }
  .u-pt-lg-l {
    padding-top: 1rem;
  }
  .u-pr-lg-l {
    padding-right: 1rem;
  }
  .u-pb-lg-l {
    padding-bottom: 1rem;
  }
  .u-pl-lg-l {
    padding-left: 1rem;
  }
  .u-px-lg-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-lg-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-lg-l {
    padding: 1rem;
  }
}
@media (width >= 1200px) {
  .u-pt-xl-s {
    padding-top: 0.25rem;
  }
  .u-pr-xl-s {
    padding-right: 0.25rem;
  }
  .u-pb-xl-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-xl-s {
    padding-left: 0.25rem;
  }
  .u-px-xl-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-xl-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-xl-s {
    padding: 0.25rem;
  }
  .u-pt-xl-m {
    padding-top: 0.5rem;
  }
  .u-pr-xl-m {
    padding-right: 0.5rem;
  }
  .u-pb-xl-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-xl-m {
    padding-left: 0.5rem;
  }
  .u-px-xl-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-xl-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-xl-m {
    padding: 0.5rem;
  }
  .u-pt-xl-l {
    padding-top: 1rem;
  }
  .u-pr-xl-l {
    padding-right: 1rem;
  }
  .u-pb-xl-l {
    padding-bottom: 1rem;
  }
  .u-pl-xl-l {
    padding-left: 1rem;
  }
  .u-px-xl-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-xl-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-xl-l {
    padding: 1rem;
  }
}
@media (width >= 1400px) {
  .u-pt-xxl-s {
    padding-top: 0.25rem;
  }
  .u-pr-xxl-s {
    padding-right: 0.25rem;
  }
  .u-pb-xxl-s {
    padding-bottom: 0.25rem;
  }
  .u-pl-xxl-s {
    padding-left: 0.25rem;
  }
  .u-px-xxl-s {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .u-py-xxl-s {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .u-p-xxl-s {
    padding: 0.25rem;
  }
  .u-pt-xxl-m {
    padding-top: 0.5rem;
  }
  .u-pr-xxl-m {
    padding-right: 0.5rem;
  }
  .u-pb-xxl-m {
    padding-bottom: 0.5rem;
  }
  .u-pl-xxl-m {
    padding-left: 0.5rem;
  }
  .u-px-xxl-m {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .u-py-xxl-m {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .u-p-xxl-m {
    padding: 0.5rem;
  }
  .u-pt-xxl-l {
    padding-top: 1rem;
  }
  .u-pr-xxl-l {
    padding-right: 1rem;
  }
  .u-pb-xxl-l {
    padding-bottom: 1rem;
  }
  .u-pl-xxl-l {
    padding-left: 1rem;
  }
  .u-px-xxl-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .u-py-xxl-l {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .u-p-xxl-l {
    padding: 1rem;
  }
}
/*==================================
  Display (表示制御)
==================================*/
/*--- 共通 ---*/
.u-d-none {
  display: none !important;
}

.u-d-block {
  display: block !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-grid {
  display: grid !important;
}

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-d-exsm-none {
    display: none !important;
  }
  .u-d-exsm-block {
    display: block !important;
  }
  .u-d-exsm-inline {
    display: inline !important;
  }
  .u-d-exsm-inline-block {
    display: inline-block !important;
  }
  .u-d-exsm-flex {
    display: flex !important;
  }
  .u-d-exsm-grid {
    display: grid !important;
  }
}
@media (width >= 400px) {
  .u-d-sm-none {
    display: none !important;
  }
  .u-d-sm-block {
    display: block !important;
  }
  .u-d-sm-inline {
    display: inline !important;
  }
  .u-d-sm-inline-block {
    display: inline-block !important;
  }
  .u-d-sm-flex {
    display: flex !important;
  }
  .u-d-sm-grid {
    display: grid !important;
  }
}
@media (width >= 768px) {
  .u-d-md-none {
    display: none !important;
  }
  .u-d-md-block {
    display: block !important;
  }
  .u-d-md-inline {
    display: inline !important;
  }
  .u-d-md-inline-block {
    display: inline-block !important;
  }
  .u-d-md-flex {
    display: flex !important;
  }
  .u-d-md-grid {
    display: grid !important;
  }
}
@media (width >= 992px) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-flex {
    display: flex !important;
  }
  .u-d-lg-grid {
    display: grid !important;
  }
}
@media (width >= 1200px) {
  .u-d-xl-none {
    display: none !important;
  }
  .u-d-xl-block {
    display: block !important;
  }
  .u-d-xl-inline {
    display: inline !important;
  }
  .u-d-xl-inline-block {
    display: inline-block !important;
  }
  .u-d-xl-flex {
    display: flex !important;
  }
  .u-d-xl-grid {
    display: grid !important;
  }
}
@media (width >= 1400px) {
  .u-d-xxl-none {
    display: none !important;
  }
  .u-d-xxl-block {
    display: block !important;
  }
  .u-d-xxl-inline {
    display: inline !important;
  }
  .u-d-xxl-inline-block {
    display: inline-block !important;
  }
  .u-d-xxl-flex {
    display: flex !important;
  }
  .u-d-xxl-grid {
    display: grid !important;
  }
}
/*==================================
  Text-align (テキスト配置)
==================================*/
/*--- 共通 ---*/
.u-ta-left {
  text-align: left !important;
}

.u-ta-center {
  text-align: center !important;
}

.u-ta-right {
  text-align: right !important;
}

/*--- ブレークポイント別 ---*/
@media (width >= 340px) {
  .u-ta-exsm-left {
    text-align: left !important;
  }
  .u-ta-exsm-center {
    text-align: center !important;
  }
  .u-ta-exsm-right {
    text-align: right !important;
  }
}
@media (width >= 400px) {
  .u-ta-sm-left {
    text-align: left !important;
  }
  .u-ta-sm-center {
    text-align: center !important;
  }
  .u-ta-sm-right {
    text-align: right !important;
  }
}
@media (width >= 768px) {
  .u-ta-md-left {
    text-align: left !important;
  }
  .u-ta-md-center {
    text-align: center !important;
  }
  .u-ta-md-right {
    text-align: right !important;
  }
}
@media (width >= 992px) {
  .u-ta-lg-left {
    text-align: left !important;
  }
  .u-ta-lg-center {
    text-align: center !important;
  }
  .u-ta-lg-right {
    text-align: right !important;
  }
}
@media (width >= 1200px) {
  .u-ta-xl-left {
    text-align: left !important;
  }
  .u-ta-xl-center {
    text-align: center !important;
  }
  .u-ta-xl-right {
    text-align: right !important;
  }
}
@media (width >= 1400px) {
  .u-ta-xxl-left {
    text-align: left !important;
  }
  .u-ta-xxl-center {
    text-align: center !important;
  }
  .u-ta-xxl-right {
    text-align: right !important;
  }
}
/* 補足: !important が不要な用途などで使いたい場合に */
.u-text-center {
  text-align: center;
}

/*==================================
  Overflow
==================================*/
.u-ov-hidden {
  overflow: hidden !important;
}

.u-ov-scroll {
  overflow: scroll !important;
}

.u-ov-auto {
  overflow: auto !important;
}

/*==================================
  Clearfix
==================================*/
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==================================
  Visually Hidden
  (画面外表示だが読み上げ対象)
==================================*/
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*==================================
  Font-weight
==================================*/
/* 通常フォントウェイト */
.u-fw-light {
  font-weight: 300 !important;
}

.u-fw-normal {
  font-weight: 400 !important;
}

.u-fw-medium {
  font-weight: 500 !important;
}

.u-fw-semibold {
  font-weight: 600 !important;
}

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

.u-fw-bolder {
  font-weight: 800 !important;
}

/* もし数値のクラスも必要なら追加（例） */
.u-fw-400 {
  font-weight: 400 !important;
}

/*==================================
  Cursor
==================================*/
.u-cursor-pointer {
  cursor: pointer !important;
}

.u-cursor-default {
  cursor: default !important;
}

/*==================================
  Opacity
==================================*/
.u-opacity-50 {
  opacity: 0.5 !important;
}

.u-opacity-75 {
  opacity: 0.75 !important;
}

.u-opacity-100 {
  opacity: 1 !important;
}

/*==================================
  Line-height
==================================*/
.u-lh-1 {
  line-height: 1;
}

.u-lh-1_2 {
  line-height: 1.2;
}

.u-lh-1_4 {
  line-height: 1.4;
}

.u-lh-1_5 {
  line-height: 1.5;
}

.u-lh-1_6 {
  line-height: 1.6;
}

.u-lh-1_8 {
  line-height: 1.8;
}

.u-lh-2 {
  line-height: 2;
}

/*==================================
  Letter-spacing
==================================*/
.u-ls-0 {
  letter-spacing: 0;
}

.u-ls-0_5 {
  letter-spacing: 0.5px;
}

.u-ls-1 {
  letter-spacing: 1px;
}

.u-ls-1_2 {
  letter-spacing: 1.2px;
}

.u-ls-2 {
  letter-spacing: 2px;
}

.u-ls-3 {
  letter-spacing: 3px;
}

.u-ls--0_5 {
  letter-spacing: -0.5px;
}

.u-ls--1 {
  letter-spacing: -1px;
}

/*----------------------------------
  Border / Border Radius (15.1)
----------------------------------*/
/* ボーダー（線の有無, 太さ） */
.u-border {
  border: 1px solid #ccc !important;
}

.u-border-0 {
  border: 0 !important;
}

.u-border-top {
  border-top: 1px solid #ccc !important;
}

.u-border-right {
  border-right: 1px solid #ccc !important;
}

.u-border-bottom {
  border-bottom: 1px solid #ccc !important;
}

.u-border-left {
  border-left: 1px solid #ccc !important;
}

/* 角丸 (border-radius) */
.u-rounded {
  border-radius: 4px !important;
}

.u-rounded-0 {
  border-radius: 0 !important;
}

.u-rounded-sm {
  border-radius: 2px !important;
}

.u-rounded-md {
  border-radius: 6px !important;
}

.u-rounded-lg {
  border-radius: 8px !important;
}

.u-rounded-pill {
  border-radius: 50rem !important;
}

.u-rounded-circle {
  border-radius: 100vw !important;
}

/*----------------------------------
  Box Shadows (15.3)
----------------------------------*/
.u-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.u-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.u-shadow-lg {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15) !important;
}

.u-shadow-none {
  box-shadow: none !important;
}

.p-top{
	overflow:hidden;
}

.p-top p {
  color: #151515;
}
.p-top h2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(270deg, #00c2da 0%, #004088 100%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-weight: 400;
  font-size: 1.7em;
  padding: 0.75em 1.5em;
  margin: 2em 0;
  --slash-thickness: 1px;
  --slash-shift: -40%;
}
.p-top h2::before, .p-top h2::after {
  content: "";
  position: absolute;
  top: -2px;
  height: 110%;
  aspect-ratio: 1/1;
  pointer-events: none;
}
.p-top h2::before {
  left: 0;
  transform: translateX(calc(-1 * var(--slash-shift)));
  background: linear-gradient(135deg, transparent calc(50% - var(--slash-thickness)), #fff 0, #fff calc(50% + var(--slash-thickness)), transparent 0);
}
.p-top h2::after {
  right: 0;
  transform: translateX(var(--slash-shift));
  background: linear-gradient(-45deg, transparent calc(50% - var(--slash-thickness)), #fff 0, #fff calc(50% + var(--slash-thickness)), transparent 0);
}
@media (width <= 1200px) {
  .p-top h2 {
    --slash-shift: -20%;
  }
}
@media (width <= 992px) {
  .p-top h2 {
    font-size: 1.5em;
    --slash-shift: 0%;
  }
}
@media (width <= 768px) {
  .p-top h2 {
    font-size: 1.3em;
    --slash-shift: 50%;
  }
}
@media (width <= 400px) {
  .p-top h2 {
    --slash-shift: 65%;
  }
}
.p-top h3 {
  position: relative;
  color: #00478c;
  padding: 0.5em 0 0.5em 1em;
  font-size: 1.45em;
  margin: 1.8em 0;
}
@media (width <= 768px) {
  .p-top h3 {
    font-size: 1.25em;
  }
}
.p-top h3::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #00c2da 0%, #004088 100%), linear-gradient(180deg, #00c2da 0%, #004088 100%);
}
.p-top .wp-block-columns {
  margin: 1.5em auto 1.5em auto;
}
.p-top .wp-block-image {
  margin: 1.5em 0;
}
.p-top .c-box {
  background: #fff;
  position: relative;
  padding: 1.8em;
  border: 1px solid #004088;
}
.p-top .c-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 2.5em 2.5em 0;
  border-color: transparent #00478c transparent transparent;
  pointer-events: none;
}
.p-top .c-box h3 {
  padding: 0 0 0.15em 0;
  font-size: 1.25em;
  margin: 0 0 1.2em 0;
  text-align: center;
}
.p-top .c-box h3::before {
  content: "";
  display: none;
}
.p-top .c-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 8em;
  background: #00c2da;
}
.p-top .c-box2 {
  border-radius: 16px;
  border: 1px solid #c7dfe5;
  background: #fff;
  padding: 2.5em 2em;
}
@media (width <= 992px) {
  .p-top .c-box2 {
    padding: 1.2em;
  }
}
@media (width <= 768px) {
  .p-top .c-box2 {
    padding: 1.2em;
  }
}
.p-top .c-box2 h3 {
  margin-top: 0;
  margin-bottom: 1.2em;
  background: #0199c0;
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
}
.p-top .c-box2 h3::before {
  content: "";
  display: none;
}
.p-top .c-box2 .wp-block-media-text__content {
  align-self: flex-start;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-top a{
	color: #004088;
	text-decoration-line: underline;
	text-decoration-style: solid;
}

.p-top .c-link {
  margin: 1.8em 0 0 0;
  color: #004088;
  font-size: 0.9em;
  line-height: 150%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
  padding-right: 2.3em;
}
@media (width <= 768px) {
  .p-top .c-link {
    margin: 1.2em 0;
    padding-right: 1.8em;
  }
}
.p-top .c-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon-arrow-circle.svg) no-repeat center center/cover;
  width: 1.7em;
  height: 1.7em;
  aspect-ratio: 1;
}
@media (width <= 768px) {
  .p-top .c-link::after {
    width: 1.3em;
    height: 1.3em;
  }
}
.p-top .wp-block-button {
  position: relative;
  max-width: 28em;
  width: 100%;
  margin: 1.8em 0;
}
@media (width <= 768px) {
  .p-top .wp-block-button {
    max-width: 100%;
  }
}
.p-top .wp-block-button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff9030;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(4px, 4px);
  transition: all 0.3s ease-in-out;
}
.p-top .wp-block-button .wp-block-button__link {
  border-radius: 0;
  position: relative;
  text-align: center;
  z-index: 1;
  background: transparent;
	text-decoration: none;
  padding-right: 2em;
  width: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  font-size: 1.35em;
  font-weight: 900;
  letter-spacing: 0.135em;
  transition: all 0.3s ease-in-out;
}
@media (width <= 768px) {
  .p-top .wp-block-button .wp-block-button__link {
    font-size: 1.1em;
  }
}
.p-top .wp-block-button .wp-block-button__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px solid #e20c0c;
  transition: all 0.3s ease-in-out;
}
.p-top .wp-block-button .wp-block-button__link::after {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  aspect-ratio: 1;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/icon-arrow-circle-wh.svg) no-repeat center center/cover;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.28s ease;
}
@media (width <= 768px) {
  .p-top .wp-block-button .wp-block-button__link::after {
    width: 1em;
    height: 1em;
    right: 0.8em;
  }
}
.p-top .wp-block-button:hover .wp-block-button__link, .p-top .wp-block-button:focus-within .wp-block-button__link {
  filter: brightness(1.03);
}
.p-top .wp-block-table table {
  table-layout: fixed;
  width: 100%;
  min-width: 768px;
  border-collapse: separate;
  border-spacing: 0;
}
@media (width <= 992px) {
  .p-top .wp-block-table table {
    width: auto;
  }
}
.p-top .wp-block-table thead th {
  background: #0199c0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.p-top .wp-block-table thead th:first-child {
  border-left-color: #fff;
}
.p-top .wp-block-table thead th:last-child {
  border-right: 1px solid #fff;
}
.p-top .wp-block-table tbody th,
.p-top .wp-block-table tbody td {
  border: 1px solid #c2c2c2;
  vertical-align: middle;
   text-align: center;
}
.p-top .wp-block-table tbody th {
  background: #e0f7fa;
  font-weight: 400;
  white-space: nowrap;
}
.p-top .wp-block-table tbody th strong {
  font-size: 1.1em;
}
.p-top .wp-block-table tbody a {
  text-decoration: underline;
  color: #004088;
}
.p-top h4 {
  font-weight: 400;
  color: #00478c;
  font-size: 1.2em;
}
@media (width <= 768px) {
  .p-top .wp-block-cover.c-full,
  .p-top .c-full.wp-block-cover-image {
    padding: 0 0 2.5em 0;
  }
}
@media (width <= 768px) {
  .p-top .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__media {
    max-width: 200px;
    margin: 0 auto;
  }
}
@media (width <= 400px) {
  .p-top .wp-block-media-text__content {
    padding: 0;
  }
}
@media (width <= 768px) {
  .p-top .wp-block-media-text.is-image-fill-element > .wp-block-media-text__media img {
    position: relative;
  }
}

.p-top table{
	table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
@media (width <= 992px) {
  .p-top table {
    width: auto;
  }
}

.p-top thead th {
  background: #0199c0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
	padding:.4em;
}

.p-top thead th:first-child {
  border-left-color: #fff;
}
.p-top thead th:last-child {
  border-right: 1px solid #fff;
}
.p-top tbody th,
.p-top tbody td {
  border: 1px solid #c2c2c2;
  vertical-align: middle;
	padding:.4em;
  text-align: center;
}

.p-top tbody th {
  background: #e0f7fa;
  font-weight: 400;
  text-align: center;
/*  white-space: nowrap; */
}
.p-top tbody th strong {
  font-size: 1.1em;
}
.p-top tbody a {
  text-decoration: underline;
  color: #004088;
}


.p-fv {
  position: relative;
  height: auto;
  position: relative;
  height: auto;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow-x: clip;
	margin-bottom:80px;
}
@media (width <= 768px) {
  .p-fv {
    display: flex;
    align-items: center;
    height: 100vh;
    max-height: 500px;
	  margin-bottom:60px;
  }
}
.p-fv--page {
  min-height: 150px;
	margin-bottom:24px;
}
@media (width <= 768px) {
  .p-fv--page {
    height: 200px;
  }
}

.p-fv .p-fv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.p-fv .p-fv__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.p-fv .p-fv__inner {
  max-width: 1140px;
  padding: 5.4vw 20px 6.1vw 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (width <= 992px) {
  .p-fv .p-fv__inner {
    padding: 50px 16px 60px 16px;
  }
}
@media (width <= 340px) {
  .p-fv .p-fv__inner {
    padding: 60px 8px;
  }
}
.p-fv--page .p-fv__inner {
  padding: 4vw 12px 4vw 12px;
}
.p-fv .p-fv__text {
  color: #fff;
  margin: 0 0 0 0;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 992px) / 928, 32px);
  font-style: normal;
  font-weight: 900;
  line-height: 140%;
  letter-spacing: 1.28px;
}
@media (width <= 768px) {
  .p-fv .p-fv__text {
    font-size: clamp(20px, 20px + (24 - 20) * (100vw - 340px) / 428, 24px);
  }
}
.p-fv .p-fv__title {
  display: inline-flex;
  background: #fff;
  color: #1565c0;
  leading-trim: both;
  padding: 0.2em 0.5em;
  justify-content: center;
  text-edge: cap;
  font-size: clamp(32px, 32px + (40 - 32) * (100vw - 992px) / 928, 40px);
  font-weight: 900;
  line-height: 1;
  margin: 2.18vw 0 0 0;
  align-items: flex-end;
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    margin: 2em 0 0 0;
    font-size: clamp(18px, 18px + (32 - 18) * (100vw - 340px) / 428, 32px);
    white-space: nowrap;
  }
}
.p-fv--page .p-fv__title{
	margin: 1vw 0 0 0;
}

.p-fv .p-fv__title-em {
  color: #00478c;
  leading-trim: both;
  text-edge: cap;
  font-size: clamp(48px, 48px + (64 - 48) * (100vw - 992px) / 928, 64px);
  font-weight: 900;
  line-height: 1;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-em {
    font-size: clamp(26px, 26px + (48 - 26) * (100vw - 340px) / 428, 48px);
  }
}
.p-fv .p-fv__title-kicker {
  leading-trim: both;
  text-edge: cap;
  font-size: clamp(48px, 48px + (64 - 48) * (100vw - 992px) / 928, 64px);
  font-weight: 250;
  letter-spacing: min(3.2px, 0.1666666667vw);
  background: linear-gradient(180deg, #00c2da 0%, #004088 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-kicker {
    font-size: clamp(26px, 26px + (48 - 26) * (100vw - 340px) / 428, 48px);
    letter-spacing: clamp(1.2px, 1.2px + (2.4 - 1.2) * (100vw - 340px) / 428, 2.4px);
  }
}
.p-fv .p-fv__baloon {
  margin-top: 3.2vw;
  position: relative;
  height: 100%;
  display: inline-block;
  z-index: 1;
}
@media (width <= 768px) {
  .p-fv .p-fv__baloon {
    margin-top: 2.5em;
  }
}
.p-fv .p-fv__baloon p {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0 1em 0.15em 1em;
  height: 2.1em;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 992px) / 928, 32px);
  background: rgba(0, 194, 218, 0.8);
  font-weight: 400;
  transform: translate(6px, 6px);
  margin: 0;
  z-index: 0;
}
@media (width <= 768px) {
  .p-fv .p-fv__baloon p {
    font-size: clamp(18px, 18px + (24 - 18) * (100vw - 340px) / 428, 24px);
    height: auto;
    padding: 0.15em 1em 0.3em 1em;
  }
}
.p-fv .p-fv__baloon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  z-index: 1;
}
@media (width <= 768px) {
  .p-fv .p-fv__baloon::before {
    height: 102%;
  }
}
.p-fv .p-fv__baloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 49%;
  transform: translateX(-50%) skew(-45deg);
  height: 1.5em;
  width: 1.5em;
  border-right: 2px solid #fff;
  background-color: transparent;
  content: "";
}
@media (width <= 768px) {
  .p-fv .p-fv__baloon::after {
    top: 102%;
    left: 48%;
  }
}
.p-fv .p-fv__baloon .p-fv__baloon-bottom {
  position: absolute;
  width: 2em;
  height: 1px;
  bottom: #000;
  background: rgba(0, 194, 218, 0.95);
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 2;
}
@media (width <= 768px) {
  .p-fv .p-fv__baloon .p-fv__baloon-bottom {
    bottom: -2%;
  }
}
.p-fv .p-fv__ornaments {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.p-fv .p-fv__circle {
  width: clamp(160px, 160px + (280 - 160) * (100vw - 992px) / 928, 280px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
}
@media (width <= 768px) {
  .p-fv .p-fv__circle {
    width: clamp(100px, 100px + (160 - 100) * (100vw - 340px) / 428, 160px);
  }
  .p-fv .p-fv__circle::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    z-index: 1;
    pointer-events: none;
  }
}
.p-fv .p-fv__circle--1 {
  left: clamp(16px, 16px + (167 - 16) * (100vw - 992px) / 928, 167px);
  top: 10vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__circle--1 {
    left: clamp(-20px, -20px + (16 - -20) * (100vw - 768px) / 224, 16px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__circle--1 {
    top: auto;
    bottom: clamp(213px, 213px + (222 - 213) * (100vw - 340px) / 428, 222px);
  }
}
.p-fv .p-fv__circle--2 {
  right: clamp(94px, 94px + (312 - 94) * (100vw - 992px) / 928, 312px);
  top: 2.8vw;
  width: clamp(120px, 120px + (240 - 120) * (100vw - 992px) / 928, 240px);
}
@media (width <= 992px) {
  .p-fv .p-fv__circle--2 {
    right: clamp(8px, 8px + (94 - 8) * (100vw - 768px) / 224, 94px);
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__circle--2 {
    width: clamp(90px, 90px + (120 - 90) * (100vw - 340px) / 428, 120px);
    right: clamp(0px, 0px + (8 - 0) * (100vw - 340px) / 428, 8px);
    top: clamp(4px, 4px + (21 - 4) * (100vw - 340px) / 428, 21px);
  }
}
.p-fv .p-fv__circle--3 {
  transform: translateY(-50%);
  bottom: -33.7%;
  right: 3.8vw;
  width: clamp(120px, 120px + (240 - 120) * (100vw - 992px) / 928, 240px);
}
@media (width <= 768px) {
  .p-fv .p-fv__circle--3 {
    width: clamp(90px, 90px + (120 - 90) * (100vw - 340px) / 428, 120px);
    right: clamp(4px, 4px + (8 - 4) * (100vw - 340px) / 428, 8px);
    bottom: auto;
    top: clamp(490px, 490px + (495 - 490) * (100vw - 340px) / 428, 495px);
  }
}
.p-fv--page .p-fv__circle {
  width: clamp(120px, 120px + (240 - 120) * (100vw - 992px) / 928, 240px);
}
@media (width <= 768px) {
  .p-fv--page .p-fv__circle {
    width: clamp(80px, 80px + (120 - 80) * (100vw - 340px) / 428, 120px);
  }
}
.p-fv--page .p-fv__circle--1 {
  top: 1vw;
  left: clamp(16px, 16px + (110 - 16) * (100vw - 992px) / 928, 110px);
}
@media (width <= 768px) {
  .p-fv--page .p-fv__circle--1 {
    left: clamp(0px, 0px + (16 - 0) * (100vw - 340px) / 428, 16px);
    top: clamp(70px, 70px + (78 - 70) * (100vw - 340px) / 428, 78px);
  }
}
.p-fv--page .p-fv__circle--2 {
  top: -2.5vw;
  width: clamp(100px, 100px + (180 - 100) * (100vw - 992px) / 928, 180px);
  right: clamp(80px, 80px + (200 - 80) * (100vw - 992px) / 928, 200px);
}
@media (width <= 768px) {
  .p-fv--page .p-fv__circle--2 {
    width: clamp(80px, 80px + (100 - 80) * (100vw - 340px) / 428, 100px);
	  right: clamp(20px, 20px + (80 - 20) * (100vw - 340px) / 428, 80px);
  }
}
.p-fv--page .p-fv__circle--3 {
  width: clamp(100px, 100px + (180 - 100) * (100vw - 992px) / 928, 180px);
	top: clamp(140px, 140px + (320 - 140) * (100vw - 992px) / 928, 320px);
  right: clamp(0px, 0px + (80 - 0) * (100vw - 1080px) / 840, 80px);
}
@media (width <= 768px) {
  .p-fv--page .p-fv__circle--3 {
	  width: clamp(80px, 80px + (100 - 80) * (100vw - 340px) / 428, 100px);
    top: clamp(165px, 165px + (140 - 165) * (100vw - 340px) / 428, 140px);
  }
}
.p-fv .p-fv__badge {
  position: absolute;
  top: 0.8vw;
  right: 0.8vw;
  background: #000;
  color: #fff;
  padding: 0.25em 0.6em;
  line-height: 1;
  font-size: 0.8em;
}
@media (width <= 768px) {
  .p-fv .p-fv__badge {
    font-size: clamp(12px, 12px + (16 - 12) * (100vw - 340px) / 428, 16px);
  }
}

.p-page img{
	width:auto;
	max-width:100%;
	display:block;
}

.p-page img.aligncenter{
	margin:0 auto;
}

.article-title {
  align-items: center;
  color: #004088;
  font-size: 1.7em;
  padding: 0 0.25em 0.5em;
  margin-bottom: 1.7em;
  margin-top: 0;
  font-weight: 900;
  border-bottom: 1px solid #00c2da;
}
.page-child img {
  width: revert-layer;
}

.humbargar {
  position: fixed;
  display: none;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 24px;
}

@media (width <= 992px) {
  .humbargar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
  }
}

.humbargar span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 開いた状態のアニメーション */
.humbargar.active span:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
}
.humbargar.active span:nth-child(2) {
  opacity: 0;
}
.humbargar.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-15px);
}
#overlay {
  position: fixed;
  inset: 0; /* top, right, bottom, left = 0 */
  background: rgba(128, 128, 128, 0.5); /* 半透明グレー */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

#overlay.open {
  opacity: 1;
  visibility: visible;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* スマホの慣性スクロール */
}

.table-wrapper table {
  width: 100%;
  min-width: 600px; /* 必要に応じて調整 */
}
