:root {
  --color-red: #d92728;
  --color-bg: #f7f7f7;
  --color-blue: #082dd3;
  --color-gray: #3e3c3c;
  --color-primary: #0200f5;
  --color-primary-light: #0731ec;
  --color-primary-bg: #eef4f6;
  --color-secondary-bg: #fff7f7;
  --color-secondary: #ff6450;
  --color-cv-primary: #0200f5;
  --color-cv-secondary: #ff6450;
  --color-bg02: #e8eaef;
  --color-gray-light: #e5e5e5;
  --color-green: #00a3a0;
  --color-green-lightest: #f2f6f3;
  --color-slider-arrow: var(--color-black);
  --color-gradation-01: linear-gradient(355deg, rgb(255 255 255) 20%, #7abee3 60%, #292dbf 90%);
  --color-gradation-02: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, rgb(241 242 246) 85%);
  --color-button-solid: #000;
  --color-button-gradient01: linear-gradient(to right, #000 0%, #000 50%, var(--color-cv-primary) 90%);
  --change-color-bg: #fff;
  --change-color-text: #000;
  --change-color-fill: #000;
  --change-color-border: #000;
  --change-translate-x: calc(5 / 16 * 1rem);
  --color-black: #000;
  --color-white: #fff;
  --color-gray-25: #252525;
  --color-gray-33: #333;
  --color-gray-5e: #5e5e5e;
  --color-gray-66: #666;
  --color-gray-80: #808080;
  --color-gray-99: #999;
  --color-gray-cc: #ccc;
  --color-gray-dd: #ddd;
  --color-gray-ee: #eee;
  --color-gray-e0: #e0e0e0;
  --color-gray-e5: #e5e5e5;
  --color-gray-f4: #f4f4f4;
  --color-gray-f5: #f5f5f5;
  --color-gray-f7: #f7f7f7;
  --anime-duration: 300ms;
  --anime-function: ease-out;
  --font-size-base: 14;
  --color-text-base: #000;
  --color-text-gray: #999;
  --font-family: "Noto Sans JP", "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", meiryo, sans-serif;
  --font-family-en: "Inter", sans-serif;
  --line-height-large: 2;
  --line-height-largeish: 1.9;
  --line-height-base: 2;
  --line-height-smallish: 1.6;
  --line-height-small: 1.4;
  --line-height-heading-base: 1.5;
  --letter-spacing-large: 0.04em;
  --letter-spacing-base: 0em;
  --letter-spacing-heading-large: 0.06em;
  --letter-spacing-heading-base: 0.04em;
  --letter-spacing-heading-small: 0em;
  --page-wrap-px: 20;
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 16;
    --page-wrap-px: 28;
    --content-width-base: 1200;
  }
}

/* =========================================================
reset
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

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

body {
  overflow-x: hidden;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  cursor: pointer;
}

input,
select {
  vertical-align: middle;
}

strong {
  font-weight: normal;
}

/* =========================================================
base
========================================================= */
html {
  scrollbar-gutter: stable;
  font-size: calc(16/390 * 100vw);
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (min-width:767px) {
  html {
    font-size: clamp(0.8rem, -0.25rem + 1.3vw, 1rem);
  }
}

html,
body {
  width: 100%;
  height: auto;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-text-base);
  letter-spacing: var(--letter-spacing-base);
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: calc(var(--font-size-base) / 16 * 1rem);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (min-width: 768px) {
  img {
    /* stylelint-disable-next-line value-no-vendor-prefix */
    image-rendering: -webkit-optimize-contrast;
  }
}

svg {
  vertical-align: bottom;
}

a {
  color: var(--color-text-base);
}

figure {
  line-height: 0;
}

button {
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text-base);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: var(--line-height-heading-base);
  letter-spacing: var(--letter-spacing-heading-base);
}

em {
  font-style: normal;
}

.p-section-heading {
  position: relative;
}
.p-section-heading::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(70 / 16 * 1rem);
  height: calc(5 / 16 * 1rem);
  margin: 0 auto;
  content: "";
  background-color: var(--color-red);
  border-radius: 9999px;
}

.l-section {
  position: relative;
}
.l-section.is-bg-gradient-gray {
  background: var(--color-gradation-02);
  border-top: solid 1px var(--color-gray-e0);
}
.l-section.is-bg-gradient-gray::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  height: 8px;
  content: "";
  background-color: var(--color-bg02);
}

.l-wrap {
  position: relative;
  padding: 0 calc(var(--page-wrap-px) / 16 * 1rem);
}

.l-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.l-content.is-w-full {
  width: auto;
  margin-right: calc(-12 / 16 * 1rem);
  margin-left: calc(-12 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (min-width: 768px) {
  .l-content.is-w-full {
    margin-right: calc(-20 / 16 * 1rem);
    margin-left: calc(-20 / 16 * 1rem);
  }
}
.l-content.is-w-max {
  max-width: none;
}
.l-content.is-w-1440 {
  max-width: calc(1440 / 16 * 1rem);
}
.l-content.is-w-1200 {
  max-width: calc(1200 / 16 * 1rem);
}
.l-content.is-w-1140 {
  max-width: calc(1140 / 16 * 1rem);
}
.l-content.is-w-1000 {
  max-width: calc(1000 / 16 * 1rem);
}
.l-content.is-w-800 {
  max-width: calc(800 / 16 * 1rem);
}
.l-content.is-pd-x-double {
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (max-width: 767px) {
  .l-content.is-pd-x-double {
    padding: 0 calc(12 / 16 * 1rem);
  }
}
.l-content.is-pd-x-triple {
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (max-width: 767px) {
  .l-content.is-pd-x-triple {
    padding: 0 calc(24 / 16 * 1rem);
  }
}

.l-inner.is-pd-x-double {
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (max-width: 767px) {
  .l-inner.is-pd-x-double {
    padding: 0 calc(12 / 16 * 1rem);
  }
}
.l-inner.is-pd-x-triple {
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (max-width: 767px) {
  .l-inner.is-pd-x-triple {
    padding: 0 calc(24 / 16 * 1rem);
  }
}

.l-separate {
  display: grid;
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (min-width: 768px) {
  .l-separate.is-quarter {
    grid-template-columns: 21% 1fr;
    gap: 4%;
  }
}

/******************************************************************************
* anime
*******************************************************************************/
.anime-scale .a-image, .anime-scale.a-image {
  overflow: hidden;
}
.anime-scale .a-image img, .anime-scale.a-image img {
  transition: scale var(--anime-scale-duration, 0.3s) var(--anime-scale-function, ease-out) var(--anime-scale-delay, 0s);
}
@media (any-hover: hover) {
  .anime-scale .a-image:hover:hover .a-image img, .anime-scale .a-image:hover:hover.a-image img, .anime-scale.a-image:hover:hover .a-image img, .anime-scale.a-image:hover:hover.a-image img {
    scale: 1.1;
  }
}
@media (any-hover: none) {
  .anime-scale .a-image:active:hover .a-image img, .anime-scale .a-image:active:hover.a-image img, .anime-scale.a-image:active:hover .a-image img, .anime-scale.a-image:active:hover.a-image img {
    scale: 1.1;
  }
}

.anime-opacity {
  transition: opacity var(--anime-opacity-duration, 0.3s) var(--anime-opacity-function, ease-out) var(--anime-opacity-delay, 0s);
}
@media (any-hover: hover) {
  .anime-opacity:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .anime-opacity:active {
    opacity: 0.7;
  }
}

/******************************************************************************
* anime-text-line
*******************************************************************************/
.anime-text-line {
  padding-bottom: calc(var(--anime-text-line-pb, 0) / 16 * 1rem);
  background-image: linear-gradient(to right, transparent 50%, var(--anime-text-line-color, currentColor) 50% 100%);
  background-repeat: repeat-x;
  background-position: -100% bottom;
  background-size: 200% calc(var(--anime-text-line-size, 1) / 16 * 1rem);
  transition: background-position var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
}
@media (any-hover: hover) {
  .anime-text-line:hover {
    background-position: -0.01% bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
}
@media (any-hover: none) {
  .anime-text-line:active {
    background-position: -0.01% bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
}

.anime-text-line-reverse {
  padding-bottom: calc(var(--anime-text-line-pb, 0) / 16 * 1rem);
  background-image: linear-gradient(to right, currentcolor 50%, transparent 50% 100%);
  background-repeat: repeat-x;
  background-position: -100% bottom;
  background-size: 200% calc(var(--anime-text-line-size, 1) / 16 * 1rem);
  transition: background-position var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
}
@media (any-hover: hover) {
  .anime-text-line-reverse:hover {
    background-position: 0 bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
}
@media (any-hover: none) {
  .anime-text-line-reverse:active {
    background-position: 0 bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
}

.anime-text-line-parent .anime-text-line {
  pointer-events: none;
}
.anime-text-line-parent .anime-text-line-reverse {
  pointer-events: none;
}
@media (any-hover: hover) {
  .anime-text-line-parent:hover .anime-text-line {
    background-position: -0.01% bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
  .anime-text-line-parent:hover .anime-text-line-reverse {
    background-position: 0 bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
}
@media (any-hover: none) {
  .anime-text-line-parent:active .anime-text-line {
    background-position: -0.01% bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
  .anime-text-line-parent:active .anime-text-line-reverse {
    background-position: 0 bottom;
    animation: line-gradation var(--anime-text-line-duration, 0.3s) var(--anime-text-line-function, ease-out) var(--anime-text-line, 0s);
  }
}

@keyframes line-gradation {
  0% {
    background-position: 100% bottom;
  }
  100% {
    background-position: 0 bottom;
  }
}
/******************************************************************************
* text
*******************************************************************************/
.a-text em,
.a-text-note em {
  font-weight: 700;
}
.a-text em a,
.a-text-note em a {
  --anime-text-line-size: 2;
  --anime-text-line-pb: 2;
}

.a-text-note {
  display: flex;
  color: var(--color-text-gray);
  font-size: calc(12 / 16 * 1rem);
}
.a-text-note > * {
  flex: 1;
}
.a-text-note::before {
  content: attr(data-note-head) "";
}

/******************************************************************************
* text-link
*******************************************************************************/
.a-text-link {
  display: inline-block;
  color: currentcolor;
}
.a-text-link_inner {
  display: flex;
  gap: calc(8 / 16 * 1rem);
  align-items: center;
}
.a-text-link_inner svg {
  fill: var(--color-primary);
}

/******************************************************************************
* a-heading
*******************************************************************************/
.a-heading {
  font-size: calc(14 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}
.a-heading > * {
  display: block;
}
@media (min-width: 768px) {
  .a-heading {
    font-size: calc(16 / 16 * 1rem);
  }
}

/******************************************************************************
* button
*******************************************************************************/
.a-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: background-color var(--anime-duration) var(--anime-function), color var(--anime-duration) var(--anime-function), border-color var(--anime-duration) var(--anime-function);
}

@media (any-hover: hover) {
  a.a-button:hover,
  button.a-button:hover {
    color: var(--color-blue);
    background-color: #fff;
  }
}
@media (any-hover: none) {
  a.a-button:active,
  button.a-button:active {
    color: var(--color-blue);
    background-color: #fff;
  }
}
@media (any-hover: hover) {
  a.a-button.is-line-button:hover,
  button.a-button.is-line-button:hover {
    color: white;
    background-color: var(--color-blue);
  }
}
@media (any-hover: none) {
  a.a-button.is-line-button:active,
  button.a-button.is-line-button:active {
    color: white;
    background-color: var(--color-blue);
  }
}

@media (any-hover: hover) {
  .a-button-parent:hover .a-button {
    color: var(--color-blue);
    background-color: #fff;
  }
}
@media (any-hover: none) {
  .a-button-parent:active .a-button {
    color: var(--color-blue);
    background-color: #fff;
  }
}

/******************************************************************************
* image
*******************************************************************************/
.a-image {
  position: relative;
  line-height: 0;
}
.a-image.is-fit {
  position: absolute;
  inset: 0;
}
.a-image.is-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 100%;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.splide__pagination li {
  padding: 0 calc(8 / 16 * 1rem);
  font-size: 10px;
}

.splide__pagination__page {
  width: calc(4 / 16 * 1rem);
  height: calc(4 / 16 * 1rem);
  background-color: #000;
  border-radius: 9999px;
  border: 2px solid #fff;
  box-sizing: content-box;
}
.splide__pagination__page.is-active {
  background-color: #fff;
  border-color: #000;
}

.is-bg-circle .splide__pagination__page {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: transparent;
}
.is-bg-circle .splide__pagination__page.is-active {
  background-color: transparent;
  border-color: #fff;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: var(--splide-arrow-pos-top, 50%);
  transform: translateY(-50%);
  top: 50%;
}
.splide__arrow[disabled] {
  opacity: 0;
}

.splide__arrow--prev svg {
  transform: rotate(180deg);
}

.splide__arrow-circle {
  background-color: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 calc(30 / 16 * 1rem) 0px rgba(0, 0, 0, 0.3);
  width: calc(35 / 16 * 1rem);
  height: calc(35 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}
@media (min-width: 768px) {
  .splide__arrow-circle {
    width: calc(40 / 16 * 1rem);
    height: calc(40 / 16 * 1rem);
  }
}

.tw-interval-px-single {
  padding-left: calc((var(--page-wrap-px)/16)*1rem);
  padding-right: calc((var(--page-wrap-px)/16)*1rem);
}
.tw-static {
  position: static;
}
.tw-fixed {
  position: fixed;
}
.tw-relative {
  position: relative;
}
.tw-bottom-0 {
  bottom: 0px;
}
.tw-bottom-20 {
  bottom: 5rem;
}
.tw-left-0 {
  left: 0px;
}
.tw-right-0 {
  right: 0px;
}
.tw-right-4 {
  right: 1rem;
}
.tw-top-5 {
  top: 1.25rem;
}
.tw-z-\[1000\] {
  z-index: 1000;
}
.tw-z-\[100\] {
  z-index: 100;
}
.tw-z-\[1\] {
  z-index: 1;
}
.tw-mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.tw-mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.tw-mx-3\.5 {
  margin-left: 0.875rem;
  margin-right: 0.875rem;
}
.tw-mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.tw-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.tw-mt-0 {
  margin-top: 0px;
}
.tw-mt-10 {
  margin-top: 2.5rem;
}
.tw-mt-2 {
  margin-top: 0.5rem;
}
.tw-mt-2\.5 {
  margin-top: 0.625rem;
}
.tw-mt-3 {
  margin-top: 0.75rem;
}
.tw-mt-4 {
  margin-top: 1rem;
}
.tw-mt-5 {
  margin-top: 1.25rem;
}
.tw-mt-6 {
  margin-top: 1.5rem;
}
.tw-mt-7 {
  margin-top: 1.75rem;
}
.tw-mt-8 {
  margin-top: 2rem;
}
.tw-mt-9 {
  margin-top: 2.25rem;
}
.tw-block {
  display: block;
}
.tw-flex {
  display: flex;
}
.tw-grid {
  display: grid;
}
.tw-hidden {
  display: none;
}
.tw-h-10 {
  height: 2.5rem;
}
.tw-h-11 {
  height: 2.75rem;
}
.tw-h-12 {
  height: 3rem;
}
.tw-h-15 {
  height: 3.75rem;
}
.tw-h-8 {
  height: 2rem;
}
.tw-h-\[calc\(60\/16\*1rem\)\] {
  height: calc(60 / 16 * 1rem);
}
.tw-h-\[calc\(62\/16\*1rem\)\] {
  height: calc(62 / 16 * 1rem);
}
.tw-h-\[calc\(70\/16\*1rem\)\] {
  height: calc(70 / 16 * 1rem);
}
.tw-w-12 {
  width: 3rem;
}
.tw-w-28 {
  width: 7rem;
}
.tw-w-41 {
  width: 10.25rem;
}
.tw-w-58 {
  width: 14.5rem;
}
.tw-w-\[calc\(100\%-\(32\/16\*1rem\)\)\] {
  width: calc(100% - (32 / 16 * 1rem));
}
.tw-w-\[calc\(296\/16\*1rem\)\] {
  width: calc(296 / 16 * 1rem);
}
.tw-w-\[calc\(70\/16\*1rem\)\] {
  width: calc(70 / 16 * 1rem);
}
.tw-w-\[calc\(71\/16\*1rem\)\] {
  width: calc(71 / 16 * 1rem);
}
.tw-w-fit {
  width: -webkit-fit-content;
  width: fit-content;
}
.tw-w-full {
  width: 100%;
}
.tw-grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.tw-flex-wrap {
  flex-wrap: wrap;
}
.tw-items-end {
  align-items: flex-end;
}
.tw-items-center {
  align-items: center;
}
.tw-justify-center {
  justify-content: center;
}
.tw-justify-between {
  justify-content: space-between;
}
.tw-gap-3 {
  gap: 0.75rem;
}
.tw-gap-5 {
  gap: 1.25rem;
}
.tw-gap-x-1 {
  column-gap: 0.25rem;
}
.tw-gap-x-4 {
  column-gap: 1rem;
}
.tw-gap-y-2 {
  row-gap: 0.5rem;
}
.tw-overflow-hidden {
  overflow: hidden;
}
.tw-rounded-2 {
  border-radius: 0.5rem;
}
.tw-rounded-full {
  border-radius: 9999px;
}
.tw-border-2 {
  border-width: 2px;
}
.tw-border-solid {
  border-style: solid;
}
.tw-border-\[var\(--color-blue\)\] {
  border-color: var(--color-blue);
}
.tw-bg-\[\#ebebeb\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 235 235 / var(--tw-bg-opacity));
}
.tw-bg-\[var\(--color-bg\)\] {
  background-color: var(--color-bg);
}
.tw-bg-\[var\(--color-blue\)\] {
  background-color: var(--color-blue);
}
.tw-bg-\[var\(--color-red\)\] {
  background-color: var(--color-red);
}
.tw-bg-black\/\[\.7\] {
  background-color: rgb(0 0 0 / .7);
}
.tw-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.tw-px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.tw-px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.tw-px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.tw-px-7 {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.tw-py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.tw-py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.tw-py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.tw-py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.tw-py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.tw-py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.tw-pb-10 {
  padding-bottom: 2.5rem;
}
.tw-pb-16 {
  padding-bottom: 4rem;
}
.tw-pb-18 {
  padding-bottom: 4.5rem;
}
.tw-pb-5 {
  padding-bottom: 1.25rem;
}
.tw-pb-6 {
  padding-bottom: 1.5rem;
}
.tw-pb-7 {
  padding-bottom: 1.75rem;
}
.tw-pr-2 {
  padding-right: 0.5rem;
}
.tw-pt-10 {
  padding-top: 2.5rem;
}
.tw-pt-14 {
  padding-top: 3.5rem;
}
.tw-pt-15 {
  padding-top: 3.75rem;
}
.tw-pt-25 {
  padding-top: 6.25rem;
}
.tw-text-center {
  text-align: center;
}
.tw-align-super {
  vertical-align: super;
}
.tw-text-10 {
  font-size: 2.5rem;
}
.tw-text-2 {
  font-size: 0.5rem;
}
.tw-text-2\.5 {
  font-size: 0.625rem;
}
.tw-text-2\.75 {
  font-size: 0.6875rem;
}
.tw-text-3 {
  font-size: 0.75rem;
}
.tw-text-3\.5 {
  font-size: 0.875rem;
}
.tw-text-4 {
  font-size: 1rem;
}
.tw-text-4\.5 {
  font-size: 1.125rem;
}
.tw-text-5 {
  font-size: 1.25rem;
}
.tw-text-6 {
  font-size: 1.5rem;
}
.tw-text-8 {
  font-size: 2rem;
}
.tw-text-8\.75 {
  font-size: 2.1875rem;
}
.tw-font-bold {
  font-weight: 700;
}
.tw-leading-\[1\.4\] {
  line-height: 1.4;
}
.tw-leading-\[1\.5\] {
  line-height: 1.5;
}
.tw-leading-none {
  line-height: 1;
}
.tw-leading-normal {
  line-height: 1.5;
}
.tw-text-\[\#3e3c3c\] {
  --tw-text-opacity: 1;
  color: rgb(62 60 60 / var(--tw-text-opacity));
}
.tw-text-\[var\(--color-blue\)\] {
  color: var(--color-blue);
}
.tw-text-\[var\(--color-gray\)\] {
  color: var(--color-gray);
}
.tw-text-\[var\(--color-red\)\] {
  color: var(--color-red);
}
.tw-text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.o-header {
  box-shadow: 0 calc(5 / 16 * 1rem) calc(12 / 16 * 1rem) 0 rgba(0, 0, 0, 0.1);
}

/******************************************************************************
* mv
*******************************************************************************/
.p-mv {
  background: url("../img/mv_bg_sp.png") 0 0/100% 100% no-repeat;
  /* stylelint-disable-next-line media-query-no-invalid */
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-mv {
    position: relative;
    height: calc(740 / 16 * 1rem);
    background: url("../img/mv_bg.png") center center no-repeat;
  }
}
@media (min-width:1921px) {
  .p-mv {
    background-size: cover;
  }
}
.p-mv-inner {
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-mv-inner {
    max-width: calc(1140 / 16 * 1rem);
    margin: 0 auto;
  }
}
.p-mv-img {
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-mv-img {
    position: absolute;
    top: calc(164 / 16 * 1rem);
    left: 50%;
    z-index: 0;
    transform: translateX(calc(-80 / 16 * 1rem));
  }
}
.p-mv-heading_img {
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-mv-heading_img {
    width: calc(455 / 16 * 1rem);
  }
}
.p-mv-cv .a-button {
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-mv-cv .a-button {
    box-shadow: 0 calc(3 / 16 * 1rem) calc(5 / 16 * 1rem) rgba(0, 0, 0, 0.12);
  }
}
.p-mv-list {
  display: grid;
  row-gap: calc(16 / 16 * 1rem);
}

.p-mv-list_item {
  position: relative;
  display: grid;
  place-items: center;
  height: calc(48 / 16 * 1rem);
  letter-spacing: 0;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-mv-list_item:first-child sup {
  display: inline-block;
  transform: translateY(-1.5em);
}

.p-mv-list_item:first-child svg {
  width: calc(63 / 16 * 1rem);
  height: calc(31 / 16 * 1rem);
}

.p-mv-list_item:nth-child(2) svg {
  width: calc(140 / 16 * 1rem);
  height: calc(35 / 16 * 1rem);
}

.p-mv-list_item:nth-child(3) svg {
  width: calc(75 / 16 * 1rem);
  height: calc(30 / 16 * 1rem);
}

.p-mv-list_item::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(20 / 16 * 1rem);
  height: calc(47 / 16 * 1rem);
  content: "";
  background: url("../img/leaf.png") 0 0 no-repeat;
  background-size: 100% 100%;
  transform: translateY(-50%);
}

.p-mv-list_item::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(20 / 16 * 1rem);
  height: calc(47 / 16 * 1rem);
  content: "";
  background: url("../img/leaf.png") 0 0 no-repeat;
  background-size: 100% 100%;
  transform: translateY(-50%) scale(-1, 1);
}

@media (min-width: 768px) {
  .p-mv-list_item {
    height: calc(70 / 16 * 1rem);
  }
  .p-mv-list_item:first-child sup {
    display: inline-block;
    transform: translateY(-2em);
  }
  .p-mv-list_item:first-child svg {
    width: calc(100 / 16 * 1rem);
    height: calc(57 / 16 * 1rem);
  }
  .p-mv-list_item:nth-child(2) svg {
    width: calc(163 / 16 * 1rem);
    height: calc(43 / 16 * 1rem);
  }
  .p-mv-list_item:nth-child(3) svg {
    width: calc(95 / 16 * 1rem);
    height: calc(37 / 16 * 1rem);
  }
  .p-mv-list_item::before {
    width: calc(30 / 16 * 1rem);
    height: calc(70 / 16 * 1rem);
  }
  .p-mv-list_item::after {
    width: calc(30 / 16 * 1rem);
    height: calc(70 / 16 * 1rem);
  }
}
.p-mv-cv-balloon {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: fit-content;
  height: calc(26 / 16 * 1rem);
  padding: 0 calc(15 / 16 * 1rem);
  margin: 0 auto;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue);
  background-color: #fff;
  border: 1px solid var(--color-blue);
  border-radius: 9999px;
  transform: translateY(-50%);
}

/******************************************************************************
* probrem
*******************************************************************************/
.p-probrem {
  background-color: #fff;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-probrem {
    position: relative;
  }
}
.p-probrem-list {
  display: grid;
  gap: calc(8 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-probrem-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(30 / 16 * 1rem);
  }
}
.p-probrem-card {
  height: 100%;
  padding: calc(32 / 16 * 1rem) calc(24 / 16 * 1rem);
  background-color: var(--color-bg);
  border-radius: calc(8 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-probrem-card {
    padding: calc(36 / 16 * 1rem) calc(30 / 16 * 1rem);
  }
}
.p-section-transition_img {
  position: absolute;
  top: calc(54 / 16 * 1rem);
  left: 0;
  right: 0;
  margin: 0 auto;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-section-transition_img {
    top: calc(28 / 16 * 1rem);
  }
}
/******************************************************************************
* solution
*******************************************************************************/
.p-solution {
  background-color: var(--color-secondary-bg);
  position: relative;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-solution > * {
  position: relative;
  z-index: 1;
}

.p-solution::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: calc(179 / 16 * 1rem);
  height: calc(257 / 16 * 1rem);
  content: "";
  background: url("../img/solution_bg01_sp.png") 0 0/100% 100% no-repeat;
}

.p-solution::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: calc(390 / 16 * 1rem);
  height: calc(538 / 16 * 1rem);
  content: "";
  background: url("../img/solution_bg02_sp.png") 0 0/100% 100% no-repeat;
}

@media (min-width: 768px) {
  .p-solution {
    position: relative;
  }
  .p-solution::before {
    top: 0;
    width: calc(420 / 16 * 1rem);
    height: calc(551 / 16 * 1rem);
    background: url("../img/solution_bg01_pc.png") 0 0/100% 100% no-repeat;
  }
  .p-solution::after {
    bottom: 0;
    width: calc(1080 / 16 * 1rem);
    height: calc(801 / 16 * 1rem);
    background: url("../img/solution_bg02_pc.png") 0 0/100% 100% no-repeat;
  }
}
.p-solution-wrap {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: calc(48 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-solution-wrap > *:first-child {
  order: 2;
}

.p-solution-wrap > *:nth-child(2) {
  order: 1;
}

@media (min-width: 768px) {
  .p-solution-wrap {
    width: calc(1250 / 16 * 1rem);
    column-gap: calc(50 / 16 * 1rem);
    grid-template-columns: 1fr calc(608 / 16 * 1rem);
  }
  .p-solution-wrap > *:first-child {
    order: 1;
  }
  .p-solution-wrap > *:nth-child(2) {
    order: 2;
  }
}
.p-solution-img-wrap {
  margin: 0 auto;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-solution-img-main {
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-solution-img-sub {
  width: calc(68 / 16 * 1rem);
  position: absolute;
  right: calc(32 / 16 * 1rem);
  top: calc(108 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-solution-img-sub {
    width: calc(93 / 16 * 1rem);
    right: calc(100 / 16 * 1rem);
    top: calc(220 / 16 * 1rem);
  }
}
/******************************************************************************
* feature
*******************************************************************************/
.p-feature {
  position: relative;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-feature > * {
  position: relative;
  z-index: 1;
}

.p-feature::before {
  position: absolute;
  top: calc(502 / 16 * 1rem);
  right: calc(-40 / 16 * 1rem);
  z-index: 0;
  width: calc(252 / 16 * 1rem);
  height: calc(386 / 16 * 1rem);
  content: "";
  background: url("../img/feature_bg01.png") 0 0/100% 100% no-repeat;
}

@media (min-width: 768px) {
  .p-feature::before {
    top: calc(35 / 16 * 1rem);
    width: calc(537 / 16 * 1rem);
    height: calc(824 / 16 * 1rem);
    background: url("../img/feature_bg01.png") 0 0/100% 100% no-repeat;
  }
  .p-feature::after {
    position: absolute;
    z-index: 0;
    bottom: calc(448 / 16 * 1rem);
    width: calc(373 / 16 * 1rem);
    height: calc(521 / 16 * 1rem);
    content: "";
    background: url("../img/feature_bg02.png") 0 0/100% 100% no-repeat;
  }
}
.p-feature-list {
  display: grid;
  row-gap: calc(48 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-feature-list {
    row-gap: calc(96 / 16 * 1rem);
  }
}
.p-feature-media {
  position: relative;
  display: grid;
  row-gap: calc(20 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-feature-media > *:first-child {
  order: 2;
}

.p-feature-media > *:nth-child(2) {
  order: 1;
}

@media (min-width: 768px) {
  .p-feature-media {
    align-items: center;
    grid-template-columns: 1fr calc(570 / 16 * 1rem);
    column-gap: calc(86 / 16 * 1rem);
  }
  .p-feature-media > *:first-child {
    order: 1;
  }
  .p-feature-media > *:nth-child(2) {
    order: 2;
  }
  .p-feature-media.is-reverse {
    grid-template-columns: calc(570 / 16 * 1rem) 1fr;
  }
  .p-feature-media.is-reverse > *:first-child {
    order: 2;
  }
  .p-feature-media.is-reverse > *:nth-child(2) {
    order: 1;
  }
}
.p-feature-media .a-heading_text-one {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-feature-media .a-heading_text-one {
    position: static;
    text-align: left;
  }
}
/******************************************************************************
* merit
*******************************************************************************/
.p-merit-list {
  display: grid;
  gap: calc(16 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-merit-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: calc(30 / 16 * 1rem);
  }
}
.p-merit-card {
  height: 100%;
  padding: calc(32 / 16 * 1rem) calc(24 / 16 * 1rem);
  background-color: #fff;
  border-radius: calc(8 / 16 * 1rem);
  box-shadow: 0 calc(5 / 16 * 1rem) calc(8 / 16 * 1rem) 0 rgba(0, 0, 0, 0.1);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-merit-card {
    padding: calc(36 / 16 * 1rem) calc(30 / 16 * 1rem);
  }
}
/******************************************************************************
* merit
*******************************************************************************/
.p-case-study {
  position: relative;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-case-study > * {
  position: relative;
  z-index: 1;
}

.p-case-study::before {
  position: absolute;
  top: calc(28 / 16 * 1rem);
  left: 0;
  z-index: 0;
  width: calc(166 / 16 * 1rem);
  height: calc(388 / 16 * 1rem);
  content: "";
  background: url("../img/case_study_bg01_sp.png") 0 0/100% 100% no-repeat;
}

.p-case-study::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: calc(204 / 16 * 1rem);
  height: calc(393 / 16 * 1rem);
  content: "";
  background: url("../img/case_study_bg02_sp.png") 0 0/100% 100% no-repeat;
}

@media (min-width: 768px) {
  .p-case-study::before {
    top: 0;
    width: calc(491 / 16 * 1rem);
    height: calc(628 / 16 * 1rem);
    background: url("../img/case_study_bg01_pc.png") 0 0/100% 100% no-repeat;
  }
  .p-case-study::after {
    bottom: calc(60 / 16 * 1rem);
    width: calc(466 / 16 * 1rem);
    height: calc(573 / 16 * 1rem);
    background: url("../img/case_study_bg02_pc.png") 0 0/100% 100% no-repeat;
  }
}
.p-case-study-list {
  display: grid;
  row-gap: calc(20 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-case-study-list {
    row-gap: calc(24 / 16 * 1rem);
  }
}
.p-case-study-card {
  padding: calc(32 / 16 * 1rem) calc(24 / 16 * 1rem) calc(28 / 16 * 1rem);
  background-color: #f7f7f7;
  border-radius: calc(8 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-case-study-card {
    padding: calc(40 / 16 * 1rem) calc(68 / 16 * 1rem) calc(64 / 16 * 1rem);
  }
}
.p-case-study-card-head {
  display: grid;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-case-study-card-head > *:first-child {
  order: 2;
}

.p-case-study-card-head > *:nth-child(2) {
  order: 1;
}

@media (min-width: 768px) {
  .p-case-study-card-head {
    grid-template-columns: calc(300 / 16 * 1rem) 1fr;
    column-gap: calc(24 / 16 * 1rem);
  }
}
.p-case-study-company-list_item {
  display: flex;
}

.p-case-study-company-list_item > * {
  font-weight: 700;
}

/******************************************************************************
* price
*******************************************************************************/
.p-price-list {
  display: grid;
  row-gap: calc(64 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-price-list > *:not(:last-child) {
  position: relative;
}

.p-price-list > *:not(:last-child)::before {
  position: absolute;
  right: 0;
  bottom: calc(-32 / 16 * 1rem);
  left: 0;
  width: calc(20 / 16 * 1rem);
  height: calc(3 / 16 * 1rem);
  margin: 0 auto;
  content: "";
  background-color: #000;
  transform: rotate(90deg);
}

.p-price-list > *:not(:last-child)::after {
  position: absolute;
  right: 0;
  bottom: calc(-32 / 16 * 1rem);
  left: 0;
  width: calc(20 / 16 * 1rem);
  height: calc(3 / 16 * 1rem);
  margin: 0 auto;
  content: "";
  background-color: #000;
}

@media (min-width: 768px) {
  .p-price-list {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: calc(60 / 16 * 1rem);
  }
  .p-price-list > *:not(:last-child)::before {
    top: 50%;
    right: calc(-40 / 16 * 1rem);
    left: auto;
    transform: translateY(-50%) rotate(90deg);
  }
  .p-price-list > *:not(:last-child)::after {
    top: 50%;
    right: calc(-40 / 16 * 1rem);
    left: auto;
    transform: translateY(-50%);
  }
}
.p-price-card {
  padding: calc(32 / 16 * 1rem) 0 calc(36 / 16 * 1rem);
  background-color: #fff;
  border-top: calc(6 / 16 * 1rem) solid var(--color-red);
  border-radius: calc(8 / 16 * 1rem);
  box-shadow: 0 calc(2 / 16 * 1rem) calc(8 / 16 * 1rem) 0 rgba(0, 0, 0, 0.27);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-price-card {
    padding: calc(36 / 16 * 1rem) 0 calc(44 / 16 * 1rem);
  }
}
.p-price-card dt {
  position: relative;
  width: calc(110 / 16 * 1rem);
  padding-bottom: calc(12 / 16 * 1rem);
  margin: 0 auto;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-price-card dt::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  border-bottom: 1px solid #c0c0c0;
}

@media (min-width: 768px) {
  .p-price-card dt {
    width: calc(120 / 16 * 1rem);
    padding-bottom: calc(20 / 16 * 1rem);
    font-size: calc(20 / 16 * 1rem);
  }
}
.p-price-card dd {
  margin-top: calc(16 / 16 * 1rem);
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-price-card dd em {
  margin-right: calc(4 / 16 * 1rem);
  font-size: calc(60 / 16 * 1rem);
  color: var(--color-red);
}

.p-price-card dd span {
  font-weight: normal;
}

@media (min-width: 768px) {
  .p-price-card dd {
    margin-top: calc(8 / 16 * 1rem);
    font-size: calc(20 / 16 * 1rem);
  }
}
/******************************************************************************
* flow
*******************************************************************************/
.p-flow {
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-flow {
    position: relative;
  }
  .p-flow > * {
    position: relative;
    z-index: 1;
  }
  .p-flow::after {
    position: absolute;
    right: 0;
    z-index: 0;
    bottom: calc(40 / 16 * 1rem);
    width: calc(691 / 16 * 1rem);
    height: calc(829 / 16 * 1rem);
    content: "";
    background: url("../img/flow_bg.png") 0 0/100% 100% no-repeat;
  }
}
.p-flow-list {
  display: grid;
  row-gap: calc(50 / 16 * 1rem);
}

.p-flow-list li {
  position: relative;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-flow-list li:not(:last-child)::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2213%22%20viewBox%3D%220%200%2014%2013%22%3E%3Cpath%20d%3D%22M8.81%2C12.01L13.77%2C2.71c.15-.27.22-.57.22-.88%2C0-1.01-.76-1.83-1.69-1.83H1.66C.75%2C0%2C0%2C.81%2C0%2C1.81%2C0%2C2.14.09%2C2.48.25%2C2.76l5.43%2C9.31c.53.92%2C1.66%2C1.21%2C2.52.63.25-.17.47-.41.61-.69h0Z%22%20fill%3D%22%23000%22%20stroke-width%3D%220%22%2F%3E%3C%2Fsvg%3E") 0 0/100% 100% no-repeat;
  transform: translateY(50%);
}

@media (min-width: 768px) {
  .p-flow-list li:not(:last-child)::after {
    left: calc(40 / 16 * 1rem);
    width: calc(14 / 16 * 1rem);
    height: calc(13 / 16 * 1rem);
  }
}
.p-flow-media {
  display: grid;
  grid-template-columns: calc(71 / 16 * 1rem) 1fr;
  column-gap: calc(24 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-flow-media {
    grid-template-columns: calc(100 / 16 * 1rem) 1fr;
    column-gap: calc(40 / 16 * 1rem);
  }
}
.p-flow-media dt {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-flow-media dt {
    display: flex;
    font-size: calc(20 / 16 * 1rem);
  }
}
.p-flow-media_dt-num {
  display: block;
  padding-bottom: calc(12 / 16 * 1rem);
  margin-right: 1em;
  color: #f24554;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-flow-media_dt-num {
    margin-top: 0;
  }
}
.p-flow-media dd {
  padding-bottom: calc(20 / 16 * 1rem);
  margin-top: calc(20 / 16 * 1rem);
  font-size: calc(14 / 16 * 1rem);
  border-bottom: 1px solid #e5e5e5;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-flow-media dd a {
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-flow-media dd {
    padding-bottom: calc(50 / 16 * 1rem);
    margin-top: calc(20 / 16 * 1rem);
    font-size: calc(16 / 16 * 1rem);
  }
}
/******************************************************************************
* faq
*******************************************************************************/
.p-faq-list {
  display: grid;
  row-gap: calc(8 / 16 * 1rem);
}

.p-faq-item {
  background-color: #fff;
  border-radius: calc(8 / 16 * 1rem);
}

.p-faq-item dt {
  position: relative;
  cursor: pointer;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-faq-item dt button {
  display: flex;
  width: 100%;
  padding: calc(24 / 16 * 1rem) calc(64 / 16 * 1rem) calc(24 / 16 * 1rem) calc(16 / 16 * 1rem);
  line-height: 2;
}

.p-faq-item dt button svg {
  position: absolute;
  top: 50%;
  right: calc(16 / 16 * 1rem);
  width: calc(26 / 16 * 1rem);
  height: calc(26 / 16 * 1rem);
  content: "";
  background-color: rgba(255, 255, 255, 0.5019607843);
  background-size: contain;
  border-radius: 9999px;
  transform: translateY(-50%);
}

.p-faq-item dt button svg path {
  transform-origin: center;
}

.p-faq-item dt button svg path:nth-child(2) {
  transition: transform 0.3s ease-out;
  transform: rotate(90deg);
}

.p-faq-item dt button.is-open svg path:first-child {
  fill: #565454;
}

.p-faq-item dt button.is-open svg path:nth-child(2) {
  transform: rotate(0);
}

.p-faq-item dt > * {
  display: block;
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
}

@media (min-width: 768px) {
  .p-faq-item dt > * {
    font-size: calc(18 / 16 * 1rem);
  }
  .p-faq-item dt button {
    padding: calc(24 / 16 * 1rem) calc(40 / 16 * 1rem);
  }
  .p-faq-item dt button svg {
    right: calc(40 / 16 * 1rem);
  }
}
.p-faq-q-text,
.p-faq-a-text {
  margin-right: calc(12 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-faq-q-text,
  .p-faq-a-text {
    margin-right: calc(32 / 16 * 1rem);
  }
}
.p-faq-a-text {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  color: var(--color-red);
}

.p-faq-item dd {
  display: none;
  font-size: calc(16 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-faq-item dd > * {
  display: flex;
  padding: 0 calc(16 / 16 * 1rem) calc(24 / 16 * 1rem);
}

@media (min-width: 768px) {
  .p-faq-item dd > * {
    padding: 0 calc(40 / 16 * 1rem) calc(24 / 16 * 1rem);
  }
}
/******************************************************************************
* cv
*******************************************************************************/
.p-cv {
  background: url("../img/cv_bg_sp.png") center 0/cover no-repeat;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-cv {
    background: url("../img/cv_bg_pc.png") center 0/auto 588px repeat-x;
  }
}
.p-cv-heading > * {
  display: block;
  text-align: center;
}

.p-cv-heading_shoulder {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.p-cv-heading_main {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  color: #fff;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-cv-heading_main img {
  width: calc(304 / 16 * 1rem);
}

@media (min-width: 768px) {
  .p-cv-heading_main {
    font-size: calc(34 / 16 * 1rem);
  }
  .p-cv-heading_main img {
    width: calc(440 / 16 * 1rem);
  }
}
.p-cv-box {
  max-width: calc(800 / 16 * 1rem);
  margin-inline: auto;
  background-color: #fff;
  border-radius: calc(8 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-cv-box {
    position: relative;
  }
  .p-cv-box.is-add-dog::after {
    position: absolute;
    right: calc(-238 / 16 * 1rem);
    bottom: calc(-10 / 16 * 1rem);
    display: block;
    width: calc(217 / 16 * 1rem);
    height: calc(368 / 16 * 1rem);
    content: "";
    background: url("../img/cv_dog.png") 0 0/100% 100% no-repeat;
  }
}
.p-cv-media {
  display: grid;
  row-gap: calc(24 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-cv-media {
    grid-template-columns: calc(330 / 16 * 1rem) 1fr;
    column-gap: calc(48 / 16 * 1rem);
    align-items: center;
  }
}
.p-cv-button-list {
  display: grid;
  row-gap: calc(40 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .p-cv-button-list {
    grid-template-columns: 1fr 1fr;
    column-gap: calc(20 / 16 * 1rem);
    width: calc(680 / 16 * 1rem);
    margin-inline: auto;
  }
}
.p-cv-button-caption {
  position: relative;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1;
}

.p-cv-button-caption.is-add-x-line {
  padding: 0 calc(8 / 16 * 1rem);
}

.p-cv-button-caption.is-add-x-line::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background-color: currentcolor;
  transform: translateY(-50%) rotate(-30deg);
  transform-origin: bottom;
}

.p-cv-button-caption.is-add-x-line::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background-color: currentcolor;
  transform: translateY(-50%) rotate(30deg);
  transform-origin: bottom;
}

.p-cv-button-list a {
  line-height: 1.5;
}

/******************************************************************************
* footer
*******************************************************************************/
.o-footer-inner {
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .o-footer-inner {
    display: grid;
    grid-template-rows: 33.3333% 33.3333% 33.3333%;
  }
  .o-footer-inner > * {
    grid-column: 1/2;
  }
  .o-footer-inner > *:first-child {
    z-index: 1;
    grid-row: 1/4;
  }
  .o-footer-inner > *:nth-child(2) {
    z-index: 0;
    grid-row: 3/4;
    align-self: flex-end;
    justify-self: end;
  }
}
.o-footer-list {
  display: grid;
  row-gap: calc(36 / 16 * 1rem);
  /* stylelint-disable-next-line media-query-no-invalid */
}

.o-footer-list dt {
  width: 3em;
  margin-right: calc(32 / 16 * 1rem);
  font-weight: 700;
}

.o-footer-list > * {
  display: flex;
}

.o-footer-list > *:last-child {
  display: block;
}

.o-footer-list > *:last-child dt {
  width: auto;
  margin-right: 0;
  line-height: 1.8;
}

.o-footer-list > *:last-child > dd {
  margin-top: calc(12 / 16 * 1rem);
}

@media (min-width: 768px) {
  .o-footer-list {
    grid-template-rows: auto auto auto;
    grid-template-columns: auto 1fr;
    row-gap: calc(16 / 16 * 1rem);
    column-gap: calc(80 / 16 * 1rem);
    padding-bottom: calc(60 / 16 * 1rem);
  }
  .o-footer-list > *:first-child {
    grid-column: 1/2;
  }
  .o-footer-list > *:nth-child(2) {
    grid-column: 1/2;
  }
  .o-footer-list > *:nth-child(3) {
    grid-column: 1/2;
  }
  .o-footer-list > *:last-child {
    grid-row: 1/span 3;
    grid-column: 2/3;
  }
}
.o-footer-privacy-logo {
  width: calc(176 / 16 * 1rem);
  margin: calc(28 / 16 * 1rem) auto 0;
  /* stylelint-disable-next-line media-query-no-invalid */
}

@media (min-width: 768px) {
  .o-footer-privacy-logo {
    width: auto;
    margin: 0;
  }
}
.p-float-cv {
  display: none;
  /* stylelint-disable-next-line media-query-no-invalid */
}

.p-float-cv.is-hidden {
  display: none;
}

@media (min-width: 768px) {
  .p-float-cv {
    position: fixed;
    bottom: calc(20 / 16 * 1rem);
    left: calc(20 / 16 * 1rem);
    z-index: 1000;
    display: block;
    width: calc(302 / 16 * 1rem);
    background-color: #fff;
    border: 2px solid #3e3c3c;
    border-radius: calc(5 / 16 * 1rem);
  }
}
.p-float-cv_heading-one {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  padding-right: calc(8 / 16 * 1rem);
  padding-left: calc(8 / 16 * 1rem);
  margin: 0 auto;
  font-size: calc(12 / 16 * 1rem);
  color: #fff;
  background-color: var(--color-red);
  border-radius: 9999px;
}

.p-float-cv_heading-two {
  display: block;
  margin-top: calc(8 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-float-cv-cross {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(27 / 16 * 1rem);
  height: calc(27 / 16 * 1rem);
  transform: translate(-50%, -50%);
}

.p-float-cv-cross svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .md\:tw-interval-px-none {
    padding-left: calc((0/16)*1rem);
    padding-right: calc((0/16)*1rem);
  }
  .md\:tw-pointer-events-none {
    pointer-events: none;
  }
  .md\:tw-bottom-4 {
    bottom: 1rem;
  }
  .md\:tw-right-16 {
    right: 4rem;
  }
  .md\:tw-mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }
  .md\:tw-mr-6 {
    margin-right: 1.5rem;
  }
  .md\:tw-mt-0 {
    margin-top: 0px;
  }
  .md\:tw-mt-10 {
    margin-top: 2.5rem;
  }
  .md\:tw-mt-12 {
    margin-top: 3rem;
  }
  .md\:tw-mt-15 {
    margin-top: 3.75rem;
  }
  .md\:tw-mt-18 {
    margin-top: 4.5rem;
  }
  .md\:tw-mt-20 {
    margin-top: 5rem;
  }
  .md\:tw-mt-23 {
    margin-top: 5.75rem;
  }
  .md\:tw-mt-5 {
    margin-top: 1.25rem;
  }
  .md\:tw-mt-6 {
    margin-top: 1.5rem;
  }
  .md\:tw-mt-7 {
    margin-top: 1.75rem;
  }
  .md\:tw-mt-8 {
    margin-top: 2rem;
  }
  .md\:tw-mt-9 {
    margin-top: 2.25rem;
  }
  .md\:tw-block {
    display: block;
  }
  .md\:tw-flex {
    display: flex;
  }
  .md\:tw-hidden {
    display: none;
  }
  .md\:tw-h-12 {
    height: 3rem;
  }
  .md\:tw-h-20 {
    height: 5rem;
  }
  .md\:tw-h-\[calc\(76\/16\*1rem\)\] {
    height: calc(76 / 16 * 1rem);
  }
  .md\:tw-h-\[calc\(86\/16\*1rem\)\] {
    height: calc(86 / 16 * 1rem);
  }
  .md\:tw-h-\[calc\(88\/16\*1rem\)\] {
    height: calc(88 / 16 * 1rem);
  }
  .md\:tw-h-\[calc\(93\/16\*1rem\)\] {
    height: calc(93 / 16 * 1rem);
  }
  .md\:tw-w-100 {
    width: 25rem;
  }
  .md\:tw-w-20 {
    width: 5rem;
  }
  .md\:tw-w-72 {
    width: 18rem;
  }
  .md\:tw-w-82 {
    width: 20.5rem;
  }
  .md\:tw-w-\[calc\(100\%-\(100\/16\*1rem\)\)\] {
    width: calc(100% - (100 / 16 * 1rem));
  }
  .md\:tw-w-\[calc\(100\/16\*1rem\)\] {
    width: calc(100 / 16 * 1rem);
  }
  .md\:tw-w-\[calc\(2000\/16\*1rem\)\] {
    width: calc(2000 / 16 * 1rem);
  }
  .md\:tw-w-\[calc\(86\/16\*1rem\)\] {
    width: calc(86 / 16 * 1rem);
  }
  .md\:tw-w-\[calc\(90\/16\*1rem\)\] {
    width: calc(90 / 16 * 1rem);
  }
  .md\:tw-w-\[calc\(93\/16\*1rem\)\] {
    width: calc(93 / 16 * 1rem);
  }
  .md\:tw-w-auto {
    width: auto;
  }
  .md\:tw-max-w-82 {
    max-width: 20.5rem;
  }
  .md\:tw-cursor-none {
    cursor: none;
  }
  .md\:tw-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:tw-justify-start {
    justify-content: flex-start;
  }
  .md\:tw-gap-x-4 {
    column-gap: 1rem;
  }
  .md\:tw-p-5 {
    padding: 1.25rem;
  }
  .md\:tw-px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .md\:tw-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:tw-py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:tw-py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .md\:tw-py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:tw-pb-0 {
    padding-bottom: 0px;
  }
  .md\:tw-pb-1 {
    padding-bottom: 0.25rem;
  }
  .md\:tw-pb-10 {
    padding-bottom: 2.5rem;
  }
  .md\:tw-pb-15 {
    padding-bottom: 3.75rem;
  }
  .md\:tw-pb-20 {
    padding-bottom: 5rem;
  }
  .md\:tw-pb-24 {
    padding-bottom: 6rem;
  }
  .md\:tw-pb-30 {
    padding-bottom: 7.5rem;
  }
  .md\:tw-pb-75 {
    padding-bottom: 18.75rem;
  }
  .md\:tw-pl-11 {
    padding-left: 2.75rem;
  }
  .md\:tw-pr-13 {
    padding-right: 3.25rem;
  }
  .md\:tw-pr-3 {
    padding-right: 0.75rem;
  }
  .md\:tw-pr-3\.5 {
    padding-right: 0.875rem;
  }
  .md\:tw-pt-0 {
    padding-top: 0px;
  }
  .md\:tw-pt-2 {
    padding-top: 0.5rem;
  }
  .md\:tw-pt-20 {
    padding-top: 5rem;
  }
  .md\:tw-pt-25 {
    padding-top: 6.25rem;
  }
  .md\:tw-pt-32 {
    padding-top: 8rem;
  }
  .md\:tw-pt-50 {
    padding-top: 12.5rem;
  }
  .md\:tw-text-left {
    text-align: left;
  }
  .md\:tw-text-center {
    text-align: center;
  }
  .md\:tw-text-10 {
    font-size: 2.5rem;
  }
  .md\:tw-text-12 {
    font-size: 3rem;
  }
  .md\:tw-text-12\.5 {
    font-size: 3.125rem;
  }
  .md\:tw-text-3 {
    font-size: 0.75rem;
  }
  .md\:tw-text-3\.5 {
    font-size: 0.875rem;
  }
  .md\:tw-text-4 {
    font-size: 1rem;
  }
  .md\:tw-text-4\.5 {
    font-size: 1.125rem;
  }
  .md\:tw-text-5 {
    font-size: 1.25rem;
  }
  .md\:tw-text-7 {
    font-size: 1.75rem;
  }
  .md\:tw-text-8 {
    font-size: 2rem;
  }
  .md\:tw-text-8\.5 {
    font-size: 2.125rem;
  }
  .md\:tw-leading-none {
    line-height: 1;
  }
}