@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: #3F3F3F;
  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;
  }
}

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

.xxl-n {
  display: block;
}
@media (width <= 1400px) {
  .xxl-n {
    display: none;
  }
  .xxl-n.sp {
    display: block;
  }
}

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

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

.no-scroll {
  overflow: hidden;
}

.l-header {
  width: 100%;
  height: 72px;
}
@media (width <= 992px) {
  .l-header {
    height: 56px;
  }
}
.l-header .l-header__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 24px;
  position: relative;
  z-index: 100;
}
@media (width <= 1200px) {
  .l-header .l-header__inner {
    max-width: 100%;
  }
}
@media (width <= 768px) {
  .l-header .l-header__inner {
    padding: 16px;
    gap: clamp(8px, 8px + (100vw - 320px) * 0.1454545455, 16px);
  }
}
.l-header .l-header__logo {
  max-width: 234px;
  width: 100%;
  height: auto;
}
@media (width <= 1400px) {
  .l-header .l-header__logo {
    max-width: 200px;
  }
}
@media (width <= 768px) {
  .l-header .l-header__logo {
    max-width: clamp(132px, 132px + (100vw - 300px) * 0.5066666667, 170px);
  }
}
.l-header .l-header__logo a {
  display: flex;
  align-items: center;
}
.l-header .l-header__content {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (width <= 1400px) {
  .l-header .l-header__content {
    gap: clamp(16px, 1.7142857143vw, 24px);
  }
}
@media (width <= 768px) {
  .l-header .l-header__content {
    gap: clamp(4px, 4px + (100vw - 300px) * 0.16, 16px);
  }
}
.l-header .l-header__nav {
  height: 100%;
}
.l-header .l-header__nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (width <= 1400px) {
  .l-header .l-header__nav ul {
    gap: clamp(16px, 1.7142857143vw, 24px);
  }
}
@media (width <= 768px) {
  .l-header .l-header__nav ul {
    gap: clamp(4px, 4px + (100vw - 300px) * 0.16, 16px);
  }
}
.l-header .l-header__nav li {
  position: relative;
  transition: all 0.1s;
}
.l-header .l-header__nav li a {
  color: #0b524a;
  display: block;
  height: 100%;
  font-weight: 700;
  font-size: 17px;
}
.l-header .l-header__nav li::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 1.5em;
  top: -10%;
  left: 0%;
  transform: translateX(-50%);
  height: auto;
  aspect-ratio: 1;
  background: transparent;
  border-radius: 50%;
  transition: all 0.5s;
}
.l-header .l-header__nav li:hover {
  color: #c44d0e;
  opacity: 1;
}
.l-header .l-header__nav li:hover::after {
  background: #ffe7c6;
}
.l-header .l-header__nav li:hover a {
  opacity: 1;
  color: #c44d0e;
  text-decoration: none;
}
@media (width <= 1400px) {
  .l-header .l-header__nav li {
    font-size: 14px;
  }
}
.l-header .l-header__nav span {
  color: #ffa38c;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  display: block;
}
@media (width <= 1400px) {
  .l-header .l-header__nav span {
    font-size: 12px;
  }
}
.l-header .l-header__btn-wrap {
  max-width: 138px;
}
.l-header .l-header__btn-wrap .l-header__btn {
  white-space: nowrap;
}
@media (width <= 1200px) {
  .l-header .l-header__btn-wrap .l-header__btn {
    padding: 0 clamp(16px, 1.7142857143vw, 24px);
  }
}
@media (width <= 992px) {
  .l-header .l-header__btn-wrap .l-header__btn {
    padding: 0 30px;
  }
}
@media (width <= 768px) {
  .l-header .l-header__btn-wrap .l-header__btn {
    padding: 0 10px;
  }
}
.l-header .l-header__hamburger {
  display: none;
}
@media (width <= 992px) {
  .l-header .l-header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.l-header .l-header__hamburger-text {
  font-size: 12px;
  margin: 0;
  font-weight: 800;
}
.l-header .l-header__toggle {
  cursor: pointer;
}
.l-header .l-header__toggle span {
  border-radius: 5px;
  background: #0B524A;
  height: 2px;
  width: 24px;
  display: block;
  margin: 6px 0;
  transition: all 0.3s;
}
.l-header .l-header__toggle span:first-child {
  margin-top: 2px;
}
.l-header .l-header__toggle span:last-child {
  margin-bottom: 6px;
}
.l-header .l-header__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header .l-header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.l-header .l-header__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.l-header .l-header__toggle-menu {
  position: fixed;
  background: #fff;
  height: 100%;
  width: 100%;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow: auto;
  top: 0;
}
.l-header .l-header__toggle-menu.active {
  transform: translateY(0);
  top: 55px;
}
.l-header .l-header__toggle-inner {
  padding: 20px 50px;
}
.l-header .l-header__toggle-menu .l-header__nav {
  width: 100%;
}
.l-header .l-header__toggle-menu ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  align-items: flex-start;
}
.l-header .l-header__toggle-menu li {
  padding: 0 0 16px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #CBCCCC;
  font-size: 17px;
}
.l-header .l-header__toggle-menu li span {
  font-size: 14px;
  line-height: 1;
}

.l-footer {
  background: #0B524A;
  padding-top: 60px;
}
.l-footer a {
  color: #fff;
}
.l-footer a:hover {
  color: inherit;
  opacity: 0.8;
}
.l-footer .l-footer__top {
  justify-content: space-between;
  gap: 16px;
}
.l-footer .l-footer__logo {
  width: 216px;
  height: auto;
  margin-bottom: 16px;
}
@media (width <= 768px) {
  .l-footer .l-footer__logo {
    margin-bottom: 8px;
  }
}
.l-footer .l-footer__info {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 19px;
  font-family: "Reddit Sans", sans-serif;
  gap: 1px;
  margin-bottom: 8px;
}
@media (width <= 768px) {
  .l-footer .l-footer__info {
    font-size: 18px;
    gap: 0;
    margin-bottom: 2px;
  }
}
.l-footer .p-footer__company {
  margin: 0;
}
.l-footer .p-footer__right {
  justify-content: space-between;
  align-items: flex-end;
  height: 200px;
  width: 100%;
  flex: 1;
}
@media (width <= 1200px) {
  .l-footer .p-footer__right {
    flex: auto;
  }
}
@media (width <= 992px) {
  .l-footer .p-footer__right {
    flex: auto;
  }
}
@media (width <= 768px) {
  .l-footer .p-footer__right {
    height: auto;
    width: 100%;
    flex-direction: row;
  }
}
.l-footer .p-footer__nav {
  color: #fff;
}
@media (width <= 768px) {
  .l-footer .p-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.l-footer .p-footer__nav li {
  font-weight: 600;
  margin-right: 2.5em;
}
@media (width <= 992px) {
  .l-footer .p-footer__nav li {
    margin-right: 1.5em;
  }
}
.l-footer .p-footer__nav li:last-child {
  margin-right: 0;
}
.l-footer .p-footer__policy {
  color: #fff;
  margin-top: auto;
}
@media (width <= 768px) {
  .l-footer .p-footer__policy {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    gap: 8px;
    flex-direction: column;
  }
}
.l-footer .p-footer__policy li {
  margin-right: 2.5em;
  font-weight: 400;
}
.l-footer .p-footer__policy li:last-child {
  margin-right: 0;
}
.l-footer .p-footer__bottom {
  padding: 8px 0;
}
.l-footer .p-footer__copyright {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 16px 0 8px;
}
@media (width <= 768px) {
  .l-footer .p-footer__copyright {
    margin: 32px 0 6px;
    font-size: 12px;
  }
}

.l-main {
  margin: 0;
  padding: 0;
}

.l-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner--sm {
  max-width: 1240px;
}

.l-section {
  padding: 100px 0;
}
@media (width <= 768px) {
  .l-section {
    padding: 60px 0;
  }
}

main {
  overflow: hidden;
}

/**
 * ------------------------------------------------
 * 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);
  }
}
/* 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%);
  }
}
/* 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;
}

.c-flex--col {
  flex-direction: column;
}

/* 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 {
  border-radius: 20px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.c-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.c-card__text {
  font-size: 19px;
  margin: 0;
  line-height: 1.6;
}
@media (width <= 768px) {
  .c-card__text {
    font-size: 17px;
  }
}

.c-card__bottom {
  display: flex;
  gap: 16px;
  align-items: center;
}

.c-card__avatar {
  width: 48px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.c-card__name {
  font-size: 17px;
  font-weight: 600;
}

.c-title {
  color: #E35531;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-left: 0.5em;
}
@media (width <= 992px) {
  .c-title {
    font-size: 36px;
  }
}
@media (width <= 768px) {
  .c-title {
    font-size: 24px;
  }
}
.c-title::after {
  content: "";
  width: 2.7em;
  height: auto;
  aspect-ratio: 1;
  background: #ffe7c6;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 2%;
  z-index: -1;
  border-radius: 50%;
}
@media (width <= 768px) {
  .c-title::after {
    width: 2.1em;
    top: 46%;
    left: 3%;
  }
}

.c-head-label {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
@media (width <= 768px) {
  .c-head-label {
    max-width: 300px;
    width: 100%;
  }
}

.c-head-label__text {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 8%;
  width: 100%;
  z-index: 1;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1.9px;
}
@media (width <= 768px) {
  .c-head-label__text {
    font-size: 21px;
    top: 22%;
  }
}

.c-text {
  line-height: 1.8;
  font-size: 20px;
}
@media (width <= 768px) {
  .c-text {
    font-size: 18px;
    line-height: 1.6;
  }
}

.c-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #0B524A;
}

.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-balloon {
  font-family: "Reddit Sans", sans-serif;
  width: 82px;
  height: 53px;
  background-color: #F96844;
  color: #fff;
  -webkit-clip-path: path("M0 48.1695L13.1884 36.9482C7.42645 27.0224 10.2914 15.0735 21.5351 7.22983C35.9319 -2.81432 58.6193 -2.33518 72.2158 8.30641C85.8123 18.948 85.1561 35.7178 70.7594 45.7679C56.3626 55.8179 33.6671 55.3329 20.0786 44.6913C19.6705 44.3719 19.2704 44.0406 18.8862 43.7094L0 48.1695Z");
          clip-path: path("M0 48.1695L13.1884 36.9482C7.42645 27.0224 10.2914 15.0735 21.5351 7.22983C35.9319 -2.81432 58.6193 -2.33518 72.2158 8.30641C85.8123 18.948 85.1561 35.7178 70.7594 45.7679C56.3626 55.8179 33.6671 55.3329 20.0786 44.6913C19.6705 44.3719 19.2704 44.0406 18.8862 43.7094L0 48.1695Z");
}

.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;
  padding: 0;
}

.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-chk {
  list-style: none;
  padding: 0;
}

.c-list-chk li {
  padding-left: 2em;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.8em;
}
@media (width <= 768px) {
  .c-list-chk li {
    padding-left: 1.8em;
    font-size: 20px;
    margin-bottom: 0.4em;
  }
}
.c-list-chk li::after {
  content: "";
  position: absolute;
  background: url(../img/icon-chk.svg) no-repeat center center/cover;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 1.2em;
  height: 1.2em;
}
@media (width <= 768px) {
  .c-list-chk li::after {
    transform: translateY(0);
    top: 0.4em;
  }
}

.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;
}
.c-breadcrumb__list li {
  position: relative;
  margin-right: 8px;
}
.c-breadcrumb__list li + li::before {
  font-family: "FontAwesome";
  content: "\f054";
  margin-right: 8px;
}

.c-ribbon {
  background: #f96844;
  padding: 15px 20px;
  position: relative;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (width <= 768px) {
  .c-ribbon {
    font-size: 20px;
    padding: 8px 20px;
  }
}
.c-ribbon::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 0;
  border: none;
  border-top: solid 10px transparent;
  border-left: solid 32px #ffc7b9;
}
.c-ribbon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 32px #ffc7b9;
}

.c-faq {
  border-bottom: 1px solid #E3E3E3;
}
.c-faq:first-child {
  border-top: 1px solid #E3E3E3;
}
.c-faq .c-faq__q {
  padding: 1em 0;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .c-faq .c-faq__q {
    align-items: flex-start;
  }
}
.c-faq .c-faq__q .c-faq__icon {
  background: #FF7654;
  flex-basis: 48px;
  height: 48px;
  margin-right: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-family: "Reddit Sans", sans-serif;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .c-faq .c-faq__q .c-faq__icon {
    width: 36px;
    height: 36px;
    aspect-ratio: 1;
    font-size: 20px;
    flex-basis: 36px;
    margin-right: 0.8em;
  }
}
.c-faq .c-faq__q .c-faq__text {
  font-size: 20px;
  flex-grow: 1;
}
@media (width <= 768px) {
  .c-faq .c-faq__q .c-faq__text {
    font-size: 18px;
  }
}
.c-faq .c-faq__q .c-faq__toggle {
  margin-left: 1em;
  margin-right: 1em;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .c-faq .c-faq__q .c-faq__toggle {
    width: 14px;
  }
}
.c-faq.is-open .c-faq__toggle img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.c-faq .c-faq__a-warp {
  display: none;
  background-color: #fff;
}
.c-faq .c-faq__a-warp .c-faq__a {
  background: #FFF9F1;
  display: flex;
}
.c-faq .c-faq__a-warp .c-faq__a .c-faq__icon {
  background: #D2533C;
  flex-basis: 48px;
  height: 48px;
  font-family: "Reddit Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
@media (width <= 768px) {
  .c-faq .c-faq__a-warp .c-faq__a .c-faq__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 20px;
  }
}
.c-faq .c-faq__a-warp .c-faq__a .c-faq__text {
  padding: 1em 2em 1em 1em;
  line-height: 1.8;
  font-size: 18px;
  flex-grow: 1;
}
@media (width <= 768px) {
  .c-faq .c-faq__a-warp .c-faq__a .c-faq__text {
    font-size: 17px;
  }
}
.c-faq.is-open .c-faq__toggle i {
  transform: rotate(180deg);
}

.c-btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

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

.c-btn--pry {
  display: inline-flex;
  padding: 0px 8px;
  height: 72px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #ff7654;
  border-radius: 40px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-btn--pry {
    height: 60px;
  }
}

.c-btn--sub {
  display: inline-flex;
  padding: 0 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  leading-trim: both;
  text-edge: cap;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  background: #fff;
  border-radius: 100vw;
  height: 72px;
  gap: 10px;
  color: #0b524a;
  font-weight: 700;
}

.c-btn--pry,
.c-btn--sub {
  transition: all 0.3s ease;
}
.c-btn--pry:hover,
.c-btn--sub:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.c-btn--pry:active,
.c-btn--sub:active {
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.c-btn--signin {
  border-radius: 20px;
  background: #0B524A;
  display: flex;
  height: 40px;
  padding: 0 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #0B524A;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.c-btn--signin:hover {
  background: #fff;
  color: #0B524A;
}
@media (width <= 1200px) {
  .c-btn--signin {
    font-size: 14px;
  }
}
@media (width <= 768px) {
  .c-btn--signin {
    font-size: 12px;
    padding: 0 20px;
    height: 24px;
  }
}

.c-btn--border {
  border-radius: 40px;
  border: 2px solid #0b524a;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  color: #0B524A;
  font-size: 18px;
  font-weight: 700;
}

.c-btn--border:hover {
  background: #0b524a;
  color: #fff;
  opacity: 1;
}

.c-btn--clear {
  border-radius: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
}
.c-btn--clear:hover {
  background: #fff;
  color: #3F3F3F;
  opacity: 1;
}

.c-btn--red {
  background: #BB1B1B;
  color: #fff;
  border-color: #BB1B1B;
}

.c-btn--red:hover {
  background: #fff;
  color: #BB1B1B;
  opacity: 1;
}

/*==================================
  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 .p-fv__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
}
@media (width <= 992px) {
  .p-fv .p-fv__inner {
    grid-template-columns: 1fr;
  }
}
.p-fv .p-fv__left,
.p-fv .p-fv__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
@media (width <= 992px) {
  .p-fv .p-fv__left,
  .p-fv .p-fv__right {
    display: none;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__left,
  .p-fv .p-fv__right {
    display: none;
  }
}
.p-fv .p-fv__img {
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  width: 22.3958333333vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__img {
    width: 100%;
  }
}
.p-fv .p-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width <= 768px) {
  .p-fv .p-fv__img img {
    height: auto;
  }
}
.p-fv .p-fv__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-fv .p-fv__content {
  position: absolute;
  top: 0;
  padding-top: 5.9895833333vw;
  padding-bottom: 1.0416666667vw;
}
@media (width <= 768px) {
  .p-fv .p-fv__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-fv .p-fv__title {
  margin: 0;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
  font-size: 2.0833333333vw;
  font-weight: 700;
  text-align: center;
}
@media (width <= 992px) {
  .p-fv .p-fv__title {
    font-size: 40px;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__title {
    font-size: 26px;
    text-align: left;
    padding: 0 15px;
    margin-bottom: 16px;
  }
}
.p-fv .p-fv__text {
  background: rgba(23, 51, 54, 0.6);
  max-width: 31.5104166667vw;
  margin: 1.5625vw auto;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  font-size: 1.0416666667vw;
  font-weight: 600;
  line-height: 1.8;
  padding: 0.625vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__text {
    padding: 12px;
    font-size: 20px;
    max-width: 650px;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__text {
    font-size: 17px;
    padding: 0;
    width: 100%;
    display: block;
    max-width: none;
    padding: 8px 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
.p-fv .p-fv__main {
  width: 55.2083333333vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__main {
    width: 100%;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__main {
    width: 100%;
    overflow: hidden;
    height: 600px;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__main img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.p-fv .p-fv__btn-warp {
  margin: 0 auto;
  width: 100%;
  max-width: 16.6666666667vw;
  font-size: 1.1458333333vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__btn-warp {
    font-size: 22px;
    max-width: 320px;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__btn-warp {
    max-width: 284px;
    font-size: 20px;
  }
}
.p-fv .p-fv__btn {
  height: 3.75vw;
}
@media (width <= 992px) {
  .p-fv .p-fv__btn {
    height: 72px;
  }
}
@media (width <= 768px) {
  .p-fv .p-fv__btn {
    height: 60px;
  }
}
@media (width <= 992px) {
  .p-fv .p-fv__bottom {
    display: flex;
  }
}

.p-intro {
  background: #FFF5E8;
}
.p-intro .p-intro__row {
  align-items: center;
  justify-content: center;
}
.p-intro .p-intro__content {
  flex: 0 0 45%;
}
@media (width <= 1400px) {
  .p-intro .p-intro__content {
    flex: 0 0 50%;
  }
}
@media (width <= 1200px) {
  .p-intro .p-intro__content {
    flex: 0 0 58%;
  }
}
@media (width <= 992px) {
  .p-intro .p-intro__content {
    flex: auto;
    width: 100%;
  }
}
@media (width <= 768px) {
  .p-intro .p-intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-intro .p-intro__title-wrap {
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .p-intro .p-intro__title-wrap {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-intro .p-intro__title {
  margin: 0;
  margin-left: 1em;
}
@media (width <= 768px) {
  .p-intro .p-intro__title {
    margin-left: 0.5em;
  }
}
.p-intro .p-intro__title::after {
  content: "";
}
@media (width <= 363px) {
  .p-intro .p-intro__title::after {
    top: 20%;
  }
}
.p-intro .p-intro__text {
  margin-left: 40px;
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .p-intro .p-intro__text {
    margin-left: 0;
    margin: 0;
    margin-bottom: 24px;
  }
}
.p-intro .p-intro__img {
  flex: 1;
}
.p-intro .p-intro__btn {
  max-width: 338px;
  margin-left: 40px;
  width: 100%;
  font-size: 22px;
}
@media (width <= 768px) {
  .p-intro .p-intro__btn {
    margin-left: 0;
    max-width: 284px;
    font-size: 20px;
    margin: 0 auto;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.p-intro .p-intro__scroll-inner {
  display: flex;
  overflow: hidden;
}
.p-intro .p-intro__scroll-list {
  display: flex;
  list-style: none;
  padding: 0;
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.p-intro .p-intro__item {
  width: 20vw;
}
.p-intro .p-intro__item {
  width: 100%;
  margin: 0 24px;
}
.p-intro .p-intro__item {
  width: 214px;
  height: auto;
}

.p-preserve {
  padding: 100px 0;
  background: url(../img/img-preserve-bg.jpg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .p-preserve {
    padding: 60px 0;
  }
}
.p-preserve .p-preserve__img {
  flex: 0 0 45%;
}
@media (width <= 768px) {
  .p-preserve .p-preserve__img {
    display: block;
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
  }
}
.p-preserve .p-preserve__row {
  gap: 8%;
  max-width: 1080px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (width <= 768px) {
  .p-preserve .p-preserve__row {
    flex-direction: column-reverse;
  }
}
.p-preserve .p-preserve__content {
  flex: 1;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .p-preserve .p-preserve__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.p-preserve .p-preserve__content::after {
  content: "";
  width: 120%;
  height: 150%;
  transform: translateY(-50%);
  top: 65%;
  left: -10%;
  z-index: -1;
  position: absolute;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(50px);
}
@media (width <= 768px) {
  .p-preserve .p-preserve__content::after {
    width: 150%;
    height: 100%;
    top: 50%;
    left: -50%;
  }
}
.p-preserve .p-preserve__title-wrap {
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .p-preserve .p-preserve__title-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
  }
}
.p-preserve .p-preserve__title {
  margin-top: 88px;
}
@media (width <= 768px) {
  .p-preserve .p-preserve__title {
    display: inline;
    margin: 0;
    margin-left: 1em;
  }
}
.p-preserve .p-preserve__text {
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .p-preserve .p-preserve__text {
    margin: 0;
    margin-bottom: 24px;
  }
}
@media (width <= 768px) {
  .p-preserve .p-preserve__list {
    margin-right: 8px;
    margin-left: 0;
    margin-bottom: 32px;
  }
}

.p-for-whom .p-for-whom-head {
  text-align: center;
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .p-for-whom .p-for-whom-head {
    margin-bottom: 32px;
  }
}
.p-for-whom .p-for-whom__title {
  display: inline;
}
.p-for-whom .p-for-whom__text {
  text-align: center;
}
@media (width <= 768px) {
  .p-for-whom .p-for-whom__text {
    margin: 0;
    text-align: left;
  }
}
.p-for-whom .p-for-whom__items {
  gap: 3%;
  margin-top: 48px;
}
@media (width <= 992px) {
  .p-for-whom .p-for-whom__items {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (width <= 768px) {
  .p-for-whom .p-for-whom__items {
    margin-top: 32px;
    gap: 24px;
  }
}
.p-for-whom .p-for-whom__card {
  margin-top: 16px;
}
@media (width <= 768px) {
  .p-for-whom .p-for-whom__card {
    padding: 16px;
  }
}

.p-cta {
  background: url(../img/img-cta-bg.jpg) no-repeat center center/cover;
  padding: 85px 0;
}
@media (width <= 768px) {
  .p-cta {
    padding: 95px 0 60px;
    background: url(../img/img-cta-bg-sp.jpg) no-repeat center center/cover;
  }
}
.p-cta .p-cta__row {
  justify-content: space-between;
  align-items: center;
}
@media (width <= 768px) {
  .p-cta .p-cta__row {
    align-items: flex-start;
  }
}
.p-cta .p-cta__title {
  font-size: 40px;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (width <= 768px) {
  .p-cta .p-cta__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.p-cta .p-cta__text {
  color: #FFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
@media (width <= 768px) {
  .p-cta .p-cta__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.p-cta .p-cta__btns {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 400px;
  margin: 16px 0;
}
@media (width <= 768px) {
  .p-cta .p-cta__btns {
    max-width: 284px;
    margin: 16px auto 0;
    gap: 16px;
  }
}
.p-cta .p-cta__btn {
  font-size: 26px;
  height: 88px;
}
@media (width <= 768px) {
  .p-cta .p-cta__btn {
    height: 60px;
    font-size: 20px;
  }
}

.p-howto {
  background: #f7fbf8;
}
.p-howto .p-howto__head {
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-howto .p-howto__head {
    margin-bottom: 48px;
  }
}
.p-howto .p-howto__title-wrap {
  text-align: center;
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .p-howto .p-howto__title-wrap {
    text-align: left;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
}
.p-howto .p-howto__title {
  display: inline;
}
@media (width <= 768px) {
  .p-howto .p-howto__title {
    text-indent: -0.25em;
    padding-left: 0.25em;
    display: block;
    margin: 0;
    line-height: 1.5;
    margin-left: 1em;
  }
  .p-howto .p-howto__title::after {
    content: "";
    top: 20%;
  }
}
.p-howto .p-howto__text {
  text-align: center;
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-howto .p-howto__text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-bottom: 40px;
  }
}
.p-howto .p-howto__flow {
  justify-content: center;
  display: flex;
  align-items: stretch;
  margin-bottom: 110px;
}
@media (width <= 992px) {
  .p-howto .p-howto__flow {
    flex-direction: column;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__flow {
    flex-direction: column;
    margin-bottom: 64px;
  }
}
.p-howto .p-howto__item {
  width: 22%;
  border-radius: 10px;
  border: 1px solid #0b524a;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 20px;
}
@media (width <= 1200px) {
  .p-howto .p-howto__item {
    padding: 30px 16px 20px;
  }
}
@media (width <= 992px) {
  .p-howto .p-howto__item {
    width: 100%;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__item {
    width: 100%;
    padding: 24px 16px 20px;
  }
}
.p-howto .p-howto__num-wrap {
  position: absolute;
  transform: translateY(-50%);
  width: 63px;
  height: 63px;
  background: #0b524a;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (width <= 768px) {
  .p-howto .p-howto__num-wrap {
    width: 47px;
    height: 47px;
  }
}
.p-howto .p-howto__num-text {
  margin: 0;
  font-family: "Reddit Sans", sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 1;
}
@media (width <= 768px) {
  .p-howto .p-howto__num-text {
    font-size: 12px;
  }
}
.p-howto .p-howto-num {
  margin: 0;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Reddit Sans", sans-serif;
  font-size: 32px;
  line-height: 1;
}
@media (width <= 768px) {
  .p-howto .p-howto-num {
    font-size: 24px;
  }
}
.p-howto .p-howto__item-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 16px;
}
@media (width <= 768px) {
  .p-howto .p-howto__item-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.p-howto .p-howto__item-text {
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
}
.p-howto .p-howto__item-img {
  width: 96px;
  height: 96px;
}
@media (width <= 768px) {
  .p-howto .p-howto__item-img {
    width: 58px;
    height: 58px;
  }
}
.p-howto .p-howto__item-body {
  margin-top: 8px;
}
@media (width <= 768px) {
  .p-howto .p-howto__item-body {
    margin-top: 4px;
  }
}
@media (width <= 992px) {
  .p-howto .p-howto__item-btn-wrap {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__item-btn-wrap {
    max-width: 260px;
  }
}
.p-howto .p-howto__item-btn {
  height: 60px;
  font-size: 18px;
}
@media (width <= 1400px) {
  .p-howto .p-howto__item-btn {
    font-size: 16px;
  }
}
@media (width <= 1200px) {
  .p-howto .p-howto__item-btn {
    font-size: 15px;
  }
}
@media (width <= 992px) {
  .p-howto .p-howto__item-btn {
    font-size: 18px;
  }
}
.p-howto .p-howto__flow-arrow {
  margin: 0 10px 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 1200px) {
  .p-howto .p-howto__flow-arrow {
    width: 24px;
    margin: 0 4px 32px;
  }
}
@media (width <= 992px) {
  .p-howto .p-howto__flow-arrow {
    width: 32px;
    margin: 0 auto;
    rotate: 90deg;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__flow-arrow {
    margin: 0 auto;
    rotate: 90deg;
    width: 28px;
  }
}
.p-howto .p-howto__item-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}
@media (width <= 768px) {
  .p-howto .p-howto__item-list {
    gap: 14px;
    margin-bottom: 0;
  }
}
.p-howto .p-howto__item-list div {
  align-items: center;
}
@media (width <= 768px) {
  .p-howto .p-howto__item-list div {
    margin: 0 24px;
  }
}
.p-howto .p-howto__item-list dd,
.p-howto .p-howto__item-list dt {
  margin: 0;
}
.p-howto .p-howto__item-list dt {
  width: 52px;
}
.p-howto .p-howto__item-list dd {
  font-size: 17px;
  font-weight: 600;
}
.p-howto .p-howto__box {
  border: 1px solid #0b524a;
  position: relative;
  padding: 70px 20px;
}
@media (width <= 1400px) {
  .p-howto .p-howto__box {
    padding: 70px 16px;
  }
}
@media (width <= 992px) {
  .p-howto .p-howto__box {
    padding: 70px 20px;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__box {
    padding: 32px 16px;
  }
}
.p-howto .p-howto__box--2 {
  margin-top: 100px;
  padding: 50px 50px 20px;
}
@media (width <= 768px) {
  .p-howto .p-howto__box--2 {
    margin-top: 64px;
  }
}
.p-howto .p-howto__box-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 50%;
  background: #f7fbf8;
  padding: 0 24px;
}
@media (width <= 768px) {
  .p-howto .p-howto__box-title {
    padding: 0 16px;
    font-size: 21px;
  }
}
.p-howto .p-howto__box-item {
  width: 280px;
  height: 220px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (width <= 1400px) {
  .p-howto .p-howto__box-item {
    width: 22.5%;
    padding: 20px 16px;
  }
}
@media (width <= 992px) {
  .p-howto .p-howto__box-item {
    width: 100%;
    min-height: 120px;
    height: auto;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__box-item {
    height: auto;
    min-height: auto;
    padding: 16px 16px 24px;
  }
}
.p-howto .p-howto__box-item--green {
  background: #E9F1EB;
}
@media (width <= 768px) {
  .p-howto .p-howto__box-item--other {
    padding: 16px;
  }
}
.p-howto .p-how__box-chk {
  width: 34px;
  height: auto;
  position: absolute;
  bottom: 4%;
  right: 3.5%;
}
@media (width <= 992px) {
  .p-howto .p-how__box-chk {
    right: 2%;
    width: 24px;
    bottom: 8%;
  }
}
@media (width <= 768px) {
  .p-howto .p-how__box-chk {
    right: 3.5%;
    width: 24px;
    bottom: 8%;
  }
}
.p-howto .p-how__box-plus {
  width: 34px;
  height: auto;
}
.p-howto .p-howto__box-up {
  margin-bottom: 32px;
}
@media (width <= 768px) {
  .p-howto .p-howto__box-up {
    margin-bottom: 16px;
  }
}
.p-howto .p-howto__box-up, .p-howto .p-howto__box-low {
  justify-content: center;
  gap: 2%;
}
@media (width <= 992px) {
  .p-howto .p-howto__box-up, .p-howto .p-howto__box-low {
    gap: 32px;
  }
}
@media (width <= 768px) {
  .p-howto .p-howto__box-up, .p-howto .p-howto__box-low {
    gap: 16px;
  }
}
.p-howto .p-howto__box-text {
  font-size: 15px;
}
@media (width <= 768px) {
  .p-howto .p-howto__box-text {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .p-howto .p-how__box-img {
    max-width: 480px;
    margin: 0 auto;
  }
}

.p-ai {
  background: #f7fbf8;
}
.p-ai .p-ai__title-wrap {
  text-align: center;
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .p-ai .p-ai__title-wrap {
    text-align: left;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
}
.p-ai .p-ai__title {
  display: inline;
}
@media (width <= 768px) {
  .p-ai .p-ai__title {
    display: block;
    padding-left: 0.25em;
    text-indent: -0.25em;
    margin: 0;
  }
  .p-ai .p-ai__title::after {
    content: "";
    top: 20%;
  }
}
.p-ai .p-ai__text {
  text-align: center;
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-ai .p-ai__text {
    margin-bottom: 32px;
  }
}
.p-ai .p-ai__content {
  align-items: stretch;
  justify-content: center;
}
@media (width <= 992px) {
  .p-ai .p-ai__content {
    flex-direction: column;
  }
}
@media (width <= 768px) {
  .p-ai .p-ai__content {
    flex-direction: column;
  }
}
.p-ai .p-ai__item {
  width: 34%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width <= 992px) {
  .p-ai .p-ai__item {
    width: 100%;
  }
}
.p-ai .p-ai__item--sm {
  width: 18%;
}
@media (width <= 992px) {
  .p-ai .p-ai__item--sm {
    width: 100%;
  }
}
.p-ai .p-ai__item-title {
  color: #0b524a;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 8px;
}
@media (width <= 768px) {
  .p-ai .p-ai__item-title {
    font-size: 21px;
  }
}
.p-ai .p-ai__item-col {
  gap: 24px;
  margin: 24px 0;
  align-items: center;
}
@media (width <= 992px) {
  .p-ai .p-ai__item-col {
    flex-direction: row;
  }
}
@media (width <= 768px) {
  .p-ai .p-ai__item-col {
    flex-direction: column;
    margin: 16px 0 0;
    gap: 16px;
    align-items: flex-start;
  }
}
.p-ai .p-ai__item-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .p-ai .p-ai__item-block {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    justify-content: flex-start;
  }
}
.p-ai .p-ai__item-circle {
  width: 150px;
  height: 150px;
  aspect-ratio: 1;
}
@media (width <= 768px) {
  .p-ai .p-ai__item-circle {
    width: 64px;
    height: 64px;
    aspect-ratio: 1;
  }
}
.p-ai .p-ai__item-block p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-ai .p-ai__item-block p {
    font-size: 18px;
  }
}
.p-ai .p-ai__item-arrow {
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 1200px) {
  .p-ai .p-ai__item-arrow {
    margin: 0 4px;
  }
}
@media (width <= 992px) {
  .p-ai .p-ai__item-arrow {
    rotate: 90deg;
    width: 32px;
    margin: 0 auto;
  }
}
@media (width <= 768px) {
  .p-ai .p-ai__item-arrow {
    width: 24px;
    rotate: 90deg;
    margin: 0 auto;
  }
}
.p-ai .p-ai__item-box {
  border-radius: 10px;
  border: 1px solid #638d89;
  background: #fff;
  min-height: 430px;
  height: 100%;
  width: 100%;
  padding: 4px 20px;
}
@media (width <= 768px) {
  .p-ai .p-ai__item-box {
    padding: 4px 12px;
    height: auto;
  }
}
.p-ai .p-ai__item-box--green {
  border: 1px solid #0b524a;
  background: #0b524a;
  color: #FFF;
}
.p-ai .p-ai__item-text {
  line-height: 1.6;
}
.p-ai .p-ai__btn-wrap {
  margin-top: 8px;
  position: relative;
  margin-left: auto;
}
@media (width <= 768px) {
  .p-ai .p-ai__btn-wrap {
    margin: 8px auto;
  }
}
.p-ai .p-ai__hand {
  position: absolute;
  width: 42px;
  height: auto;
  right: 0;
  top: 70%;
}
@media (width <= 768px) {
  .p-ai .p-ai__hand {
    width: 32px;
    top: 65%;
    right: -8px;
  }
}
.p-ai .p-ai__btn {
  border-radius: 10px;
  background: #0b524a;
  display: inline-flex;
  align-items: center;
	cursor:unset;
  height: 50px;
  gap: 10px;
  color: #fff;
  font-size: 17px;
  padding: 0 22px;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-ai .p-ai__btn {
    height: 40px;
    padding: 0 16px;
  }
}
.p-ai .p-ai__btn img {
  width: 33px;
  height: auto;
}
@media (width <= 768px) {
  .p-ai .p-ai__btn img {
    width: 24px;
  }
}
.p-ai .p-ai__item-list {
  list-style: none;
  padding: 0;
}
.p-ai .p-ai__item-list li {
  position: relative;
}
.p-ai .p-ai__item-list li::before {
  content: "・";
}
.p-ai .p-ai__note {
  color: #3F3F3F;
  margin: 8px 0 0 auto;
}
@media (width <= 768px) {
  .p-ai .p-ai__note {
    font-size: 13px;
  }
}

.p-plan {
  padding-bottom: 0;
}
.p-plan .p-plan__head {
  margin-bottom: 80px;
}
.p-plan .p-plan__title-wrap {
  text-align: center;
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-plan .p-plan__title-wrap {
    margin-bottom: 40px;
  }
}
.p-plan .p-plan__title {
  display: inline;
}
@media (width <= 768px) {
  .p-plan .p-plan__title {
    font-feature-settings: "palt";
  }
}
.p-plan .p-plan__tabs {
  margin: 0 auto;
  text-align: center;
}
.p-plan .p-plan__tabs ul {
  margin: 0;
  padding: 0 20px;
  display: flex;
  gap: 2%;
  justify-content: center;
  overflow: hidden;
}
.p-plan .p-plan__tabs .p-plan__tab {
  display: block;
  cursor: pointer;
  color: #fff;
  background-color: #9bc0bc;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  max-width: 600px;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 12px;
}
@media (width <= 768px) {
  .p-plan .p-plan__tabs .p-plan__tab {
    padding: 8px;
  }
}
.p-plan .p-plan__tabs .p-plan__tab:hover {
  background-color: #ddd;
}
.p-plan .p-plan__tabs .p-plan__tab.is-active {
  background-color: #004f44;
  color: #fff;
}
.p-plan .p-plan__tab-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-plan .p-plan__tab-title {
    font-size: 20px;
  }
}
.p-plan .p-plan__tab-text {
  margin: 0;
  font-size: 22px;
}
@media (width <= 768px) {
  .p-plan .p-plan__tab-text {
    font-size: 16px;
  }
}
.p-plan .p-plan__grid {
  gap: 2%;
}
@media (width <= 992px) {
  .p-plan .p-plan__grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .p-plan .p-plan__grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }
}
.p-plan .p-plan__group {
  border-top: 2px solid #0b524a;
  border-bottom: 2px solid #0b524a;
  background: #0b524a;
  padding: 80px 0;
}
@media (width <= 768px) {
  .p-plan .p-plan__group {
    padding: 32px 0 32px;
  }
}
.p-plan .p-plan__box {
  border-radius: 20px;
  background: #fff;
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 24px;
}
@media (width <= 1200px) {
  .p-plan .p-plan__box {
    padding: 24px 8px;
  }
}
@media (width <= 992px) {
  .p-plan .p-plan__box {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
  }
}
@media (width <= 768px) {
  .p-plan .p-plan__box {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    padding: 16px 24px;
  }
}
.p-plan .p-plan__box h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
.p-plan .p-plan__box-label {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 200px;
  left: 50%;
  top: 0;
  height: auto;
}
.p-plan .p-plan__price-wrap {
  position: relative;
}
.p-plan .p-plan__price {
  text-align: center;
  color: #3f3f3f;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Reddit Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}
@media (width <= 1200px) {
  .p-plan .p-plan__price {
    font-size: 40px;
  }
}
@media (width <= 768px) {
  .p-plan .p-plan__price {
    font-size: 36px;
  }
}
.p-plan .p-plan__price span {
  font-size: 20px;
  font-weight: 400;
}
@media (width <= 768px) {
  .p-plan .p-plan__price span {
    font-size: 16px;
  }
}
.p-plan .p-plan__balloon {
  position: absolute;
  top: -30%;
  right: -2%;
  width: 90px;
  font-size: 14px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}
@media (width <= 1400px) {
  .p-plan .p-plan__balloon {
    scale: 0.8;
    right: -3.5%;
  }
}
@media (width <= 1200px) {
  .p-plan .p-plan__balloon {
    scale: 0.75;
    right: -3.5%;
  }
}
@media (width <= 1120px) {
  .p-plan .p-plan__balloon {
    scale: 0.7;
  }
}
@media (width <= 992px) {
  .p-plan .p-plan__balloon {
    scale: 0.8;
    right: -22.5%;
  }
}
@media (width <= 768px) {
  .p-plan .p-plan__balloon {
    scale: 0.7;
    right: -26%;
    top: -32%;
  }
}
.p-plan .p-plan__balloon span {
  line-height: 1.1;
  font-size: 20px;
}
.p-plan .p-plan__balloon-text {
  margin: 0;
  font-weight: 700;
}
.p-plan .p-plan__btn-wrap {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
.p-plan .p-plan__btn {
  height: 36px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
@media (width <= 1200px) {
  .p-plan .p-plan__btn {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .p-plan .p-plan__btn {
    font-size: 15px;
  }
}
.p-plan .p-plan__benefits {
  list-style: none;
  margin-bottom: 0;
}
@media (width <= 992px) {
  .p-plan .p-plan__benefits {
    padding-left: 8px;
  }
}
.p-plan .p-plan__benefits li {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #C3C3C3;
}
@media (width <= 768px) {
  .p-plan .p-plan__benefits li {
    font-size: 16px;
    margin-left: 16px;
    margin-bottom: 4px;
  }
}
.p-plan .p-plan__benefits li::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  left: -1em;
  top: 0.8em;
  background: url(../img/icon-chk-noactive.svg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .p-plan .p-plan__benefits li::before {
    width: 14px;
    height: 14px;
  }
}
.p-plan .p-plan__bottom {
  max-width: 480px;
  width: 100%;
  margin: 32px auto;
}
@media (width <= 768px) {
  .p-plan .p-plan__bottom {
    max-width: 380px;
    margin: 24px auto;
  }
}
.p-plan .p-plan__benefits .p-plan__benefits-active {
  color: #3F3F3F;
}
.p-plan .p-plan__benefits .p-plan__benefits-active::before {
  background: url(../img/icon-chk-active.svg) no-repeat center center/cover;
}
.p-plan .p-plan__box--free {
  border-top: 6px solid #ffae75;
}
.p-plan .p-plan__box--trial {
  border-top: 6px solid #7BBFC1;
}
.p-plan .p-plan__box--satisfaction {
  border-top: 6px solid #63B9FF;
}
.p-plan .p-plan__box--one-time {
  border-top: 6px solid #CE1E1E;
}

.p-premium .p-premium__title-wrap {
  text-align: center;
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-premium .p-premium__title-wrap {
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center;
    margin-bottom: 24px;
  }
}
.p-premium .p-premium__title {
  display: inline;
  margin: 0;
}
@media (width <= 768px) {
  .p-premium .p-premium__title::after {
    content: "";
    top: 20%;
  }
}
.p-premium .p-premium__content {
  gap: 5%;
  justify-self: center;
}
@media (width <= 1200px) {
  .p-premium .p-premium__content {
    gap: 2%;
  }
}
@media (width <= 992px) {
  .p-premium .p-premium__content {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .p-premium .p-premium__content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.p-premium .p-premium__box {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #0b524a;
  background: #fff;
  padding: 20px;
  gap: 24px;
}
@media (width <= 992px) {
  .p-premium .p-premium__box {
    max-width: 100%;
  }
}
@media (width <= 768px) {
  .p-premium .p-premium__box {
    padding: 16px;
    gap: 16px;
  }
}
.p-premium .p-premium__box-title {
  font-size: 26px;
  color: #0b524a;
  font-weight: 700;
  margin: 0;
}
@media (width <= 768px) {
  .p-premium .p-premium__box-title {
    font-size: 21px;
  }
}
.p-premium .p-premium__img {
  width: 130px;
  height: auto;
  aspect-ratio: 1;
}
@media (width <= 768px) {
  .p-premium .p-premium__img {
    width: 70px;
  }
}
.p-premium .p-premium__text {
  margin: 0;
  line-height: 1.6;
  font-size: 18px;
}

.p-product {
  background: url(../img/img-product-bg.jpg) no-repeat center center/cover;
}
.p-product .p-product__row {
  gap: 24px;
}
@media (width <= 768px) {
  .p-product .p-product__row {
    align-items: center;
    flex-direction: column;
  }
}
.p-product .p-product__contnt {
  flex: 0 0 60%;
  z-index: 1;
  position: relative;
}
@media (width <= 768px) {
  .p-product .p-product__contnt {
    flex: auto;
  }
}
.p-product .p-product__contnt::after {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  filter: blur(50px);
  border-radius: 20px;
  height: 110%;
  width: 90%;
  position: absolute;
  top: 0%;
  left: -10%;
  z-index: -1;
}
.p-product .p-product__img {
  flex: 1;
  max-width: 480px;
}
@media (width <= 768px) {
  .p-product .p-product__img {
    width: 80%;
    margin: 0 auto;
  }
}
.p-product .p-product__title-wrap {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
@media (width <= 768px) {
  .p-product .p-product__title-wrap {
    margin-bottom: 32px;
  }
}
.p-product .p-product__title {
  margin: 0;
  margin-left: 1em;
}
@media (width <= 768px) {
  .p-product .p-product__title {
    display: flex;
  }
  .p-product .p-product__title::after {
    content: "";
    top: 20%;
  }
}
.p-product .p-product__list {
  margin-left: 10%;
  margin-bottom: 32px;
}
@media (width <= 768px) {
  .p-product .p-product__list {
    margin-left: 0;
    margin-bottom: 24px;
  }
}
.p-product .p-product__plan {
  max-width: 300px;
  margin-left: 16%;
}
@media (width <= 768px) {
  .p-product .p-product__plan {
    max-width: 270px;
    margin-left: 12%;
    margin-bottom: 16px;
  }
}
.p-product .p-product__plan-text {
  font-size: 17px;
}
@media (width <= 768px) {
  .p-product .p-product__plan-text {
    font-size: 15px;
  }
}

.p-video{
	padding-top:0;
	padding-bottom:112px
}

@media (width <= 768px) {
  .p-video {
    padding-bottom: 72px;
  }
}

.p-video .p-video__sample {
  max-width: 900px;
  width: 100%;
  height: 580px;
  margin: 0 auto;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}
.p-video .p-video__wrap {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.p-video .p-video__wrap:hover {
  opacity: 1;
}
.p-video .p-video__wrap:hover .p-video__img {
  scale: 1.1;
}
.p-video .p-video__img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.p-video .p-video__btn {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  letter-spacing: 50%;
  width: 10%;
  height: auto;
  pointer-events: none;
}

.p-voice {
  background: #FFF5E8;
}
.p-voice .p-voice__head {
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-voice .p-voice__head {
    margin-bottom: 40px;
  }
}
.p-voice .p-voice__title-wrap {
  text-align: center;
  margin-bottom: 48px;
}
@media (width <= 768px) {
  .p-voice .p-voice__title-wrap {
    margin-bottom: 32px;
  }
}
.p-voice .p-voice__title {
  display: inline;
}
.p-voice .p-voice__text {
  text-align: center;
  margin-bottom: 32px;
}
@media (width <= 768px) {
  .p-voice .p-voice__text {
    text-align: left;
  }
}
.p-voice .p-voice__items {
  gap: 2%;
  row-gap: 32px;
}
@media (width <= 768px) {
  .p-voice .p-voice__items {
    grid-template-columns: 1fr;
  }
}
.p-voice .p-voice__item {
  border-radius: 20px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  background: #FFF;
  padding: 20px;
}
@media (width <= 768px) {
  .p-voice .p-voice__item {
    padding: 20px 16px;
  }
}
.p-voice .p-voice__item-head {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}
.p-voice .p-voice__item-title {
  color: #E35531;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-voice .p-voice__item-title {
    font-size: 18px;
  }
}
.p-voice .p-voice__item-info {
  margin: 0;
  font-weight: 500;
}
@media (width <= 768px) {
  .p-voice .p-voice__item-info {
    font-size: 14px;
  }
}
.p-voice .p-voice__item-text {
  font-size: 18px;
  margin: 0;
  line-height: 1.6;
}
@media (width <= 768px) {
  .p-voice .p-voice__item-text {
    font-size: 17px;
  }
}

.p-faq .p-faq__head {
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-faq .p-faq__head {
    margin-bottom: 40px;
  }
}
.p-faq .p-faq__content {
  margin: 0 auto;
  max-width: 1000px;
}

.p-about {
  background: url(../img/img-about-bg.jpg) no-repeat center center/cover;
}
@media (width <= 768px) {
  .p-about {
    background: url(../img/img-about-bg-sp.jpg) no-repeat top center/cover;
  }
}
.p-about .p-about__row {
  justify-content: space-between;
}
@media (width <= 992px) {
  .p-about .p-about__row {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
@media (width <= 768px) {
  .p-about .p-about__row {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.p-about .p-about__main {
  flex: 1;
}
.p-about .p-about__lead {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-left: 3.2em;
}
@media (width <= 768px) {
  .p-about .p-about__lead {
    font-size: 18px;
    padding-left: 0;
    margin-bottom: 8px;
    margin-top: 16px;
  }
}
.p-about .p-about__lead:first-child {
  margin-top: 0;
}
@media (width <= 768px) {
  .p-about .p-about__lead:first-child {
    margin-top: 0;
  }
}
.p-about .p-about__lead::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  width: 2.5em;
  height: 1px;
  top: 50%;
  left: 0;
  background: #fff;
}
@media (width <= 768px) {
  .p-about .p-about__lead::before {
    display: none;
  }
}
.p-about .p-about__text {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}
@media (width <= 768px) {
  .p-about .p-about__text {
    font-size: 15px;
    line-height: 1.4;
  }
}
.p-about .p-about__side {
  writing-mode: vertical-rl;
  flex: 0 0 15%;
}
@media (width <= 992px) {
  .p-about .p-about__side {
    width: 100%;
    flex: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 768px) {
  .p-about .p-about__side {
    flex: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }
}
.p-about .p-about__side-title {
  margin: 0;
  font-size: 44px;
  font-variant-numeric: ordinal;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}
.p-about .p-about__side-title::after {
  content: "";
  top: -8%;
  right: -40%;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  width: 2.3em;
  height: auto;
  aspect-ratio: 1;
  background: rgba(227, 144, 123, 0.67);
}
@media (width <= 1400px) {
  .p-about .p-about__side-title::after {
    right: -20%;
  }
}
@media (width <= 768px) {
  .p-about .p-about__side-title::after {
    width: 2em;
    top: -10%;
    right: -28%;
  }
}
@media (width <= 768px) {
  .p-about .p-about__side-title {
    font-size: 26px;
    margin-right: 16px;
    line-height: 1.4;
  }
}
.p-about .p-about__side-sm {
  margin-top: 16px;
  position: relative;
  font-size: 30px;
  padding-top: 5.5em;
  display: inline;
  color: #fff;
}
.p-about .p-about__side-sm::before {
  content: "";
  position: absolute;
  height: 4.5em;
  width: 1px;
  transform: translateX(-50%);
  left: 50%;
  background: #fff;
  top: 0;
}
@media (width <= 992px) {
  .p-about .p-about__side-sm::before {
    top: -150px;
  }
}
@media (width <= 768px) {
  .p-about .p-about__side-sm::before {
    top: -132px;
    height: 6.2em;
  }
}
@media (width <= 992px) {
  .p-about .p-about__side-sm.lg-n {
    display: none;
  }
}
.p-about .p-about__side-sm-wrap .p-about__side-sm {
  display: block;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 120px 20px 0 0;
  padding: 0;
}
@media (width <= 992px) {
  .p-about .p-about__side-sm-wrap .p-about__side-sm {
    font-size: 30px;
  }
}
@media (width <= 768px) {
  .p-about .p-about__side-sm-wrap .p-about__side-sm {
    font-size: 20px;
  }
}

.p-contact .p-voice__head {
  margin-bottom: 80px;
}
@media (width <= 768px) {
  .p-contact .p-voice__head {
    margin-bottom: 40px;
  }
}
.p-contact .p-contat__form-wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

#side .wp-block-search .wp-block-search__button {
  width: 25%;
}

.not-front-page #content {
  max-width: 1400px;
  padding: 20px 0;
}

#side input, #side textarea {
  font-family: "Noto Sans JP", sans-serif;
  color: #3F3F3F;
}/*# sourceMappingURL=style.css.map */

#annual-plans .c-grid,#monthly-plans .c-grid{
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-plan .p-plan__box {
    width: 100%;
    max-width: 300px;
}
@media (width <= 992px) {
  #annual-plans .c-grid,#monthly-plans .c-grid {
    flex-direction: column;
  }
  .p-plan .p-plan__box {
      width: 100%;
      max-width: 500px;
  }
}