@charset "UTF-8";
/************************************************
* Library
***********************************************/
/************************************************
* theme
***********************************************/
/*************************************************************
*
* Variables
*
*************************************************************/
/*************************************************************
* デバイスの基準サイズ
*************************************************************/
/*************************************************************
* コンテンツのコンテナ幅
*************************************************************/
/*************************************************************
* Media Query
*************************************************************/
/*************************************************************
*
* Function
*
*************************************************************/
/**
 * Line heightの余白を除いたマージンの取得
 *
 * @param px $baseMargin 本来の余白
 * @param px $fontSize フォントサイズ
 * @param float $lineHeight 行間
 **/
/**
 * Fontの上下余白を取得
 *
 * @param float $lineHeight 行間
 * @param float $capitalLetter フォントの上下余白
 * @param float $ratio 取得する余白割合
 **/
/**
 * Pixel => rem変換
 * @param px $pixel
 * @oaram px $fontSize
 * @return rem
 **/
/**
 * Pixel => em変換
 * @param px $pixel
 * @oaram px $fontSize
 * @return rem
 **/
/**
 * Pixel => vw変換
 * @param px $pixel
 * @oaram px $fontSize
 * @return rem
 **/
/**************************************************************
* Media Query
**************************************************************/
/**************************************************************
* Media Query Image Ratio
**************************************************************/
/**************************************************************
* Transition
**************************************************************/
/**************************************************************
* Object Fit
**************************************************************/
/**************************************************************
* split-color2
**************************************************************/
:root {
  /* Contents */
  --max-width: 1280px;
  --space-inline: 40px;
  --header-hight: 5rem;
  /* Color */
  --color-blue: #1C72BB;
  --color-orange: #ED9122;
  --color-red: #EA5513;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #111111;
  --color-text-b: #525254;
  --color-primary: var(--color-blue);
  --color-secondary: var(--color-orange);
  --color-accent: var(--color-red);
  --color-dark: #0F296D;
  --color-light: #61b2e4;
  --color-bg-dark: #f4f5f9;
  --color-bg-light: #eaeff2;
  --color-alert: #ff0000;
  --color-hr: #8485cf;
  --color-gradient-a: linear-gradient(to right, #ED9122, #EDCB22);
  --color-gradient-b: linear-gradient(to right, #0F296D, #1C72BB);
  --color-gradient-c: linear-gradient(to right, #1CBB21, #25EE2B);
  --color-gradient-d: linear-gradient(to right, #F7DF40, #D0A900);
  /* Font Family */
  --font-noto-sans-jp: "Noto Sans JP", serif;
  --font-tilt-warp: "Tilt Warp", sans-serif;
  --font-primary: var(--font-noto-sans-jp);
  --font-secondary: "Roboto";
  --font-en: var(--font-tilt-warp);
  /* Line Heigt */
  --line-height: 1.5;
  --line-height-lg: 1.75;
  --letter-spacing: normal;
  /* space */
  --space-2xl: 7.5rem;
  --space-xl: 6rem;
  --space-lg: 5rem;
  --space-md: 3.75rem;
  --space-sm: 2.5rem;
  --space-xs: 1.875rem;
  --space-2xs: 1rem;
  --space-grid: var(--space-sm);
  /* Border */
  --border-radius: 1rem;
  /* box shadow */
  --box-shadow: -4px -4px 4px rgba(255, 255, 255, 0.25), 4px 4px 4px rgba(0, 0, 0, 0.25);
  --box-shadow-hover: -2px -2px 2px rgba(255, 255, 255, 0.25), 2px 2px 2px rgba(0, 0, 0, 0.25);
  --box-shadow-light: -4px -4px 4px rgba(255, 255, 255, 0.75), 4px 4px 4px rgba(0, 0, 0, 0.25);
  --box-shadow-light-hover: -2px -2px 2px rgba(255, 255, 255, 0.75), 2px 2px 2px rgba(0, 0, 0, 0.25);
  /* Anime */
  --anime-duration: 500ms;
  --anime-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (max-width: 834px) {
  :root {
    --space-inline: 5vw;
    --header-hight: 3.125rem;
  }
}
@media screen and (max-width: 549px) {
  :root {
    --space-inline: 4vw;
  }
}

/************************************************
* tailwind
***********************************************/
/************************************************
* Foundation
***********************************************/
/************************************************
/*
/* All Element
/*
/***********************************************/
/************************************************
/*
/* Document
/*
/***********************************************/
/*
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

/**
 * 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 */
}

figure {
  margin: 0;
  padding: 0;
}

/************************************************
/*
/* Text Content
/*
/***********************************************/
h1, h2, h3, h4, h5, h6, strong {
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  line-height: 1.3;
  font-family: inherit;
  margin: 0;
}

p, li, dt, dd, th, td, pre {
  line-break: strict;
  word-break: break-strict;
  margin: 0;
}

br {
  letter-spacing: 0;
}

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

a:focus {
  outline: none;
}

a:hover, a:active {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: none; /* 2 */
}

b, strong {
  font-weight: bold;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: normal;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

em {
  font-style: normal;
}

small {
  font-size: inherit;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

q {
  quotes: "“" "”" "‘" "’";
}

/************************************************
/*
/* Embedded Content
/*
/***********************************************/
/**
 * 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;
}

/**
 * 1. Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; /* 1 */
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  width: auto;
  height: auto;
}

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

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

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

/************************************************
/*
/* Form Content
/*
/***********************************************/
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button, input, select, textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button, input {
  line-height: normal;
}

button {
  background-color: transparent;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button:focus {
  outline: none;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  appearance: normal;
  cursor: pointer;
  border: none;
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: none;
}

/************************************************
/*
/* Interactive Content
/*
/***********************************************/
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

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

/************************************************
/*
/* Table Content
/*
/***********************************************/
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

th {
  font-weight: normal;
}

/************************************************
/*
/* List Content
/*
/***********************************************/
ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

dd {
  margin-left: 0px;
}

/************************************************
/*
/* Hidden
/*
/***********************************************/
[hidden] {
  display: none;
}

/*************************************************************
*
* Mocorun Custom Normalize
*
*************************************************************/
* {
  box-sizing: border-box;
  word-break: normal;
  word-wrap: break-word;
  white-space: normal;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
*:before, *:after {
  box-sizing: border-box;
}

/* Retinaモニタの際にfont-smoothingを適用 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  html,
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
/************************************************
/* Document
/***********************************************/
html {
  overflow: auto; /* iOS用*/
  height: 100%; /* iOS用*/
}

/************************************************
/* Grouping Content
/***********************************************/
address {
  font-style: normal;
}

/************************************************
/* Text Content
/***********************************************/
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a:hover, a:active {
  outline-width: 0;
}

strong {
  font-weight: normal;
}

button {
  text-align: left;
  padding: 0;
  border-radius: 0;
  border: none;
}

/*************************************************************
*
* Attribute
*
*************************************************************/
[disabled] {
  cursor: not-allowed;
}

/*************************************************************
*
* Status
*
*************************************************************/
:focus:not(:focus-visible) {
  outline: none;
}

/*************************************************************
*
* Typography
*
*************************************************************/
html {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: var(--letter-spacing);
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 834px) {
  html {
    font-size: 2.0833333333vw;
  }
}
@media screen and (max-width: 549px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-size: inherit;
  overflow: hidden;
  position: relative;
}

/* テキスト反転色 */
::selection {
  background: var(--color-primary); /*背景色*/
  color: #fff; /*文字色*/
}

/************************************************
/************************************************
* Layout
***********************************************/
/*************************************************************
*
* Content
*
*************************************************************/
/*************************************************************
* Page Container
*************************************************************/
/**************************************************************
* Crop Line height
**************************************************************/
/**************************************************************
* Omit row
**************************************************************/
/**************************************************************
* Hover
**************************************************************/
/**************************************************************
* Animation Line
**************************************************************/
/*************************************************************
* Opacity
*************************************************************/
/*************************************************************
* Underline
*************************************************************/
/**************************************************************
*
* Position
*
**************************************************************/
/*************************************
* Common Style
*************************************/
/**************************************************************
*
* フッター
*
**************************************************************/
.l-footer {
  position: relative;
  width: 100vw;
  padding: 0.625rem;
  background-color: var(--color-dark);
  color: var(--color-white);
}
.l-footer__copyright {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 0.75rem;
  font-weight: bold;
}
/**************************************************************
*
* Header
*
**************************************************************/
.l-header {
  width: 100%;
  height: var(--header-hight);
  background-color: var(--color-white);
  padding-block: 0.625rem;
  padding-inline: var(--space-inline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.l-header__logo-image {
  width: auto;
  height: 3.125rem;
}
.l-header__logo-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-black);
}
.l-header__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.l-header__menu-tel {
  margin-right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-black);
  opacity: 1;
  transition: var(--anime-duration) var(--anime-function);
  transition-property: opacity;
}
.l-header__menu-tel_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.l-header__menu-tel_icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
.l-header__menu-tel_number {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
}
.l-header__menu-tel_time {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.0625rem;
  color: var(--color-text-b);
}
.l-header__menu-tel:hover {
  opacity: 0.75;
}
.l-header__menu-button {
  width: 11.25rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
  color: var(--color-white);
  background: var(--color-gradient-a);
  opacity: 1;
  transition: var(--anime-duration) var(--anime-function);
  transition-property: opacity;
}
.l-header__menu-button.__line {
  background: var(--color-gradient-c);
}
.l-header__menu-button_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.l-header__menu-button_icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
.l-header__menu-button_text {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
}
.l-header__menu-button_time {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.0625rem;
}
.l-header__menu-button:hover {
  opacity: 0.75;
}
@media screen and (max-width: 834px) {
  .l-header {
    justify-content: center;
  }
  .l-header__logo {
    gap: 0.5rem;
  }
  .l-header__logo-image {
    height: 2rem;
  }
  .l-header__logo-name {
    font-size: 1rem;
  }
  .l-header__menu {
    display: none;
  }
}
/**************************************************************
*
* Hero
*
**************************************************************/
.l-hero {
  position: relative;
  width: 100vw;
}
.l-hero__main {
  position: relative;
}
.l-hero__main-wrapper {
  height: 100%;
  padding-top: 3.375rem;
  padding-bottom: 6rem;
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}
.l-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}
.l-hero__bg.__sp {
  display: none;
}
.l-hero__point {
  position: absolute;
  top: 5rem;
  right: calc((100vw - var(--max-width)) / 2 + var(--space-inline) + 17rem);
  width: 13.75rem;
}
.l-hero__staff {
  position: absolute;
  bottom: 0;
  right: calc((100vw - var(--max-width)) / 2 + var(--space-inline));
  height: 20rem;
}
.l-hero__title {
  padding-left: 1.875rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-white);
  text-shadow: 0 0 0.5rem black;
}
.l-hero__title .em {
  font-size: 2.5rem;
}
.l-hero__title .point {
  display: inline-block;
  padding-right: 2rem;
  margin-right: -0.625rem;
  position: relative;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}
.l-hero__title .point svg {
  position: absolute;
  top: 50%;
  left: -1.875rem;
  right: 0;
  transform: translateY(-50%);
  width: calc(100% + 1.875rem);
  height: auto;
  z-index: -1;
}
.l-hero__phrase {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  height: 11.25rem;
}
.l-hero__under {
  background-color: var(--color-dark);
  padding-bottom: 1.5rem;
}
.l-hero__under-wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  margin-top: -2.5rem;
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.l-hero__feature {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-3.75rem);
}
.l-hero__feature-item {
  width: 18.75rem;
  position: relative;
}
.l-hero__feature-item_bg {
  width: 100%;
  aspect-ratio: 300/192;
}
.l-hero__feature-item_wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
}
.l-hero__feature-item_sub {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
.l-hero__feature-item_main {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: var(--color-dark);
}
.l-hero__feature-item_main .em {
  color: var(--color-accent);
}
.l-hero__feature-item_main .num {
  font-size: 2rem;
  line-height: 1;
}
.l-hero__ok {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.l-hero__ok::before, .l-hero__ok::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 1.75rem;
  background-color: currentColor;
}
.l-hero__ok::before {
  transform: rotate(-20deg);
}
.l-hero__ok::after {
  transform: rotate(20deg);
}
.l-hero__q {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-white);
}
.l-hero__q .em {
  color: #ffaf24;
}
.l-hero__button {
  width: 100%;
  max-width: 33.75rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background: var(--color-gradient-a);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-white);
  opacity: 1;
  transition: var(--anime-duration) var(--anime-function);
  transition-property: opacity;
}
.l-hero__button-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
.l-hero__button-icon {
  fill: currentColor;
  width: 0.75rem;
  height: 1.25rem;
}
.l-hero__button:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1279px) {
  .l-hero__point {
    right: calc(var(--space-inline) + 17rem);
  }
  .l-hero__staff {
    right: var(--space-inline);
  }
}
@media screen and (max-width: 834px) {
  .l-hero__bg {
    display: none;
  }
  .l-hero__bg.__sp {
    display: block;
  }
  .l-hero__main-wrapper {
    padding-top: 1.875rem;
    padding-bottom: 11.5rem;
  }
  .l-hero__point {
    position: absolute;
    top: unset;
    bottom: 2.5rem;
    left: 1.5rem;
    right: unset;
    width: 8.75rem;
  }
  .l-hero__staff {
    position: absolute;
    bottom: 0;
    left: unset;
    right: -1rem;
    height: 11.25rem;
  }
  .l-hero__title {
    font-size: 1rem;
    padding-left: 1.5rem;
    text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.75);
  }
  .l-hero__title .em {
    font-size: 1.25rem;
  }
  .l-hero__title .point {
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    text-shadow: unset;
  }
  .l-hero__title .point-sp {
    padding-right: 1.5625rem;
    position: relative;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  }
  .l-hero__title .point-sp svg {
    position: absolute;
    top: 50%;
    left: -1.5625rem;
    right: 0;
    transform: translateY(-50%);
    width: calc(100% + 1.5625rem);
    z-index: -1;
  }
  .l-hero__phrase {
    margin-top: 1.5rem;
    height: 5.75rem;
  }
  .l-hero__under-wrapper {
    max-width: var(--max-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-inline);
    padding-right: var(--space-inline);
    margin-top: -0.625rem;
    padding-block: 0;
    gap: 0.75rem;
  }
  .l-hero__feature {
    gap: 0.375rem;
    transform: translateY(-1.875rem);
  }
  .l-hero__feature-item {
    width: 7.1875rem;
  }
  .l-hero__feature-item_bg {
    aspect-ratio: 115/100;
  }
  .l-hero__feature-item_wrapper {
    bottom: 0.5rem;
    gap: 0.25rem;
  }
  .l-hero__feature-item:nth-child(2) .l-hero__feature-item_wrapper, .l-hero__feature-item:nth-child(3) .l-hero__feature-item_wrapper {
    gap: 0.5rem;
  }
  .l-hero__feature-item_sub {
    font-size: 0.625rem;
  }
  .l-hero__feature-item_main {
    font-size: 0.75rem;
  }
  .l-hero__feature-item_main .num {
    font-size: 1rem;
  }
  .l-hero__ok {
    font-size: 1rem;
    gap: 0.75rem;
  }
  .l-hero__ok::before, .l-hero__ok::after {
    width: 0.0625rem;
    height: 1.25rem;
  }
  .l-hero__q {
    font-size: 0.8125rem;
  }
  .l-hero__button {
    max-width: 15rem;
    padding: 0.5rem;
    gap: 0.625rem;
  }
  .l-hero__button-text {
    font-size: 1rem;
  }
  .l-hero__button-icon {
    width: 0.625rem;
    height: 1.0625rem;
  }
}
@media screen and (max-width: 549px) {
  .l-hero__title {
    font-size: 1rem;
  }
  .l-hero__title .em {
    font-size: 1.25rem;
  }
  .l-hero__phrase {
    margin-top: 1.5rem;
    height: 5.75rem;
  }
}

/*************************************************************
*
* Pagetop Button
*
*************************************************************/
.l-pagetop {
  position: fixed;
  bottom: 1rem;
  right: 0.5rem;
  width: 4.8125rem;
  height: 4.125rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  outline: none;
  cursor: pointer;
  padding: 0px;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-property: opacity;
  transition-duration: 300ms;
  transition-delay: 0ms;
}
.l-pagetop:focus, .l-pagetop:active {
  outline: none;
}
.l-pagetop.is-fadein {
  opacity: 1;
  transition-delay: 50ms;
}
.l-pagetop img {
  width: 100%;
  height: 100%;
}
.l-pagetop:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 834px) {
  .l-pagetop {
    bottom: 0.375rem;
    right: 0.1875rem;
    width: 3rem;
    height: 2.625rem;
  }
}
/************************************************
* Object - Utility
***********************************************/
/*************************************************************
* その他
*************************************************************/
/* objfit */
img.objfit {
  width: 100%;
  object-fit: cover;
  object-position: center;
  font-family: "object-fit: cover;object-position: center;";
}

/*************************************************************
*
* デバイス毎のスタイル
*
*************************************************************/
/* PCサイズ以上 */
@media screen and (min-width: 1280px) {
  .over-pc-none {
    display: none !important;
  }
}
/* ノートPCサイズ以上 */
@media screen and (min-width: 835px) {
  .over-lp-none {
    display: none !important;
  }
}
/* タブレットサイズ以上 */
@media screen and (min-width: 550px) {
  .over-tb-none {
    display: none !important;
  }
}
/* ノートPCサイズ以下 */
@media screen and (max-width: 1279px) {
  .under-lp-none {
    display: none !important;
  }
}
/* タブレットサイズ以下 */
@media screen and (max-width: 834px) {
  .under-tb-none {
    display: none !important;
  }
}
/* スマホサイズ以下 */
@media screen and (max-width: 549px) {
  .under-sp-none {
    display: none !important;
  }
}
/*************************************************************
*
* ブラウザ更新
*
*************************************************************/
.u-ie-update__bg {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.u-ie-update__box {
  position: fixed;
  z-index: 2000;
  top: 50%;
  left: 50%;
  width: 500px !important;
  transform: translate(-50%, -50%);
  padding: 25px;
  background-color: #fff;
  text-align: center;
}
.u-ie-update__heading {
  font-size: 1.2em;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.u-ie-update__subtext {
  display: block;
  color: #999;
  font-size: 0.75em;
  font-weight: normal;
}
.u-ie-update__paragraph {
  text-align: justify;
  text-align-last: left;
  font-size: 0.875em;
  margin-bottom: 1.25rem;
}
.u-ie-update__btn {
  display: block;
  background-color: var(--color-primary);
  color: #fff;
}

@media screen and (max-width: 834px) {
  .u-wrapper-window {
    margin-left: calc(0 - var(--space-inline));
    margin-right: calc(0 - var(--space-inline));
  }
}

/*************************************************************
*
* スライド
*
*************************************************************/
.u-slide {
  width: 100%;
  overflow: hidden;
}
.u-slide__wrapper {
  display: flex;
  width: max-content;
  animation: slide-left 30s linear infinite;
}
.u-slide__item {
  flex: 0 0 auto; /* 7個表示 */
}

/* アニメーション定義 */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*************************************************************
*
* Container
*
*************************************************************/
/*************************************************************
* Page Container
*************************************************************/
.u-page-container {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}
.u-page-container.__small {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}
.u-page-container .u-page-container.__small {
  padding: 0;
}

@media screen and (max-width: 834px) {
  .u-max-tb {
    margin-inline: calc(-1 * var(--space-inline)) !important;
  }
}
@media screen and (max-width: 549px) {
  .u-max-sp {
    margin-inline: calc(-1 * var(--space-inline)) !important;
  }
}
.u-page-wrapper {
  position: relative;
  --aside-width: 18.75rem;
  min-height: 777px;
}
.u-page-wrapper__main {
  margin-right: var(--aside-width);
  padding-right: 2rem;
}
.u-page-wrapper__aside {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--aside-width);
  padding-right: var(--space-inline);
}
.u-page-wrapper__aside.is-fix {
  position: fixed;
  top: calc(var(--header-height) + var(--space-sm));
  z-index: 10;
}
.u-page-wrapper__aside .is-sticky {
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1279px) {
  .u-page-wrapper__aside {
    right: var(--space-inline);
  }
}
@media screen and (max-width: 834px) {
  .u-page-wrapper__main {
    margin-right: 0;
    padding-right: 0;
  }
  .u-page-wrapper__aside {
    position: static;
    margin-top: 2.5rem;
    padding-right: 0;
    width: 100%;
  }
  .u-page-wrapper__aside.is-fix {
    position: static;
    top: unset;
    z-index: 10;
  }
  .u-page-wrapper__aside .is-sticky {
    position: static;
    top: unset;
  }
}

/*************************************************************
*
* Margin
*
*************************************************************/
/*************************************************************
* Content Margin Bottom
*************************************************************/
.u-mt-2xl {
  margin-top: var(--space-2xl);
}

.u-mb-2xl {
  margin-bottom: var(--space-2xl);
}

@media screen and (max-width: 834px) {
  .u-mt-2xl {
    margin-top: var(--space-2xl);
  }
  .u-mb-2xl-tb {
    margin-bottom: var(--space-2xl);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-2xl {
    margin-top: var(--space-2xl);
  }
  .u-mb-2xl-sp {
    margin-bottom: var(--space-2xl);
  }
}
.u-mt-xl {
  margin-top: var(--space-xl);
}

.u-mb-xl {
  margin-bottom: var(--space-xl);
}

@media screen and (max-width: 834px) {
  .u-mt-xl {
    margin-top: var(--space-xl);
  }
  .u-mb-xl-tb {
    margin-bottom: var(--space-xl);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-xl {
    margin-top: var(--space-xl);
  }
  .u-mb-xl-sp {
    margin-bottom: var(--space-xl);
  }
}
.u-mt-lg {
  margin-top: var(--space-lg);
}

.u-mb-lg {
  margin-bottom: var(--space-lg);
}

@media screen and (max-width: 834px) {
  .u-mt-lg {
    margin-top: var(--space-lg);
  }
  .u-mb-lg-tb {
    margin-bottom: var(--space-lg);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-lg {
    margin-top: var(--space-lg);
  }
  .u-mb-lg-sp {
    margin-bottom: var(--space-lg);
  }
}
.u-mt-md {
  margin-top: var(--space-md);
}

.u-mb-md {
  margin-bottom: var(--space-md);
}

@media screen and (max-width: 834px) {
  .u-mt-md {
    margin-top: var(--space-md);
  }
  .u-mb-md-tb {
    margin-bottom: var(--space-md);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-md {
    margin-top: var(--space-md);
  }
  .u-mb-md-sp {
    margin-bottom: var(--space-md);
  }
}
.u-mt-sm {
  margin-top: var(--space-sm);
}

.u-mb-sm {
  margin-bottom: var(--space-sm);
}

@media screen and (max-width: 834px) {
  .u-mt-sm {
    margin-top: var(--space-sm);
  }
  .u-mb-sm-tb {
    margin-bottom: var(--space-sm);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-sm {
    margin-top: var(--space-sm);
  }
  .u-mb-sm-sp {
    margin-bottom: var(--space-sm);
  }
}
.u-mt-xs {
  margin-top: var(--space-xs);
}

.u-mb-xs {
  margin-bottom: var(--space-xs);
}

@media screen and (max-width: 834px) {
  .u-mt-xs {
    margin-top: var(--space-xs);
  }
  .u-mb-xs-tb {
    margin-bottom: var(--space-xs);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-xs {
    margin-top: var(--space-xs);
  }
  .u-mb-xs-sp {
    margin-bottom: var(--space-xs);
  }
}
.u-mt-2xs {
  margin-top: var(--space-2xs);
}

.u-mb-2xs {
  margin-bottom: var(--space-2xs);
}

@media screen and (max-width: 834px) {
  .u-mt-2xs {
    margin-top: var(--space-2xs);
  }
  .u-mb-2xs-tb {
    margin-bottom: var(--space-2xs);
  }
}
@media screen and (max-width: 549px) {
  .u-mt-2xs {
    margin-top: var(--space-2xs);
  }
  .u-mb-2xs-sp {
    margin-bottom: var(--space-2xs);
  }
}
/*************************************************************
*
* Padding
*
*************************************************************/
/*************************************************************
* Content Vertical Padding
*************************************************************/
.u-py-2xl {
  padding-block: var(--space-2xl);
}

.u-pt-2xl {
  padding-top: var(--space-2xl);
}

.u-pb-2xl {
  padding-bottom: var(--space-2xl);
}

@media screen and (max-width: 834px) {
  .u-py-2xl-tb {
    padding-block: var(--space-2xl);
  }
  .u-pt-2xl-tb {
    padding-top: var(--space-2xl);
  }
  .u-pb-2xl-tb {
    padding-bottom: var(--space-2xl);
  }
}
@media screen and (max-width: 549px) {
  .u-py-2xl-sp {
    padding-block: var(--space-2xl);
  }
  .u-pt-2xl-sp {
    padding-top: var(--space-2xl);
  }
  .u-pb-2xl-sp {
    padding-bottom: var(--space-2xl);
  }
}
.u-py-xl {
  padding-block: var(--space-xl);
}

.u-pt-xl {
  padding-top: var(--space-xl);
}

.u-pb-xl {
  padding-bottom: var(--space-xl);
}

@media screen and (max-width: 834px) {
  .u-py-xl-tb {
    padding-block: var(--space-xl);
  }
  .u-pt-xl-tb {
    padding-top: var(--space-xl);
  }
  .u-pb-xl-tb {
    padding-bottom: var(--space-xl);
  }
}
@media screen and (max-width: 549px) {
  .u-py-xl-sp {
    padding-block: var(--space-xl);
  }
  .u-pt-xl-sp {
    padding-top: var(--space-xl);
  }
  .u-pb-xl-sp {
    padding-bottom: var(--space-xl);
  }
}
.u-py-lg {
  padding-block: var(--space-lg);
}

.u-pt-lg {
  padding-top: var(--space-lg);
}

.u-pb-lg {
  padding-bottom: var(--space-lg);
}

@media screen and (max-width: 834px) {
  .u-py-lg-tb {
    padding-block: var(--space-lg);
  }
  .u-pt-lg-tb {
    padding-top: var(--space-lg);
  }
  .u-pb-lg-tb {
    padding-bottom: var(--space-lg);
  }
}
@media screen and (max-width: 549px) {
  .u-py-lg-sp {
    padding-block: var(--space-lg);
  }
  .u-pt-lg-sp {
    padding-top: var(--space-lg);
  }
  .u-pb-lg-sp {
    padding-bottom: var(--space-lg);
  }
}
.u-py-md {
  padding-block: var(--space-md);
}

.u-pt-md {
  padding-top: var(--space-md);
}

.u-pb-md {
  padding-bottom: var(--space-md);
}

@media screen and (max-width: 834px) {
  .u-py-md-tb {
    padding-block: var(--space-md);
  }
  .u-pt-md-tb {
    padding-top: var(--space-md);
  }
  .u-pb-md-tb {
    padding-bottom: var(--space-md);
  }
}
@media screen and (max-width: 549px) {
  .u-py-md-sp {
    padding-block: var(--space-md);
  }
  .u-pt-md-sp {
    padding-top: var(--space-md);
  }
  .u-pb-md-sp {
    padding-bottom: var(--space-md);
  }
}
.u-py-sm {
  padding-block: var(--space-sm);
}

.u-pt-sm {
  padding-top: var(--space-sm);
}

.u-pb-sm {
  padding-bottom: var(--space-sm);
}

@media screen and (max-width: 834px) {
  .u-py-sm-tb {
    padding-block: var(--space-sm);
  }
  .u-pt-sm-tb {
    padding-top: var(--space-sm);
  }
  .u-pb-sm-tb {
    padding-bottom: var(--space-sm);
  }
}
@media screen and (max-width: 549px) {
  .u-py-sm-sp {
    padding-block: var(--space-sm);
  }
  .u-pt-sm-sp {
    padding-top: var(--space-sm);
  }
  .u-pb-sm-sp {
    padding-bottom: var(--space-sm);
  }
}
.u-pb-screen {
  padding-bottom: 100vh;
}

/*************************************************************
*
* Color
*
*************************************************************/
/*************************************************************
* Background
*************************************************************/
.u-color-bg-white {
  background-color: var(--color-white);
}

.u-color-bg-light {
  background-color: var(--color-light);
}

.u-color-bg-light-secondary {
  background-color: var(--color-blue-light);
}

.u-color-bg-dark {
  background-color: var(--color-dark);
}

.u-color-bg-primary {
  background-color: var(--color-primary);
}

/*************************************************************
* Text
*************************************************************/
.u-color-text-primary {
  color: var(--color-primary);
}

.u-color-text-alert {
  color: var(--color-alert);
}

/**************************************************************
* Common Style
**************************************************************/
/*************************************************************
*
* Typography
*
*************************************************************/
/*************************************************************
* Text Align
*************************************************************/
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

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

.u-text-justify {
  text-align: justify;
}

@media screen and (max-width: 834px) {
  .u-text-center-tb {
    text-align: center;
  }
}
/*************************************************************
* Text Wrapping
*************************************************************/
/* 文字折り返し禁止 */
.u-text-nowrap {
  white-space: nowrap;
}

/*************************************************************
* Font Size
*************************************************************/
.u-text-small {
  font-size: 0.889em;
}

.u-text-large {
  font-size: 1.266em;
}

.u-text-huge {
  font-size: 2.027em;
}

/*************************************************************
* Font Style
*************************************************************/
.u-text-bold {
  font-weight: bold;
}

.u-text-black {
  font-weight: 900;
}

.u-keep-all {
  word-break: keep-all;
}

/*************************************************************
* Dot Style
*************************************************************/
.u-dot-text {
  position: relative;
  display: inline-block;
}
.u-dot-text::before {
  content: "・";
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5em;
}

/**************************************************************
*
* Grid
*
**************************************************************/
/**************************************************************
* Flexbox: Common Style
**************************************************************/
/**************************************************************
* Flexbox: Theme Common Style
**************************************************************/
/**************************************************************
* Flexbox: Grid $col:列数 $gap:間隔
**************************************************************/
/*************************************************************
*
* Margin
*
*************************************************************/
/*************************************************************
* Grid Common
*************************************************************/
.u-grid-row {
  display: flex;
  gap: var(--space-grid);
}
.u-grid-row.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-row.__align-center {
  align-items: center;
}

.u-grid-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-grid);
}
.u-grid-column.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-column.__align-center {
  align-items: center;
}

.u-grid-many {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-grid);
}
.u-grid-many.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-many.__align-center {
  align-items: center;
}

.u-grid-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-grid);
}
.u-grid-center.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-center.__align-center {
  align-items: center;
}

.u-grid-space-between {
  display: flex;
  justify-content: space-between;
  gap: var(--space-grid);
}
.u-grid-space-between.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-space-between.__align-center {
  align-items: center;
}

.u-grid-items-end {
  display: flex;
  align-items: flex-end;
  gap: var(--space-grid);
}
.u-grid-items-end.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-items-end.__align-center {
  align-items: center;
}

@media screen and (max-width: 834px) {
  .u-grid-column-tb {
    display: flex;
    flex-direction: column;
    gap: var(--space-grid);
  }
  .u-grid-column-tb.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-column-tb.__align-center {
    align-items: center;
  }
}
@media screen and (max-width: 549px) {
  .u-grid-column-sp {
    display: flex;
    flex-direction: column;
    gap: var(--space-grid);
  }
  .u-grid-column-sp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-column-sp.__align-center {
    align-items: center;
  }
}
/*************************************************************
* Grid Col Select
*************************************************************/
.u-grid-col1 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-grid);
  display: flex;
  flex-direction: column;
  margin-right: 0;
}
.u-grid-col1.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-col1.__align-center {
  align-items: center;
}
.u-grid-col1.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-col1.__align-center {
  align-items: center;
}
.u-grid-col1 > * {
  width: 100%;
}

.u-grid-col2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-grid);
  margin-right: calc(0% - var(--space-grid));
}
.u-grid-col2.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-col2.__align-center {
  align-items: center;
}
.u-grid-col2 > * {
  width: calc((100% - var(--space-grid) * 1) / 2);
}

.u-grid-col3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-grid);
  margin-right: calc(0% - var(--space-grid));
}
.u-grid-col3.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-col3.__align-center {
  align-items: center;
}
.u-grid-col3 > * {
  width: calc((100% - var(--space-grid) * 2) / 3);
}

.u-grid-col4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-grid);
  margin-right: calc(0% - var(--space-grid));
}
.u-grid-col4.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-col4.__align-center {
  align-items: center;
}
.u-grid-col4 > * {
  width: calc((100% - var(--space-grid) * 3) / 4);
}

.u-grid-col6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-grid);
  margin-right: calc(0% - var(--space-grid));
}
.u-grid-col6.__flow-reverse {
  flex-direction: row-reverse;
}
.u-grid-col6.__align-center {
  align-items: center;
}
.u-grid-col6 > * {
  width: calc((100% - var(--space-grid) * 5) / 6);
}

/*************************************************************
* Grid Col Select (Tablet)
*************************************************************/
@media screen and (max-width: 1279px) {
  .u-grid-col1-lp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }
  .u-grid-col1-lp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col1-lp.__align-center {
    align-items: center;
  }
  .u-grid-col1-lp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col1-lp.__align-center {
    align-items: center;
  }
  .u-grid-col1-lp > * {
    width: 100%;
  }
  .u-grid-col2-lp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    margin-right: calc(0% - var(--space-grid));
  }
  .u-grid-col2-lp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col2-lp.__align-center {
    align-items: center;
  }
  .u-grid-col2-lp > * {
    width: calc((100% - var(--space-grid) * 1) / 2);
  }
  .u-grid-col3-lp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    margin-right: calc(0% - var(--space-grid));
  }
  .u-grid-col3-lp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col3-lp.__align-center {
    align-items: center;
  }
  .u-grid-col3-lp > * {
    width: calc((100% - var(--space-grid) * 2) / 3);
  }
}
/*************************************************************
* Grid Col Select (Tablet)
*************************************************************/
@media screen and (max-width: 834px) {
  .u-grid-col1-tb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }
  .u-grid-col1-tb.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col1-tb.__align-center {
    align-items: center;
  }
  .u-grid-col1-tb.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col1-tb.__align-center {
    align-items: center;
  }
  .u-grid-col1-tb > * {
    width: 100%;
  }
  .u-grid-col2-tb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    margin-right: calc(0% - var(--space-grid));
  }
  .u-grid-col2-tb.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col2-tb.__align-center {
    align-items: center;
  }
  .u-grid-col2-tb > * {
    width: calc((100% - var(--space-grid) * 1) / 2);
  }
  .u-grid-col3-tb {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    margin-right: calc(0% - var(--space-grid));
  }
  .u-grid-col3-tb.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col3-tb.__align-center {
    align-items: center;
  }
  .u-grid-col3-tb > * {
    width: calc((100% - var(--space-grid) * 2) / 3);
  }
}
/*************************************************************
* Grid Col Select (SP)
*************************************************************/
@media screen and (max-width: 549px) {
  .u-grid-col1-sp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }
  .u-grid-col1-sp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col1-sp.__align-center {
    align-items: center;
  }
  .u-grid-col1-sp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col1-sp.__align-center {
    align-items: center;
  }
  .u-grid-col1-sp > * {
    width: 100%;
  }
  .u-grid-col2-sp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    margin-right: calc(0% - var(--space-grid));
  }
  .u-grid-col2-sp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col2-sp.__align-center {
    align-items: center;
  }
  .u-grid-col2-sp > * {
    width: calc((100% - var(--space-grid) * 1) / 2);
  }
  .u-grid-col3-sp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-grid);
    margin-right: calc(0% - var(--space-grid));
  }
  .u-grid-col3-sp.__flow-reverse {
    flex-direction: row-reverse;
  }
  .u-grid-col3-sp.__align-center {
    align-items: center;
  }
  .u-grid-col3-sp > * {
    width: calc((100% - var(--space-grid) * 1) / 2);
  }
}
/************************************************
* Object - Component
***********************************************/
/*************************************************************
* Opacity
*************************************************************/
.c-anchor-alpha {
  transition: opacity 300ms;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (any-hover: hover) {
  .c-anchor-alpha:hover[href], .c-anchor-alpha:hover[type] {
    opacity: 0.7;
    zoom: 1;
  }
}

/*************************************************************
* Underline
*************************************************************/
.c-anchor-underline {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-anchor-underline:hover[href], .c-anchor-underline:hover[type] {
    text-decoration: none;
  }
}

/*************************************************************
* Underline: Animation
*************************************************************/
.c-anchor-line {
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}
.c-anchor-line:after {
  transition: var(--anime-duration) var(--anime-function);
  transition-property: transform;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: left center;
}
.c-anchor-line:after {
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  .c-anchor-line:hover[href]:after, .c-anchor-line:hover[type]:after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.c-anchor-line.__primary {
  color: var(--color-primary);
}
.c-anchor-line.__flex {
  display: flex;
  gap: var(--space-grid);
  align-items: center;
}

/*************************************************************
* Bright
*************************************************************/
.c-anchor-bright {
  transition: filter 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (any-hover: hover) {
  .c-anchor-bright:hover[href], .c-anchor-bright:hover[type] {
    filter: brightness(1.1);
  }
}

/**************************************************************
*
* Box & Card
*
**************************************************************/
/*************************************
* Common Style
*************************************/
/*************************************
* Theme Common Style
*************************************/
/**************************************************************
*
* Box01
*
**************************************************************/
.c-box01 {
  display: block;
  position: relative;
}
/*************************************************************
*
* Button
*
*************************************************************/
/*************************************************************
* Common Style
*************************************************************/
/*************************************************************
* Theme Common Style
*************************************************************/
/*************************************************************
*
* Button01
*
*************************************************************/
.c-button01 {
  position: relative;
  padding: 1.25rem 3.125rem;
  padding-right: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
  box-shadow: 0.1875rem 0.25rem 0.4rem 0px rgba(0, 0, 0, 0.25);
  background-color: var(--color-accent);
  color: var(--color-white);
  min-width: 29.75rem;
}
.c-button01__sub {
  padding: 1rem 1.625rem;
  border-radius: 1.5625rem;
  background-color: var(--color-white);
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: bold;
}
.c-button01__main {
  font-size: 1.875rem;
  font-weight: bold;
}
.c-button01__arrow {
  position: absolute;
  top: 50%;
  right: 3.125rem;
  transform: translateY(-50%);
  width: 0.875rem;
  fill: currentColor;
}
.p-cta__fix .c-button01 {
  padding: 0.9375rem 1.25rem;
  padding-right: 3.125rem;
  min-width: 17.875rem;
  gap: 0.625rem;
}
.p-cta__fix .c-button01 .c-button01__sub {
  padding: 0.625rem 1rem;
  border-radius: 0.9375rem;
  font-size: 0.875rem;
}
.p-cta__fix .c-button01 .c-button01__main {
  font-size: 1.125rem;
}
.p-cta__fix .c-button01 .c-button01__arrow {
  right: 1.25rem;
  width: 0.625rem;
}
@media screen and (max-width: 834px) {
  .c-button01 {
    padding: 0.9375rem 1.25rem;
    padding-right: 3.125rem;
    min-width: 17.875rem;
    gap: 0.625rem;
  }
  .c-button01__sub {
    padding: 0.625rem 1rem;
    border-radius: 0.9375rem;
    font-size: 0.875rem;
  }
  .c-button01__main {
    font-size: 1.125rem;
  }
  .c-button01__arrow {
    right: 1.25rem;
    width: 0.625rem;
  }
}
/*************************************************************
*
* Heading
*
*************************************************************/
/*************************************
* Common Style
*************************************/
/*************************************
* Theme Common Style
*************************************/
/*************************************************************
*
* Heading01
*
*************************************************************/
.c-heading01 {
  display: block;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark);
}
.c-heading01__sub {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.c-heading01__sub::before, .c-heading01__sub::after {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: currentColor;
}
.c-heading01__main {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  text-align: center;
}
.c-heading01__main .em {
  color: var(--color-primary);
}
.c-heading01.__secondary {
  color: var(--color-white);
}
.c-heading01.__secondary .c-heading01__main {
  font-size: 2rem;
}
.c-heading01.__secondary .c-heading01__main .em {
  font-size: 2.5rem;
  color: transparent;
  background: var(--color-gradient-a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 834px) {
  .c-heading01__sub {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  .c-heading01__sub::before, .c-heading01__sub::after {
    width: 0.125rem;
    height: 0.125rem;
  }
  .c-heading01__main {
    font-size: 1.5rem;
  }
  .c-heading01.__secondary .c-heading01__main {
    font-size: 1.125rem;
  }
  .c-heading01.__secondary .c-heading01__main .em {
    font-size: 1.5rem;
  }
}
/**************************************************************
*
* List
*
**************************************************************/
/*************************************
* Common Style
*************************************/
/**************************************************************
*
* List Basic
*
**************************************************************/
.c-list-basic__item {
  position: relative;
  margin-left: 0.5rem;
  padding-left: 0.875rem;
  line-height: var(--line-height-lg);
}
.c-list-basic__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.1875rem;
  height: 0.1875rem;
  background-color: var(--color-white);
  border-radius: 99px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-list-basic.__gap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
/**************************************************************
*
* List check
*
**************************************************************/
.c-list-check {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
.c-list-check__item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: var(--line-height);
}
.c-list-check__item .em {
  color: var(--color-accent);
}
.c-list-check__item::before {
  content: "";
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDExIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgNEw0IDdMMTAgMSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=");
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.c-list-check.__bold {
  row-gap: 1.125rem;
}
.c-list-check.__bold .c-list-check__item {
  font-weight: bold;
}
@media screen and (max-width: 834px) {
  .c-list-check {
    row-gap: 0.625rem;
  }
  .c-list-check__item {
    padding-left: 1rem;
    font-size: 0.875rem;
  }
  .c-list-check__item::before {
    top: 0.375rem;
  }
  .c-list-check.__bold {
    row-gap: 1rem;
  }
}
/*************************************************************
* Paragraph basic
*************************************************************/
.c-paragraph-basic {
  font-size: 1rem;
  line-height: var(--line-height);
}
.c-paragraph-basic .num {
  font-size: 1.625rem;
  line-height: 0.3;
}
.c-paragraph-basic .em {
  color: var(--color-accent);
  font-weight: bold;
}
.c-paragraph-basic .em .num {
  font-size: 2.5rem;
}
.c-paragraph-basic .lg {
  font-size: 1.25rem;
}
.c-paragraph-basic .sm {
  font-size: 0.875rem;
}
@media screen and (max-width: 834px) {
  .c-paragraph-basic {
    font-size: 0.875rem;
  }
  .c-paragraph-basic .num {
    font-size: 1.375rem;
  }
  .c-paragraph-basic .em .num {
    font-size: 2.1875rem;
  }
  .c-paragraph-basic .lg {
    font-size: 1.125rem;
  }
  .c-paragraph-basic .sm {
    font-size: 0.625rem;
  }
}
/**************************************************************
*
* Table
*
**************************************************************/
/*************************************
* Common Style
*************************************/
/*************************************
* Theme Common Style
*************************************/
/**************************************************************
*
* Table01
*
**************************************************************/
.c-table01 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.3125rem;
}
.c-table01 tr th {
  vertical-align: top;
  padding: 1.125rem;
  max-width: 14.375rem;
  width: 14.375rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: var(--line-height);
  text-align: center;
}
.c-table01 tr td {
  vertical-align: top;
  padding: 1.125rem 2.5rem;
  background-color: var(--color-white);
  font-weight: 500;
  line-height: var(--line-height);
}
.c-table01__flow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.c-table01__flex {
  display: flex;
  row-gap: 2rem;
  column-gap: 1.25rem;
}
.c-table01__flex-head {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 0.75rem;
  border-bottom: dashed 0.1875rem var(--color-hr);
}
@media screen and (max-width: 834px) {
  .c-table01 tr th {
    padding: 0.75rem 0.5rem;
    max-width: 6.25rem;
    width: 6.25rem;
    font-size: 0.875rem;
  }
  .c-table01 tr td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  .c-table01__flow {
    gap: 0.3125rem;
  }
  .c-table01__flex {
    flex-direction: column;
  }
  .c-table01__flex-head {
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
    padding-bottom: 0.75rem;
  }
}
/**************************************************************
*
* Table02
*
**************************************************************/
.c-table02 {
  width: 100%;
}
.c-table02 tr {
  border-top: solid 0.0625rem #D6D6D8;
  border-bottom: solid 0.0625rem #D6D6D8;
}
.c-table02 tr:last-child {
  border-bottom: none;
}
.c-table02 tr th {
  max-width: 13.75rem;
  padding: 1.5rem 1.75rem;
  font-weight: 500;
  line-height: var(--line-height);
  text-align: left;
}
.c-table02 tr td {
  vertical-align: top;
  padding: 1.5rem 1.75rem;
  font-weight: 500;
  line-height: var(--line-height);
}
@media screen and (max-width: 834px) {
  .c-table02 tr th {
    padding: 1.5rem 0.3125rem;
    max-width: 6.25rem;
    width: 6.25rem;
  }
  .c-table02 tr td {
    padding: 1.5rem 0.3125rem;
  }
}
/**************************************************************
*
* Table Comparison
*
**************************************************************/
.c-table-comparison {
  width: 100%;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
.c-table-comparison th,
.c-table-comparison td {
  border: 0.0625rem solid var(--color-white);
  padding: 0.625rem 0.75rem;
  line-height: 1.3;
}
.c-table-comparison thead th {
  background-color: #f7f7f7;
  color: var(--color-black);
  font-size: 1.375rem;
  font-weight: bold;
  width: 30%;
}
.c-table-comparison thead th .notice {
  font-size: 0.875rem;
}
.c-table-comparison thead th.is-empty {
  background-color: transparent;
  border: none;
}
.c-table-comparison thead th.is-highlight {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.c-table-comparison tbody th {
  background-color: #f7f7f7;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  color: var(--color-text-b);
}
.c-table-comparison tbody td {
  background-color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
}
.c-table-comparison tbody td .em {
  color: var(--color-accent);
}
.c-table-comparison tbody td .num {
  font-size: 2rem;
}
.c-table-comparison tbody td .alpha {
  text-align: left;
  padding-left: 3.375rem;
}
.c-table-comparison tbody td .notice {
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 400;
}
.c-table-comparison tbody td.is-highlight {
  background-color: #fffeea;
}
@media screen and (max-width: 834px) {
  .c-table-comparison thead th {
    font-size: 0.875rem;
  }
  .c-table-comparison thead th .notice {
    font-size: 0.625rem;
  }
  .c-table-comparison tbody th {
    font-size: 0.75rem;
  }
  .c-table-comparison tbody td {
    font-size: 0.75rem;
  }
  .c-table-comparison tbody td .em {
    color: var(--color-accent);
  }
  .c-table-comparison tbody td .num {
    font-size: 1rem;
  }
  .c-table-comparison tbody td .notice {
    font-size: 0.625rem;
  }
  .c-table-comparison tbody td .alpha {
    text-align: center;
    padding-left: 0;
  }
  .c-table-comparison tbody td.is-highlight {
    width: 33%;
  }
}
@media screen and (max-width: 549px) {
  .c-table-comparison tbody td .alpha {
    text-align: center;
  }
}

/************************************************
* Object - Form
***********************************************/
/*************************************************************
* チェックボックス01
*************************************************************/
.f-checkbox01 {
  display: flex;
}
.f-checkbox01__input {
  opacity: 0;
  width: 0px;
  position: absolute;
}
.f-checkbox01__input[disabled] + .f-checkbox01__label {
  color: var(--color-gray);
}
.f-checkbox01__input:checked + .f-checkbox01__label:before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.f-checkbox01__input:checked + .f-checkbox01__label:after {
  opacity: 1;
}
.f-checkbox01__label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  white-space: nowrap;
}
.f-checkbox01__label:before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background-color: var(--color-white);
  border-radius: 3px;
  border: 1px solid #9A9A9A;
}
.f-checkbox01__label:after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
  position: absolute;
  top: -4px;
  bottom: 0;
  left: 6px;
  margin: auto;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.f-checkbox01__container {
  display: flex;
  flex-flow: row wrap;
}
.f-checkbox01__container .f-checkbox01 {
  width: 33.33%;
  padding-right: 10px;
}
.f-checkbox01__container .f-checkbox01:nth-child(n+4) {
  margin-top: 20px;
}
@media screen and (max-width: 979px) {
  .f-checkbox01__container .f-checkbox01 {
    width: 50%;
  }
  .f-checkbox01__container .f-checkbox01:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 549px) {
  .f-checkbox01__container .f-checkbox01 {
    width: 100%;
    padding-right: 0;
  }
  .f-checkbox01__container .f-checkbox01:nth-child(n+2) {
    margin-top: 20px;
  }
}

/*************************************************************
* Date01
*************************************************************/
.f-date01 {
  transition: var(--anime-duration) var(--anime-function);
  transition-property: background-color;
  width: 100%;
  padding: 10px 20px;
  background-color: var(--color-bg-secondary);
  border-radius: 3px;
  border: none;
  font-size: 16px;
  position: relative;
}
.f-date01:focus {
  outline: none;
  background-color: var(--color-bg);
}
.f-date01.__error, .f-date01:invalid {
  border-color: var(--color-alert);
}
.f-date01.__medium {
  max-width: 400px;
}
.f-date01.__small {
  max-width: 80px;
}
.f-date01::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xNC4xMjEgNS4yNVYyLjkwMkMxNC4xMjA3IDIuNDczNTcgMTMuOTUwNiAyLjA2Mjc0IDEzLjY0NzggMS43NTk2MUMxMy4zNDUxIDEuNDU2NDggMTIuOTM0NCAxLjI4NTc5IDEyLjUwNiAxLjI4NUgxMS43MDZWMy4wNjdDMTEuNzA1NyAzLjI5MDUgMTEuNjE2OCAzLjUwNDc2IDExLjQ1ODggMy42NjI4QzExLjMwMDggMy44MjA4MyAxMS4wODY1IDMuOTA5NzMgMTAuODYzIDMuOTFIOS4zNzlDOS4xNTU1IDMuOTA5NzMgOC45NDEyNCAzLjgyMDgzIDguNzgzMiAzLjY2MjhDOC42MjUxNyAzLjUwNDc2IDguNTM2MjYgMy4yOTA1IDguNTM2IDMuMDY3VjEuMjg1SDUuNTg2VjMuMDY3QzUuNTg1NDcgMy4yOTA3NiA1LjQ5NjIxIDMuNTA1MTggNS4zMzc4IDMuNjYzMjFDNS4xNzkzOSAzLjgyMTI1IDQuOTY0NzYgMy45MSA0Ljc0MSAzLjkxSDMuMjYxQzMuMDM3MjQgMy45MSAyLjgyMjYxIDMuODIxMjUgMi42NjQyIDMuNjYzMjFDMi41MDU3OSAzLjUwNTE4IDIuNDE2NTMgMy4yOTA3NiAyLjQxNiAzLjA2N1YxLjI4NUgxLjYxNkMxLjE4NzQgMS4yODU1MyAwLjc3NjUyIDEuNDU2MDkgMC40NzM1NDcgMS43NTkyNUMwLjE3MDU3NCAyLjA2MjQxIDAuMDAwMjY0NTY4IDIuNDczNCAwIDIuOTAyVjEyLjg3OUMwLjAwMDUyOTM1MyAxMy4zNDgzIDAuMTg3MTgxIDEzLjc5ODIgMC41MTkwMDYgMTQuMTNDMC44NTA4MyAxNC40NjE4IDEuMzAwNzMgMTQuNjQ4NSAxLjc3IDE0LjY0OUgxMi4zNUMxMi44MTkzIDE0LjY0ODUgMTMuMjY5MiAxNC40NjE4IDEzLjYwMSAxNC4xM0MxMy45MzI4IDEzLjc5ODIgMTQuMTE5NSAxMy4zNDgzIDE0LjEyIDEyLjg3OVY1LjI0OUwxNC4xMjEgNS4yNVpNMS4zOTMgNS4xNDRIMTIuNzI4VjEyLjg3OUMxMi43MjggMTIuOTc5MyAxMi42ODgyIDEzLjA3NTQgMTIuNjE3MyAxMy4xNDYzQzEyLjU0NjQgMTMuMjE3MiAxMi40NTAzIDEzLjI1NyAxMi4zNSAxMy4yNTdIMS43N0MxLjY2OTc1IDEzLjI1NyAxLjU3MzYgMTMuMjE3MiAxLjUwMjcxIDEzLjE0NjNDMS40MzE4MiAxMy4wNzU0IDEuMzkyIDEyLjk3OTMgMS4zOTIgMTIuODc5TDEuMzkzIDUuMTQ0WiIgZmlsbD0iI0I1QjVCNiIvPgogICAgPHBhdGggZD0iTTQuNjYgNi41ODYwMUgyLjkzN1Y4LjMwOUg0LjY2VjYuNTg2MDFaIiBmaWxsPSIjQjVCNUI2Ii8+CiAgICA8cGF0aCBkPSJNNy45MjIgNi41ODZINi4xOTlWOC4zMDlINy45MjJWNi41ODZaIiBmaWxsPSIjQjVCNUI2Ii8+CiAgICA8cGF0aCBkPSJNOS40NjEgOC4zMDM5OUgxMS4xODRWNi41ODFIOS40NjFWOC4zMDM5OVoiIGZpbGw9IiNCNUI1QjYiLz4KICAgIDxwYXRoIGQ9Ik00LjY2IDkuNzAyMDFIMi45MzdWMTEuNDI1SDQuNjZWOS43MDIwMVoiIGZpbGw9IiNCNUI1QjYiLz4KICAgIDxwYXRoIGQ9Ik03LjkyMiA5LjcwMkg2LjE5OVYxMS40MjVINy45MjJWOS43MDJaIiBmaWxsPSIjQjVCNUI2Ii8+CiAgICA8cGF0aCBkPSJNOS40NjEgMTEuNDI1SDExLjE4NFY5LjcwMjAxSDkuNDYxVjExLjQyNVoiIGZpbGw9IiNCNUI1QjYiLz4KICAgIDxwYXRoIGQ9Ik0zLjI2MSAzLjMxNEg0Ljc0MUM0Ljc3MzYxIDMuMzE0MjYgNC44MDU5NCAzLjMwODA3IDQuODM2MTQgMy4yOTU3OEM0Ljg2NjM0IDMuMjgzNDggNC44OTM4IDMuMjY1MzMgNC45MTY5NSAzLjI0MjM3QzQuOTQwMSAzLjIxOTQgNC45NTg0NyAzLjE5MjA5IDQuOTcxMDEgMy4xNjE5OUM0Ljk4MzU1IDMuMTMxODkgNC45OSAzLjA5OTYxIDQuOTkgMy4wNjdWMC43NjhDNC45ODkyMSAwLjU2NDIxMSA0LjkwNzc3IDAuMzY5MDI1IDQuNzYzNDggMC4yMjUxMTJDNC42MTkxOSAwLjA4MTE5NzcgNC40MjM3OSAwLjAwMDI2Mjc3NyA0LjIyIDBIMy43ODJDMy41NzgyMSAwLjAwMDI2Mjc3NyAzLjM4MjgxIDAuMDgxMTk3NyAzLjIzODUyIDAuMjI1MTEyQzMuMDk0MjMgMC4zNjkwMjUgMy4wMTI3OSAwLjU2NDIxMSAzLjAxMiAwLjc2OFYzLjA2OEMzLjAxMiAzLjEwMDYxIDMuMDE4NDYgMy4xMzI4OSAzLjAzMDk5IDMuMTYyOTlDMy4wNDM1MyAzLjE5MzA5IDMuMDYxOSAzLjIyMDQgMy4wODUwNSAzLjI0MzM3QzMuMTA4MiAzLjI2NjMzIDMuMTM1NjYgMy4yODQ0OCAzLjE2NTg2IDMuMjk2NzhDMy4xOTYwNiAzLjMwOTA3IDMuMjI4MzkgMy4zMTUyNiAzLjI2MSAzLjMxNSIgZmlsbD0iI0I1QjVCNiIvPgogICAgPHBhdGggZD0iTTkuMzc5MDEgMy4zMTRIMTAuODYxQzEwLjg5MzUgMy4zMTQxMyAxMC45MjU2IDMuMzA3ODMgMTAuOTU1NyAzLjI5NTQ3QzEwLjk4NTcgMy4yODMxIDExLjAxMyAzLjI2NDkxIDExLjAzNiAzLjI0MTk1QzExLjA1ODkgMy4yMTg5OSAxMS4wNzcxIDMuMTkxNzEgMTEuMDg5NSAzLjE2MTY4QzExLjEwMTggMy4xMzE2NSAxMS4xMDgxIDMuMDk5NDcgMTEuMTA4IDMuMDY3VjAuNzY4QzExLjEwNzIgMC41NjQzODQgMTEuMDI1OSAwLjM2OTM0OSAxMC44ODE4IDAuMjI1NDY0QzEwLjczNzcgMC4wODE1NzgxIDEwLjU0MjYgMC4wMDA1MjY2NTEgMTAuMzM5IDBIOS44OTlDOS42OTU1NiAwLjAwMDc5MDA3OSA5LjUwMDY4IDAuMDgxOTU3OCA5LjM1NjgyIDAuMjI1ODE1QzkuMjEyOTcgMC4zNjk2NzIgOS4xMzE3OCAwLjU2NDU1NyA5LjEzMDk5IDAuNzY4VjMuMDY4QzkuMTMwOTkgMy4xMDA0NCA5LjEzNzM4IDMuMTMyNTYgOS4xNDk3OSAzLjE2MjUyQzkuMTYyMjEgMy4xOTI0OSA5LjE4MDQyIDMuMjE5NzIgOS4yMDMzNSAzLjI0MjY2QzkuMjI2MjkgMy4yNjU1OSA5LjI1MzUyIDMuMjgzNzkgOS4yODM0OSAzLjI5NjJDOS4zMTM0NiAzLjMwODYxIDkuMzQ1NTcgMy4zMTUgOS4zNzggMy4zMTUiIGZpbGw9IiNCNUI1QjYiLz4KICA8L3N2Zz4K");
  pointer-events: none;
}
.f-date01::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.f-date01::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.f-date01::-webkit-clear-button {
  -webkit-appearance: none;
}
.f-date01:placeholder-shown {
  color: #ccc;
}
.f-date01::-webkit-input-placeholder {
  color: #ccc;
}
.f-date01:-moz-placeholder {
  color: #ccc;
}
.f-date01::-moz-placeholder {
  color: #ccc;
}
.f-date01:-ms-input-placeholder {
  color: #ccc;
}

/*************************************************************
* ファイル
*************************************************************/
input[type=file] {
  display: none;
}
input[type=file] + .btn_file {
  display: inline-block;
  width: auto;
  background-color: #efefef;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 3px 8px;
  cursor: pointer;
  font-size: 0.85em;
}

/*************************************************************
* ラジオボタン01
*************************************************************/
.f-radio01 {
  display: flex;
}
.f-radio01:not(:last-child) {
  margin-right: 50px;
  float: left;
}
.f-radio01__input {
  opacity: 0;
  width: 0px;
  position: absolute;
}
.f-radio01__input[disabled] + .f-radio01__label {
  color: #ababab;
}
.f-radio01__input:checked + .f-radio01__label:before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.f-radio01__label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
}
.f-radio01__label:before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 10px;
  border-radius: 50%;
  border: solid 1px var(--color-text);
  background-color: var(--color-bg);
}

/*************************************************************
* セレクト01
*************************************************************/
.f-select01 {
  position: relative;
  display: block;
  width: fit-content;
  min-width: 320px;
  background-color: var(--color-white);
  border-radius: 3px;
  border: none;
  font-size: 16px;
}
.f-select01__input {
  appearance: none;
  outline: none;
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 10px 15px;
}
.f-select01__input.is-empty {
  color: #989898;
}
.f-select01:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--color-gray) transparent transparent transparent;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .f-select01__input {
    padding: 10px 8px;
  }
}

/*************************************************************
* Text01
*************************************************************/
.f-text01 {
  transition: var(--anime-duration) var(--anime-function);
  transition-property: background-color;
  width: 100%;
  background-color: var(--color-white);
  border: solid 1px #808080;
  border-radius: 7px;
  padding: 10px 15px;
  font-size: 16px;
}
.f-text01.__error, .f-text01:invalid {
  border-color: var(--color-alert);
}
.f-text01.__medium {
  max-width: 400px;
}
.f-text01.__small {
  max-width: 80px;
}
.f-text01:placeholder-shown {
  color: #808080;
}
.f-text01::-webkit-input-placeholder {
  color: #808080;
}
.f-text01:-moz-placeholder {
  color: #808080;
}
.f-text01::-moz-placeholder {
  color: #808080;
}
.f-text01:-ms-input-placeholder {
  color: #808080;
}
@media screen and (max-width: 834px) {
  .f-text01 {
    padding: 10px 8px;
  }
}

/*************************************************************
* テキストエリア01
*************************************************************/
.f-textarea01 {
  transition: var(--anime-duration) var(--anime-function);
  transition-property: background-color;
  width: 100%;
  min-height: 200px;
  resize: vertical;
  background-color: var(--color-white);
  border: solid 1px #808080;
  border-radius: 7px;
  padding: 10px 15px;
  font-size: 16px;
  line-height: var(--line-height);
}
.f-textarea01 ::placeholder {
  color: #808080;
}
.f-textarea01:placeholder-shown {
  color: #808080;
}
.f-textarea01::-webkit-input-placeholder {
  color: #808080;
}
.f-textarea01:-moz-placeholder {
  color: #808080;
}
.f-textarea01::-moz-placeholder {
  color: #808080;
}
.f-textarea01:-ms-input-placeholder {
  color: #808080;
}
@media screen and (max-width: 834px) {
  .f-textarea01 {
    padding: 10px 8px;
  }
}

/*************************************************************
* トグルスイッチ01
*************************************************************/
.f-toggle01__input {
  opacity: 0;
  width: 0px;
}
.f-toggle01__input:checked + .f-toggle01__label:before {
  background-color: #fdc23e;
  border-color: #fdc23e;
}
.f-toggle01__input:checked + .f-toggle01__label:after {
  transform: translateX(1rem);
}
.f-toggle01__label {
  padding-left: 2.8em;
  position: relative;
  line-height: var(--line-height);
}
.f-toggle01__label:before {
  content: "";
  width: 2rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 4px;
  background-color: #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.24) inset;
}
.f-toggle01__label:after {
  content: "";
  display: block;
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  border: 1px solid #ededed;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.6);
  transition: transform 100ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

/************************************************
* Object - Project
***********************************************/
/*************************************************************
*
* Top cta fix
*
*************************************************************/
.p-cta-fix {
  width: 100%;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 10;
}
.p-cta-fix.is-fixed {
  transform: translateY(0);
}
.p-cta-fix::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-white);
  opacity: 0.75;
  z-index: -1;
}
.p-cta-fix__tel {
  margin-right: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-black);
}
.p-cta-fix__tel-speech {
  width: 4.1875rem;
  height: 2.9375rem;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--color-white);
}
.p-cta-fix__tel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.p-cta-fix__tel-wrapper_main {
  display: flex;
  align-items: center;
}
.p-cta-fix__tel-icon {
  width: 1.125rem;
  aspect-ratio: 1/1;
  fill: currentColor;
}
.p-cta-fix__tel-number {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.p-cta-fix__tel-time {
  font-size: 0.625rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: var(--color-text-b);
}
.p-cta-fix__button {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.25rem;
  background: var(--color-gradient-a);
  color: var(--color-white);
}
.p-cta-fix__button.__line {
  background: var(--color-gradient-c);
}
.p-cta-fix__button-icon {
  fill: currentColor;
  width: 1.5rem;
  height: auto;
}
.p-cta-fix__button-text {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
  line-height: 1.25;
  text-align: center;
  color: inherit;
}
.p-cta-fix__button-time {
  font-size: 0.625rem;
  font-weight: bold;
  letter-spacing: 0.0625rem;
  line-height: 1.25;
}
@media screen and (max-width: 834px) {
  .p-cta-fix {
    gap: 0.375rem;
  }
  .p-cta-fix__tel {
    margin-right: 0;
    gap: 0.375rem;
  }
  .p-cta-fix__tel-speech {
    width: 2.8125rem;
    height: 2.9375rem;
    font-size: 0.5rem;
  }
  .p-cta-fix__tel-number {
    font-size: 0.75rem;
  }
  .p-cta-fix__tel-time {
    font-size: 0.5rem;
  }
  .p-cta-fix__button {
    position: relative;
    padding: 0.25rem 0.5rem;
    padding-bottom: 0.9375rem;
    gap: 0.25rem;
  }
  .p-cta-fix__button-icon {
    width: 1.25rem;
  }
  .p-cta-fix__button-text {
    font-size: 0.75rem;
  }
  .p-cta-fix__button-time {
    font-size: 0.375rem;
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*************************************************************
*
* cta
*
*************************************************************/
.p-cta {
  position: relative;
}
.p-cta__top {
  position: relative;
}
.p-cta__top-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.p-cta__top-wrapper {
  position: relative;
  overflow: hidden;
  padding-block: 3.75rem;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1;
}
.p-cta__top-staff {
  position: absolute;
  bottom: -0.5rem;
  right: var(--space-inline);
  width: 10.625rem;
  z-index: 11;
}
.p-cta__top-staff.__secondary {
  right: 0;
  width: 13.75rem;
}
.p-cta__top-title {
  width: 27.25rem;
}
.p-cta__top-title.__secondary {
  margin-left: 3.25rem;
  width: 20.75rem;
}
.p-cta__top-content {
  width: 28rem;
}
.p-cta__bottom {
  z-index: 2;
  background-color: #fdf4e8;
  padding-block: 2.5rem;
}
.p-cta__bottom-wrapper {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.p-cta__button {
  border-radius: 0.5rem;
  padding: 1.5rem 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-white);
  background: var(--color-gradient-a);
  opacity: 1;
  transition: var(--anime-duration) var(--anime-function);
  transition-property: opacity;
}
.p-cta__button.__line {
  background: var(--color-gradient-c);
}
.p-cta__button.__tel {
  background: var(--color-gradient-b);
}
.p-cta__button-icon {
  width: 2rem;
  fill: currentColor;
}
.p-cta__button-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.p-cta__button-time {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.p-cta__button-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.p-cta__button-tel_number {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.p-cta__button-arrow {
  fill: currentColor;
  width: 0.625rem;
}
.p-cta__button:hover {
  opacity: 0.75;
}
@media screen and (max-width: 834px) {
  .p-cta__top-wrapper {
    padding-block: 2.5rem;
    gap: 1rem;
  }
  .p-cta__top-staff {
    bottom: 0;
    right: var(--space-inline);
    width: 7.375rem;
  }
  .p-cta__top-staff.__secondary {
    bottom: 0;
    right: var(--space-inline);
    width: 7.875rem;
  }
  .p-cta__top-title {
    width: 14.125rem;
  }
  .p-cta__top-title.__secondary {
    margin-left: 1.875rem;
    width: 10.375rem;
  }
  .p-cta__top-content {
    width: 14.125rem;
  }
  .p-cta__bottom {
    padding-block: 1rem;
  }
  .p-cta__bottom-wrapper {
    gap: 0.5rem;
  }
  .p-cta__button {
    padding: 1rem;
    gap: 0.625rem;
  }
  .p-cta__button-icon {
    width: 1.5rem;
  }
  .p-cta__button-text {
    font-size: 1rem;
  }
  .p-cta__button-time {
    font-size: 0.625rem;
  }
  .p-cta__button-tel_number {
    font-size: 0.875rem;
  }
  .p-cta__button-arrow {
    width: 0.625rem;
  }
}
/*************************************************************
*
* worry
*
*************************************************************/
.p-worry {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
}
.p-worry__title {
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  color: var(--color-dark);
}
.p-worry__title .em {
  font-size: 2.5rem;
  color: var(--color-secondary);
}
.p-worry__wrapper {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
.p-worry__image {
  height: 21.25rem;
}
.p-worry__list {
  width: 36.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-worry__list-item {
  padding-block: 1rem;
  border-bottom: dotted 0.0625rem var(--color-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: var(--line-height);
}
.p-worry__list-item::before {
  content: "";
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOSAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzk4Xzg4OSkiPiA8cGF0aCBkPSJNMC44MzEwNTUgMFYyOEgyOC44MzExVjkuOTAwMDhMMjQuMjM3MyAxNC40OTM4VjIzLjQwNjJINS40MjQ4VjQuNTkzNzVIMTQuMzM3MkwxOC45MzEgMEgwLjgzMTA1NVpNMjQuODY0NiAwLjM1Mzc1N0wxNC43MzM3IDEwLjQ4NjNMMTEuMTE0MSA2Ljg2NjZMNy40MDIxNCAxMC41ODAyTDE0LjczMzUgMTcuOTFMMTguNDQ1NSAxNC4xOTgxTDI4LjU3NjMgNC4wNjU1NUwyNC44NjQ0IDAuMzUzNjYzTDI0Ljg2NDYgMC4zNTM3NTdaIiBmaWxsPSIjMUM3MkJCIi8+IDwvZz4gPGRlZnM+IDxjbGlwUGF0aCBpZD0iY2xpcDBfOThfODg5Ij4gPHJlY3Qgd2lkdGg9IjI4IiBoZWlnaHQ9IjI4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC44MzEwNTUpIi8+IDwvY2xpcFBhdGg+IDwvZGVmcz4gPC9zdmc+");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.p-worry__arrow {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  fill: var(--color-white);
}
@media screen and (max-width: 834px) {
  .p-worry__title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
  .p-worry__title .em {
    font-size: 1.5rem;
  }
  .p-worry__wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .p-worry__image {
    height: 6.25rem;
  }
  .p-worry__list {
    width: 100%;
    gap: 0.625rem;
  }
  .p-worry__list-item {
    padding-block: 0.5rem;
    gap: 0.625rem;
    font-size: 0.875rem;
  }
  .p-worry__list-item::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
/*************************************************************
*
* point
*
*************************************************************/
.p-point {
  position: relative;
  background-color: var(--color-dark);
  padding-top: 10rem;
}
.p-point__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-point__title {
  position: relative;
  z-index: 1;
  margin-bottom: 5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
}
.p-point__title-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  color: var(--color-white);
}
.p-point__title-text .em {
  font-size: 2.5rem;
  color: transparent;
  background: var(--color-gradient-a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-point__title::before, .p-point__title::after {
  content: "";
  display: block;
  width: 0.25rem;
  height: 6.25rem;
  border-radius: 0.125rem;
  background-color: var(--color-white);
}
.p-point__title::before {
  transform: rotate(-20deg);
}
.p-point__title::after {
  transform: rotate(20deg);
}
.p-point__wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  gap: 4.0625rem;
  counter-reset: number 0;
}
.p-point__item {
  position: relative;
  display: flex;
  gap: 1.5rem;
}
.p-point__item-figure {
  position: relative;
  flex: 1;
}
.p-point__item-figure_inner {
  position: relative;
  max-width: 31rem;
  aspect-ratio: 480/260;
}
.p-point__item-figure_inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  background: var(--color-gradient-b);
}
.p-point__item-figure_image {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: cover;
}
.p-point__item-wrapper {
  width: 42.5rem;
  position: relative;
  padding-top: 2.6875rem;
}
.p-point__item-ribbon {
  position: absolute;
  top: 0;
  left: 2rem;
  width: 10.625rem;
  height: 10.9375rem;
  padding-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-white);
}
.p-point__item-ribbon_image {
  position: absolute;
  inset: 0;
}
.p-point__item-ribbon_text {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.p-point__item-ribbon::after {
  position: relative;
  z-index: 1;
  counter-increment: number 1;
  content: counter(number);
  font-size: 5rem;
  font-weight: bold;
}
.p-point__item-box {
  padding: 2rem;
  background-color: var(--color-white);
}
.p-point__item-title {
  margin-bottom: 1.5rem;
  padding-left: 11.5rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-point__item-title .min {
  font-size: 1.5rem;
}
.p-point__item-title .em {
  color: var(--color-secondary);
}
.p-point__item-title .num {
  font-size: 3rem;
  line-height: 1;
}
.p-point__item-content {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 835px) {
  .p-point__wrapper .p-point__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 834px) {
  .p-point {
    padding-top: 5rem;
  }
  .p-point__title {
    margin-bottom: 2.75rem;
    font-size: 1.5rem;
    gap: 1rem;
  }
  .p-point__title .em {
    font-size: 1.75rem;
  }
  .p-point__title::before, .p-point__title::after {
    width: 0.125rem;
    height: 3.75rem;
  }
  .p-point__wrapper {
    gap: 2.5rem;
  }
  .p-point__item {
    flex-direction: column;
    gap: 0;
  }
  .p-point__item-figure {
    width: 100%;
  }
  .p-point__item-figure_inner {
    width: 100%;
    max-width: 100%;
  }
  .p-point__item-figure_inner::before {
    bottom: 0.75rem;
    right: -0.75rem;
    width: 100%;
    height: 100%;
  }
  .p-point__item-figure_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-point__item-wrapper {
    padding-top: 0;
    width: 100%;
  }
  .p-point__item-ribbon {
    top: -1.375rem;
    left: 1rem;
    width: 4rem;
    height: 3.75rem;
    padding-right: 0.5rem;
  }
  .p-point__item-ribbon_text {
    font-size: 0.75rem;
  }
  .p-point__item-ribbon::after {
    font-size: 1.25rem;
  }
  .p-point__item-box {
    padding: 1rem;
    padding-top: 3rem;
  }
  .p-point__item-title {
    margin-bottom: 1rem;
    padding-left: 0;
    font-size: 1.5rem;
  }
  .p-point__item-title .min {
    font-size: 1rem;
  }
  .p-point__item-title .num {
    font-size: 2.5rem;
  }
  .p-point__item-content {
    font-size: 1rem;
  }
}
/*************************************************************
*
* value
*
*************************************************************/
.p-value {
  position: relative;
}
.p-value__en {
  position: absolute;
  top: 0;
  right: 0;
  height: 10rem;
  transform: translateX(-10rem) rotate(-90deg);
  transform-origin: top right;
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  opacity: 0.1;
  z-index: -1;
}
.p-value__wrapper {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.p-value__title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-value__title .em {
  color: var(--color-secondary);
}
.p-value__title .num {
  font-size: 3rem;
}
.p-value__title .max {
  font-size: 2.5rem;
}
.p-value__head {
  width: 100%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem;
}
.p-value__head-name {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.p-value__head-number {
  position: relative;
  padding: 0.5rem;
  background-color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.p-value__head-number svg {
  position: absolute;
  width: 3.125rem;
  top: -2.75rem;
  right: -1.5rem;
  fill: #fcd26e;
}
.p-value__point {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.p-value__example {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text-b);
}
.p-value__speech {
  position: relative;
  width: 100%;
}
.p-value__speech::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8.5rem;
  transform: translateY(calc(1px - 100%));
  display: block;
  width: 2.875rem;
  height: 2rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: var(--color-dark);
}
.p-value__speech-box {
  margin-left: auto;
  width: max-content;
  background-color: var(--color-dark);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-value__speech-icon {
  fill: #fcd26e;
  width: 5rem;
  height: auto;
  position: absolute;
  top: 0.625rem;
}
.p-value__speech-text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: var(--color-white);
}
.p-value__speech-text .em {
  font-weight: bold;
  color: var(--color-secondary);
}
.p-value__speech-text .num {
  font-size: 3rem;
}
.p-value__speech-text .point {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-accent);
}
.p-value__notice {
  width: 100%;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-text-b);
}
@media screen and (max-width: 834px) {
  .p-value__en {
    display: none;
  }
  .p-value__wrapper {
    gap: 1rem;
  }
  .p-value__title {
    font-size: 1.5rem;
  }
  .p-value__title .num {
    font-size: 2.5rem;
  }
  .p-value__title .max {
    font-size: 2rem;
  }
  .p-value__head {
    gap: 1rem;
    padding: 0.25rem;
  }
  .p-value__head-name {
    font-size: 1.125rem;
  }
  .p-value__head-number {
    padding: 0.25rem;
    font-size: 1.125rem;
  }
  .p-value__head-number svg {
    width: 1.875rem;
    top: -1.375rem;
    right: -1rem;
  }
  .p-value__point {
    font-size: 1rem;
  }
  .p-value__example {
    font-size: 0.75rem;
  }
  .p-value__speech::before {
    right: 3.125rem;
    width: 1.5rem;
    height: 1rem;
  }
  .p-value__speech-box {
    padding: 0.5rem 0.625rem;
    gap: 0;
  }
  .p-value__speech-icon {
    width: 1.5rem;
  }
  .p-value__speech-text {
    font-size: 1rem;
  }
  .p-value__speech-text .num {
    font-size: 1.5rem;
  }
  .p-value__speech-text .point {
    font-size: 1rem;
  }
  .p-value__notice {
    font-size: 0.625rem;
  }
}
/*************************************************************
*
* support
*
*************************************************************/
.p-support {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-white);
}
.p-support__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-support__wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.p-support__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-support__title .em {
  color: transparent;
  background: var(--color-gradient-a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-support__box {
  display: flex;
}
.p-support__box-image {
  width: 50%;
  object-fit: cover;
}
.p-support__box-wrapper {
  width: 50%;
  background-color: var(--color-white);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.p-support__box-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-dark);
}
.p-support__box-content {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.p-support__box-content .em {
  font-weight: bold;
  color: var(--color-secondary);
}
.p-support__end {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .p-support__wrapper {
    gap: 1.5rem;
  }
  .p-support__title {
    font-size: 1.5rem;
  }
  .p-support__box {
    flex-direction: column;
  }
  .p-support__box-image {
    width: 100%;
    object-fit: cover;
  }
  .p-support__box-wrapper {
    width: 100%;
    padding: 1rem;
    gap: 1rem;
  }
  .p-support__box-title {
    font-size: 1.125rem;
  }
  .p-support__box-content {
    font-size: 0.75rem;
  }
  .p-support__end {
    font-size: 1.5rem;
  }
}
/*************************************************************
*
* case
*
*************************************************************/
.p-case {
  position: relative;
}
.p-case__head {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.p-case__head-gold {
  height: 8.75rem;
}
.p-case__title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-case__title-sub, .p-case__title-main {
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-dark);
}
.p-case__title-sub .em, .p-case__title-main .em {
  color: var(--color-primary);
}
.p-case__title-sub {
  font-size: 2rem;
  font-weight: 700;
}
.p-case__title-main {
  font-size: 3rem;
  font-weight: 900;
}
.p-case__slide {
  overflow: visible !important;
}
.p-case__slide-wrapper {
  display: flex;
}
.p-case__slide .swiper-prev,
.p-case__slide .swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
}
.p-case__slide .swiper-prev svg,
.p-case__slide .swiper-next svg {
  fill: var(--color-white);
  width: 1.125rem;
  height: 2.25rem;
}
.p-case__slide .swiper-prev {
  left: 0.25rem;
}
.p-case__slide .swiper-prev svg {
  transform: rotate(180deg);
}
.p-case__slide .swiper-next {
  right: 0.25rem;
}
.p-case__slide .swiper-pagination {
  position: static;
  display: block;
  padding-top: 1.5rem;
}
.p-case__item {
  height: auto !important;
  max-width: 23rem;
  box-shadow: 0 0 0.25rem var(--color-primary);
  border-radius: 0.25rem;
  padding: 1.5rem;
  display: flex !important;
  flex-direction: column;
  gap: 1.5rem;
}
.p-case__item-image {
  width: 100%;
  aspect-ratio: 320/240;
  object-fit: cover;
  border-radius: 0.25rem;
}
.p-case__item-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-case__item-name {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.p-case__item-address {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-text-b);
}
.p-case__item-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-case__item-list dl {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.p-case__item-list dt {
  width: 8.75rem;
  padding: 0.25rem;
  border: solid 0.0625rem var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-case__item-list dd {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .p-case__head {
    margin-bottom: 2.5rem;
    gap: 0;
  }
  .p-case__head-gold {
    height: 5rem;
  }
  .p-case__title-sub {
    font-size: 1.25rem;
  }
  .p-case__title-main {
    font-size: 1.75rem;
  }
  .p-case__list-wrapper {
    gap: 0.625rem;
  }
  .p-case__item {
    padding: 1rem;
    gap: 1rem;
  }
  .p-case__item-name {
    font-size: 1rem;
  }
  .p-case__item-address {
    font-size: 0.875rem;
  }
  .p-case__item-list {
    gap: 0.5rem;
  }
  .p-case__item-list dl {
    gap: 1rem;
  }
  .p-case__item-list dt {
    font-size: 0.875rem;
  }
  .p-case__item-list dd {
    font-size: 1rem;
  }
}
/*************************************************************
*
* voice
*
*************************************************************/
.p-voice {
  position: relative;
  background-color: var(--color-dark);
}
.p-voice__wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}
.p-voice__head {
  margin-bottom: 2.5rem;
}
.p-voice__slide {
  overflow: visible !important;
}
.p-voice__slide-wrapper {
  display: flex;
}
.p-voice__slide .swiper-prev,
.p-voice__slide .swiper-next {
  display: none;
}
.p-voice__item {
  max-width: 23.75rem;
  height: auto !important;
  border-radius: 0.25rem;
  background-color: var(--color-white);
  padding: 1.5rem;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.p-voice__item-owner {
  background-color: var(--color-dark);
  border-radius: 0.25rem;
  width: 100%;
  padding: 0.25rem;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-white);
}
.p-voice__item-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.p-voice__item-image {
  width: 4rem;
  aspect-ratio: 1/1;
}
.p-voice__item-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  color: var(--color-text-b);
}
.p-voice__item-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: var(--line-height);
  letter-spacing: 0.04em;
  color: var(--color-dark);
  border-bottom: solid 0.125rem var(--color-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.p-voice__item-content {
  font-size: 0.875rem;
  line-height: var(--line-height);
  letter-spacing: 0.04em;
}
.p-voice__item-content .em {
  color: var(--color-secondary);
}
@media screen and (max-width: 834px) {
  .p-voice__wrapper {
    padding: 0;
  }
  .p-voice__head {
    margin-bottom: 1.5rem;
  }
  .p-voice__slide .swiper-prev,
  .p-voice__slide .swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
  }
  .p-voice__slide .swiper-prev svg,
  .p-voice__slide .swiper-next svg {
    fill: var(--color-white);
    width: 1.125rem;
    height: 2.25rem;
  }
  .p-voice__slide .swiper-prev {
    left: 0.25rem;
  }
  .p-voice__slide .swiper-prev svg {
    transform: rotate(180deg);
  }
  .p-voice__slide .swiper-next {
    right: 0.25rem;
  }
  .p-voice__item {
    max-width: 23rem;
  }
  .p-voice__item-title {
    font-size: 1rem;
  }
}
/*************************************************************
*
* flow
*
*************************************************************/
.p-flow {
  position: relative;
}
.p-flow__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-flow__wrapper {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.p-flow__list {
  counter-reset: number 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.p-flow__item {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 0.25rem;
  padding: 2rem;
  display: grid;
  grid-template-areas: "step image" "title image" "content image";
  gap: 1rem;
  justify-content: space-between;
}
.p-flow__item::before {
  grid-area: step;
  counter-increment: number 1;
  content: "STEP" counter(number);
  width: 4.5rem;
  height: 1.5rem;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-white);
}
.p-flow__item-title {
  grid-area: title;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: var(--color-dark);
}
.p-flow__item-content {
  grid-area: content;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: var(--line-height);
  letter-spacing: 0.02em;
}
.p-flow__item-image {
  grid-area: image;
  width: 10rem;
}
@media screen and (max-width: 834px) {
  .p-flow__wrapper {
    gap: 1.5rem;
  }
  .p-flow__list {
    gap: 1rem;
  }
  .p-flow__item {
    padding: 1rem;
    grid-template-areas: "step image" "title image" "content content";
    grid-template-columns: 1fr 6.25rem;
    gap: 1rem;
    align-items: center;
  }
  .p-flow__item::before {
    margin-top: 1rem;
  }
  .p-flow__item-title {
    font-size: 1.125rem;
    height: 2.5rem;
    line-height: 1;
  }
  .p-flow__item-title .min {
    font-size: 0.875rem;
  }
  .p-flow__item-content {
    font-size: 1rem;
  }
  .p-flow__item-image {
    width: 6.25rem;
  }
}
/*************************************************************
*
* Top faq
*
*************************************************************/
.p-faq {
  position: relative;
}
.p-faq__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-faq__container {
  max-width: 1040px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.p-faq__title {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-faq__title-icon {
  fill: var(--color-e);
  width: 3.375rem;
}
.p-faq__title-text {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-e);
}
.p-faq__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-faq__item {
  border: solid 0.125rem var(--color-primary);
}
.p-faq__item-question {
  background: var(--color-primary);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-right: 2rem;
}
.p-faq__item-question::before {
  content: "Q";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
}
.p-faq__item-question_text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.p-faq__item-question_button {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 2;
}
.p-faq__item-question_button svg {
  fill: var(--color-white);
}
.p-faq__item-answer {
  background-color: var(--color-white);
  padding: 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
}
.p-faq__item-answer::before {
  content: "A";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-dark);
}
.p-faq__item-answer_text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-dark);
}
.p-faq__item.is-active .p-faq__item-answer {
  display: flex;
}
@media screen and (max-width: 834px) {
  .p-faq__container {
    gap: 1.5rem;
  }
  .p-faq__item-question_text, .p-faq__item-answer_text {
    font-size: 0.875rem;
  }
}
/*************************************************************
*
* partner
*
*************************************************************/
.p-partner {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-white);
}
.p-partner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-partner__en {
  position: absolute;
  top: 0;
  right: 0;
  height: 10rem;
  transform: translateX(-10rem) rotate(-90deg);
  transform-origin: top right;
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-white);
  opacity: 0.1;
}
.p-partner__wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.p-partner__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: transparent;
  background: var(--color-gradient-a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-partner__image {
  width: 100%;
  max-width: 42.125rem;
}
.p-partner__end {
  max-width: 50rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-partner__end .em {
  font-weight: 900;
  color: #ffaf24;
}
.p-partner__end .border {
  position: relative;
}
.p-partner__end .border::after {
  content: "";
  position: absolute;
  top: 0.875rem;
  left: calc(100% + 0.75rem);
  width: 3.375rem;
  height: 0.0625rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 834px) {
  .p-partner__en {
    display: none;
  }
  .p-partner__wrapper {
    gap: 1.5rem;
  }
  .p-partner__title {
    font-size: 1.5rem;
  }
  .p-partner__end {
    font-size: 0.875rem;
  }
  .p-partner__end .border::after {
    top: 0.75rem;
    left: calc(100% + 0.375rem);
    width: 2rem;
    height: 0.0625rem;
  }
}
/*************************************************************
*
* contact
*
*************************************************************/
.p-contact {
  position: relative;
}
.p-contact__wrapper {
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}
.p-contact__head {
  margin-bottom: 2.5rem;
}
.p-contact__form {
  width: 100%;
  /* ===== Contact Form 7 : clean form styles ===== */
  /* CF7のエラー表示を調整 */
  /* スピナー非表示（必要なら外す） */
}
.p-contact__form br {
  display: none;
}
.p-contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.p-contact__form .c-form {
  width: 100%;
  /* ラジオ（大きめ・丸・オレンジ） */
  /* 送信ボタン */
}
.p-contact__form .c-form .c-legend,
.p-contact__form .c-form .c-label {
  display: block;
  font-weight: 700;
  margin: 0 0 8px;
  font-size: 16px;
}
.p-contact__form .c-form .c-group {
  border: 0;
  padding: 0 0 8px 0;
  margin: 0 0 16px 0;
  border-bottom: 1px dotted #dddddd; /* 区切り線 */
}
.p-contact__form .c-form .c-field {
  padding: 16px 0;
  border-bottom: 1px dotted #dddddd; /* 区切り線 */
}
.p-contact__form .c-form .c-input,
.p-contact__form .c-form .c-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 12px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__form .c-form .c-textarea {
  min-height: 160px;
  resize: vertical;
}
.p-contact__form .c-form .c-input:focus,
.p-contact__form .c-form .c-textarea:focus {
  outline: 2px solid rgba(241, 154, 30, 0.2);
  border-color: var(--color-secondary);
}
.p-contact__form .c-form .c-radio {
  display: flex;
  flex-direction: column;
}
.p-contact__form .c-form .c-radio label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 8px 0;
  font-size: 16px;
}
.p-contact__form .c-form .c-radio input[type=radio] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #999;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  background: #fff;
}
.p-contact__form .c-form .c-radio input[type=radio]:checked {
  border-color: var(--color-secondary);
}
.p-contact__form .c-form .c-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.p-contact__form .c-form .c-submit {
  padding: 24px 0 0;
  text-align: center;
}
.p-contact__form .c-form .c-button {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  background: var(--color-secondary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-contact__form .c-form .c-button:hover {
  opacity: 0.75;
}
.p-contact__form .wpcf7-not-valid {
  border-color: #e74c3c !important;
}
.p-contact__form .wpcf7-not-valid-tip {
  color: #e74c3c;
  margin-top: 6px;
  font-size: 13px;
}
.p-contact__form .wpcf7-spinner {
  display: none;
}