@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: "Zen Old Mincho", serif;
  color: #222222;
  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;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
#overlay.active {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

.l-header {
  position: fixed;
  margin: 1.6rem auto 0 auto;
  transform: translateX(-50%);
  left: 50%;
  max-width: 95%;
  width: 100%;
  background: #fff;
  height: 8rem;
  border-radius: 4px;
  z-index: 99;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
}
@media (width <= 1200px) {
  .l-header {
    width: 98%;
  }
}
@media (width <= 992px) {
  .l-header {
    height: 6rem;
    max-width: 92.5%;
  }
}
.l-header .l-header__inner {
  padding: 0 3rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 98;
}
@media (width <= 992px) {
  .l-header .l-header__inner {
    justify-content: center;
  }
}
.l-header .l-header__logo {
  margin: 0 1.4rem;
  max-width: 16rem;
  height: auto;
}
@media (width <= 1200px) {
  .l-header .l-header__logo {
    margin: 0;
    max-width: clamp(140px, 140px + (160 - 140) * (100vw - 992px) / 208, 160px);
  }
}
@media (width <= 992px) {
  .l-header .l-header__logo {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 12.4rem;
  }
}
.l-header .l-header__content {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header .l-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5.8rem;
}
@media (width <= 1400px) {
  .l-header .l-header__nav {
    gap: clamp(24px, 24px + (58 - 24) * (100vw - 992px) / 408, 58px);
  }
}
@media (width <= 992px) {
  .l-header .l-header__nav {
    display: none;
  }
}
.l-header .l-header__nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
}
.l-header .l-header__nav li {
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 0 4.3rem 0 4.3rem;
}
@media (width <= 1400px) {
  .l-header .l-header__nav li {
    padding: 0 clamp(24px, 24px + (43 - 24) * (100vw - 992px) / 408, 43px) 0 clamp(24px, 24px + (43 - 24) * (100vw - 992px) / 408, 43px);
  }
}
.l-header .l-header__nav li a {
  font-weight: 500;
  padding-bottom: 0.8rem;
  position: relative;
}
.l-header .l-header__nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #2ea7e0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.l-header .l-header__nav li::before {
  content: "";
  position: absolute;
  right: -7%;
  transform: translateY(-50%);
  top: 35%;
  height: 125%;
  width: 1px;
  background: #171c61;
  rotate: -45deg;
}
.l-header .l-header__nav li:hover {
  color: #2ea7e0;
}
.l-header .l-header__nav li:hover a::after {
  transform: scaleX(1);
}
.l-header .l-header__nav li:first-child {
  padding-left: 0;
}
.l-header .l-header__nav li:last-child {
  padding-right: 0;
}
.l-header .l-header__nav li:last-child::before {
  display: none;
}
.l-header .l-header__btn {
  width: 18rem;
}
@media (width <= 1400px) {
  .l-header .l-header__btn {
    width: clamp(160px, 160px + (180 - 160) * (100vw - 992px) / 408, 180px);
  }
}
.l-header .l-header__hamburger {
  height: 20px;
  width: 20px;
  cursor: pointer;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
.l-header .l-header__hamburger .l-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.l-header .l-header__hamburger span {
  height: 2px;
  width: 100%;
  background: #171c61;
  transition: all 0.3s;
  position: absolute;
}
.l-header .l-header__hamburger span:nth-of-type(1) {
  top: 0;
}
.l-header .l-header__hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header .l-header__hamburger span:nth-of-type(3) {
  top: 100%;
  transform: translateY(-100%);
}
.l-header .l-header__hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-header .l-header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .l-header__hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-header__hamb-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 90;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
}
.l-header__hamb-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header__hamb-menu .l-header__hamb-nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.l-header__hamb-menu .l-header__hamb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-header__hamb-menu .l-header__hamb-nav ul li {
  margin: 2rem 0;
}
.l-header__hamb-menu .l-header__hamb-nav ul li a {
  display: block;
  font-weight: 500;
  color: #171c61;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.l-header__hamb-menu .l-header__hamb-nav .l-header__btn {
  margin-top: 3rem;
  width: 100%;
  max-width: 30rem;
}

.l-header:has(.l-header__hamburger.active) {
  filter: none;
  box-shadow: none;
}

.l-footer {
  padding: 4rem 0 0.8rem 0;
}
@media (width <= 768px) {
  .l-footer {
    padding: 2.4rem 0 0.8rem 0;
  }
}
.l-footer .l-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.l-footer .l-footer__logo {
  max-width: 28rem;
  margin: 0 auto;
}
@media (width <= 992px) {
  .l-footer .l-footer__logo {
    max-width: 24rem;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__logo {
    max-width: 20rem;
  }
}
.l-footer .l-footer__nav {
  margin-top: 4rem;
}
@media (width <= 992px) {
  .l-footer .l-footer__nav {
    margin-top: 2.4rem;
  }
}
.l-footer .l-footer__nav ul {
  padding: 0;
  justify-content: center;
  gap: 6.4rem;
  display: flex;
}
@media (width <= 992px) {
  .l-footer .l-footer__nav ul {
    gap: 4.8rem;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__nav ul {
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
  }
}
.l-footer .l-footer__nav li {
  color: #171c61;
  font-size: 1.4rem;
  font-weight: 400;
}
.l-footer .l-footer__link {
  max-width: 20rem;
  margin: 2.4rem auto 0 auto;
  display: block;
}
@media (width <= 992px) {
  .l-footer .l-footer__link {
    max-width: 16rem;
  }
}
.l-footer .l-footer__copy {
  margin-top: 2.4rem;
  color: #727272;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
}
@media (width <= 992px) {
  .l-footer .l-footer__copy {
    font-size: 1rem;
    margin-top: 1.6rem;
  }
}
@media (width <= 768px) {
  .l-footer .l-footer__copy {
    font-size: 0.9rem;
    margin-top: 1.2rem;
  }
}

.l-section {
  padding: 10rem 0;
}
@media (width <= 768px) {
  .l-section {
    padding: 6rem 0;
  }
}
.l-section--sm {
  padding: 4.8rem 0;
}
@media (width <= 992px) {
  .l-section--sm {
    padding: 3.2rem 0;
  }
}
.l-section--blog {
  padding: 6rem 0;
}
@media (width <= 768px) {
  .l-section--blog {
    padding: 3.2rem 0;
  }
}

.l-section__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.l-section__inner--sm {
  padding: 4.8rem 0;
}

.l-section__inner--lg {
  padding: 12rem 0;
}

.l-section__inner--xsm {
  max-width: 720px;
}

.l-section__inner--2col {
  display: flex;
  gap: 2.4rem;
}

.l-section__content {
  margin-top: 6rem;
}
@media (width <= 768px) {
  .l-section__content {
    margin-top: 4.8rem;
  }
}

/**
 * ------------------------------------------------
 * 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;
  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 {
  aspect-ratio: 1;
  flex-shrink: 0;
  padding: 2rem;
  border: 1px solid #171c61;
  background: #fff;
  box-shadow: 8px 8px 0 0 rgba(175, 175, 175, 0.25);
}

.c-card__tags {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (width <= 768px) {
  .c-card__tags {
    gap: 0.4rem;
  }
}

.c-card__title {
  margin: 1rem 0 0 0;
  font-size: 1.6rem;
  color: #171c61;
}
@media (width <= 768px) {
  .c-card__title {
    font-size: 1.4rem;
  }
}

.c-btn--tag.c-card__tag {
  padding: 0 2.4rem;
  height: 2.6rem;
}
@media (width <= 768px) {
  .c-btn--tag.c-card__tag {
    height: 2.4rem;
    padding: 0 1.6rem;
  }
}

.c-indent {
  padding-left:1em;
}

.js-mw-checkbox {
  margin: 0 auto;
}
.c-underline {
  text-decoration: underline;
}

.c-title {
  color: #171c61;
  font-family: "Cormorant Infant", serif;
  font-size: 4.2rem;
  font-weight: 500;
  margin: 0;
  padding-bottom: 0.25em;
  position: relative;
}
.c-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 3.2rem;
  background: #2ea7e0;
}
@media (width <= 992px) {
  .c-title {
    font-size: 3.6rem;
  }
}
@media (width <= 768px) {
  .c-title {
    font-size: 2.8rem;
  }
}

.c-subtitle {
  color: #171c61;
  font-size: 1.7rem;
  font-weight: 500;
}
@media (width <= 992px) {
  .c-subtitle {
    font-size: 1.5rem;
  }
}
@media (width <= 768px) {
  .c-subtitle {
    font-size: 1.4rem;
  }
}

.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;
  margin: 3.2rem 0;
  list-style: none;
}
.c-breadcrumb__list li {
  position: relative;
  font-size: 1.4rem;
  margin-right: 8px;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f105";
  margin-right: 8px;
}
.c-breadcrumb__list li a {
  color: #171c61;
  text-decoration: underline;
}

.c-more {
  margin-top: 3.2rem;
}

.c-numbox {
  width: 4rem;
  height: 4rem;
  aspect-ratio: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #2ea7e0 0 50%, #171c61 0 100%);
}
.c-numbox span {
  line-height: 1;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-numbox {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }
}

.c-form {
  max-width: 58rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 768px) {
  .c-form {
    gap: 1.6rem;
  }
}

.c-form__submit-btn {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
  height: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  cursor: pointer;
}

.c-form__item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (width <= 992px) {
  .c-form__item {
    gap: 1.2rem;
  }
}
@media (width <= 768px) {
  .c-form__item {
    gap: 0.8rem;
  }
}

.c-form__required {
  background: #d15252;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  line-height: 1;
  height: 2rem;
  padding: 0 0.8rem;
  align-items: center;
  justify-content: center;
  margin-right: 1.6rem;
}
@media (width <= 768px) {
  .c-form__required {
    margin-right: 1.2rem;
  }
}

.c-form__label-text {
  font-weight: 700;
  line-height: 1;
}

.c-form__input {
  border-radius: 4px;
  border: 1px solid #a0a1b1;
  background: #fff;
  padding: 1rem;
}
@media (width <= 768px) {
  .c-form__input {
    padding: 0.8rem;
  }
}

.c-btn.c-form__submit {
  width: 100%;
  font-weight: 900;
  max-width: 24rem;
  margin: 1.6rem auto 0 auto;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
}
@media (width <= 768px) {
  .c-btn.c-form__submit {
    font-size: 1.4rem;
  }
}

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

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

.c-btn--contact {
  background: #171c61;
  border: none;
  overflow: hidden;
  position: relative;
  line-height: 1;
  z-index: 0;
  height: 5rem;
  padding: 0 2.4rem;
  outline: none;
  color: #fff;
}
.c-btn--contact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: #2ea7e0;
  transform: skewX(45deg);
  transform-origin: left center;
  left: 50%;
  z-index: -1;
  transition: width 0.35s ease, transform 0.35s ease, left 0.35s ease;
	pointer-events: none; 
}
.c-btn--contact::after {
  content: "";
  width: 30px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: -180px;
  left: 0;
  opacity: 0;
pointer-events: none;
  transform: rotate(45deg);
}
.c-btn--contact:hover {
  opacity: 1;
}
.c-btn--contact:hover::before {
  width: 120%;
  left: 200%;
}
.c-btn--contact:hover::after {
  animation: shine 1s ease-in-out;
}
.c-btn--contact .c-btn__arrow {
  position: absolute;
  transform: translateY(-50%);
  top: 45%;
  right: 1.5rem;
}

.c-btn--pry {
  border-radius: 100vw;
  border: 1px solid #d9d9d9;
  background: #fff;
  height: 3.3rem;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  color: #171c61;
  gap: 1rem;
  line-height: 1;
}
@media (width <= 992px) {
  .c-btn--pry {
    gap: 0.8rem;
    padding: 0 1.2rem;
  }
}
@media (width <= 768px) {
  .c-btn--pry {
    gap: 0.4rem;
    padding: 0 0.8rem;
  }
  .c-btn--pry svg {
    width: 1rem;
  }
}
.c-btn--pry .c-btn__arrow path {
  transition: all 0.3s ease-in-out;
}
.c-btn--pry:hover {
  background: #171c61;
  color: #fff;
  opacity: 1;
}
.c-btn--pry:hover .c-btn__arrow path {
  stroke: #fff;
}

.c-btn--tag {
  padding: 0 1rem;
  line-height: 1;
  background: #2ea7e0;
  color: #fff;
  border-radius: 100vw;
  height: 3.6rem;
}
.c-btn--tag.is-active {
  background: #171c61;
}

@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  15% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  80% {
    transform: scale(50) rotate(45deg);
    opacity: 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-fv {
  height: 47.65625vw;
}
@media (width <= 768px) {
  .p-fv {
    height: 132.8vw;
  }
}
.p-fv .p-fv__content {
  display: none;
}
.p-fv .p-fv__media {
  width: 100%;
  z-index: -1;
  position: relative;
}
.p-fv .p-fv__media[data-aos=fade-right] {
  transform: translateX(-100px);
  opacity: 0;
}
.p-fv .p-fv__media[data-aos=fade-right].aos-animate {
  transform: translateX(0);
  opacity: 1;
}
.p-fv .p-fv__content {
  position: absolute;
  top: 12.8vw;
  left: 52%;
  width: 48%;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
@media (width <= 768px) {
  .p-fv .p-fv__content {
    width: 50%;
    left: 50%;
    top: 34.6666666667vw;
  }
}
.p-fv .p-fv__content__inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (width <= 768px) {
  .p-fv .p-fv__content__inner {
    padding: 0 1rem;
  }
}
.p-fv .p-fv__title {
  display: inline-block;
  font-size: min(44px, 2.2916666667vw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.88px;
  margin: 0;
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    font-size: 5.0666666667vw;
    letter-spacing: 0.4px;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title.pc {
    display: none;
  }
}
.p-fv .p-fv__title.sp {
  display: none;
}
@media (width <= 768px) {
  .p-fv .p-fv__title.sp {
    display: inline-block;
  }
}
.p-fv .p-fv__title-line {
  display: inline-block;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.1rem 0.1rem 0rem 1rem;
}
.p-fv .p-fv__title-line[data-aos=fade-right] {
  transform: translateX(-50px);
  opacity: 0;
}
.p-fv .p-fv__title-line[data-aos=fade-right].aos-animate {
  transform: translateX(0);
  opacity: 1;
}
.p-fv .p-fv__title-line + .p-fv__title-line {
  margin-top: 0.5em;
}
@media (width <= 768px) {
  .p-fv .p-fv__title-line + .p-fv__title-line {
    margin-top: 0.4em;
  }
}
.p-fv .p-fv__title-text {
  display: inline-block;
}
.p-fv .p-fv__title-text[data-aos=fade-right] {
  transform: translateX(-30px);
  opacity: 0;
}
.p-fv .p-fv__title-text[data-aos=fade-right].aos-animate {
  transform: translateX(0);
  opacity: 1;
}
.p-fv .p-fv__text {
  margin-top: 2.5rem;
  font-size: min(22px, 1.1458333333vw);
  font-weight: 500;
  margin: 2.5rem 0 0 0;
  letter-spacing: 1.1px;
}
@media (width <= 768px) {
  .p-fv .p-fv__text {
    font-size: 3.7333333333vw;
    margin-top: 4.8vw;
  }
}
.p-fv .p-fv__text[data-aos=fade-right] {
  transform: translateX(-30px);
  opacity: 0;
}
.p-fv .p-fv__text[data-aos=fade-right].aos-animate {
  transform: translateX(0);
  opacity: 1;
}
.p-fv .p-fv__arrow-wrap {
  position: absolute;
  z-index: 2;
  top: 41.1458333333vw;
  left: 46.875vw;
  display: flex;
  align-items: center;
  pointer-events: none;
  gap: 8px;
  animation: gentle-bounce 2.5s ease-in-out infinite;
}
@media (width <= 768px) {
  .p-fv .p-fv__arrow-wrap {
    display: none;
  }
}
.p-fv .p-fv__arrow-wrap span {
  writing-mode: vertical-rl;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-family: "Cormorant Infant", serif;
  font-size: min(13px, 0.6770833333vw);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2em;
}
.p-fv .p-fv__arrow {
  max-width: 2.0833333333vw;
  height: auto;
}
@keyframes gentle-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.p-fv__bg {
  background: url(../img/img-fv_bg.jpg) repeat-y center top/100% auto;
  z-index: 1;
  position: relative;
}

.p-news {
  background: rgba(255, 255, 255, 0.9);
}

@media (width <= 768px) {
  .p-news .l-section__inner--2col {
    flex-direction: column;
	  gap:0;
  }
}


.p-news .p-news__left {
  flex: 0 0 19%;
}
@media (width <= 768px) {
  .p-news .p-news__left {
    flex: 0 0 auto;
	  width:100%;
  }
}
.p-news .p-news__right {
  flex: 1;
  margin-top: 0;
}
.p-news .p-news__list {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
}
.p-news .p-news__item {
  padding: 3.2rem 0;
  border-bottom: 1px solid #d9d9d9;
}
.p-news .p-news__item:first-child {
  padding-top: 0.8rem;
}
@media (width <= 768px) {
  .p-news .p-news__item:first-child {
    padding-top: 0;
  }
}
@media (width <= 768px) {
  .p-news .p-news__item {
    padding: 1.6rem 0;
  }
}
.p-news .p-news__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.p-news .p-news__item a {
  display: flex;
  gap: 1.6rem;
}
@media (width <= 768px) {
  .p-news .p-news__item a {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
}
.p-news .p-news__time {
  flex: 0 0 15%;
  margin: 0;
  color: #222;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-news .p-news__time {
    flex: 0 0 100%;
    font-size: 12px;
  }
}
.p-news .p-news__title {
  flex: 1;
  color: #171c61;
  font-weight: 500;
  margin: 0;
}
@media (width <= 768px) {
  .p-news .p-news__title {
    flex: auto;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.p-news .p-news__btn {
  max-width: 9.4rem;
  width: 100%;
}
@media (width <= 992px) {
  .p-news .p-news__btn {
    margin-top: 2.4rem;
  }
}

@media (width <= 768px) {
  .p-news .p-news__btn {
    margin-top: 3.2rem;
	  margin-left:auto;
  }
}

.p-message {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 80vh;
  z-index: 2;
}
.p-message .p-message__bg {
  position: absolute;
  z-index: -1;
  display: flex;
  width: 100%;
  height: 100%;
}
@media (width <= 992px) {
  .p-message .p-message__bg {
    flex-direction: column;
  }
}
.p-message .p-message__bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.p-message .p-message__bg-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-message .p-message__bg-right {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-message .p-message__bg-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-message .p-message__inner {
  display: flex;
  width: 100%;
  min-height: 100%;
  align-items: stretch;
}
@media (width <= 992px) {
  .p-message .p-message__inner {
    flex-direction: column;
    align-items: normal;
  }
}
.p-message .p-message__left {
  width: 58%;
  padding: 12rem 0 12rem 0;
  padding-left: max((100vw - 1120px) / 2, 0px);
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (width <= 1140px) {
  .p-message .p-message__left {
    padding-left: 2rem;
  }
}
@media (width <= 992px) {
  .p-message .p-message__left {
    width: 100%;
    height: clamp(316px, 316px + (680 - 316) * (100vw - 375px) / 617, 680px);
    padding: 5.6rem 2rem;
  }
}
.p-message .c-title {
  color: #fff;
}
.p-message .c-title::after {
  background: #fff;
}
.p-message .c-subtitle {
  color: #fff;
}
.p-message .p-message__img {
  position: absolute;
  width: clamp(295px, 295px + (560 - 295) * (100vw - 992px) / 508, 560px);
  bottom: 5.2rem;
  right: -4.8rem;
}
@media (width <= 1200px) {
  .p-message .p-message__img {
    right: -2.4rem;
  }
}
@media (width <= 992px) {
  .p-message .p-message__img {
    position: absolute;
    bottom: -4.5rem;
    width: 85.3333333333vw;
    min-width: 32rem;
  }
}
.p-message .p-message__right {
  margin-top: 0;
  position: relative;
  padding: 12rem 0 12rem 9.6rem;
  padding-right: max((100vw - 1120px) / 2, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (width <= 1200px) {
  .p-message .p-message__right {
    padding-left: 4.8rem;
  }
}
@media (width <= 1140px) {
  .p-message .p-message__right {
    padding-right: 2rem;
  }
}
@media (width <= 992px) {
  .p-message .p-message__right {
    margin: 0;
    padding: 8rem 2rem 5rem 2rem;
  }
}
.p-message .p-message__desc {
  margin: 0;
  line-height: 1.8;
  font-weight: 500;
}
.p-message .p-message__signature {
  margin-top: 6rem;
  text-align: right;
  font-weight: 700;
  line-height: 1.8;
}

.p-message .p-message__signature span{
  margin-left: .5em;
}

.p-service {
  overflow: hidden;
  position: relative;
}
.p-service .l-section__content {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media (width <= 768px) {
  .p-service .l-section__content {
    gap: 6.4rem;
  }
}
.p-service .p-service__block {
  gap: clamp(2.4rem, 4vw, 8rem);
}
@media (width <= 992px) {
  .p-service .p-service__block {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.p-service .p-service__block:nth-child(even) {
  flex-direction: row-reverse;
}
@media (width <= 992px) {
  .p-service .p-service__block:nth-child(even) {
    flex-direction: column;
  }
}
.p-service .p-service__block-img {
  flex: 0 0 calc(46% + max(0px, (100vw - 1120px) / 2));
  margin-left: min(0px, (1120px - 100vw) / 2 - 20px);
  position: relative;
  background: linear-gradient(to bottom, transparent 0 16px, #ededed 16px 100%);
  box-shadow: 16px 16px 0 0 #ededed;
}
@media (width <= 768px) {
  .p-service .p-service__block-img {
    box-shadow: 8px 8px 0 0 #ededed;
  }
}
.p-service .p-service__block-img img {
  display: block;
  width: 100%;
  height: 34rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: none;
  transition: box-shadow 1.2s ease;
}
@media (width <= 992px) {
  .p-service .p-service__block-img img {
    height: auto;
  }
}
@media (width <= 768px) {
  .p-service .p-service__block-img img {
    height: auto;
  }
}
.p-service .p-service__block:nth-child(even) .p-service__block-img {
  flex-basis: calc(46% + max(0px, (100vw - 1120px) / 2) - 20px);
  margin-left: 0;
  margin-right: min(0px, (1120px - 100vw) / 2);
  box-shadow: -16px 16px 0 0 #ededed;
}
@media (width <= 992px) {
  .p-service .p-service__block:nth-child(even) .p-service__block-img {
    box-shadow: 16px 16px 0 0 #ededed;
  }
}
@media (width <= 768px) {
  .p-service .p-service__block:nth-child(even) .p-service__block-img {
    box-shadow: 8px 8px 0 0 #ededed;
  }
}
.p-service .p-service__block-content {
  flex: 1;
  flex-shrink: 0;
}
.p-service .p-service__block-head {
  margin-top: 2.4rem;
}
@media (width <= 992px) {
  .p-service .p-service__block-head {
    margin-top: 1.6rem;
  }
}
.p-service .p-sevice__block-title {
  margin: 0;
  color: #171c61;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.9px;
  padding-bottom: 2.4rem;
  position: relative;
}
@media (width <= 992px) {
  .p-service .p-sevice__block-title {
    font-size: 2.8rem;
    line-height: 1.3;
    padding-bottom: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-service .p-sevice__block-title {
    font-size: 2.4rem;
    line-height: 1.3;
    padding-bottom: 1.2rem;
  }
}
.p-service .p-sevice__block-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2ea7e0;
}
.p-service .p-service__block-subtitle {
  color: #8e90a6;
  font-family: "Cormorant Infant", serif;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  font-weight: 400;
  margin: 0.4rem 0 0 0;
}
@media (width <= 992px) {
  .p-service .p-service__block-subtitle {
    font-size: 1.8rem;
  }
}
@media (width <= 768px) {
  .p-service .p-service__block-subtitle {
    font-size: 1.6rem;
  }
}
.p-service .p-service__block-desc {
  margin-top: 3.2rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width <= 992px) {
  .p-service .p-service__block-desc {
    margin-top: 2.4rem;
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .p-service .p-service__block-desc {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-service .p-service__block-logo {
  max-width: 24.5rem;
  margin-top: 1.6rem;
}
@media (width <= 768px) {
  .p-service .p-service__block-logo {
    max-width: 20rem;
  }
}

.p-case {
  background: url(../img/img-case-bg.jpg) no-repeat center center/cover;
}
.p-case .p-case__switch {
  text-align: center;
  margin-bottom: 4.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 6.2rem;
}
@media (width <= 768px) {
  .p-case .p-case__switch {
    margin-top: 3.2rem;
    gap: 0.8rem;
    flex-direction: column;
  }
}
.p-case .c-btn--tag {
  width: 18rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-case .c-btn--tag.c-card__tag {
  width: auto;
}
.p-case .c-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-case .c-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.p-case .p-case__slide-wrap {
  max-width: 180rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(48px, 48px + (80 - 48) * (100vw - 1480px) / 440, 80px);
  position: relative;
}
@media (width <= 768px) {
  .p-case .p-case__slide-wrap {
    padding: 0 clamp(40px, 40px + (48 - 40) * (100vw - 768px) / 712, 48px);
  }
}
.p-case .l-section__content {
  margin-top: 3.2rem;
}
.p-case .p-case__slider.swiper {
  padding: 1rem 0rem;
  max-width: 180rem;
}
.p-case .swiper-button-next,
.p-case .swiper-button-prev {
  width: clamp(40px, 40px + (60 - 40) * (100vw - 1480px) / 440, 60px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
}
@media (width <= 768px) {
  .p-case .swiper-button-next,
  .p-case .swiper-button-prev {
    width: clamp(30px, 30px + (40 - 30) * (100vw - 768px) / 712, 40px);
  }
}
.p-case .swiper-button-next::after,
.p-case .swiper-button-prev::after {
  display: none;
}
.p-case .swiper-button-prev {
  left: 2px;
  top: 55%;
}
.p-case .swiper-button-next {
  right: 2px;
}

.p-about .p-about__item {
  display: flex;
  gap: 1.6rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid #d9d9d9;
}
@media (width <= 768px) {
  .p-about .p-about__item {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.6rem 0;
  }
}
.p-about .p-about__item:first-child {
  border-top: 1px solid #d9d9d9;
}
.p-about .p-about__item dd,
.p-about .p-about__item dt {
  margin: 0;
}
.p-about .p-about__item dt {
  flex: 0 0 24rem;
  text-align: center;
}
@media (width <= 768px) {
  .p-about .p-about__item dt {
    flex: none;
    text-align: left;
    font-weight: 500;
  }
}
.p-about .p-about__item dd {
  flex: 1;
}
@media (width <= 768px) {
  .p-about .p-about__item dd {
    flex: none;
    font-size: 1.5rem;
  }
}

.p-contact {
  background: url(../img/img-contact-bg.jpg) no-repeat center center/cover;
}
.p-contact .p-contact__headline {
  text-align: center;
}
.p-contact .c-title {
  color: #fff;
}
.p-contact .c-title::after {
  background: #fff;
  transform: translateX(-50%);
  left: 50%;
}
.p-contact .c-subtitle {
  color: #fff;
}
.p-contact .p-contact__box {
  max-width: 80rem;
  margin: 0 auto;
  padding: 8.4rem 2rem;
  background: #fff;
}
@media (width <= 768px) {
  .p-contact .p-contact__box {
    padding: 4.8rem 1.6rem;
  }
}

.p-thanks {
  padding: 64px 0;
}

.c-message {
  max-width: 720px;
  margin: 0 auto;
  padding: 3.2rem 2.4rem;
  text-align: center;
}

.c-message--success {
  border-color: #bbf7d0;
}

.c-message__title {
  margin: 0 0 1.6rem;
  font-size: 2rem;
  line-height: 1.4;
}

.c-message__text {
  margin: 0 0 2.4rem;
  font-size: 1.6rem;
}
@media (width <= 768px) {
  .c-message__text {
    font-size: 1.4rem;
  }
}

.c-message__link{
  text-decoration: underline;
}

.p-page {
  padding-top: 8rem;
}
@media (width <= 768px) {
  .p-page {
    padding-top: 6rem;
  }
}
.p-page .p-page__title-wrap {
  padding: 0;
}
.p-page .p-page__title {
  text-align: center;
  margin: 0;
  color: #171c61;
  padding: 3rem 0 5rem 0;
  border-bottom: 1px solid #2ea7e0;
}
@media (width <= 768px) {
  .p-page .p-page__title {
    font-size: 2.4rem;
    padding: 2rem 0 3rem 0;
  }
}

.p-blog .p-blog__posts {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin-bottom: 4rem;
}
.p-blog .p-blog__post-meta {
  text-align: right;
  font-size: 1.4rem;
  color: #666;
}
.p-blog .p-blog__post-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
}
.p-blog .p-blog__post-title {
  padding: 1rem 2rem;
  border-radius: 1rem;
  background-color: #a6def5;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.p-blog .p-blog__post-thumbnail {
  width: 100%;
  height: auto;
}
.p-blog .p-blog__post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.p-blog .p-blog__post-content {
  width: 90%;
  margin: 2.4rem auto 1.6rem auto;
}
@media (width <= 768px) {
.p-blog .p-blog__post-content {
  width: 100%;
}	
}

.p-blog .p-blog__post-content h2 {
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px #2ea7e0;
  font-size: 2.4rem;
	margin:1.2em 0 .8em 0;
}
@media (width <= 768px) {
  .p-blog .p-blog__post-content h2 {
    font-size: 2rem;
  }
}
.p-blog .p-blog__post-content h3 {
  border-bottom: solid 1px #2ea7e0;
}
.p-blog .p-blog__post-content h4 {
  font-weight: 700;
  color: #171c61;
}
.p-blog .p-blog__post-content ul {
  list-style: none;
  padding: 0 1.2em;
}
@media (width <= 768px) {
  .p-blog .p-blog__post-content ul {
    padding: 0;
  }
}
.p-blog .p-blog__post-content ul li {
  position: relative;
}
.p-blog .p-blog__post-content ul li::before {
  content: "・";
  margin-right: 0.25em;
}
@media (width <= 768px) {
  .p-blog .p-blog__post-content ol {
    padding: 0 2rem;
  }
}

.p-blog .p-blog__post-content .wp-block-quote{
  margin:0;
  padding:1rem 2rem;
}

.p-blog .p-blog__post-content a {
  color: #2ea7e0;
  text-decoration: underline;
}
.p-blog .pagination {
  margin-top: 4rem;
  text-align: center;
}
.p-blog .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.p-blog .pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}
.p-blog .pagination .page-numbers:hover {
  background-color: #2ea7e0;
  color: #fff;
}
.p-blog .pagination .page-numbers.current {
  background-color: #2ea7e0;
  color: #fff;
}

.p-single .p-single__title {
  font-size: 3.2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5em;
	margin-bottom:4.8rem;
}
.p-single .p-single__title::after {
  content: "";
  width: 5rem;
  height: 2px;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  background-color: #2ea7e0;
}
@media (width <= 768px) {
  .p-single .p-single__title {
    font-size: 2.6rem;
  }
  .p-single .p-single__title::after {
    content: "";
    width: 3.2rem;
  }
}
@media (width <= 400px) {
  .p-single .p-single__title {
    font-size: 2.4rem;
	  margin-bottom:4rem;
  }
}

.p-single .p-single__navigation {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #e0e0e0;
}
@media (width <= 768px) {
  .p-single .p-single__navigation {
    margin-top: 4rem;
    padding-top: 2rem;
  }
}
.p-single .p-single__navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .p-single .p-single__navigation .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
}
.p-single .p-single__navigation .nav-previous a,
.p-single .p-single__navigation .nav-next a {
  display: inline-block;
  text-decoration: none;
  color: #222222;
  transition: color 0.3s ease;
}
.p-single .p-single__navigation .nav-previous a:hover,
.p-single .p-single__navigation .nav-next a:hover {
  color: #2ea7e0;
}
.p-single .p-single__navigation .nav-previous .nav-subtitle,
.p-single .p-single__navigation .nav-next .nav-subtitle {
  display: block;
  font-size: 1.4rem;
  color: #171c61;
  margin-bottom: 0.5rem;
}
.p-single .p-single__navigation .nav-previous .nav-title,
.p-single .p-single__navigation .nav-next .nav-title {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (width <= 400px) {
  .p-single .p-single__navigation .nav-previous .nav-title,
  .p-single .p-single__navigation .nav-next .nav-title {
    font-size: 1.3rem;
  }
}
.p-single .p-single__navigation .nav-previous {
  text-align: left;
}
.p-single .p-single__navigation .nav-previous .nav-subtitle::before {
  content: "\f104";
  margin-right: 0.5em;
  font-family: "FontAwesome";
}
.p-single .p-single__navigation .nav-next {
  text-align: right;
}
@media (width <= 768px) {
  .p-single .p-single__navigation .nav-next {
    text-align: left;
  }
}
.p-single .p-single__navigation .nav-next .nav-subtitle::after {
  content: "\f105";
  margin-left: 0.5em;
  font-family: "FontAwesome";
}

.p-err .p-err__inner {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-err .p-err__link {
  text-decoration: underline;
  color: #2ea7e0;
}/*# sourceMappingURL=style.css.map */