@charset "UTF-8";
/*==============================================================================
1.0 Foundation
============================================================================= */
:root {
  --container-size-sm: 670;
  --container-size-md: 1240;
  --container-size-large: 1440;
  --black: #222222;
  --white: #fff;
  --gray: #ececec;
  --darkGray: #8b8b8a;
  --red: #d9341f;
  --moodyRed: #cb1d46;
  --lightRed: #ffe8e8;
  --blue-1: #013d8f;
  --blue-2: #0d58b2;
  --blue-3: #013e92;
  --yellow: #f5db00;
  --green: #42a766;
  --line-green: #07b53b;
  --beige: #e2dcc7;
  --lightBeige: #f0efec;
  --darkBeige: #bbb6a6;
  --red-shadow: #881f12;
  --blue-shadow: #000812;
  --line-green-shadow: #075b20;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Bebas Neue", sans-serif;
  --font-mix: "Bebas Neue", "Zen Kaku Gothic New", sans-serif;
  --around: 99999px;
  --circle: 50%;
}

/*==============================================================================
1.0 Foundation
============================================================================= */
/*==============================================================================
Media
============================================================================= */
/*==============================================================================
font-size
============================================================================= */
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,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

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

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
  cursor: pointer;
}

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

picture,
figure {
  display: block;
}

/* =============================================================================
Basic style
========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: var(--black);
  font-family: var(--font-ja);
  font-weight: 400;
  word-break: break-all;
  overflow-x: clip;
}

/*
	  mobile
  ----------------------------------------------- */
html {
  font-size: 2.1333333333vw;
}
@media (min-width: 751px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1441px) {
  html {
    font-size: 1rem;
  }
}

p {
  font-size: 1rem;
}
@media (min-width: 751px) {
  p {
    font-size: 1rem;
  }
}

/*==============================================================================
2.0 - Component
============================================================================= */
.l-container {
  margin-inline: 2.5rem;
}
@media (min-width: 751px) {
  .l-container {
    width: 62.5rem;
    margin-inline: auto;
  }
}
.l-container--sp {
  margin-inline: 2.5rem;
}
@media (min-width: 751px) {
  .l-container--sp {
    margin-inline: 0;
  }
}
@media (min-width: 751px) {
  .l-container--pc {
    width: 62.5rem;
    margin-inline: auto;
  }
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--white);
  z-index: 50;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .l-header {
    display: block;
    width: 100%;
    padding-block: 0.3125rem 1.4375rem;
    background: var(--white);
  }
}
.l-header__inner {
  width: 46.875rem;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .l-header__inner {
    width: 90rem;
  }
}
.l-header__container {
  padding-block: 0.9375rem 0.75rem;
  padding-inline: 2.5rem;
  position: relative;
  background: var(--white);
  z-index: 50;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .l-header__container {
    width: 19.6875rem;
    -webkit-margin-after: 1.4375rem;
            margin-block-end: 1.4375rem;
    padding-block: 0 0.3125rem;
    padding-inline: 6.25rem 0;
    background: transparent;
  }
}
.l-header__container::after {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gray);
}
.l-header__logo {
  width: 25.875rem;
}
@media (min-width: 751px) {
  .l-header__logo {
    width: 19.6875rem;
  }
}

.footer {
  background: var(--white);
}
.footer__container {
  display: grid;
  grid-template-areas: "nav nav" "title title" "info info" "office office";
  grid-template-columns: 100%;
}
@media (min-width: 751px) {
  .footer__container {
    grid-template-areas: "title title" "info nav" "office office";
    grid-template-columns: 50%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.footer__title {
  grid-area: title;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  -webkit-padding-before: 3.125rem;
          padding-block-start: 3.125rem;
}
@media (min-width: 751px) {
  .footer__title {
    -webkit-margin-after: 1.625rem;
            margin-block-end: 1.625rem;
    -webkit-padding-before: 1.75rem;
            padding-block-start: 1.75rem;
  }
}
.footer__title picture {
  width: 16.875rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .footer__title picture {
    width: 10.875rem;
    margin-inline: 0 auto;
  }
}
.footer__info {
  grid-area: info;
  -webkit-margin-after: 3.875rem;
          margin-block-end: 3.875rem;
}
@media (min-width: 751px) {
  .footer__info {
    -webkit-margin-after: 2.3125rem;
            margin-block-end: 2.3125rem;
    border-right: 2px dotted #cecece;
  }
}
.footer__info-name {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .footer__info-name {
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
    text-align: left;
    font-size: 1rem;
  }
}
.footer__info-tel {
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3125rem;
}
@media (min-width: 751px) {
  .footer__info-tel {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
    text-align: left;
  }
}
.footer__info-tel a {
  color: var(--black);
  font-size: 2.625rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .footer__info-tel a {
    font-size: 1.25rem;
  }
}
.footer__info-tel--small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .footer__info-tel--small {
    font-size: 1.25rem;
  }
}
.footer__info-company {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
}
.footer__info-company h3 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.footer__info-company p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer__info-service h3 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
}
.footer__info-service p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer__nav {
  grid-area: nav;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "top feature" "gaiju price" "guarantee flow" "voice case" "faq column" "achievements company" "contact contact";
}
@media (min-width: 751px) {
  .footer__nav-list {
    grid-template-areas: "top guarantee faq" "feature flow column" "gaiju voice achievements" "price case company" ". . contact";
    grid-template-columns: repeat(3, 1fr);
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 1.8125rem 1.75rem;
    -webkit-padding-start: 7.5rem;
            padding-inline-start: 7.5rem;
  }
}
.footer__nav-item a {
  position: relative;
  font-size: 1.75rem;
  font-weight: 500;
}
@media (max-width: 750px) {
  .footer__nav-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 2.0625rem 1.9375rem;
    padding-inline: 2.4375rem;
    background: var(--black) 1.875rem;
    border-top: 1px solid var(--white);
    border-right: 1px solid var(--white);
    color: var(--white);
  }
}
@media (min-width: 751px) {
  .footer__nav-item a {
    color: var(--black);
    font-size: 0.875rem;
  }
}
@media (max-width: 750px) {
  .footer__nav-item a::after {
    content: "";
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.footer__nav-item:nth-child(1) {
  grid-area: top;
}
.footer__nav-item:nth-child(2) {
  grid-area: feature;
}
.footer__nav-item:nth-child(3) {
  grid-area: gaiju;
}
.footer__nav-item:nth-child(4) {
  grid-area: price;
}
.footer__nav-item:nth-child(5) {
  grid-area: guarantee;
}
.footer__nav-item:nth-child(6) {
  grid-area: flow;
}
.footer__nav-item:nth-child(7) {
  grid-area: voice;
}
.footer__nav-item:nth-child(8) {
  grid-area: case;
}
.footer__nav-item:nth-child(9) {
  grid-area: faq;
}
.footer__nav-item:nth-child(10) {
  grid-area: column;
}
.footer__nav-item:nth-child(11) {
  grid-area: achievements;
}
.footer__nav-item:nth-child(12) {
  grid-area: company;
}
.footer__nav-item:nth-child(13) {
  grid-area: contact;
}
@media (max-width: 750px) {
  .footer__nav-item:nth-child(13) a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
}
@media (max-width: 750px) {
  .footer__nav-item:nth-child(13) a::after {
    position: absolute;
    top: 50%;
    right: 2.5rem;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
.footer__nav-item:nth-child(odd) a {
  border-right: 1px solid var(--white);
}
.footer__office {
  grid-area: office;
  -webkit-margin-after: 6.375rem;
          margin-block-end: 6.375rem;
  position: relative;
}
@media (min-width: 751px) {
  .footer__office {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 3.75rem 6.5625rem;
    background: var(--lightBeige);
  }
}
@media (min-width: 751px) {
  .footer__office::before {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background: #f0f0f0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
}
@media (min-width: 751px) {
  .footer__office-title {
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
    font-size: 1rem;
    font-weight: 700;
  }
}
@media (min-width: 751px) {
  .footer__office-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__office-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.8125rem;
}
@media (min-width: 751px) {
  .footer__office-wrapper {
    display: block;
    gap: 0;
    padding-inline: 2.5rem;
    border-right: 2px dotted #cecece;
  }
}
@media (min-width: 751px) {
  .footer__office-wrapper:nth-child(3n+1) {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
@media (min-width: 751px) {
  .footer__office-wrapper:nth-child(3n+3) {
    -webkit-padding-end: 0;
            padding-inline-end: 0;
    border-right: none;
  }
}
@media (max-width: 750px) {
  .footer__office-wrapper:not(:last-child) {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.footer__office-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15.625rem;
}
@media (min-width: 751px) {
  .footer__office-img {
    width: 10.625rem;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    margin-inline: auto;
  }
}
.footer__office-name {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .footer__office-name {
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    font-size: 1rem;
  }
}
.footer__office-address {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 1.625rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .footer__office-address {
    -webkit-margin-after: 0.875rem;
            margin-block-end: 0.875rem;
    font-size: 0.9375rem;
  }
}
.footer__office-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media (min-width: 751px) {
  .footer__office-map {
    gap: 0.5625rem;
  }
}
.footer__office-map::before {
  content: "";
  width: 1.5rem;
  height: 2.0625rem;
  background: url(../images/common/map_icon.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-0.625rem);
          transform: translateY(-0.625rem);
}
@media (min-width: 751px) {
  .footer__office-map::before {
    width: 0.875rem;
    height: 1.1875rem;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
}
.footer__office-map a {
  -webkit-padding-after: 0.5625rem;
          padding-block-end: 0.5625rem;
  border-bottom: 1px solid;
  color: var(--black);
  font-size: 1.625rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .footer__office-map a {
    -webkit-padding-after: 0.1875rem;
            padding-block-end: 0.1875rem;
    font-size: 0.9375rem;
  }
}
.footer__copy {
  padding-block: 3.1875rem;
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .footer__copy {
    padding-block: 2.8125rem;
    font-size: 0.625rem;
  }
}

/*==============================================================================
3.0 - Object
============================================================================= */
/*
3.1 - Project
============================================================================= */
.home .hero {
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
}
@media (min-width: 751px) {
  .home .hero {
    -webkit-margin-before: 8.9375rem;
            margin-block-start: 8.9375rem;
  }
}
.home .hero__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  background: var(--blue-3);
  font-weight: 700;
}
.home .hero__head-wrapper {
  position: relative;
  background: var(--black);
  background: var(--black);
  background: -webkit-gradient(linear, left top, right top, from(var(--black)), color-stop(50%, var(--black)), color-stop(50%, var(--blue-3)), to(var(--blue-3)));
  background: linear-gradient(90deg, var(--black) 0%, var(--black) 50%, var(--blue-3) 50%, var(--blue-3) 100%);
}
.home .hero__head-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  padding-block: 1.125rem;
  padding-inline: 0.625rem 1.5625rem;
  position: relative;
  background: var(--black);
  color: var(--white);
  font-size: 1.625rem;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
@media (min-width: 751px) {
  .home .hero__head-title {
    padding-block: 0.75rem;
    padding-inline: 8.125rem 1.9375rem;
    font-size: 1.125rem;
  }
}
.home .hero__head-title::before {
  content: "";
  width: 1.5rem;
  height: 2.1875rem;
  background: url(../images/common/area_icon.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .home .hero__head-title::before {
    width: 1.0625rem;
    height: 1.625rem;
  }
}
.home .hero__head-text {
  padding-block: 1.25rem;
  padding-inline: 1rem;
  position: relative;
  color: var(--white);
  font-size: 2.125rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .home .hero__head-text {
    padding-block: 0.9375rem;
    padding-inline: 1.5rem;
    font-size: 1.25rem;
  }
}
.home .hero__head-text--large {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .home .hero__head-text--large {
    font-size: 1.375rem;
  }
}
@media (max-width: 750px) {
  .home .hero__head-text--small--sp {
    font-size: 1.875rem;
  }
}
@media (max-width: 750px) {
  .home .hero__head-text .u-ls-tigth {
    letter-spacing: -0.2em;
  }
}
.home .hero__head-text--super {
  position: absolute;
  top: 0.625rem;
  right: 1.25rem;
  font-size: 1.25rem;
  vertical-align: super;
}
@media (min-width: 751px) {
  .home .hero__head-text--super {
    top: 0.625rem;
    right: 1.875rem;
    font-size: 0.625rem;
  }
}
.home .hero__body {
  -webkit-padding-after: 6.0625rem;
          padding-block-end: 6.0625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), color-stop(50%, var(--white)), color-stop(50%, var(--beige)), to(var(--beige)));
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--beige) 50%, var(--beige) 100%);
  overflow: hidden;
}
@media (min-width: 751px) {
  .home .hero__body {
    -webkit-padding-after: 4.375rem;
            padding-block-end: 4.375rem;
    background: var(--beige);
  }
}
@media (min-width: 751px) {
  .home .hero__body-slider {
    margin-inline: auto;
  }
}
.home .hero__body-track {
  overflow: visible;
}
.home .hero__body-slide--01 {
  -webkit-padding-before: 8.9375rem;
          padding-block-start: 8.9375rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 {
    -webkit-padding-before: 1.875rem;
            padding-block-start: 1.875rem;
  }
}
.home .hero__body-slide--01 .hero__body-logo {
  width: 38.5625rem;
  position: absolute;
  top: 1.25rem;
  left: 1.875rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-logo {
    width: 30.5625rem;
    padding-block: 2.0625rem;
    padding-inline: 2.5625rem;
    top: 0;
    left: 2.5625rem;
    background: var(--white);
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.home .hero__body-slide--01 .hero__body-house {
  position: absolute;
  bottom: -3.75rem;
  left: 1.875rem;
  text-align: center;
  font-weight: 900;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 750px) {
  .home .hero__body-slide--01 .hero__body-house {
    width: 18.5rem;
  }
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house {
    bottom: -2.5rem;
    left: auto;
    right: 11rem;
  }
}
.home .hero__body-slide--01 .hero__body-house-bg {
  -webkit-margin-after: 0.875rem;
          margin-block-end: 0.875rem;
  padding-block: 6.1875rem 1.75rem;
  padding-inline: 2.1875rem;
  background: url(../images/top/hero_slide01_house_bg.webp) no-repeat top center/contain;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house-bg {
    -webkit-margin-after: 0.5625rem;
            margin-block-end: 0.5625rem;
    padding-block: 4.8125rem 1.75rem;
    padding-inline: 1.875rem;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-year {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  -webkit-padding-after: 1.125rem;
          padding-block-end: 1.125rem;
  border-bottom: 2px dotted;
  text-align: center;
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-year {
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
    -webkit-padding-after: 0.875rem;
            padding-block-end: 0.875rem;
    font-size: 1.75rem;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-year--large {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-year--large {
    font-size: 2.625rem;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-achievements {
  text-align: center;
  font-size: 2.125rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-achievements {
    font-size: 1.625rem;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-achievements--medium {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-achievements--medium {
    font-size: 1.6875rem;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-achievements--small-large {
  font-size: 2.125rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-achievements--small-large {
    font-size: 3rem;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-achievements--large {
  font-size: 4.625rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-achievements--large {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
  }
}
.home .hero__body-slide--01 .hero__body-house .hero__body-achievements--super {
  font-size: 1.25rem;
  vertical-align: super;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house .hero__body-achievements--super {
    font-size: 0.75rem;
  }
}
.home .hero__body-slide--01 .hero__body-house__attention {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .home .hero__body-slide--01 .hero__body-house__attention {
    font-size: 0.75rem;
  }
}
.home .hero__body-slide--02 {
  -webkit-padding-before: 8.9375rem;
          padding-block-start: 8.9375rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--02 {
    -webkit-padding-before: 1.875rem;
            padding-block-start: 1.875rem;
  }
}
.home .hero__body-slide--02 .hero__body-logo {
  width: 36rem;
  position: absolute;
  top: 0.625rem;
  left: 1.875rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--02 .hero__body-logo {
    width: 30.625rem;
    padding-block: 1.9375rem 2.6875rem;
    padding-inline: 2.75rem 2.3125rem;
    top: 0;
    left: 2.5625rem;
    background: var(--white);
    border-radius: 0 0 1.25rem 1.25rem;
  }
}
.home .hero__body-slide--03 {
  -webkit-padding-before: 2.875rem;
          padding-block-start: 2.875rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--03 {
    -webkit-padding-before: 1.875rem;
            padding-block-start: 1.875rem;
  }
}
.home .hero__body-slide--03 .hero__body-logo {
  position: absolute;
  top: 1.25rem;
  left: 1.875rem;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .home .hero__body-slide--03 .hero__body-logo {
    padding-block: 2.8125rem 2.9375rem;
    padding-inline: 2.625rem 2.5rem;
    top: 0;
    left: 2.5625rem;
    background: var(--white);
    border-radius: 0 0 1.25rem 1.25rem;
    font-size: 2.75rem;
  }
}
.home .hero__body-slide--03 .hero__body-logo--small {
  font-size: 2.875rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--03 .hero__body-logo--small {
    font-size: 2.5rem;
  }
}
.home .hero__body-slide--03 .hero__body-logo--medium {
  font-size: 3.125rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--03 .hero__body-logo--medium {
    font-size: 2.75rem;
  }
}
.home .hero__body-slide--03 .hero__body-logo--large {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .home .hero__body-slide--03 .hero__body-logo--large {
    font-size: 3.4375rem;
  }
}
.home .hero__body-pagination {
  gap: 1.25rem;
  bottom: -3.75rem;
}
@media (min-width: 751px) {
  .home .hero__body-pagination {
    gap: 0.75rem;
    bottom: -1.875rem;
  }
}
.home .hero__body-pagination .splide__pagination__page {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 50%;
  opacity: 1;
}
@media (min-width: 751px) {
  .home .hero__body-pagination .splide__pagination__page {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.home .hero__body-pagination .splide__pagination__page.is-active {
  background: var(--black);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.home .hero__foot {
  -webkit-padding-after: 2.8125rem;
          padding-block-end: 2.8125rem;
}
@media (min-width: 751px) {
  .home .hero__foot {
    -webkit-padding-after: 4.625rem;
            padding-block-end: 4.625rem;
  }
}
.home .hero__foot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.25rem;
  background: var(--white);
  border: 2px solid;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .hero__foot-list {
    width: 75rem;
    margin-inline: auto;
    padding-block: 0.6875rem;
  }
}
.home .hero__foot-item {
  border-right: 1px dotted;
}
@media (min-width: 751px) {
  .home .hero__foot-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
  }
}
.home .hero__foot-item:nth-child(1) .hero__foot-icon {
  width: 2.8125rem;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
}
@media (min-width: 751px) {
  .home .hero__foot-item:nth-child(1) .hero__foot-icon {
    width: 2.1875rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.home .hero__foot-item:nth-child(2) .hero__foot-icon {
  width: 2.1875rem;
  -webkit-margin-after: 0.8125rem;
          margin-block-end: 0.8125rem;
}
@media (min-width: 751px) {
  .home .hero__foot-item:nth-child(2) .hero__foot-icon {
    width: 1.8125rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.home .hero__foot-item:nth-child(3) {
  border-right: none;
}
.home .hero__foot-item:nth-child(3) .hero__foot-icon {
  width: 2.625rem;
  -webkit-margin-after: 1.5625rem;
          margin-block-end: 1.5625rem;
}
@media (min-width: 751px) {
  .home .hero__foot-item:nth-child(3) .hero__foot-icon {
    width: 2.0625rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.home .hero__foot-item:nth-child(3) .hero__foot-text {
  line-height: 1.6;
}
.home .hero__foot-icon {
  margin-inline: auto;
}
@media (min-width: 751px) {
  .home .hero__foot-icon {
    margin-inline: 0;
  }
}
.home .hero__foot-text {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .hero__foot-text {
    font-size: 1.125rem;
  }
}
.home .hero__foot-text--large {
  font-size: 2.5rem;
  line-height: 0.8;
}
@media (min-width: 751px) {
  .home .hero__foot-text--large {
    font-size: 1.25rem;
  }
}
.home .works {
  padding-block: 5.125rem 6.25rem;
  background: var(--white);
}
@media (min-width: 751px) {
  .home .works {
    padding-block: 5.5rem 4.1875rem;
  }
}
.home .works__title {
  -webkit-margin-after: 3.375rem;
          margin-block-end: 3.375rem;
  padding-block: 2.625rem 2.8125rem;
  position: relative;
  border: 2px solid;
  border-radius: 0.9375rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .works__title {
    width: 43.3125rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    margin-inline: auto;
    padding-block: 2.125rem 2.25rem;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0;
  }
}
.home .works__title--large {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .home .works__title--large {
    font-size: 2.75rem;
  }
}
@media (min-width: 751px) {
  .home .works__title .u-br--sp:first-child {
    -webkit-margin-end: 1.375rem;
            margin-inline-end: 1.375rem;
  }
}
.home .works__title::before, .home .works__title::after {
  content: "WORKS";
  padding-inline: 2.625rem;
  position: absolute;
  top: 50%;
  background: var(--white);
  color: var(--red);
  font-size: 2.25rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
}
@media (min-width: 751px) {
  .home .works__title::before, .home .works__title::after {
    padding-inline: 1.125rem;
    font-size: 1.375rem;
  }
}
.home .works__title::before {
  left: -5.625rem;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media (min-width: 751px) {
  .home .works__title::before {
    left: -3.125rem;
  }
}
.home .works__title::after {
  right: -5.625rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 751px) {
  .home .works__title::after {
    right: -3.125rem;
  }
}
.home .works__lead {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .home .works__lead {
    -webkit-margin-after: 2.3125rem;
            margin-block-end: 2.3125rem;
    font-size: 1.5625rem;
    letter-spacing: 0;
  }
}
.home .works .scroll__inner {
  height: 17.5rem;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  padding-inline: 1.875rem;
  background: var(--lightBeige);
  border: 2px dotted;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .home .works .scroll__inner {
    height: 10.625rem;
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
    padding-inline: 6.25rem;
  }
}
.home .works .scroll__inner .simplebar-track.simplebar-vertical {
  width: 0.5rem;
  height: 15.5rem;
  margin-inline: auto;
  top: 0.5625rem;
  right: 1.25rem;
  background: var(--white);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .works .scroll__inner .simplebar-track.simplebar-vertical {
    width: 0.375rem;
    height: 9.125rem;
  }
}
.home .works .scroll__inner .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  width: 1.1875rem;
  top: 0;
  right: 1.25rem;
}
.home .works .scroll__inner .simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  inset: 0;
  background: #8b8b8a;
  border-radius: 0.625rem;
  opacity: 1;
}
.home .works .scroll__inner .simplebar-track.simplebar-vertical .simplebar-scrollbar {
  width: 0.375rem;
}
.home .works__post {
  padding-block: 2.0625rem;
}
@media (max-width: 750px) {
  .home .works__post {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
@media (min-width: 751px) {
  .home .works__post {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -ms-flex-line-pack: start;
        align-content: start;
    gap: 0.9375rem 3.125rem;
    padding-block: 2rem;
  }
}
.home .works__post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .works__post-item {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
@media (min-width: 751px) {
  .home .works__post-item:nth-child(odd) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.home .works__post-item:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.home .works__post-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .home .works__post-date {
    width: 4.375rem;
    -webkit-margin-end: 0.9375rem;
            margin-inline-end: 0.9375rem;
    font-size: 0.875rem;
  }
}
.home .works__post-location {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14.6875rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  color: var(--red);
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .home .works__post-location {
    width: 8.375rem;
    -webkit-margin-end: 0.9375rem;
            margin-inline-end: 0.9375rem;
    font-size: 1rem;
  }
}
.home .works__post-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .home .works__post-category {
    font-size: 0.875rem;
  }
}
.home .works__area-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.875rem;
  -webkit-margin-after: 3.25rem;
          margin-block-end: 3.25rem;
}
@media (min-width: 751px) {
  .home .works__area-head {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 0.875rem;
       -moz-column-gap: 0.875rem;
            column-gap: 0.875rem;
  }
}
.home .works__area-head-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 1.6875rem;
  padding-inline: 2rem 1.0625rem;
  background: var(--black);
  border-radius: var(--around);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .works__area-head-link {
    padding-block: 0.75rem;
    padding-inline: 2.625rem 0.75rem;
    font-size: 1.125rem;
  }
}
.home .works__area-head-link::after {
  content: "";
  width: 2.125rem;
  height: 2.125rem;
  background: url(../images/common/arrow_to_right_white.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .home .works__area-head-link::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.home .works__area-body {
  border-top: 0.25rem solid;
  border-bottom: 0.25rem solid;
}
@media (min-width: 751px) {
  .home .works__area-body {
    border-width: 2px;
  }
}
.home .works__area-body-title {
  padding-block: 2.8125rem;
  position: relative;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .works__area-body-title {
    padding-block: 1.5625rem;
    font-size: 1.375rem;
  }
}
.home .works__area-body-title::after {
  content: "";
  width: 3.125rem;
  height: 3.125rem;
  position: absolute;
  top: 50%;
  right: 0.875rem;
  background: url(../images/common/arrow_to_top_black.webp) no-repeat top left/contain;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (min-width: 751px) {
  .home .works__area-body-title::after {
    width: 1.5625rem;
    height: 1.5625rem;
    right: 21.875rem;
  }
}
.home .works__area-body-title.is-active::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.home .works__area-body-wrapper {
  display: none;
  width: 38.125rem;
  margin-inline: auto;
  padding-block: 2rem 2.375rem;
}
@media (min-width: 751px) {
  .home .works__area-body-wrapper {
    width: 57.625rem;
    padding-block: 1.5rem;
    border-width: 2px;
  }
}
.home .works__area-body-attention {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .home .works__area-body-attention {
    font-size: 0.625rem;
  }
}
.home .works__area-body-block {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .home .works__area-body-block {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
  }
}
.home .works__area-body-block:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.home .works__area-body-pref {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
  border-bottom: 2px dotted;
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .home .works__area-body-pref {
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
    -webkit-padding-after: 1rem;
            padding-block-end: 1rem;
    font-size: 1.125rem;
  }
}
.home .works__area-body-cities {
  font-size: 1.625rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .works__area-body-cities {
    font-size: 0.875rem;
  }
}
.home .works__area-body-cities a {
  display: inline;
  color: var(--blue-1);
  text-decoration: underline;
}
.home .feature {
  background: var(--lightBeige);
}
@media (max-width: 750px) {
  .home .feature__hero-img {
    -webkit-margin-after: -4.375rem;
            margin-block-end: -4.375rem;
  }
}
.home .feature__container {
  padding-block: 4.25rem 6.5625rem;
  position: relative;
  background: var(--lightBeige);
  border-radius: 1.25rem 1.25rem 0 0;
}
@media (min-width: 751px) {
  .home .feature__container {
    width: 90rem;
    -webkit-margin-before: -4.0625rem;
            margin-block-start: -4.0625rem;
    padding-block: 5.3125rem 6.5rem;
    padding-inline: 13.6875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 2;
  }
}
.home .feature__head-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
}
@media (min-width: 751px) {
  .home .feature__head-wrapper {
    width: 42.1875rem;
    -webkit-margin-after: 6.125rem;
            margin-block-end: 6.125rem;
    margin-inline: auto;
  }
}
.home .feature__head-wrapper::before, .home .feature__head-wrapper::after {
  content: "";
  width: 1.4375rem;
  height: 14.625rem;
}
@media (min-width: 751px) {
  .home .feature__head-wrapper::before, .home .feature__head-wrapper::after {
    width: 1.0625rem;
    height: 10.1875rem;
  }
}
.home .feature__head-wrapper::before {
  background: url(../images/top/feature_title_border_left.webp) no-repeat top left/contain;
}
.home .feature__head-wrapper::after {
  background: url(../images/top/feature_title_border_right.webp) no-repeat top left/contain;
}
.home .feature__head-title {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .feature__head-title {
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
    font-size: 1.75rem;
    letter-spacing: 0.15em;
  }
}
.home .feature__head-title-top {
  display: block;
  -webkit-margin-after: 1.5625rem;
          margin-block-end: 1.5625rem;
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .home .feature__head-title-top {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
    font-size: 1.625rem;
  }
}
.home .feature__head-title--large {
  font-size: 6.25rem;
}
@media (min-width: 751px) {
  .home .feature__head-title--large {
    font-size: 4.375rem;
  }
}
.home .feature__head-title::before {
  content: "";
  width: 7.625rem;
  height: 12.1875rem;
  position: absolute;
  top: 1.25rem;
  left: -6.25rem;
  background: url(../images/top/feature_title_human.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .home .feature__head-title::before {
    width: 5.375rem;
    height: 8.5625rem;
    top: 1.875rem;
    left: -7.5rem;
  }
}
.home .feature__head-title::after {
  content: "";
  width: 9.875rem;
  height: 5rem;
  position: absolute;
  bottom: -3.75rem;
  right: -6.875rem;
  background: url(../images/top/feature_title_mouse.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .home .feature__head-title::after {
    width: 7.75rem;
    height: 6.75rem;
    bottom: -5rem;
    right: -8.125rem;
  }
}
@media (min-width: 751px) {
  .home .feature__head-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-margin-after: 2.8125rem;
            margin-block-end: 2.8125rem;
  }
}
.home .feature__head-text {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .feature__head-text {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    text-align: left;
    font-size: 1.375rem;
  }
}
.home .feature__head-img-wrapper {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 9.875rem;
          margin-block-end: 9.875rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .home .feature__head-img-wrapper {
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    margin-inline: 0;
  }
}
.home .feature__head-img {
  position: relative;
}
@media (max-width: 750px) {
  .home .feature__head-img {
    grid-area: 1/1;
  }
}
.home .feature__head-img:nth-child(1) {
  width: 24.0625rem;
  -webkit-transform: translate(-8.75rem, 4.25rem);
          transform: translate(-8.75rem, 4.25rem);
  z-index: 2;
}
@media (min-width: 751px) {
  .home .feature__head-img:nth-child(1) {
    width: 15.625rem;
    -webkit-transform: translate(3rem, 0);
            transform: translate(3rem, 0);
  }
}
.home .feature__head-img:nth-child(1) img {
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .feature__head-img:nth-child(1) img {
    border-radius: 0.625rem 0 0.625rem 0.625rem;
  }
}
.home .feature__head-img:nth-child(2) {
  width: 24.0625rem;
  -webkit-transform: translate(8.75rem, 0);
          transform: translate(8.75rem, 0);
  z-index: 1;
}
@media (min-width: 751px) {
  .home .feature__head-img:nth-child(2) {
    width: 15.625rem;
    -webkit-transform: translate(0, -1.5rem);
            transform: translate(0, -1.5rem);
  }
}
.home .feature__head-img:nth-child(2) img {
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .feature__head-img:nth-child(2) img {
    border-radius: 0.625rem 0.625rem 0.625rem 0;
  }
}
.home .feature__list {
  -webkit-margin-after: 4.375rem;
          margin-block-end: 4.375rem;
}
@media (min-width: 751px) {
  .home .feature__list {
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
  }
}
.home .feature__list::before, .home .feature__list::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.375rem;
}
@media (min-width: 751px) {
  .home .feature__list::before, .home .feature__list::after {
    height: 0.8125rem;
  }
}
.home .feature__list::before {
  -webkit-margin-after: 1.4375rem;
          margin-block-end: 1.4375rem;
  background: url(../images/top/feature_list_border_top.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .feature__list::before {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    background: url(../images/top/feature_list_border_top--pc.webp) no-repeat top left/cover;
  }
}
.home .feature__list::after {
  -webkit-margin-before: 1.4375rem;
          margin-block-start: 1.4375rem;
  background: url(../images/top/feature_list_border_bottom.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .feature__list::after {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    background: url(../images/top/feature_list_border_bottom--pc.webp) no-repeat top left/cover;
  }
}
.home .feature__list-item {
  margin-inline: 0.3125rem;
}
@media (min-width: 751px) {
  .home .feature__list-item {
    margin-inline: 0;
  }
}
.home .feature__list-item:not(:first-child) .feature__list-item-head {
  -webkit-padding-before: 2.5rem;
          padding-block-start: 2.5rem;
}
@media (min-width: 751px) {
  .home .feature__list-item:not(:first-child) .feature__list-item-head {
    -webkit-padding-before: 1.9375rem;
            padding-block-start: 1.9375rem;
  }
}
.home .feature__list-item:not(:last-child) .feature__list-item-head {
  -webkit-padding-after: 2.5rem;
          padding-block-end: 2.5rem;
  border-bottom: 2px dotted;
}
@media (min-width: 751px) {
  .home .feature__list-item:not(:last-child) .feature__list-item-head {
    -webkit-padding-after: 1.3125rem;
            padding-block-end: 1.3125rem;
  }
}
.home .feature__list-item-head {
  display: grid;
  grid-template-areas: "icon head-wrapper" "text text";
  grid-template-columns: 11.875rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.75rem 2.625rem;
}
@media (min-width: 751px) {
  .home .feature__list-item-head {
    grid-template-areas: "icon head-wrapper" "icon text";
    grid-template-columns: 8.125rem 1fr;
    gap: 0rem 1.875rem;
  }
}
.home .feature__list-item-head-icon {
  grid-area: icon;
}
.home .feature__list-item-head-wrapper {
  grid-area: head-wrapper;
}
.home .feature__list-item-head-num {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  color: var(--red);
  font-size: 1.875rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .feature__list-item-head-num {
    -webkit-margin-after: 0.4375rem;
            margin-block-end: 0.4375rem;
    font-size: 1.5rem;
  }
}
.home .feature__list-item-head-title {
  font-size: 2.5rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 3.75rem;
}
@media (min-width: 751px) {
  .home .feature__list-item-head-title {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 2rem;
  }
}
.home .feature__list-item-head-title--small {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .home .feature__list-item-head-title--small {
    font-size: 1.375rem;
  }
}
.home .feature__list-item-head-title--large {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .home .feature__list-item-head-title--large {
    font-size: 2.75rem;
  }
}
@media (max-width: 750px) {
  .home .feature__list-item-head-title--large--pc {
    font-size: 3.75rem;
  }
}
.home .feature__list-item-head-title--exLarge {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .home .feature__list-item-head-title--exLarge {
    font-size: 2.75rem;
  }
}
.home .feature__list-item-text {
  grid-area: text;
  padding-inline: 0.625rem;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .home .feature__list-item-text {
    padding-inline: 0;
    font-size: 1rem;
  }
}
.home .feature__button {
  padding-inline: 8.625rem 9rem;
}
@media (min-width: 751px) {
  .home .feature__button {
    padding-inline: 6.25rem 5.9375rem;
  }
}
.home .strength {
  padding-block: 6.625rem 14.0625rem;
}
@media (min-width: 751px) {
  .home .strength {
    padding-block: 7.125rem 11.8125rem;
  }
}
.home .strength__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  -webkit-margin-start: 3.125rem;
          margin-inline-start: 3.125rem;
  position: relative;
}
@media (min-width: 751px) {
  .home .strength__title {
    -webkit-margin-after: 1.625rem;
            margin-block-end: 1.625rem;
    margin-inline: auto;
  }
}
.home .strength__title::after {
  content: "";
  width: 7.9375rem;
  height: 16.5rem;
  position: absolute;
  top: -2.5rem;
  right: -6.875rem;
  background: url(../images/top/strength_title_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .strength__title::after {
    width: 6rem;
    height: 12.4375rem;
    top: -1.25rem;
    right: -9.0625rem;
  }
}
.home .strength__title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  margin-inline: auto;
  font-size: 2.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .strength__title-top {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 1.5rem;
    -webkit-margin-after: 0.875rem;
            margin-block-end: 0.875rem;
    font-size: 1.75rem;
  }
}
.home .strength__title-top::before, .home .strength__title-top::after {
  content: "";
  display: block;
  width: 2px;
  height: 3.3125rem;
}
@media (min-width: 751px) {
  .home .strength__title-top::before, .home .strength__title-top::after {
    height: 2.0625rem;
  }
}
.home .strength__title-top::before {
  border-right: 2px dotted var(--black);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.home .strength__title-top::after {
  border-left: 2px dotted var(--black);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.home .strength__title-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  font-size: 3.4375rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .strength__title-body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5625rem;
    font-size: 2.75rem;
  }
}
.home .strength__title-body--small {
  font-size: 2.5625rem;
}
@media (min-width: 751px) {
  .home .strength__title-body--small {
    font-size: 2.25rem;
  }
}
.home .strength__title-body--medium {
  font-size: 3rem;
}
@media (min-width: 751px) {
  .home .strength__title-body--medium {
    font-size: 2.75rem;
  }
}
.home .strength__title-body--large {
  font-size: 7.5rem;
}
@media (min-width: 751px) {
  .home .strength__title-body--large {
    font-size: 5rem;
  }
}
.home .strength__title-en {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
.home .strength__table {
  position: relative;
}
.home .strength__table::before {
  content: "";
  width: 1.5625rem;
  height: 2rem;
  position: absolute;
  top: -1.875rem;
  left: 5rem;
  background: url(../images/top/strength_table_deco.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .strength__table::before {
    width: 1.5625rem;
    height: 2rem;
    top: -1.875rem;
    left: 13.75rem;
  }
}
.home .strength__table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.home .strength__table-head-item {
  place-content: center;
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .home .strength__table-head-item {
    font-size: 1.25rem;
  }
}
.home .strength__table-head-item-space {
  width: 7.0625rem;
}
@media (min-width: 751px) {
  .home .strength__table-head-item-space {
    width: 15.625rem;
  }
}
.home .strength__table-head-item:nth-of-type(1) {
  width: 11.5625rem;
  padding-block: 0.8125rem 1.25rem;
  padding-inline: 0.75rem;
  border: 0.5rem solid var(--red);
  border-bottom: 1px dotted var(--black);
}
@media (min-width: 751px) {
  .home .strength__table-head-item:nth-of-type(1) {
    width: 15.625rem;
    padding-block: 0.9375rem;
    padding-inline: 5.25rem;
    border: 0.375rem solid var(--red);
    border-bottom: 1px dotted var(--black);
  }
}
.home .strength__table-head-item:nth-of-type(2), .home .strength__table-head-item:nth-of-type(3) {
  width: 11.5625rem;
  height: 7.5rem;
  background: var(--darkGray);
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  text-align: center;
  color: var(--white);
}
@media (min-width: 751px) {
  .home .strength__table-head-item:nth-of-type(2), .home .strength__table-head-item:nth-of-type(3) {
    width: 15.625rem;
    height: 3.75rem;
  }
}
.home .strength__table-head-item:nth-of-type(2) {
  border-radius: 0 0.625rem 0 0;
}
.home .strength__table-head-item:nth-of-type(3) {
  border-radius: 0.625rem 0.625rem 0 0;
}
.home .strength__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.home .strength__table-body-item {
  width: 11.5625rem;
  height: 10rem;
  place-content: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .home .strength__table-body-item {
    width: 15.625rem;
    height: 3.125rem;
  }
}
.home .strength__table-body-item:nth-of-type(1) {
  width: 7.0625rem;
  place-content: center;
  background: var(--black);
  border-bottom: 1px dotted var(--white);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .strength__table-body-item:nth-of-type(1) {
    width: 15.625rem;
    -webkit-padding-start: 5rem;
            padding-inline-start: 5rem;
    text-align: left;
    font-size: 1.125rem;
  }
}
.home .strength__table-body-item:nth-of-type(2) {
  border-right: 0.5rem solid var(--red);
  border-left: 0.5rem solid var(--red);
  border-bottom: 1px dotted var(--black);
  color: var(--red);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .strength__table-body-item:nth-of-type(2) {
    border-right: 0.375rem solid var(--red);
    border-left: 0.375rem solid var(--red);
    font-size: 1.25rem;
  }
}
.home .strength__table-body-item:nth-of-type(2) .strength__table-body-item--small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .home .strength__table-body-item:nth-of-type(2) .strength__table-body-item--small {
    font-size: 1rem;
  }
}
.home .strength__table-body-item:nth-of-type(2) .strength__table-body-item--medium {
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .home .strength__table-body-item:nth-of-type(2) .strength__table-body-item--medium {
    font-size: 1.25rem;
  }
}
.home .strength__table-body-item:nth-of-type(2) .strength__table-body-item--large {
  font-size: 2.8125rem;
}
@media (min-width: 751px) {
  .home .strength__table-body-item:nth-of-type(2) .strength__table-body-item--large {
    font-size: 1.625rem;
  }
}
.home .strength__table-body-item:nth-of-type(3), .home .strength__table-body-item:nth-of-type(4) {
  border-right: 1px solid var(--black);
  border-bottom: 1px dotted var(--black);
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .home .strength__table-body-item:nth-of-type(3), .home .strength__table-body-item:nth-of-type(4) {
    font-size: 1.125rem;
  }
}
.home .strength__table-body:nth-of-type(2) .strength__table-body-item:first-child {
  border-radius: 0.625rem 0 0 0;
}
.home .strength__table-body:last-of-type .strength__table-body-item:first-child {
  border-radius: 0 0 0 0.625rem;
}
.home .strength__table-body:last-of-type .strength__table-body-item:nth-of-type(2) {
  height: 10.625rem;
  border-bottom: 0.5rem solid var(--red);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .home .strength__table-body:last-of-type .strength__table-body-item:nth-of-type(2) {
    height: 3.75rem;
    border-width: 0.375rem;
  }
}
.home .strength__table-body:last-of-type .strength__table-body-item:nth-of-type(3), .home .strength__table-body:last-of-type .strength__table-body-item:nth-of-type(4) {
  border-bottom: 1px solid var(--black);
}
.home .strength__table-body:last-of-type .strength__table-body-item:nth-of-type(4) {
  border-radius: 0 0 0.625rem 0;
}
.home .target {
  padding-block: 6.375rem 6.6875rem;
}
@media (min-width: 751px) {
  .home .target {
    padding-block: 6.0625rem 7.5625rem;
  }
}
.home .target__title {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  position: relative;
  text-align: center;
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .home .target__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 1.625rem;
            margin-block-end: 1.625rem;
    margin-inline: auto;
    font-size: 3.4375rem;
  }
}
.home .target__title::after {
  content: "";
  width: 6.875rem;
  height: 5.5625rem;
  position: absolute;
  top: -5rem;
  right: 0;
  background: url(../images/top/target_title_deco.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .target__title::after {
    width: 4.625rem;
    height: 3.75rem;
    top: -3.75rem;
    right: -3.125rem;
  }
}
.home .target__title--small {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .home .target__title--small {
    font-size: 2.5rem;
  }
}
.home .target__title-en {
  -webkit-margin-after: 4.1875rem;
          margin-block-end: 4.1875rem;
}
@media (min-width: 751px) {
  .home .target__title-en {
    -webkit-margin-after: 3.625rem;
            margin-block-end: 3.625rem;
  }
}
.home .target__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.9375rem;
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
}
@media (min-width: 751px) {
  .home .target__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.0625rem 2.3125rem;
    -webkit-margin-after: 3.375rem;
            margin-block-end: 3.375rem;
  }
}
.home .target__item {
  padding-block: 1.875rem 3.25rem;
  padding-inline: 1.875rem;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .target__item {
    padding-block: 1.25rem 2.25rem;
    padding-inline: 2.125rem;
  }
}
.home .target__item:last-child {
  position: relative;
}
@media (min-width: 751px) {
  .home .target__item:last-child::after {
    content: "";
    width: 29.9375rem;
    height: 19.9375rem;
    position: absolute;
    top: 0;
    right: -32.5rem;
    background: url(../images/top/target_deco--pc.webp) no-repeat top left/cover;
  }
}
.home .target__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .home .target__item-head {
    gap: 1.25rem;
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
  }
}
.home .target__item-head-wrapper {
  width: 17.0625rem;
}
@media (min-width: 751px) {
  .home .target__item-head-wrapper {
    width: 11.375rem;
  }
}
.home .target__item-head-title {
  -webkit-margin-after: 1.6875rem;
          margin-block-end: 1.6875rem;
  -webkit-padding-after: 1.5625rem;
          padding-block-end: 1.5625rem;
  border-bottom: 2px dotted var(--black);
  font-size: 3.125rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .target__item-head-title {
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
    -webkit-padding-after: 1rem;
            padding-block-end: 1rem;
    font-size: 2rem;
  }
}
.home .target__item-head-level {
  display: grid;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.5rem 0.5625rem;
  grid-template-areas: "text num" "star num";
}
@media (min-width: 751px) {
  .home .target__item-head-level {
    gap: 0.25rem 0.4375rem;
  }
}
.home .target__item-head-level-text {
  grid-area: text;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 1rem 0.8125rem;
  padding-inline: 3.3125rem 1.3125rem;
  position: relative;
  background: var(--black);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  -webkit-transform: translateY(0.625rem);
          transform: translateY(0.625rem);
}
@media (min-width: 751px) {
  .home .target__item-head-level-text {
    gap: 0.5625rem;
    padding-block: 0.5625rem;
    padding-inline: 2.25rem 0.9375rem;
    font-size: 1.125rem;
  }
}
.home .target__item-head-level-text::before {
  content: "";
  width: 1.9375rem;
  height: 1.6875rem;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  background: url(../images/top/target_danger_icon.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 751px) {
  .home .target__item-head-level-text::before {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 1.25rem;
    height: 1.125rem;
    left: 0.5625rem;
  }
}
.home .target__item-head-level-star {
  display: grid;
  grid-area: star;
  grid-template-columns: repeat(5, 1.875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media (min-width: 751px) {
  .home .target__item-head-level-star {
    grid-template-columns: repeat(5, 1.25rem);
    gap: 0.5rem;
  }
}
.home .target__item-head-level-num {
  grid-area: num;
  color: var(--red);
  font-size: 7.8125rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .home .target__item-head-level-num {
    font-size: 5.25rem;
  }
}
.home .target__item-head-img {
  width: 19.0625rem;
}
@media (min-width: 751px) {
  .home .target__item-head-img {
    width: 12.8125rem;
  }
}
.home .target__item-body-text {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .target__item-body-text {
    -webkit-margin-after: 0.4375rem;
            margin-block-end: 0.4375rem;
    font-size: 1rem;
  }
}
.home .target__item-body-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto 0;
  -webkit-padding-after: 0.5625rem;
          padding-block-end: 0.5625rem;
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .target__item-body-link a {
    gap: 1.125rem;
    -webkit-padding-after: 0.375rem;
            padding-block-end: 0.375rem;
    border-width: 2px;
    font-size: 1.125rem;
  }
}
.home .target__item-body-link a span {
  text-decoration: underline;
  text-underline-offset: 0.5625rem;
  text-decoration-thickness: 0.25rem;
}
@media (min-width: 751px) {
  .home .target__item-body-link a span {
    text-decoration-thickness: 0.125rem;
  }
}
.home .target__item-body-link a::after {
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .target__item-body-link a::after {
    width: 1.8125rem;
    height: 1.8125rem;
  }
}
.home .target__button {
  padding-inline: 7.9375rem 7.625rem;
}
@media (min-width: 751px) {
  .home .target__button {
    padding-inline: 5.5rem 5.3125rem;
  }
}
.home .damage {
  padding-block: 6.375rem;
}
@media (min-width: 751px) {
  .home .damage {
    padding-block: 6.4375rem 8.5625rem;
  }
}
.home .damage__head {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  position: relative;
}
@media (min-width: 751px) {
  .home .damage__head {
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
}
.home .damage__head::before {
  content: "";
  width: 10.0625rem;
  height: 5.3125rem;
  position: absolute;
  bottom: -0.625rem;
  left: -1.875rem;
  background: url(../images/top/damage_title_araiguma.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .damage__head::before {
    width: 8.375rem;
    height: 4.4375rem;
    bottom: 0;
    left: 0;
  }
}
.home .damage__head-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.125rem;
          margin-block-end: 2.125rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  font-size: 2.9375rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .damage__head-title {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
    font-size: 2.0625rem;
  }
}
.home .damage__head-title::before, .home .damage__head-title::after {
  content: "";
  display: block;
  width: 3.875rem;
  height: 7.6875rem;
  position: absolute;
  top: 0.625rem;
}
@media (min-width: 751px) {
  .home .damage__head-title::before, .home .damage__head-title::after {
    width: 2.8125rem;
    height: 5.625rem;
    top: -1.875rem;
  }
}
.home .damage__head-title::before {
  left: -5rem;
  background: url(../images/top/damage_title_deco_left.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .damage__head-title::before {
    left: -4.5625rem;
  }
}
.home .damage__head-title::after {
  right: -5rem;
  background: url(../images/top/damage_title_deco_right.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .damage__head-title::after {
    right: -4.5625rem;
  }
}
.home .damage__head-title--medium {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .home .damage__head-title--medium {
    font-size: 2.75rem;
  }
}
.home .damage__head-title--large {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .home .damage__head-title--large {
    font-size: 3.75rem;
  }
}
.home .damage__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.0625rem 1.5625rem;
  position: relative;
}
@media (min-width: 751px) {
  .home .damage__body {
    grid-template-columns: repeat(2, 19.6875rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.875rem;
  }
}
.home .damage__body::after {
  content: "";
  width: 8.0625rem;
  height: 5.8125rem;
  position: absolute;
  bottom: -4.375rem;
  right: -2.5rem;
  background: url(../images/top/damage_body_deco.webp) no-repeat top left/cover;
  z-index: 1;
}
@media (min-width: 751px) {
  .home .damage__body::after {
    bottom: -3.75rem;
    right: -6.875rem;
  }
}
@media (min-width: 751px) {
  .home .damage__body-item {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 751px) {
  .home .damage__body-item:nth-child(odd) {
    justify-items: start;
  }
  .home .damage__body-item:nth-child(odd) .damage__body-text {
    -webkit-transform: translateX(-7.5rem);
            transform: translateX(-7.5rem);
    background: url(../images/top/damage_body_fukidashi_odd--pc.webp) no-repeat top center/cover;
  }
}
@media (min-width: 751px) {
  .home .damage__body-item:nth-child(even) {
    justify-items: end;
  }
  .home .damage__body-item:nth-child(even) .damage__body-text {
    -webkit-transform: translateX(7.5rem);
            transform: translateX(7.5rem);
    background: url(../images/top/damage_body_fukidashi_even--pc.webp) no-repeat top center/cover;
  }
}
.home .damage__body-text {
  width: 20.9375rem;
  height: 9.375rem;
  place-content: center;
  position: relative;
  background: url(../images/top/damage_body_fukidashi.webp) no-repeat top center/cover;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  z-index: 2;
}
@media (min-width: 751px) {
  .home .damage__body-text {
    grid-area: 1/1;
    width: 15.1875rem;
    height: 6.625rem;
    font-size: 1.25rem;
  }
}
.home .damage__body-text--large {
  font-size: 2.25rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .damage__body-text--large {
    font-size: 1.75rem;
  }
}
.home .damage__body-img {
  position: relative;
  top: -0.625rem;
  z-index: 1;
}
@media (min-width: 751px) {
  .home .damage__body-img {
    grid-area: 1/1;
    top: auto;
  }
}
.home .price {
  padding-block: 5.3125rem;
}
@media (min-width: 751px) {
  .home .price {
    padding-block: 5.0625rem 6.375rem;
  }
}
.home .price__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  font-size: 3.4375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .home .price__title {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 0.625rem;
    -webkit-margin-after: 1.625rem;
            margin-block-end: 1.625rem;
    font-size: 2.75rem;
  }
}
.home .price__title--small {
  font-size: 2.5625rem;
}
@media (min-width: 751px) {
  .home .price__title--small {
    font-size: 2.25rem;
  }
}
.home .price__title--medium {
  font-size: 3rem;
}
@media (min-width: 751px) {
  .home .price__title--medium {
    font-size: 2.75rem;
  }
}
.home .price__title--large {
  font-size: 7.5rem;
}
@media (min-width: 751px) {
  .home .price__title--large {
    font-size: 5rem;
  }
}
.home .price__title-en {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .home .price__title-en {
    -webkit-margin-after: 2.9375rem;
            margin-block-end: 2.9375rem;
  }
}
.home .price__head-text {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .price__head-text {
    -webkit-margin-after: 2.1875rem;
            margin-block-end: 2.1875rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 751px) {
  .home .price__container {
    -webkit-padding-after: 3.75rem;
            padding-block-end: 3.75rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 0.625rem;
  }
}
.home .price__body {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .home .price__body {
    -webkit-margin-after: 1.4375rem;
            margin-block-end: 1.4375rem;
  }
}
.home .price__body-title {
  padding-block: 2.375rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 3.125rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .home .price__body-title {
    padding-block: 1.0625rem 0.8125rem;
    border-radius: 0;
    font-size: 1.75rem;
  }
}
.home .price__body-title--small {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .home .price__body-title--small {
    font-size: 0.875rem;
  }
}
.home .price__body-content {
  padding-block: 3rem 3.375rem;
  padding-inline: 1.875rem;
}
@media (max-width: 750px) {
  .home .price__body-content {
    background: var(--white);
    border: 2px solid var(--black);
  }
}
@media (min-width: 751px) {
  .home .price__body-content {
    padding-block: 1.875rem 0;
    padding-inline: 3.125rem;
  }
}
.home .price__body-basic {
  -webkit-margin-after: 4.625rem;
          margin-block-end: 4.625rem;
}
@media (min-width: 751px) {
  .home .price__body-basic {
    -webkit-margin-after: 3.4375rem;
            margin-block-end: 3.4375rem;
  }
}
.home .price__body-basic-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 1.6875rem;
          margin-block-end: 1.6875rem;
  margin-inline: auto;
  text-align: right;
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .price__body-basic-title {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
    font-size: 1.375rem;
  }
}
.home .price__body-basic-title--small {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .home .price__body-basic-title--small {
    font-size: 0.8125rem;
  }
}
.home .price__body-basic-title--large {
  font-size: 7.5rem;
}
@media (min-width: 751px) {
  .home .price__body-basic-title--large {
    font-size: 4.75rem;
    letter-spacing: 0.05em;
  }
}
.home .price__body-basic-text {
  position: relative;
  font-size: 1.625rem;
}
@media (max-width: 750px) {
  .home .price__body-basic-text {
    padding-block: 2.625rem 2rem;
    padding-inline: 2.125rem 1.4375rem;
    background: var(--lightBeige);
    line-height: 1.5;
  }
}
@media (min-width: 751px) {
  .home .price__body-basic-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.home .price__body-basic-text::after {
  content: "";
  width: 3.8125rem;
  height: 4.5625rem;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  background: url(../images/top/price_basic_plus.webp) no-repeat top left/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .home .price__body-basic-text::after {
    width: 2.4375rem;
    height: 2.8125rem;
    bottom: -5rem;
  }
}
@media (min-width: 751px) {
  .home .price__body-additional {
    -webkit-margin-after: 2.1875rem;
            margin-block-end: 2.1875rem;
    padding-block: 2.4375rem 1.875rem;
    padding-inline: 1.3125rem;
    background: var(--lightBeige);
  }
}
.home .price__body-additional-title {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .price__body-additional-title {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 1.625rem;
    letter-spacing: 0;
  }
}
.home .price__body-additional-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  margin-inline: auto;
  padding-block: 0.9375rem;
  padding-inline: 4.625rem 4.125rem;
  background: var(--blue-1);
  border-radius: 0.625rem;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .price__body-additional-lead {
    -webkit-margin-after: 1.3125rem;
            margin-block-end: 1.3125rem;
    padding-block: 0.5625rem;
    padding-inline: 3.25rem;
    font-size: 1rem;
  }
}
.home .price__body-table {
  position: relative;
}
@media (max-width: 750px) {
  .home .price__body-table {
    -webkit-margin-after: 2.875rem;
            margin-block-end: 2.875rem;
  }
}
@media (min-width: 751px) {
  .home .price__body-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home .price__body-table::after {
  content: "";
  width: 9.875rem;
  height: 5rem;
  position: absolute;
  top: -2.8125rem;
  left: 0.9375rem;
  background: url(../images/top/price_body_deco.webp) no-repeat top left/cover;
  z-index: 1;
}
@media (min-width: 751px) {
  .home .price__body-table::after {
    width: 6.9375rem;
    height: 3.5625rem;
    top: -8.4375rem;
    left: 10rem;
  }
}
.home .price__body-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .home .price__body-table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .price__body-table-item p {
  place-content: center;
  background: var(--white);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.home .price__body-table-item p:first-child {
  width: 15.9375rem;
  -webkit-padding-start: 1.875rem;
          padding-inline-start: 1.875rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .price__body-table-item p:first-child {
    width: 11.25rem;
    height: 2.8125rem;
    padding-inline: 0.9375rem;
    text-align: center;
    font-size: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.home .price__body-table-item p:nth-child(2) {
  width: 22.125rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .price__body-table-item p:nth-child(2) {
    width: 11.25rem;
    height: 4.0625rem;
    padding-inline: 0.9375rem;
    font-size: 0.875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.home .price__body-table-item--large {
  font-size: 2.25rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .home .price__body-table-item--large {
    font-size: 1.3125rem;
  }
}
@media (min-width: 751px) {
  .home .price__body-table-item:first-child p {
    width: 8.5rem;
  }
}
.home .price__body-table-item:first-child p:first-child {
  height: 5.625rem;
  background: none;
  border-bottom: none;
}
@media (min-width: 751px) {
  .home .price__body-table-item:first-child p:first-child {
    height: 2.8125rem;
  }
}
.home .price__body-table-item:first-child p:nth-child(2) {
  place-content: center;
  background: var(--darkGray);
  border: 1px solid var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .price__body-table-item:first-child p:nth-child(2) {
    height: 4.0625rem;
    padding-inline: 0;
    border-radius: 0.625rem 0 0 0.625rem;
    font-size: 1rem;
  }
}
@media (max-width: 750px) {
  .home .price__body-table-item:not(:first-child) {
    height: 6.4375rem;
  }
}
@media (min-width: 751px) {
  .home .price__body-table-item:not(:first-child) p:nth-child(1) {
    border-right: 1px dotted var(--white);
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
@media (max-width: 750px) {
  .home .price__body-table-item:not(:first-child) p:nth-child(1) {
    border-bottom: 1px dotted var(--white);
  }
}
.home .price__body-table-item:not(:first-child) p:nth-child(2) {
  border-bottom: 1px dotted var(--black);
  border-right: 1px solid var(--black);
}
@media (min-width: 751px) {
  .home .price__body-table-item:not(:first-child) p:nth-child(2) {
    border-right: 1px dotted var(--black);
    border-bottom: 1px solid var(--black);
  }
}
@media (min-width: 751px) {
  .home .price__body-table-item:nth-child(2) p:first-child {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
@media (max-width: 750px) {
  .home .price__body-table-item:nth-child(2) p:first-child {
    border-radius: 0.625rem 0 0 0;
  }
}
.home .price__body-table-item:last-child p:first-child {
  border-bottom: none;
  border-radius: 0 0 0 0.625rem;
}
@media (min-width: 751px) {
  .home .price__body-table-item:last-child p:first-child {
    border-right: none;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.home .price__body-table-item:last-child p:last-child {
  border-radius: 0 0 0.625rem 0;
}
@media (min-width: 751px) {
  .home .price__body-table-item:last-child p:last-child {
    border-right: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .home .price__body-table-item:last-child p:last-child {
    border-bottom: 1px solid var(--black);
  }
}
.home .price__body-attention {
  position: relative;
}
.home .price__body-attention-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.75rem;
  -webkit-margin-after: 2.3125rem;
          margin-block-end: 2.3125rem;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .price__body-attention-title {
    gap: 0.5rem;
    -webkit-margin-after: 1.3125rem;
            margin-block-end: 1.3125rem;
    font-size: 2.5rem;
    letter-spacing: 0;
  }
}
.home .price__body-attention-title::before {
  content: "";
  display: block;
  width: 5.3125rem;
  height: 4.625rem;
  background: url(../images/top/price_body_attention_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .price__body-attention-title::before {
    width: 3.3125rem;
    height: 2.875rem;
  }
}
.home .price__body-attention-text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .price__body-attention-text {
    -webkit-padding-start: 1.875rem;
            padding-inline-start: 1.875rem;
    font-size: 1.125rem;
  }
}
.home .price__body-attention-human {
  width: 6.25rem;
  position: absolute;
  top: -4.0625rem;
  right: 0;
}
@media (min-width: 751px) {
  .home .price__body-attention-human {
    width: 4rem;
    top: 0;
    right: 4.1875rem;
    line-height: 1.8;
  }
}
.home .price__foot-text {
  -webkit-margin-after: 2.8125rem;
          margin-block-end: 2.8125rem;
  text-align: center;
  font-size: 2.375rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .price__foot-text {
    -webkit-margin-after: 2.0625rem;
            margin-block-end: 2.0625rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 751px) {
  .home .price__foot-text--medium {
    font-size: 2.25rem;
  }
}
.home .price__foot-text--large {
  font-size: 3.125rem;
}
@media (min-width: 751px) {
  .home .price__foot-text--large {
    font-size: 2.5rem;
  }
}
.home .price__button {
  padding-inline: 8.625rem 9rem;
}
@media (min-width: 751px) {
  .home .price__button {
    padding-inline: 6.25rem;
  }
}
.home .case {
  padding-block: 9.5rem 8.5rem;
}
@media (min-width: 751px) {
  .home .case {
    padding-block: 7rem 6.5rem;
  }
}
.home .case__head {
  -webkit-margin-after: 4.0625rem;
          margin-block-end: 4.0625rem;
  position: relative;
}
@media (min-width: 751px) {
  .home .case__head {
    width: 42.1875rem;
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
    margin-inline: auto;
  }
}
.home .case__head::before, .home .case__head::after {
  content: "";
  display: block;
  width: 1.4375rem;
  height: 9.625rem;
  position: absolute;
  top: -1.75rem;
}
@media (min-width: 751px) {
  .home .case__head::before, .home .case__head::after {
    width: 1rem;
    height: 7.0625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.home .case__head::before {
  left: 0;
  background: url(../images/top/case_title_deco_left.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .case__head::before {
    background: url(../images/top/case_title_deco_left--pc.webp) no-repeat top left/cover;
  }
}
.home .case__head::after {
  right: 0;
  background: url(../images/top/case_title_deco_right.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .case__head::after {
    background: url(../images/top/case_title_deco_right--pc.webp) no-repeat top left/cover;
  }
}
.home .case__head-wrapper {
  position: relative;
}
.home .case__head-wrapper::before {
  content: "";
  width: 7.75rem;
  height: 9.5625rem;
  position: absolute;
  top: -1.75rem;
  left: 4.375rem;
  background: url(../images/top/case_title_bottle.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .case__head-wrapper::before {
    width: 6.25rem;
    height: 7.625rem;
    top: -0.625rem;
    left: 6.25rem;
  }
}
.home .case__head-title {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  text-align: center;
  font-size: 5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .case__head-title {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    font-size: 3.4375rem;
  }
}
.home .case__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.25rem 2.25rem;
}
@media (min-width: 751px) {
  .home .case__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.home .case__list-item {
  position: relative;
}
@media (min-width: 751px) {
  .home .case__list-item {
    width: 13.1875rem;
    -webkit-padding-before: 2.875rem;
            padding-block-start: 2.875rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(1), .home .case__list-item:nth-child(2), .home .case__list-item:nth-child(3), .home .case__list-item:nth-child(4) {
    -webkit-padding-after: 2.0625rem;
            padding-block-end: 2.0625rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(5), .home .case__list-item:nth-child(6), .home .case__list-item:nth-child(7), .home .case__list-item:nth-child(8) {
    -webkit-padding-after: 1.4375rem;
            padding-block-end: 1.4375rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(2), .home .case__list-item:nth-child(6) {
    margin-inline: 1.5625rem 3.0625rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(3), .home .case__list-item:nth-child(7) {
    margin-inline: 3.0625rem 1.5625rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(1)::before, .home .case__list-item:nth-child(5)::before {
    content: "";
    width: 30.625rem;
    height: 1px;
    border-bottom: 2px dotted var(--black);
    position: absolute;
    bottom: 0;
    left: -0.625rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(3)::before, .home .case__list-item:nth-child(7)::before {
    content: "";
    width: 30.625rem;
    height: 1px;
    border-bottom: 2px dotted var(--black);
    position: absolute;
    bottom: 0;
    left: -2.5rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(1)::after {
    content: "";
    width: 30.625rem;
    height: 1px;
    border-bottom: 2px dotted var(--black);
    position: absolute;
    top: 0;
    left: -0.625rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(3)::after {
    content: "";
    width: 30.625rem;
    height: 1px;
    border-bottom: 2px dotted var(--black);
    position: absolute;
    top: 0;
    left: -2.5rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(2)::before {
    content: "";
    width: 2px;
    height: 14.375rem;
    border-right: 2px dotted var(--black);
    position: absolute;
    bottom: 1.875rem;
    right: -3.0625rem;
  }
}
@media (min-width: 751px) {
  .home .case__list-item:nth-child(6)::before {
    content: "";
    width: 2px;
    height: 14.375rem;
    border-right: 2px dotted var(--black);
    position: absolute;
    top: 1.875rem;
    right: -3.0625rem;
  }
}
.home .case__list-item-num {
  position: absolute;
  top: -0.625rem;
  left: 1rem;
  text-align: center;
  color: var(--red);
  font-size: 1.75rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .home .case__list-item-num {
    top: 1.5625rem;
    font-size: 1.125rem;
  }
}
.home .case__list-item-num::before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--circle);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media (min-width: 751px) {
  .home .case__list-item-num::before {
    width: 4rem;
    height: 4rem;
    border-width: 2px;
  }
}
.home .case__list-item-num--large {
  font-size: 2.5rem;
}
@media (min-width: 751px) {
  .home .case__list-item-num--large {
    font-size: 1.6875rem;
  }
}
.home .case__list-item-num .u-br {
  position: relative;
  z-index: 1;
}
.home .case__list-item-img {
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
@media (min-width: 751px) {
  .home .case__list-item-img {
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
  }
}
.home .case__list-item-text {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .home .case__list-item-text {
    font-size: 1.25rem;
  }
}
.home .case__list-item-text--small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .home .case__list-item-text--small {
    font-size: 1.125rem;
  }
}
.home .case__list-item-arrow {
  position: relative;
}
.home .case__list-item-arrow::after {
  content: "";
  width: 2rem;
  height: 2.1875rem;
  position: absolute;
  top: 0.3125rem;
  right: -2rem;
  background: url(../images/top/case_item_arrow.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .case__list-item-arrow::after {
    width: 1.375rem;
    height: 1.4375rem;
    top: 0.25rem;
    right: -1.4375rem;
  }
}
.home .point {
  padding-block: 5rem 16.6875rem;
}
@media (min-width: 751px) {
  .home .point {
    padding-block: 5.625rem 8.25rem;
  }
}
.home .point__title {
  position: relative;
}
@media (min-width: 751px) {
  .home .point__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.home .point__title::after {
  content: "";
  width: 8.6875rem;
  height: 18.0625rem;
  position: absolute;
  top: 3.75rem;
  right: -1.875rem;
  background: url(../images/top/point_title_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .point__title::after {
    content: "";
    width: 6.5625rem;
    height: 13.5625rem;
    top: -2.5rem;
    right: -10.3125rem;
    background: url(../images/top/point_title_human.webp) no-repeat top left/cover;
  }
}
.home .point__title-top {
  width: 37.5rem;
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  margin-inline: auto;
  padding-block: 1.375rem 1.5rem;
  background: url(../images/top/point_title_top_bg.webp) no-repeat top center/cover;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .point__title-top {
    width: 27.5rem;
    -webkit-margin-after: 1.125rem;
            margin-block-end: 1.125rem;
    padding-block: 0.875rem 1.1875rem;
    background: url(../images/top/point_title_top_bg--pc.webp) no-repeat top center/cover;
    font-size: 1.75rem;
  }
}
.home .point__title-top--small {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .home .point__title-top--small {
    font-size: 1.5rem;
  }
}
.home .point__title-body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.125rem;
          margin-block-end: 2.125rem;
  margin-inline: auto;
  border-bottom: 2px dotted var(--black);
  text-align: center;
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 751px) {
  .home .point__title-body {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    -webkit-padding-after: 0.9375rem;
            padding-block-end: 0.9375rem;
    border-width: 0.1875rem;
    font-size: 3rem;
    line-height: 1;
  }
}
.home .point__title-body--large {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .home .point__title-body--large {
    font-size: 3.75rem;
  }
}
.home .point__title-en {
  -webkit-margin-after: 3.5625rem;
          margin-block-end: 3.5625rem;
}
@media (min-width: 751px) {
  .home .point__title-en {
    -webkit-margin-after: 0.375rem;
            margin-block-end: 0.375rem;
  }
}
@media (min-width: 751px) {
  .home .point__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.75rem;
  }
}
.home .point__text {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .point__text {
    width: 30.625rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1rem;
    line-height: 2.1;
  }
}
.home .point__graph {
  width: 35.3125rem;
  margin-inline: auto;
  -webkit-transform: translateX(0.625rem);
          transform: translateX(0.625rem);
}
@media (min-width: 751px) {
  .home .point__graph {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 20.375rem;
    margin-inline: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.home .guarantee__head {
  padding-block: 6.875rem 11.0625rem;
  background: url(../images/top/guarantee_head_bg.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .guarantee__head {
    padding-block: 5rem 11.25rem;
    background: url(../images/top/guarantee_head_bg--pc.webp) no-repeat top center/cover;
  }
}
.home .guarantee__head-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 2.3125rem 1.875rem;
  padding-inline: 1.6875rem 0.625rem;
  background: url(../images/top/guarantee_title_bg.webp) no-repeat top left/cover;
  border-radius: 0.625rem;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .guarantee__head-title {
    padding-block: 2.4375rem;
    padding-inline: 2.25rem;
    background: url(../images/top/guarantee_title_bg--pc.webp) no-repeat top left/cover;
    font-size: 2.125rem;
  }
}
.home .guarantee__head-title--small {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .home .guarantee__head-title--small {
    font-size: 1.875rem;
  }
}
.home .guarantee__head-title--large {
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  font-size: 4.375rem;
  letter-spacing: 0.38em;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .guarantee__head-title--large {
    font-size: 4.1875rem;
    letter-spacing: 0.35em;
  }
}
.home .guarantee__body {
  -webkit-margin-before: -3.75rem;
          margin-block-start: -3.75rem;
  padding-block: 4.25rem 6.5625rem;
  background: var(--white);
  border-radius: 1.25rem 1.25rem 0 0;
}
@media (min-width: 751px) {
  .home .guarantee__body {
    width: 90rem;
    -webkit-margin-before: -6.25rem;
            margin-block-start: -6.25rem;
    margin-inline: auto;
    padding-block: 2.8125rem 6.4375rem;
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.home .guarantee__body-lead {
  -webkit-margin-after: 2.375rem;
          margin-block-end: 2.375rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .guarantee__body-lead {
    width: 30.5rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.375rem;
  }
}
.home .guarantee__body-img {
  -webkit-margin-after: 3.1875rem;
          margin-block-end: 3.1875rem;
}
@media (min-width: 751px) {
  .home .guarantee__body-img {
    width: 27.625rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.home .guarantee__body-wrapper {
  position: relative;
}
@media (min-width: 751px) {
  .home .guarantee__body-wrapper {
    width: 100%;
    -webkit-margin-before: 3.8125rem;
            margin-block-start: 3.8125rem;
  }
}
.home .guarantee__body-wrapper::before, .home .guarantee__body-wrapper::after {
  content: "";
  display: block;
  width: 101%;
  height: 1.375rem;
}
@media (min-width: 751px) {
  .home .guarantee__body-wrapper::before, .home .guarantee__body-wrapper::after {
    height: 0.8125rem;
  }
}
.home .guarantee__body-wrapper::before {
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  background: url(../images/top/guarantee_body_list_deco_top.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .guarantee__body-wrapper::before {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    background: url(../images/top/guarantee_body_list_deco_top--pc.webp) no-repeat center/cover;
  }
}
.home .guarantee__body-wrapper::after {
  -webkit-margin-before: 2.375rem;
          margin-block-start: 2.375rem;
  background: url(../images/top/guarantee_body_list_deco_bottom.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .guarantee__body-wrapper::after {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
    background: url(../images/top/guarantee_body_list_deco_bottom--pc.webp) no-repeat center/cover;
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-margin-after: 2.3125rem;
            margin-block-end: 2.3125rem;
  }
}
.home .guarantee__body-list-item {
  display: grid;
  grid-template-columns: 5.375rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  margin-inline: 1.875rem;
  -webkit-padding-after: 1.375rem;
          padding-block-end: 1.375rem;
  padding-inline: 1.875rem;
  border-bottom: 2px dotted var(--black);
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item {
    grid-template-columns: 3.875rem 1fr;
    gap: 1.25rem;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 0;
    -webkit-padding-start: 4.0625rem;
            padding-inline-start: 4.0625rem;
    position: relative;
    border: none;
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:nth-child(1), .home .guarantee__body-list-item:nth-child(2) {
    -webkit-padding-after: 2.25rem;
            padding-block-end: 2.25rem;
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:nth-child(3), .home .guarantee__body-list-item:nth-child(4) {
    -webkit-padding-before: 2.25rem;
            padding-block-start: 2.25rem;
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:nth-child(1)::before {
    content: "";
    width: 30.625rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0.625rem;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:nth-child(1)::after {
    content: "";
    width: 2px;
    height: 5.625rem;
    position: absolute;
    bottom: 0.625rem;
    right: 0;
    border-right: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:nth-child(2)::before {
    content: "";
    width: 30.625rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0.625rem;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:nth-child(3)::after {
    content: "";
    width: 2px;
    height: 5.625rem;
    position: absolute;
    top: 0.625rem;
    right: 0;
    border-right: 2px dotted var(--black);
  }
}
.home .guarantee__body-list-item:last-child {
  -webkit-margin-after: 2.8125rem;
          margin-block-end: 2.8125rem;
}
@media (min-width: 751px) {
  .home .guarantee__body-list-item:last-child {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.home .guarantee__body-ribon {
  width: 100%;
  padding-block: 0.6875rem 1.6875rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
@media (min-width: 751px) {
  .home .guarantee__body-ribon {
    padding-block: 0.5rem 1.25rem;
    font-size: 1.25rem;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
}
.home .guarantee__body-ribon--large {
  -webkit-margin-before: 0.25rem;
          margin-block-start: 0.25rem;
  font-size: 2.125rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .home .guarantee__body-ribon--large {
    -webkit-margin-before: 0.5rem;
            margin-block-start: 0.5rem;
    font-size: 1.5rem;
  }
}
.home .guarantee__body-text {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .home .guarantee__body-text {
    font-size: 2rem;
  }
}
.home .guarantee__body-text--small {
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .home .guarantee__body-text--small {
    font-size: 1.5rem;
  }
}
.home .guarantee__body-text--large {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .home .guarantee__body-text--large {
    font-size: 3.25rem;
  }
}
.home .guarantee__body-text small {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .home .guarantee__body-text small {
    font-size: 0.9375rem;
  }
}
.home .guarantee__button {
  padding-inline: 8.0625rem 9.5625rem;
}
@media (min-width: 751px) {
  .home .guarantee__button {
    padding-inline: 6.25rem 5.9375rem;
  }
}
.home .consider {
  padding-block: 5.1875rem 13.125rem;
  background: #ecebe6;
}
@media (min-width: 751px) {
  .home .consider {
    padding-block: 5rem 9.875rem;
  }
}
.home .consider__title {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .consider__title {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.5rem;
  }
}
.home .consider__title--large {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .home .consider__title--large {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    font-size: 2.5rem;
  }
}
.home .consider__head-img {
  -webkit-margin-after: 5rem;
          margin-block-end: 5rem;
}
@media (min-width: 751px) {
  .home .consider__head-img {
    max-width: 100vw;
    -webkit-margin-before: -0.625rem;
            margin-block-start: -0.625rem;
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    overflow-x: hidden;
  }
}
@media (min-width: 751px) {
  .home .consider__head-img img {
    min-width: 2358px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 751px) {
  .home .consider__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 3.125rem;
  }
}
@media (max-width: 750px) {
  .home .consider__body-text-wrapper {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
  }
}
.home .consider__body-text {
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .consider__body-text {
    font-size: 1rem;
  }
}
.home .consider__body-text:not(:last-child) {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .home .consider__body-text:not(:last-child) {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}
.home .consider__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
}
@media (min-width: 751px) {
  .home .consider__foot {
    gap: 0.5rem 0.5625rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 19.6875rem;
    -webkit-transform: translateY(0.625rem);
            transform: translateY(0.625rem);
  }
}
.home .consider__foot-img {
  width: 11.625rem;
}
@media (min-width: 751px) {
  .home .consider__foot-img {
    width: 6.125rem;
    height: auto;
  }
}
.home .flow {
  padding-block: 5.625rem 13.5625rem;
}
@media (min-width: 751px) {
  .home .flow {
    padding-block: 8.4375rem 9.875rem;
  }
}
.home .flow__title {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  position: relative;
  text-align: center;
  font-size: 5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .flow__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 1.9375rem;
            margin-block-end: 1.9375rem;
    margin-inline: auto;
    font-size: 3.4375rem;
  }
}
.home .flow__title::before {
  content: "";
  width: 6.5rem;
  height: 10.375rem;
  position: absolute;
  top: 0;
  left: -1.25rem;
  background: url(../images/top/flow_title_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .flow__title::before {
    width: 5.75rem;
    height: 9.1875rem;
    top: 50%;
    left: -10.9375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.home .flow__title--small {
  font-size: 4.375rem;
}
@media (min-width: 751px) {
  .home .flow__title--small {
    font-size: 3.25rem;
  }
}
.home .flow__title-en {
  -webkit-margin-after: 4.75rem;
          margin-block-end: 4.75rem;
}
@media (min-width: 751px) {
  .home .flow__title-en {
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
}
.home .flow__head-text {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .flow__head-text {
    -webkit-margin-after: 3.4375rem;
            margin-block-end: 3.4375rem;
    text-align: center;
    font-size: 1.375rem;
  }
}
.home .flow__list {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .home .flow__list {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.home .flow__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2.5rem;
  background: url(../images/top/flow_item_bottom_border.webp) no-repeat top center/cover;
  margin-block: 1.75rem 1.8125rem;
}
@media (min-width: 751px) {
  .home .flow__item::after {
    height: 1.375rem;
    margin-block: 1.875rem 2.1875rem;
    background: url(../images/top/flow_item_bottom_border--pc.webp) no-repeat top center/cover;
  }
}
@media (max-width: 750px) {
  .home .flow__item:first-child::after {
    margin-block: 2.125rem 1.8125rem;
  }
}
.home .flow__item:last-child::after {
  display: none;
}
.home .flow__item-title {
  grid-area: title;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.25rem;
  font-size: 3.125rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .home .flow__item-title {
    font-size: 1.875rem;
  }
}
.home .flow__item-title-num {
  position: relative;
  color: var(--red);
  font-size: 2.625rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .home .flow__item-title-num {
    font-size: 1.75rem;
  }
}
.home .flow__item-title-num::before {
  content: "";
  display: block;
  width: 4.4375rem;
  height: 4.4375rem;
  position: absolute;
  top: 47%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid var(--black);
  border-radius: var(--circle);
}
@media (min-width: 751px) {
  .home .flow__item-title-num::before {
    width: 2.9375rem;
    height: 2.9375rem;
  }
}
.home .flow__item-wrapper {
  display: grid;
  grid-template-areas: "title title" "img text";
  grid-template-columns: 17rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.875rem 1.25rem;
}
@media (min-width: 751px) {
  .home .flow__item-wrapper {
    grid-template-areas: "img title" "img text";
    grid-template-columns: 18.125rem 1fr;
    grid-template-rows: 2.9375rem auto;
    gap: 1.4375rem 2rem;
  }
}
.home .flow__item:first-child .flow__item-wrapper {
  -webkit-margin-after: 2.375rem;
          margin-block-end: 2.375rem;
}
.home .flow__item-img {
  grid-area: img;
}
.home .flow__item-text {
  grid-area: text;
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .flow__item-text {
    font-size: 1.125rem;
  }
}
.home .flow__item-text a {
  display: inline;
  color: var(--black);
  text-decoration: underline;
}
.home .flow__cta {
  padding-block: 1.875rem 2.375rem;
  background: var(--lightBeige);
  border: 2px solid;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .flow__cta {
    padding-block: 1.6875rem 2.5rem;
    padding-inline: 1.9375rem 2.375rem;
  }
}
.home .flow__cta-title {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  text-align: center;
  font-size: 2.375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .home .flow__cta-title {
    font-size: 1.5rem;
  }
}
.home .flow__cta-title--small {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .home .flow__cta-title--small {
    font-size: 1.25rem;
  }
}
@media (min-width: 751px) {
  .home .flow__cta-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.25rem;
  }
}
@media (min-width: 751px) {
  .home .flow__cta-mail-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.1875rem;
  }
}
.home .flow__cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35rem;
  height: 6.25rem;
  margin-inline: auto;
  position: relative;
  border-radius: var(--around);
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 900;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .home .flow__cta-button {
    width: 13.75rem;
    height: 5.3125rem;
    border-radius: 0.9375rem;
    font-size: 1.125rem;
  }
}
.home .flow__cta-button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 751px) {
  .home .flow__cta-button::after {
    width: 0.375rem;
    height: 0.375rem;
    right: 0.9375rem;
  }
}
.home .flow__cta-tel {
  gap: 2.75rem;
  -webkit-margin-after: 1.0625rem;
          margin-block-end: 1.0625rem;
  padding-inline: 3.75rem;
  background: var(--red);
  -webkit-box-shadow: 0 0.5rem 0 var(--red-shadow);
          box-shadow: 0 0.5rem 0 var(--red-shadow);
}
@media (min-width: 751px) {
  .home .flow__cta-tel {
    gap: 0.5625rem;
    width: auto;
    height: auto;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-inline: 0;
    background: transparent;
    color: var(--red);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 751px) {
  .home .flow__cta-tel .flow__cta-button-text {
    font-size: 3.75rem;
  }
}
@media (min-width: 751px) {
  .home .flow__cta-tel--small {
    font-size: 1.25rem;
  }
}
@media (min-width: 751px) {
  .home .flow__cta-tel::after {
    display: none;
  }
}
.home .flow__cta-tel .flow__cta-button-icon {
  width: 3.0625rem;
}
.home .flow__cta-mail {
  gap: 1.8125rem;
  -webkit-margin-after: 1.8125rem;
          margin-block-end: 1.8125rem;
  padding-inline: 2.0625rem;
  background: var(--blue-1);
  -webkit-box-shadow: 0 0.5rem 0 var(--blue-shadow);
          box-shadow: 0 0.5rem 0 var(--blue-shadow);
}
@media (min-width: 751px) {
  .home .flow__cta-mail {
    gap: 1.5rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-inline: 0.9375rem 3.125rem;
    text-align: center;
    line-height: 1.25;
    -webkit-box-shadow: 0 0.25rem 0 var(--blue-shadow);
            box-shadow: 0 0.25rem 0 var(--blue-shadow);
  }
}
.home .flow__cta-mail .flow__cta-button-icon {
  width: 2.5625rem;
}
@media (min-width: 751px) {
  .home .flow__cta-mail .flow__cta-button-icon {
    width: 1.375rem;
  }
}
.home .flow__cta-line {
  gap: 2.5rem;
  padding-inline: 2rem;
  background: var(--line-green);
  -webkit-box-shadow: 0 0.5rem 0 var(--line-green-shadow);
          box-shadow: 0 0.5rem 0 var(--line-green-shadow);
}
@media (min-width: 751px) {
  .home .flow__cta-line {
    gap: 1.0625rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-inline: 0.9375rem 3.125rem;
    text-align: center;
    line-height: 1.25;
    -webkit-box-shadow: 0 0.25rem 0 var(--line-green-shadow);
            box-shadow: 0 0.25rem 0 var(--line-green-shadow);
  }
}
.home .flow__cta-line .flow__cta-button-icon {
  width: 3.5rem;
}
@media (min-width: 751px) {
  .home .flow__cta-line .flow__cta-button-icon {
    width: 1.8125rem;
  }
}
.home .flow__cta-time {
  -webkit-margin-after: 1.625rem;
          margin-block-end: 1.625rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .home .flow__cta-time {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 0.8125rem;
  }
}
.home .flow__button {
  padding-inline: 4.8125rem 6.5625rem;
}
@media (min-width: 751px) {
  .home .flow__button {
    padding-inline: 3.625rem 4.5rem;
  }
}
.home .voice {
  padding-block: 6.25rem 6.75rem;
}
@media (min-width: 751px) {
  .home .voice {
    padding-block: 3.75rem 7.5rem;
  }
}
.home .voice__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  position: relative;
}
@media (min-width: 751px) {
  .home .voice__title::before {
    content: "";
    width: 2.25rem;
    height: 10rem;
    position: absolute;
    top: -1.5rem;
    left: -11.125rem;
    background: url(../images/top/voice_title_human01.webp) no-repeat top left/cover;
  }
}
.home .voice__title::after {
  content: "";
  width: 4.3125rem;
  height: 13.5625rem;
  position: absolute;
  top: 4.375rem;
  right: -6.25rem;
  background: url(../images/top/voice_title_human02.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .voice__title::after {
    width: 3.25rem;
    height: 10.375rem;
    top: -2.125rem;
    right: -11.1875rem;
  }
}
.home .voice__title-top {
  width: 26rem;
  -webkit-margin-after: 0.75rem;
          margin-block-end: 0.75rem;
  margin-inline: auto;
  padding-block: 1.375rem 1.5rem;
  background: url(../images/top/voice_title_top_bg.webp) no-repeat top center/cover;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .voice__title-top {
    width: 26.875rem;
    -webkit-margin-after: 1.1875rem;
            margin-block-end: 1.1875rem;
    padding-block: 1.0625rem 1.1875rem;
    background: url(../images/top/voice_title_top_bg--pc.webp) no-repeat top center/cover;
    font-size: 1.5rem;
  }
}
.home .voice__title-body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .voice__title-body {
    font-size: 3.4375rem;
  }
}
.home .voice__title-en {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .home .voice__title-en {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
  }
}
.home .voice__head-text {
  -webkit-margin-after: 5rem;
          margin-block-end: 5rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .voice__head-text {
    -webkit-margin-after: 3.4375rem;
            margin-block-end: 3.4375rem;
    font-size: 1.375rem;
  }
}
.home .voice__wrapper {
  -webkit-margin-after: 2.875rem;
          margin-block-end: 2.875rem;
}
@media (min-width: 751px) {
  .home .voice__wrapper {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.home .voice__article {
  padding-block: 2.9375rem;
  padding-inline: 1.875rem;
  position: relative;
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .voice__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 9.375rem;
    padding-block: 2.125rem;
    padding-inline: 0 2.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.home .voice__article:not(:last-child) {
  -webkit-margin-after: 5.875rem;
          margin-block-end: 5.875rem;
}
@media (min-width: 751px) {
  .home .voice__article:not(:last-child) {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.home .voice__article-wrapper {
  position: relative;
}
@media (min-width: 751px) {
  .home .voice__article-wrapper {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 13.4375rem;
    height: 0;
    gap: 0.8125rem;
    top: -3.4375rem;
  }
}
.home .voice__article-title {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .home .voice__article-title {
    text-align: center;
  }
}
@media (min-width: 751px) {
  .home .voice__article-title {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 0.9375rem;
  }
}
.home .voice__article-text {
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .voice__article-text {
    font-size: 1rem;
  }
}
.home .voice__article-img {
  width: 9.375rem;
}
@media (max-width: 750px) {
  .home .voice__article-img {
    position: absolute;
    bottom: 0;
    right: -1.25rem;
  }
}
@media (min-width: 751px) {
  .home .voice__article-img {
    width: 7.625rem;
  }
}
.home .voice__button {
  padding-inline: 9.8125rem 9.875rem;
}
@media (min-width: 751px) {
  .home .voice__button {
    padding-inline: 6.8125rem;
  }
}
.home .example {
  padding-block: 6.375rem 7.0625rem;
  position: relative;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .home .example {
    padding-block: 6.8125rem 6.375rem;
  }
}
.home .example::after {
  content: "";
  width: 12.125rem;
  height: 13.5625rem;
  position: absolute;
  top: -1.375rem;
  right: 0;
  background: url(../images/top/example_title_deco.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .home .example::after {
    width: 11.875rem;
    height: 11.875rem;
    top: -1rem;
    right: 21.875rem;
    background: url(../images/top/example_title_deco--pc.webp) no-repeat top left/cover;
  }
}
.home .example__title {
  -webkit-margin-after: 1.125rem;
          margin-block-end: 1.125rem;
  text-align: center;
  font-size: 5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .example__title {
    -webkit-margin-after: 1.125rem;
            margin-block-end: 1.125rem;
    font-size: 3.4375rem;
  }
}
.home .example__title-en {
  -webkit-margin-after: 3.25rem;
          margin-block-end: 3.25rem;
}
@media (min-width: 751px) {
  .home .example__title-en {
    -webkit-margin-after: 3rem;
            margin-block-end: 3rem;
  }
}
.home .example__head-text {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .example__head-text {
    -webkit-margin-after: 2.75rem;
            margin-block-end: 2.75rem;
    font-size: 1.375rem;
  }
}
.home .example__wrapper {
  -webkit-margin-after: 3.5rem;
          margin-block-end: 3.5rem;
}
@media (min-width: 751px) {
  .home .example__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.25rem;
    -webkit-margin-after: 2.8125rem;
            margin-block-end: 2.8125rem;
  }
}
.home .example__article {
  padding-block: 2.5rem 2.6875rem;
  padding-inline: 1.6875rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .home .example__article {
    padding-block: 1.3125rem 2.3125rem;
    padding-inline: 1.3125rem;
  }
}
@media (max-width: 750px) {
  .home .example__article:not(:last-child) {
    -webkit-margin-after: 2.875rem;
            margin-block-end: 2.875rem;
  }
}
.home .example__article-head {
  display: grid;
  grid-template-columns: 16.25rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 2.8125rem;
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
}
@media (min-width: 751px) {
  .home .example__article-head {
    grid-template-columns: 11.75rem 1fr;
    gap: 1.875rem;
    -webkit-margin-after: 1.375rem;
            margin-block-end: 1.375rem;
  }
}
.home .example__article-head-text {
  padding-block: 1.25rem 2.25rem;
  border-bottom: 2px dotted var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .home .example__article-head-text {
    padding-block: 1.5rem 1.625rem;
    font-size: 1.25rem;
  }
}
.home .example__article-head-text span:not(:last-child) {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}
@media (min-width: 751px) {
  .home .example__article-head-text span:not(:last-child) {
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
  }
}
.home .example__article-body-text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .home .example__article-body-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.home .example__button {
  padding-inline: 10.9375rem 10.875rem;
}
@media (min-width: 751px) {
  .home .example__button {
    padding-inline: 7.5rem;
  }
}
.home .column {
  padding-block: 6.25rem 13.75rem;
}
@media (min-width: 751px) {
  .home .column {
    padding-block: 6.6875rem 10rem;
  }
}
.home .column__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
  margin-inline: auto;
  font-weight: 900;
}
@media (min-width: 751px) {
  .home .column__title {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
  }
}
.home .column__title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 2.9375rem;
}
@media (min-width: 751px) {
  .home .column__title-top {
    gap: 1.625rem;
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
    font-size: 2.25rem;
  }
}
.home .column__title-top::before, .home .column__title-top::after {
  content: "";
  display: block;
  width: 1px;
  height: 3.3125rem;
}
@media (min-width: 751px) {
  .home .column__title-top::before, .home .column__title-top::after {
    height: 2.6875rem;
  }
}
.home .column__title-top::before {
  border-right: 2px dotted var(--black);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.home .column__title-top::after {
  border-left: 2px dotted var(--black);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.home .column__title-body {
  display: block;
  text-align: center;
  font-size: 4.25rem;
}
@media (min-width: 751px) {
  .home .column__title-body {
    font-size: 3.4375rem;
  }
}
.home .column__title-body--small {
  font-size: 2.9375rem;
}
@media (min-width: 751px) {
  .home .column__title-body--small {
    font-size: 2.75rem;
  }
}
.home .column__title-en {
  -webkit-margin-after: 2.75rem;
          margin-block-end: 2.75rem;
}
.home .column__head-text {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .home .column__head-text {
    -webkit-margin-after: 3.9375rem;
            margin-block-end: 3.9375rem;
    font-size: 1.375rem;
  }
}
.home .column__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1875rem 2.5rem;
  -webkit-margin-after: 4.5rem;
          margin-block-end: 4.5rem;
}
@media (min-width: 751px) {
  .home .column__wrapper {
    gap: 0;
    width: 53.75rem;
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
    margin-inline: auto;
  }
}
.home .column__article {
  position: relative;
}
@media (min-width: 751px) {
  .home .column__article:nth-child(1) {
    -webkit-padding-after: 1.75rem;
            padding-block-end: 1.75rem;
    -webkit-padding-end: 3.125rem;
            padding-inline-end: 3.125rem;
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(1)::before {
    content: "";
    width: 26.875rem;
    height: 2px;
    position: absolute;
    left: -0.625rem;
    bottom: 0;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(1)::after {
    content: "";
    width: 2px;
    height: 19.625rem;
    position: absolute;
    right: 0;
    bottom: 0.625rem;
    border-right: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(2) {
    -webkit-padding-after: 1.75rem;
            padding-block-end: 1.75rem;
    -webkit-padding-start: 3.125rem;
            padding-inline-start: 3.125rem;
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(2)::before {
    content: "";
    width: 26.875rem;
    height: 2px;
    position: absolute;
    right: -0.625rem;
    bottom: 0;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(3) {
    -webkit-padding-before: 1.75rem;
            padding-block-start: 1.75rem;
    -webkit-padding-end: 3.125rem;
            padding-inline-end: 3.125rem;
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(3)::after {
    content: "";
    width: 2px;
    height: 19.625rem;
    position: absolute;
    top: 0.625rem;
    right: 0;
    border-right: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .home .column__article:nth-child(4) {
    -webkit-padding-before: 1.75rem;
            padding-block-start: 1.75rem;
    -webkit-padding-start: 3.125rem;
            padding-inline-start: 3.125rem;
  }
}
.home .column__article-img {
  -webkit-margin-after: 1.5625rem;
          margin-block-end: 1.5625rem;
}
@media (min-width: 751px) {
  .home .column__article-img {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.home .column__article-text {
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .home .column__article-text {
    font-size: 1.125rem;
  }
}
.home .column__button {
  padding-inline: 11.8125rem 12.0625rem;
}
@media (min-width: 751px) {
  .home .column__button {
    padding-inline: 9.5625rem 9.8125rem;
  }
}

.page-feature .hero__title {
  padding-block: 1.0625rem 1.625rem;
  padding-inline: 1.6875rem 1.875rem;
  background: url(../images/feature/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-feature .hero__title {
    padding-block: 1.0625rem 1.625rem;
    padding-inline: 2.1875rem 2rem;
    background: url(../images/feature/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-feature .hero__title-head {
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
  -webkit-margin-after: 2.375rem;
          margin-block-end: 2.375rem;
}
@media (min-width: 751px) {
  .page-feature .hero__title-head {
    -webkit-margin-start: 1rem;
            margin-inline-start: 1rem;
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
  }
}
.page-feature .hero__title-foot {
  font-size: 2.75rem;
}
@media (min-width: 751px) {
  .page-feature .hero__title-foot {
    font-size: 2rem;
  }
}
.page-feature .hero__title--small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-feature .hero__title--small {
    font-size: 1.625rem;
  }
}
.page-feature .hero__title--large {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .page-feature .hero__title--large {
    font-size: 3rem;
  }
}
.page-feature .hero__text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-feature .hero__text {
    font-size: 1.125rem;
  }
}
.page-feature .list__container {
  padding-block: 6.25rem;
  position: relative;
}
@media (max-width: 750px) {
  .page-feature .list__container {
    margin-inline: 2.5rem;
  }
}
@media (min-width: 751px) {
  .page-feature .list__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "border-top border-top" "feature01 feature05" "feature02 feature06" "feature03 feature07" "feature04 ." "border-bottom border-bottom";
  }
}
.page-feature .list__wrapper::before, .page-feature .list__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.375rem;
}
@media (min-width: 751px) {
  .page-feature .list__wrapper::before, .page-feature .list__wrapper::after {
    height: 0.8125rem;
  }
}
.page-feature .list__wrapper::before {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  background: url(../images/top/feature_list_border_top.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-feature .list__wrapper::before {
    grid-area: border-top;
    background: url(../images/top/feature_list_border_top--pc.webp) no-repeat top left/cover;
  }
}
.page-feature .list__wrapper::after {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  background: url(../images/top/feature_list_border_bottom.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-feature .list__wrapper::after {
    grid-area: border-bottom;
    background: url(../images/top/feature_list_border_bottom--pc.webp) no-repeat top left/cover;
  }
}
.page-feature .list__item {
  margin-inline: 0.3125rem;
}
@media (min-width: 751px) {
  .page-feature .list__item {
    height: 6.875rem;
    margin-inline: 0;
    padding-block: 1.25rem;
    border-bottom: 2px dotted var(--black);
  }
  .page-feature .list__item:nth-child(1) {
    grid-area: feature01;
    -webkit-padding-before: 0;
            padding-block-start: 0;
    border-right: 2px dotted var(--black);
  }
  .page-feature .list__item:nth-child(2) {
    grid-area: feature02;
    border-right: 2px dotted var(--black);
  }
  .page-feature .list__item:nth-child(3) {
    grid-area: feature03;
    border-right: 2px dotted var(--black);
  }
  .page-feature .list__item:nth-child(4) {
    grid-area: feature04;
    -webkit-padding-after: 0;
            padding-block-end: 0;
    border-right: 2px dotted var(--black);
    border-bottom: none;
  }
  .page-feature .list__item:nth-child(5) {
    grid-area: feature05;
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-start: 2.5rem;
            padding-inline-start: 2.5rem;
  }
  .page-feature .list__item:nth-child(5) .list__item-head::after {
    right: 0;
  }
  .page-feature .list__item:nth-child(6) {
    grid-area: feature06;
    -webkit-padding-start: 2.5rem;
            padding-inline-start: 2.5rem;
  }
  .page-feature .list__item:nth-child(6) .list__item-head::after {
    right: 0;
  }
  .page-feature .list__item:nth-child(7) {
    grid-area: feature07;
    -webkit-padding-start: 2.5rem;
            padding-inline-start: 2.5rem;
  }
  .page-feature .list__item:nth-child(7) .list__item-head::after {
    right: 0;
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .page-feature .list__item:not(:first-child) .list__item-head {
    -webkit-padding-before: 2.5rem;
            padding-block-start: 2.5rem;
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .page-feature .list__item:not(:last-child) .list__item-head {
    -webkit-padding-after: 2.5rem;
            padding-block-end: 2.5rem;
    border-bottom: 2px dotted;
  }
}
@media (max-width: 750px) {
  .page-feature .list__item:nth-child(1) .list__item-head::after {
    bottom: 3.4375rem;
  }
  .page-feature .list__item:nth-child(2) .list__item-head::after {
    bottom: 3.625rem;
  }
  .page-feature .list__item:nth-child(3) .list__item-head::after {
    bottom: 3.6875rem;
  }
  .page-feature .list__item:nth-child(4) .list__item-head::after {
    bottom: 3.5625rem;
  }
  .page-feature .list__item:nth-child(5) .list__item-head::after {
    bottom: 5.5rem;
  }
  .page-feature .list__item:nth-child(6) .list__item-head::after {
    bottom: 5.5rem;
  }
  .page-feature .list__item:nth-child(7) .list__item-head::after {
    bottom: 0.75rem;
  }
}
.page-feature .list__item-head {
  display: grid;
  grid-template-columns: 10.625rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  position: relative;
  color: var(--black);
}
@media (min-width: 751px) {
  .page-feature .list__item-head {
    grid-template-columns: 6.875rem 1fr;
    gap: 0rem 1.875rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
  }
}
.page-feature .list__item-head::after {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  right: 0;
  background: url(../images/common/arrow_to_top_black.webp) no-repeat top left/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 751px) {
  .page-feature .list__item-head::after {
    width: 1.6875rem;
    height: 1.6875rem;
    top: 50%;
    bottom: auto;
    right: 2.5rem;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}
.page-feature .list__item-head-num {
  -webkit-margin-before: -0.625rem;
          margin-block-start: -0.625rem;
  -webkit-margin-after: 0.875rem;
          margin-block-end: 0.875rem;
  color: var(--red);
  font-size: 1.875rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-num {
    -webkit-margin-after: 0.4375rem;
            margin-block-end: 0.4375rem;
    font-size: 1.25rem;
  }
}
.page-feature .list__item-head-title {
  font-size: 2.25rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 3.75rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.5rem;
    line-height: 2.5rem;
    white-space: wrap;
  }
}
.page-feature .list__item-head-title--exSmall {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--exSmall {
    font-size: 1.25rem;
  }
}
.page-feature .list__item-head-title--small {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--small {
    font-size: 1.25rem;
  }
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--small-pc {
    font-size: 1.25rem;
  }
}
.page-feature .list__item-head-title--medium {
  font-size: 2.5rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--medium {
    font-size: 1.5rem;
  }
}
.page-feature .list__item-head-title--minLarge {
  font-size: 3.125rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--minLarge {
    font-size: 1.5rem;
  }
}
.page-feature .list__item-head-title--large {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--large {
    font-size: 2.25rem;
  }
}
.page-feature .list__item-head-title--exLarge {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .page-feature .list__item-head-title--exLarge {
    font-size: 2.25rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature {
    width: 85rem;
    margin-inline: auto;
  }
}
.page-feature .feature--01 {
  padding-block: 6.75rem 0;
}
@media (min-width: 751px) {
  .page-feature .feature--01 {
    padding-block: 5.625rem 0;
  }
}
@media (max-width: 750px) {
  .page-feature .feature--01 .feature__body-mv {
    -webkit-margin-after: 6.25rem;
            margin-block-end: 6.25rem;
  }
}
.page-feature .feature--01 .feature__head-text {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .page-feature .feature--01 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--01 .feature__head-text--small {
  font-size: 2.8125rem;
}
@media (min-width: 751px) {
  .page-feature .feature--01 .feature__head-text--small {
    font-size: 2.75rem;
  }
}
.page-feature .feature--01 .feature__head-text--small-pc {
  font-size: 2rem;
}
.page-feature .feature--01 .feature__head-text--medium {
  font-size: 3rem;
}
@media (min-width: 751px) {
  .page-feature .feature--01 .feature__head-text--medium {
    font-size: 2.75rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature--01 .feature__head-text--medium-pc {
    font-size: 3.125rem;
  }
}
.page-feature .feature--01 .feature__head-text--large {
  font-size: 4.625rem;
}
@media (min-width: 751px) {
  .page-feature .feature--01 .feature__head-text--large {
    font-size: 3.75rem;
  }
}
.page-feature .feature--01 .feature__head-text::before, .page-feature .feature--01 .feature__head-text::after {
  content: "FEATURE 01";
}
.page-feature .feature--02 {
  padding-block: 6.5rem 0;
}
.page-feature .feature--02 .feature__head-text {
  font-size: 3.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature--02 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--02 .feature__head-text--small {
  font-size: 2.8125rem;
}
@media (min-width: 751px) {
  .page-feature .feature--02 .feature__head-text--small {
    font-size: 2rem;
  }
}
.page-feature .feature--02 .feature__head-text::before, .page-feature .feature--02 .feature__head-text::after {
  content: "FEATURE 02";
}
.page-feature .feature--03 {
  padding-block: 7.1875rem 0;
}
.page-feature .feature--03 .feature__head-text {
  font-size: 3.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature--03 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--03 .feature__head-text--small {
  font-size: 2.8125rem;
}
@media (min-width: 751px) {
  .page-feature .feature--03 .feature__head-text--small {
    font-size: 2rem;
  }
}
.page-feature .feature--03 .feature__head-text--large {
  font-size: 4.3125rem;
}
@media (min-width: 751px) {
  .page-feature .feature--03 .feature__head-text--large {
    font-size: 3.75rem;
  }
}
.page-feature .feature--03 .feature__head-text::before, .page-feature .feature--03 .feature__head-text::after {
  content: "FEATURE 03";
}
.page-feature .feature--04 {
  padding-block: 7.5rem 0;
}
.page-feature .feature--04 .feature__head-text {
  -webkit-margin-after: 2.75rem;
          margin-block-end: 2.75rem;
  font-size: 3.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature--04 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--04 .feature__head-text--small {
  font-size: 2.8125rem;
}
@media (min-width: 751px) {
  .page-feature .feature--04 .feature__head-text--small {
    font-size: 2rem;
  }
}
.page-feature .feature--04 .feature__head-text::before, .page-feature .feature--04 .feature__head-text::after {
  content: "FEATURE 04";
}
.page-feature .feature--04 .feature__body {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-feature .feature--05 {
  padding-block: 7.5rem 0;
}
.page-feature .feature--05 .feature__head-text {
  font-size: 3.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature--05 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--05 .feature__head-text--large {
  font-size: 4.0625rem;
}
@media (min-width: 751px) {
  .page-feature .feature--05 .feature__head-text--large {
    font-size: 3.75rem;
  }
}
.page-feature .feature--05 .feature__head-text::before, .page-feature .feature--05 .feature__head-text::after {
  content: "FEATURE 05";
}
.page-feature .feature--05 .feature__body {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-feature .feature--06 {
  padding-block: 7rem 0;
}
.page-feature .feature--06 .feature__head-text {
  font-size: 3.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature--06 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--06 .feature__head-text::before, .page-feature .feature--06 .feature__head-text::after {
  content: "FEATURE 06";
}
.page-feature .feature--06 .feature__body {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-feature .feature--07 {
  padding-block: 6.25rem 13.125rem;
}
.page-feature .feature--07 .feature__body-mv {
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
}
.page-feature .feature--07 .feature__head-text {
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
  font-size: 3.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature--07 .feature__head-text {
    font-size: 2.75rem;
  }
}
.page-feature .feature--07 .feature__head-text::before, .page-feature .feature--07 .feature__head-text::after {
  content: "FEATURE 07";
}
.page-feature .feature--07 .feature__head-text--small {
  font-size: 2.5rem;
}
@media (min-width: 751px) {
  .page-feature .feature--07 .feature__head-text--small {
    font-size: 2rem;
  }
}
.page-feature .feature--07 .feature__head-text--large {
  font-size: 3.5625rem;
}
@media (min-width: 751px) {
  .page-feature .feature--07 .feature__head-text--large {
    font-size: 2.75rem;
  }
}
.page-feature .feature--07 .feature__body {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-feature .feature__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 2.5rem;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
  text-align: center;
  color: var(--red);
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-feature .feature__top {
    gap: 1.5rem;
    -webkit-margin-after: 1.4375rem;
            margin-block-end: 1.4375rem;
    font-size: 1.75rem;
  }
}
.page-feature .feature__top--large {
  font-size: 2.75rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-feature .feature__top--large {
    font-size: 2.375rem;
  }
}
.page-feature .feature__top::before, .page-feature .feature__top::after {
  content: "";
  display: block;
  width: 2px;
  height: 3.3125rem;
}
@media (min-width: 751px) {
  .page-feature .feature__top::before, .page-feature .feature__top::after {
    height: 2.3125rem;
  }
}
.page-feature .feature__top::before {
  border-right: 2px dotted var(--black);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.page-feature .feature__top::after {
  border-left: 2px dotted var(--black);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.page-feature .feature__head {
  position: relative;
  background: var(--blue-1);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .page-feature .feature__head {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-feature .feature__head-text {
  place-content: center;
  height: 13.6875rem;
  position: relative;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 3.75rem;
}
@media (min-width: 751px) {
  .page-feature .feature__head-text {
    height: 6.25rem;
    line-height: 0;
  }
}
.page-feature .feature__head-text::before, .page-feature .feature__head-text::after {
  position: absolute;
  top: 50%;
  color: #2f66b2;
  font-size: 2rem;
  font-family: var(--font-sans-en);
}
@media (min-width: 751px) {
  .page-feature .feature__head-text::before, .page-feature .feature__head-text::after {
    font-size: 1.5rem;
  }
}
.page-feature .feature__head-text::before {
  left: -1.5625rem;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
@media (min-width: 751px) {
  .page-feature .feature__head-text::before {
    left: 5.1875rem;
    -webkit-transform: translateY(-50%) rotate(0);
            transform: translateY(-50%) rotate(0);
  }
}
.page-feature .feature__head-text::after {
  right: -1.5625rem;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media (min-width: 751px) {
  .page-feature .feature__head-text::after {
    right: 5.1875rem;
    -webkit-transform: translateY(-50%) rotate(0);
            transform: translateY(-50%) rotate(0);
  }
}
.page-feature .feature__body {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-feature .feature__body {
    display: grid;
    grid-template-columns: 30.625rem 29.375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
  }
}
@media (max-width: 750px) {
  .page-feature .feature__body-mv {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
  }
}
.page-feature .feature__body-house {
  position: absolute;
  top: 2.5rem;
  left: 1.875rem;
  text-align: center;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-feature .feature__body-house {
    top: auto;
    bottom: -2.5rem;
    left: 12.5rem;
  }
}
.page-feature .feature__body-house-bg {
  -webkit-margin-after: 0.875rem;
          margin-block-end: 0.875rem;
  padding-block: 6.1875rem 0.5rem;
  padding-inline: 2.1875rem;
  background: url(../images/top/hero_slide01_house_bg.webp) no-repeat top center/cover;
}
@media (min-width: 751px) {
  .page-feature .feature__body-house-bg {
    -webkit-margin-after: 0.1875rem;
            margin-block-end: 0.1875rem;
    padding-block: 3.25rem 0.3125rem;
    padding-inline: 1.875rem;
  }
}
.page-feature .feature__body-year {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  -webkit-padding-after: 1.125rem;
          padding-block-end: 1.125rem;
  border-bottom: 2px dotted;
  text-align: center;
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .page-feature .feature__body-year {
    -webkit-margin-after: 0.5625rem;
            margin-block-end: 0.5625rem;
    -webkit-padding-after: 0.5625rem;
            padding-block-end: 0.5625rem;
    font-size: 1.25rem;
  }
}
.page-feature .feature__body-year--large {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .page-feature .feature__body-year--large {
    font-size: 1.75rem;
  }
}
.page-feature .feature__body-achievements {
  text-align: center;
  font-size: 2.125rem;
}
@media (min-width: 751px) {
  .page-feature .feature__body-achievements {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.page-feature .feature__body-achievements--medium {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature__body-achievements--medium {
    font-size: 1.125rem;
  }
}
.page-feature .feature__body-achievements--small-large {
  font-size: 2.125rem;
}
@media (min-width: 751px) {
  .page-feature .feature__body-achievements--small-large {
    font-size: 1.3125rem;
  }
}
.page-feature .feature__body-achievements--large {
  font-size: 4.625rem;
}
@media (min-width: 751px) {
  .page-feature .feature__body-achievements--large {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
  }
}
.page-feature .feature__body-achievements--super {
  font-size: 1.25rem;
  vertical-align: super;
}
@media (min-width: 751px) {
  .page-feature .feature__body-achievements--super {
    font-size: 0.625rem;
  }
}
.page-feature .feature__body-house__attention {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-feature .feature__body-house__attention {
    font-size: 0.625rem;
  }
}
.page-feature .feature__body-text {
  margin-inline: 2.5rem;
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-feature .feature__body-text {
    margin-inline: 0;
    font-size: 1rem;
  }
}
.page-feature .feature__organizations {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
.page-feature .feature__organizations-title {
  padding-block: 1.4375rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-title {
    padding-block: 1.25rem;
    font-size: 1.375rem;
    letter-spacing: 0.1em;
  }
}
.page-feature .feature__organizations-body {
  padding-block: 1.5rem 3.9375rem;
  padding-inline: 1.875rem;
  position: relative;
  border: 2px solid var(--black);
  border-radius: 0 0 0.625rem 0.625rem;
  background: #f8f8f8;
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    padding-block: 1.0625rem 0.75rem;
    padding-inline: 3.375rem;
  }
}
.page-feature .feature__organizations-body::after {
  content: "";
  width: 8rem;
  height: 16.5625rem;
  position: absolute;
  top: 1.5rem;
  right: 1.875rem;
  background: url(../images/feature/feature_organizations_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-body::after {
    width: 5.4375rem;
    height: 11.25rem;
    top: 0;
  }
}
.page-feature .feature__organizations-body-list {
  -webkit-margin-after: 1.6875rem;
          margin-block-end: 1.6875rem;
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-body-list {
    display: grid;
    grid-template-areas: "a d" "b e" "c f";
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 0.3125rem 2.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.125rem;
  }
}
.page-feature .feature__organizations-body-list li:nth-child(1) {
  grid-area: a;
}
.page-feature .feature__organizations-body-list li:nth-child(2) {
  grid-area: b;
}
.page-feature .feature__organizations-body-list li:nth-child(3) {
  grid-area: c;
}
.page-feature .feature__organizations-body-list li:nth-child(4) {
  grid-area: d;
}
.page-feature .feature__organizations-body-list li:nth-child(5) {
  grid-area: e;
}
.page-feature .feature__organizations-body-list li:nth-child(6) {
  grid-area: f;
}
.page-feature .feature__organizations-foot {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3125rem;
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.125rem;
    width: 13rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-foot-img {
    width: 4.25rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-foot-img:nth-child(1) {
    -webkit-margin-start: 0.625rem;
            margin-inline-start: 0.625rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-foot-img:nth-child(2) {
    -webkit-margin-end: 0.625rem;
            margin-inline-end: 0.625rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__organizations-foot-img:nth-child(3), .page-feature .feature__organizations-foot-img:nth-child(4), .page-feature .feature__organizations-foot-img:nth-child(5) {
    -webkit-margin-before: -2.5rem;
            margin-block-start: -2.5rem;
  }
}
.page-feature .feature__foot-title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-feature .feature__foot-title {
    font-size: 1.875rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__foot-wrapper {
    display: grid;
    grid-template-columns: 30.625rem 29.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
}
@media (max-width: 750px) {
  .page-feature .feature__foot-img {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-feature .feature__foot-text {
  position: relative;
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-feature .feature__foot-text {
    font-size: 1rem;
  }
}
.page-feature .feature__foot-text-rat {
  position: relative;
}
.page-feature .feature__foot-text-rat::after {
  content: "";
  width: 8.625rem;
  height: 4.3125rem;
  position: absolute;
  bottom: -5rem;
  right: 0;
  background: url(../images/feature/feature_foot_text_rat.webp) no-repeat top left/cover;
}
.page-feature .feature__qualification {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .page-feature .feature__qualification {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.page-feature .feature__qualification-title {
  padding-block: 1.4375rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-title {
    padding-block: 1.1875rem;
    font-size: 1.375rem;
  }
}
.page-feature .feature__qualification-body {
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  padding-block: 2.5rem 3.5rem;
  padding-inline: 3.75rem;
  position: relative;
  background: #f8f8f8;
  border-radius: 0 0 0.625rem 0.625rem;
  border: 2px solid var(--black);
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
    padding-block: 1.875rem;
    padding-inline: 2.3125rem;
    font-size: 1.375rem;
  }
}
.page-feature .feature__qualification-body::after {
  content: "";
  width: 10.625rem;
  height: 15.625rem;
  position: absolute;
  bottom: 7.75rem;
  right: 2.5rem;
  background: url(../images/feature/feature_qualification_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body::after {
    width: 7.75rem;
    height: 11.375rem;
    bottom: 3.75rem;
    right: 3.75rem;
  }
}
.page-feature .feature__qualification-body-list {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list {
    display: grid;
    grid-template-areas: "a e i" "b f j" "c g ." "d h .";
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0.625rem 1.25rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(1) {
    grid-area: a;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(2) {
    grid-area: b;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(3) {
    grid-area: c;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(4) {
    grid-area: d;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(5) {
    grid-area: e;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(6) {
    grid-area: f;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(7) {
    grid-area: g;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(8) {
    grid-area: h;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(9) {
    grid-area: i;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-body-list li:nth-child(10) {
    grid-area: j;
  }
}
.page-feature .feature__qualification-foot {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-feature .feature__qualification-foot {
    font-size: 1.875rem;
  }
}
.page-feature .feature__attention {
  margin-inline: 2.5rem;
  padding-block: 1.75rem 2.625rem;
  padding-inline: 1.875rem;
  background: #cfcdc5;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-feature .feature__attention {
    width: 62.5rem;
    margin-inline: auto;
    padding-block: 1.25rem;
    padding-inline: 3.5rem;
  }
}
@media (min-width: 751px) {
  .page-feature .feature__attention .l-container {
    width: auto;
  }
}
.page-feature .feature__attention-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.8125rem;
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-feature .feature__attention-title {
    gap: 1.0625rem;
    font-size: 1.75rem;
  }
}
.page-feature .feature__attention-title--large {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .page-feature .feature__attention-title--large {
    font-size: 2.5rem;
  }
}
.page-feature .feature__attention-title::before {
  content: "";
  display: block;
  width: 5.3125rem;
  height: 4.625rem;
  background: url(../images/feature/feature_attention_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-feature .feature__attention-title::before {
    width: 4.0625rem;
    height: 3.5rem;
  }
}
.page-feature .feature__attention-text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-feature .feature__attention-text {
    font-size: 1.125rem;
    line-height: 2.2;
  }
}
.page-feature .feature__margin {
  padding-block: 3.125rem 2.1875rem;
  padding-inline: 1.875rem;
  background: var(--lightBeige);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .page-feature .feature__margin {
    display: grid;
    grid-template-columns: 26.0625rem 20.1875rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 1.5625rem 2rem;
    padding-inline: 3.75rem 5.9375rem;
  }
}
.page-feature .feature__margin-title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
  border-bottom: 2px dotted var(--black);
  text-align: center;
  font-size: 2.9375rem;
  font-weight: 900;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-feature .feature__margin-title {
    -webkit-margin-after: 2.0625rem;
            margin-block-end: 2.0625rem;
    -webkit-padding-after: 0.625rem;
            padding-block-end: 0.625rem;
    text-align: left;
    font-size: 2rem;
  }
}
.page-feature .feature__margin-title--large {
  font-size: 4.25rem;
}
@media (min-width: 751px) {
  .page-feature .feature__margin-title--large {
    font-size: 2.75rem;
  }
}
@media (max-width: 750px) {
  .page-feature .feature__margin-head {
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
  }
}
.page-feature .feature__margin-head-text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-feature .feature__margin-head-text {
    font-size: 1.125rem;
    line-height: 2.2;
  }
}
@media (max-width: 750px) {
  .page-feature .feature__margin-body-img {
    width: 35.3125rem;
    -webkit-margin-start: 1.875rem;
            margin-inline-start: 1.875rem;
  }
}

.page-guarantee .hero__title {
  padding-block: 1.125rem 1.625rem;
  padding-inline: 1.8125rem 3.4375rem;
  background: url(../images/guarantee/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-guarantee .hero__title {
    padding-block: 1.0625rem 1.375rem;
    padding-inline: 1.6875rem 3.9375rem;
    background: url(../images/guarantee/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-guarantee .hero__title-foot {
  -webkit-margin-start: 0.3125rem;
          margin-inline-start: 0.3125rem;
}
@media (min-width: 751px) {
  .page-guarantee .hero__title-foot {
    -webkit-margin-start: 0.875rem;
            margin-inline-start: 0.875rem;
  }
}
.page-guarantee .list__wrapper {
  -webkit-margin-after: 5.625rem;
          margin-block-end: 5.625rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-margin-after: 2.3125rem;
            margin-block-end: 2.3125rem;
  }
}
.page-guarantee .list__wrapper::before, .page-guarantee .list__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.3125rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__wrapper::before, .page-guarantee .list__wrapper::after {
    height: 0.8125rem;
  }
}
.page-guarantee .list__wrapper::before {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  background: url(../images/top/feature_list_border_top.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .list__wrapper::before {
    grid-area: border-top;
    background: url(../images/top/feature_list_border_top--pc.webp) no-repeat top left/cover;
  }
}
.page-guarantee .list__wrapper::after {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  background: url(../images/top/feature_list_border_bottom.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .list__wrapper::after {
    grid-area: border-bottom;
    background: url(../images/top/feature_list_border_bottom--pc.webp) no-repeat top left/cover;
  }
}
@media (min-width: 751px) {
  .page-guarantee .list__item {
    width: 50%;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-guarantee .list__item-head {
  display: grid;
  grid-template-areas: "title title" "ribon text";
  grid-template-columns: 5.375rem 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 3rem;
  padding-inline: 1.875rem;
  position: relative;
  color: var(--black);
}
@media (min-width: 751px) {
  .page-guarantee .list__item-head {
    grid-template-areas: "ribon title" "ribon text";
    grid-template-columns: 3.875rem 1fr;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0 1.25rem;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 0;
    padding-inline: 3.75rem;
    position: relative;
    border: none;
  }
}
.page-guarantee .list__item-head::after {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  right: 0;
  background: url(../images/common/arrow_to_top_black.webp) no-repeat top left/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 751px) {
  .page-guarantee .list__item-head::after {
    width: 1.6875rem;
    height: 1.6875rem;
    right: 2.5rem;
  }
}
.page-guarantee .list__item:not(:last-child) .list__item-head {
  border-bottom: 2px dotted var(--black);
}
@media (min-width: 751px) {
  .page-guarantee .list__item:not(:last-child) .list__item-head {
    border-bottom: none;
  }
}
.page-guarantee .list__item:first-child .list__item-head {
  -webkit-padding-before: 0;
          padding-block-start: 0;
}
.page-guarantee .list__item:nth-child(1)::before {
  content: "";
  width: 30.625rem;
  height: 2px;
  position: absolute;
  bottom: 0;
  right: 0.625rem;
  border-bottom: 2px dotted var(--black);
}
.page-guarantee .list__item:nth-child(1)::after {
  content: "";
  width: 2px;
  height: 5.625rem;
  position: absolute;
  bottom: 0.625rem;
  right: 0;
  border-right: 2px dotted var(--black);
}
.page-guarantee .list__item:nth-child(1) .list__item-head {
  padding-block: 0 1.6875rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(1) .list__item-head {
    padding-block: 0 1.25rem;
  }
}
.page-guarantee .list__item:nth-child(1) .list__item-head::after {
  bottom: 3.75rem;
  right: 0.625rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(1) .list__item-head::after {
    bottom: 2.5rem;
    right: 3rem;
  }
}
.page-guarantee .list__item:nth-child(2)::before {
  content: "";
  width: 30.625rem;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0.625rem;
  border-bottom: 2px dotted var(--black);
}
.page-guarantee .list__item:nth-child(2) .list__item-head {
  padding-block: 3.125rem 1.6875rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(2) .list__item-head {
    padding-block: 0 1.25rem;
  }
}
.page-guarantee .list__item:nth-child(2) .list__item-head::after {
  bottom: 4.0625rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(2) .list__item-head::after {
    bottom: 2.5rem;
  }
}
.page-guarantee .list__item:nth-child(3)::after {
  content: "";
  width: 2px;
  height: 5.625rem;
  position: absolute;
  top: 0.625rem;
  right: 0;
  border-right: 2px dotted var(--black);
}
.page-guarantee .list__item:nth-child(3) .list__item-head {
  padding-block: 3.125rem 1.6875rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(3) .list__item-head {
    padding-block: 1.6875rem 0;
  }
}
.page-guarantee .list__item:nth-child(3) .list__item-head::after {
  bottom: 4.0625rem;
  right: 0.5rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(3) .list__item-head::after {
    bottom: 1.5625rem;
    right: 3rem;
  }
}
.page-guarantee .list__item:nth-child(3) .list__block {
  -webkit-margin-before: -1.3125rem;
          margin-block-start: -1.3125rem;
}
.page-guarantee .list__item:nth-child(4) .list__item-head {
  padding-block: 3.125rem 0;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(4) .list__item-head {
    padding-block: 1.6875rem 0;
  }
}
.page-guarantee .list__item:nth-child(4) .list__item-head::after {
  bottom: 2.1875rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__item:nth-child(4) .list__item-head::after {
    bottom: 1.5625rem;
  }
}
.page-guarantee .list__item:nth-child(4) .list__block {
  -webkit-margin-before: -1.3125rem;
          margin-block-start: -1.3125rem;
}
.page-guarantee .list__title {
  grid-area: title;
  text-align: center;
  color: var(--blue-1);
  font-size: 1.875rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-guarantee .list__title {
    text-align: left;
    font-size: 1.25rem;
  }
}
.page-guarantee .list__ribon {
  grid-area: ribon;
  padding-block: 0.6875rem 1.6875rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
@media (min-width: 751px) {
  .page-guarantee .list__ribon {
    padding-block: 0.5625rem 1.25rem;
    font-size: 1.25rem;
  }
}
.page-guarantee .list__ribon--large {
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
  font-size: 2.125rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-guarantee .list__ribon--large {
    -webkit-margin-before: 0.5rem;
            margin-block-start: 0.5rem;
    font-size: 1.5rem;
  }
}
.page-guarantee .list__block {
  grid-area: text;
}
.page-guarantee .list__text {
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-guarantee .list__text {
    font-size: 2rem;
  }
}
.page-guarantee .list__text--small {
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__text--small {
    font-size: 1.5rem;
  }
}
.page-guarantee .list__text--large {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .page-guarantee .list__text--large {
    font-size: 3.25rem;
  }
}
.page-guarantee .list__text small {
  font-size: 1.625rem;
  letter-spacing: 0;
}
@media (min-width: 751px) {
  .page-guarantee .list__text small {
    font-size: 0.9375rem;
  }
}
.page-guarantee .list__attention {
  padding-block: 1.5625rem 2.8125rem;
  padding-inline: 1.875rem;
  background: #cfcdc5;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-guarantee .list__attention {
    padding-block: 1.3125rem 1.875rem;
    padding-inline: 2.4375rem 2rem;
  }
}
.page-guarantee .list__attention-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.8125rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-guarantee .list__attention-title {
    gap: 1.1875rem;
    -webkit-margin-after: 1.375rem;
            margin-block-end: 1.375rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.page-guarantee .list__attention-title::before {
  content: "";
  display: block;
  width: 5.3125rem;
  height: 4.625rem;
  background: url(../images/feature/feature_attention_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .list__attention-title::before {
    width: 4.0625rem;
    height: 3.5rem;
  }
}
.page-guarantee .list__attention-text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-guarantee .list__attention-text {
    font-size: 1.125rem;
  }
}
.page-guarantee .guarantee {
  -webkit-padding-before: 5.625rem;
          padding-block-start: 5.625rem;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee {
    -webkit-padding-before: 6.25rem;
            padding-block-start: 6.25rem;
  }
}
.page-guarantee .guarantee--01 {
  -webkit-padding-before: 7.5rem;
          padding-block-start: 7.5rem;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee--01 {
    -webkit-padding-before: 5rem;
            padding-block-start: 5rem;
  }
}
.page-guarantee .guarantee--04 {
  -webkit-padding-after: 5.625rem;
          padding-block-end: 5.625rem;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee--04 {
    -webkit-padding-after: 4.375rem;
            padding-block-end: 4.375rem;
  }
}
.page-guarantee .guarantee__head {
  width: 44.375rem;
  margin-inline: auto;
  padding-block: 2.9375rem 2.0625rem;
  padding-inline: 3.25rem;
  position: relative;
  background: var(--blue-1);
  border-radius: 0.5625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head {
    width: 85rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    padding-block: 1.25rem;
    padding-inline: 14.5rem;
  }
}
.page-guarantee .guarantee__head::before {
  content: "";
  width: 4.125rem;
  height: 5.625rem;
  position: absolute;
  top: -1.875rem;
  left: 1.125rem;
  background: url(../images/guarantee/guarantee_batch.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head::before {
    width: 2.8125rem;
    height: 3.8125rem;
    top: -1.25rem;
    left: 9.875rem;
  }
}
.page-guarantee .guarantee__head::after {
  content: "";
  width: 2.8125rem;
  height: 2.0625rem;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  background: url(../images/guarantee/guarantee_fukidashi.webp) no-repeat top left/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head::after {
    width: 2.1875rem;
    height: 1.625rem;
    bottom: -1rem;
  }
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 1.25rem;
  }
}
.page-guarantee .guarantee__head-title {
  position: relative;
  text-align: center;
  color: var(--white);
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-guarantee .guarantee__head-title-num {
  width: 6.625rem;
}
@media (max-width: 750px) {
  .page-guarantee .guarantee__head-title-num {
    position: absolute;
    top: -4.375rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title-num {
    display: block;
    width: 5.5rem;
    -webkit-margin-end: 3.125rem;
            margin-inline-end: 3.125rem;
    -webkit-padding-end: 3.125rem;
            padding-inline-end: 3.125rem;
    position: relative;
  }
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title-num::after {
    content: "";
    width: 2px;
    height: 3.625rem;
    position: absolute;
    top: 50%;
    right: 0;
    border-right: 2px dotted var(--white);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.page-guarantee .guarantee__head-title-main {
  display: block;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title-main {
    font-size: 2.5rem;
  }
}
.page-guarantee .guarantee__head-title-sub {
  display: block;
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
  -webkit-padding-before: 1.5625rem;
          padding-block-start: 1.5625rem;
  border-top: 2px dotted var(--white);
  font-size: 2.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title-sub {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-padding-before: 0;
            padding-block-start: 0;
    border: none;
    font-size: 1.25rem;
  }
}
.page-guarantee .guarantee__head-title--large {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title--large {
    font-size: 3.625rem;
  }
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__head-title--small-pc {
    font-size: 2.25rem;
  }
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__wrapper {
    display: grid;
    grid-template-columns: 28.125rem 31.125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 3.125rem;
  }
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__text-wrapper {
    -webkit-padding-before: 0.9375rem;
            padding-block-start: 0.9375rem;
  }
}
.page-guarantee .guarantee__img {
  margin-block: -4.375rem 3.125rem;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__img {
    margin-block: 0;
  }
}
.page-guarantee .guarantee__text {
  margin-inline: 2.5rem;
  font-size: 1.875rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__text {
    margin-inline: 0;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
.page-guarantee .guarantee__text--small {
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  margin-inline: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-guarantee .guarantee__text--small {
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
    margin-inline: 0;
    font-size: 0.8125rem;
  }
}
.page-guarantee .comparison {
  -webkit-padding-after: 4.375rem;
          padding-block-end: 4.375rem;
}
@media (min-width: 751px) {
  .page-guarantee .comparison {
    -webkit-padding-after: 2.5rem;
            padding-block-end: 2.5rem;
  }
}
.page-guarantee .comparison__title {
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__title {
    -webkit-margin-after: 2.0625rem;
            margin-block-end: 2.0625rem;
    font-size: 2rem;
  }
}
.page-guarantee .comparison__table {
  position: relative;
}
.page-guarantee .comparison__table::before {
  content: "";
  width: 1.5625rem;
  height: 2rem;
  position: absolute;
  top: -1.875rem;
  left: 5rem;
  background: url(../images/guarantee/comparison_table_deco.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table::before {
    width: 1.5625rem;
    height: 2rem;
    top: -1.875rem;
    left: 13.75rem;
  }
}
.page-guarantee .comparison__table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.page-guarantee .comparison__table-head-item {
  place-content: center;
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-head-item {
    font-size: 1.25rem;
  }
}
.page-guarantee .comparison__table-head-item-space {
  width: 7.0625rem;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-head-item-space {
    width: 15.625rem;
  }
}
.page-guarantee .comparison__table-head-item:nth-of-type(1) {
  width: 11.5625rem;
  padding-block: 0.8125rem 1.25rem;
  padding-inline: 0.75rem;
  border: 0.5rem solid var(--red);
  border-bottom: 1px dotted var(--black);
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-head-item:nth-of-type(1) {
    width: 15.625rem;
    padding-block: 0.9375rem;
    padding-inline: 5.25rem;
    border: 0.375rem solid var(--red);
    border-bottom: 1px dotted var(--black);
  }
}
.page-guarantee .comparison__table-head-item:nth-of-type(2), .page-guarantee .comparison__table-head-item:nth-of-type(3) {
  width: 11.5625rem;
  height: 7.5rem;
  background: var(--darkGray);
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  text-align: center;
  color: var(--white);
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-head-item:nth-of-type(2), .page-guarantee .comparison__table-head-item:nth-of-type(3) {
    width: 15.625rem;
    height: 3.75rem;
  }
}
.page-guarantee .comparison__table-head-item:nth-of-type(2) {
  border-radius: 0 0.625rem 0 0;
}
.page-guarantee .comparison__table-head-item:nth-of-type(3) {
  border-radius: 0.625rem 0.625rem 0 0;
}
.page-guarantee .comparison__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.page-guarantee .comparison__table-body-item {
  width: 11.5625rem;
  height: 7.5rem;
  place-content: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item {
    width: 15.625rem;
    height: 3.125rem;
  }
}
.page-guarantee .comparison__table-body-item--exSmall {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item--exSmall {
    font-size: 1rem;
  }
}
.page-guarantee .comparison__table-body-item--small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item--small {
    font-size: 1rem;
  }
}
.page-guarantee .comparison__table-body-item--medium {
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item--medium {
    font-size: 1.25rem;
  }
}
.page-guarantee .comparison__table-body-item--large {
  font-size: 2.8125rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item--large {
    font-size: 1.625rem;
  }
}
.page-guarantee .comparison__table-body-item:nth-of-type(1) {
  width: 7.0625rem;
  place-content: center;
  background: var(--black);
  border-bottom: 1px dotted var(--white);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item:nth-of-type(1) {
    width: 15.625rem;
    font-size: 1.125rem;
  }
}
.page-guarantee .comparison__table-body-item:nth-of-type(2) {
  border-right: 0.5rem solid var(--red);
  border-left: 0.5rem solid var(--red);
  border-bottom: 1px dotted var(--black);
  color: var(--red);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item:nth-of-type(2) {
    border-right: 0.375rem solid var(--red);
    border-left: 0.375rem solid var(--red);
    font-size: 1.25rem;
  }
}
.page-guarantee .comparison__table-body-item:nth-of-type(3), .page-guarantee .comparison__table-body-item:nth-of-type(4) {
  border-right: 1px solid var(--black);
  border-bottom: 1px dotted var(--black);
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body-item:nth-of-type(3), .page-guarantee .comparison__table-body-item:nth-of-type(4) {
    font-size: 1.125rem;
  }
}
.page-guarantee .comparison__table-body:nth-of-type(2) .comparison__table-body-item:first-child {
  border-radius: 0.625rem 0 0 0;
}
.page-guarantee .comparison__table-body:last-of-type .comparison__table-body-item:first-child {
  border-radius: 0 0 0 0.625rem;
}
.page-guarantee .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(2) {
  height: 8.125rem;
  border-bottom: 0.5rem solid var(--red);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-guarantee .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(2) {
    height: 3.75rem;
    border-width: 0.375rem;
  }
}
.page-guarantee .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(3), .page-guarantee .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(4) {
  border-bottom: 1px solid var(--black);
}
.page-guarantee .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(4) {
  border-radius: 0 0 0.625rem 0;
}
.page-guarantee .attention {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-guarantee .attention {
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
  }
}
.page-guarantee .attention::before {
  content: "";
  width: 8rem;
  height: 16.5625rem;
  position: absolute;
  top: -1.25rem;
  right: 2.5rem;
  background: url(../images/guarantee/attention_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .attention::before {
    width: 4.5rem;
    height: 9.4375rem;
    top: 1.25rem;
    right: 22.5rem;
  }
}
.page-guarantee .attention__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0.8125rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-guarantee .attention__title {
    gap: 1.1875rem;
    -webkit-margin-after: 1.375rem;
            margin-block-end: 1.375rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.page-guarantee .attention__title::before {
  content: "";
  display: block;
  width: 5.3125rem;
  height: 4.625rem;
  background: url(../images/feature/feature_attention_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-guarantee .attention__title::before {
    width: 2.875rem;
    height: 2.5625rem;
  }
}
.page-guarantee .attention__text {
  margin-inline: 1.25rem 1.875rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 751px) {
  .page-guarantee .attention__text {
    width: 32.5rem;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 2.2;
  }
}
.page-guarantee .example {
  -webkit-margin-after: 13.125rem;
          margin-block-end: 13.125rem;
}
@media (min-width: 751px) {
  .page-guarantee .example {
    -webkit-margin-after: 9.875rem;
            margin-block-end: 9.875rem;
  }
}
.page-guarantee .example__title {
  padding-block: 1.25rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-guarantee .example__title {
    padding-block: 1.25rem;
    font-size: 1.375rem;
  }
}
.page-guarantee .example__list {
  padding-block: 2.8125rem 2.5rem;
  padding-inline: 1.875rem 2rem;
  position: relative;
  background: var(--lightBeige);
  border: 2px solid var(--black);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-guarantee .example__list {
    padding-block: 2.0625rem 2.3125rem;
    padding-inline: 8.25rem 12.1875rem;
    font-size: 1.375rem;
  }
}
.page-guarantee .example__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 751px) {
  .page-guarantee .example__list-item {
    gap: 1rem;
  }
}
.page-guarantee .example__list-item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 2.25rem;
  height: 1.8125rem;
  background: url(../images/guarantee/example_check_icon.webp) no-repeat top left/cover;
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
}
@media (min-width: 751px) {
  .page-guarantee .example__list-item::before {
    width: 1.25rem;
    height: 1rem;
    -webkit-transform: translateY(0.375rem);
            transform: translateY(0.375rem);
  }
}
.page-guarantee .example__list-item:not(:nth-child(3)) {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .page-guarantee .example__list-item:not(:nth-child(3)) {
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
  }
}
.page-guarantee .example__list-item:last-child {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  position: absolute;
  bottom: 2.1875rem;
  right: 2.0625rem;
}
@media (min-width: 751px) {
  .page-guarantee .example__list-item:last-child {
    bottom: 2.625rem;
    right: 12.1875rem;
  }
}
.page-guarantee .example__list-item:last-child::before {
  display: none;
}
.page-guarantee .example__list-item p {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-guarantee .example__list-item p {
    font-size: 1.125rem;
  }
}
.page-guarantee .example__list-item p small {
  text-transform: lowercase;
}
@media (min-width: 751px) {
  .page-guarantee .example__list-item p small {
    font-size: 1rem;
  }
}

.page-flow .hero {
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
  background: var(--white);
}
.page-flow .hero__title {
  padding-block: 1.25rem 1.5625rem;
  padding-inline: 2rem 3.625rem;
  background: url(../images/flow/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-flow .hero__title {
    padding-block: 0.875rem 1.5rem;
    padding-inline: 3rem 3.375rem;
    background: url(../images/flow/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-flow .hero__title-head {
  -webkit-margin-start: 1.875rem;
          margin-inline-start: 1.875rem;
}
@media (min-width: 751px) {
  .page-flow .hero__title-head {
    -webkit-margin-start: 0.625rem;
            margin-inline-start: 0.625rem;
  }
}
.page-flow .list {
  -webkit-padding-after: 7.375rem;
          padding-block-end: 7.375rem;
}
@media (min-width: 751px) {
  .page-flow .list {
    -webkit-padding-after: 6.875rem;
            padding-block-end: 6.875rem;
  }
}
@media (min-width: 751px) {
  .page-flow .list__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.page-flow .list__wrapper::before, .page-flow .list__wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.375rem;
}
@media (min-width: 751px) {
  .page-flow .list__wrapper::before, .page-flow .list__wrapper::after {
    height: 0.8125rem;
  }
}
.page-flow .list__wrapper::before {
  -webkit-margin-after: 3.3125rem;
          margin-block-end: 3.3125rem;
  background: url(../images/top/feature_list_border_top.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-flow .list__wrapper::before {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    background: url(../images/top/feature_list_border_top--pc.webp) no-repeat top left/cover;
  }
}
.page-flow .list__wrapper::after {
  -webkit-margin-before: 2.625rem;
          margin-block-start: 2.625rem;
  background: url(../images/top/feature_list_border_bottom.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-flow .list__wrapper::after {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    background: url(../images/top/feature_list_border_bottom--pc.webp) no-repeat top left/cover;
  }
}
.page-flow .list__item {
  margin-inline: 1.875rem;
}
@media (min-width: 751px) {
  .page-flow .list__item {
    width: 50%;
    margin-inline: 0;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-flow .list__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 2rem;
  padding-block: 3.25rem 2.5rem;
  position: relative;
  color: var(--black);
}
@media (min-width: 751px) {
  .page-flow .list__item-head {
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1.25rem;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 0;
    padding-inline: 3.125rem;
    position: relative;
    border: none;
  }
}
.page-flow .list__item-head::after {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/common/arrow_to_top_black.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 751px) {
  .page-flow .list__item-head::after {
    width: 1.6875rem;
    height: 1.6875rem;
    top: auto;
    right: 2.5rem;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.page-flow .list__item:not(:last-child) .list__item-head {
  border-bottom: 2px dotted var(--black);
}
@media (min-width: 751px) {
  .page-flow .list__item:not(:last-child) .list__item-head {
    border-bottom: none;
  }
}
.page-flow .list__item:first-child .list__item-head {
  -webkit-padding-before: 0;
          padding-block-start: 0;
}
.page-flow .list__item:last-child .list__item-head {
  -webkit-padding-after: 0;
          padding-block-end: 0;
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(1)::before {
    content: "";
    width: 30.625rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    right: 0.625rem;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(1)::after {
    content: "";
    width: 2px;
    height: 3.875rem;
    position: absolute;
    bottom: 0.625rem;
    right: 0;
    border-right: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(1) .list__item-head {
    -webkit-padding-after: 2rem;
            padding-block-end: 2rem;
  }
}
@media (max-width: 750px) {
  .page-flow .list__item:nth-child(1) .list__item-head::after {
    top: 1.5625rem;
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(2)::before {
    content: "";
    width: 30.625rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0.625rem;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(2) .list__item-head {
    -webkit-padding-after: 2rem;
            padding-block-end: 2rem;
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(3)::after {
    content: "";
    width: 2px;
    height: 3.875rem;
    position: absolute;
    top: 0.625rem;
    right: 0;
    border-right: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(3) .list__item-head {
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
  }
}
@media (min-width: 751px) {
  .page-flow .list__item:nth-child(4) .list__item-head {
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
  }
}
@media (max-width: 750px) {
  .page-flow .list__item:nth-child(4) .list__item-head::after {
    top: 4.0625rem;
  }
}
.page-flow .list__title {
  font-size: 3rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-flow .list__title {
    font-size: 1.875rem;
  }
}
.page-flow .list__text {
  font-size: 2.375rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-flow .list__text {
    font-size: 1.625rem;
  }
}
.page-flow .list__text--small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-flow .list__text--small {
    font-size: 1rem;
  }
}
.page-flow .list__text--medium {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .page-flow .list__text--medium {
    font-size: 1.5rem;
  }
}
.page-flow .flow {
  background: var(--lightBeige);
}
.page-flow .flow__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  position: relative;
  background: var(--white);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  font-size: 3.125rem;
  font-weight: 900;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-flow .flow__title {
    gap: 2.3125rem;
    width: 90rem;
    margin-inline: auto;
    font-size: 1.625rem;
    letter-spacing: 0.1em;
  }
}
.page-flow .flow__title--small {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .page-flow .flow__title--small {
    font-size: 1.25rem;
  }
}
@media (min-width: 751px) {
  .page-flow .flow__title--medium-pc {
    font-size: 1.375rem;
  }
}
.page-flow .flow__title-wrapper {
  position: relative;
}
@media (min-width: 751px) {
  .page-flow .flow__title-wrapper::before {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(var(--white)), color-stop(50%, var(--white)), color-stop(50%, var(--black)), to(var(--black)));
    background: linear-gradient(to left, var(--white) 0%, var(--white) 50%, var(--black) 50%, var(--black) 100%);
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-flow .flow__title-num {
  padding-block: 2.75rem;
  padding-inline: 2.5rem 2.8125rem;
  background: var(--black);
  color: var(--white);
  font-size: 3.75rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
@media (min-width: 751px) {
  .page-flow .flow__title-num {
    width: 23.125rem;
    padding-block: 1.25rem;
    padding-inline: 0 3.125rem;
    text-align: right;
    font-size: 1.875rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-flow .flow__container {
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  padding-inline: 1.75rem 2.625rem;
}
@media (min-width: 751px) {
  .page-flow .flow__container {
    width: 62.5rem;
    margin-inline: auto;
    -webkit-padding-before: 4.5625rem;
            padding-block-start: 4.5625rem;
    padding-inline: 0;
  }
}
.page-flow .flow__item {
  -webkit-padding-after: 6.25rem;
          padding-block-end: 6.25rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-flow .flow__item {
    width: 62.5rem;
    margin-inline: auto;
    -webkit-padding-after: 3.4375rem;
            padding-block-end: 3.4375rem;
  }
}
@media (min-width: 751px) {
  .page-flow .flow__item:last-child {
    -webkit-padding-after: 5.125rem;
            padding-block-end: 5.125rem;
  }
}
.page-flow .flow__item::after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 2.375rem;
  border-left: 2px dotted var(--black);
}
@media (min-width: 751px) {
  .page-flow .flow__item::after {
    left: 1.5625rem;
  }
}
.page-flow .flow__item:first-child::after {
  height: calc(100% + 5rem);
  top: -5rem;
}
.page-flow .flow__item-container {
  width: 35.625rem;
  margin-inline: auto 0;
  position: relative;
}
@media (min-width: 751px) {
  .page-flow .flow__item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    width: 57.625rem;
  }
}
.page-flow .flow__item-title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  position: relative;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-flow .flow__item-title {
    width: 100%;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
    font-size: 1.5rem;
  }
}
.page-flow .flow__item-title-num {
  place-content: center;
  display: block;
  width: 5.4375rem;
  height: 5.4375rem;
  position: absolute;
  top: -1.875rem;
  left: -6.875rem;
  text-align: center;
  color: var(--red);
  font-size: 3.875rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-flow .flow__item-title-num {
    width: 3.125rem;
    height: 3.125rem;
    top: -0.9375rem;
    left: -4.6875rem;
    font-size: 1.875rem;
  }
}
.page-flow .flow__item-title-num::before {
  content: "";
  display: block;
  width: 5.4375rem;
  height: 5.4375rem;
  position: absolute;
  top: 48%;
  left: 47%;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--circle);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 751px) {
  .page-flow .flow__item-title-num::before {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media (max-width: 750px) {
  .page-flow .flow__item-img {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
@media (min-width: 751px) {
  .page-flow .flow__item-img {
    width: 20.625rem;
  }
}
.page-flow .flow__item-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-flow .flow__item-text {
    width: 35.125rem;
    font-size: 1rem;
    line-height: 1.7;
  }
}
.page-flow .flow__item-text a {
  display: inline;
  color: var(--blue-1);
  text-decoration: underline;
}
.page-flow .flow__item-text--spacer {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .page-flow .flow__item-text--spacer--pc {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-flow .flow__item-wrapper {
  width: 37.9375rem;
  -webkit-margin-before: 2.8125rem;
          margin-block-start: 2.8125rem;
  margin-inline: auto 0;
}
@media (min-width: 751px) {
  .page-flow .flow__item-wrapper {
    width: 57.6875rem;
    -webkit-margin-before: 1.375rem;
            margin-block-start: 1.375rem;
  }
}
.page-flow .flow__item-lead {
  -webkit-margin-after: 1.1875rem;
          margin-block-end: 1.1875rem;
  padding-block: 1.1875rem 1.875rem;
  background: url(../images/flow/flow_item_lead_bg.webp) no-repeat top left/cover;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-flow .flow__item-lead {
    width: 22.5rem;
    -webkit-margin-after: 1.3125rem;
            margin-block-end: 1.3125rem;
    padding-block: 0.75rem 0.9375rem;
    background: url(../images/flow/flow_item_lead_bg--pc.webp) no-repeat top left/cover;
    font-size: 1.5rem;
  }
}
.page-flow .flow__item-list-block {
  display: grid;
  grid-template-columns: 10.625rem 1fr;
  position: relative;
  background: var(--white);
}
@media (min-width: 751px) {
  .page-flow .flow__item-list-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-flow .flow__item-list-block:not(:last-child) {
  -webkit-margin-after: 2.75rem;
          margin-block-end: 2.75rem;
}
@media (min-width: 751px) {
  .page-flow .flow__item-list-block:not(:last-child) {
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
  }
}
.page-flow .flow__item-list-block:not(:last-child)::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .page-flow .flow__item-list-block:not(:last-child)::after {
    width: 0.75rem;
    height: 0.75rem;
    bottom: -0.9375rem;
  }
}
.page-flow .flow__item-list-img img {
  vertical-align: bottom;
}
.page-flow .flow__item-list-text {
  padding-block: 2.0625rem;
  padding-inline: 1rem 1.6875rem;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-flow .flow__item-list-text {
    padding-block: 0;
    padding-inline: 1.8125rem 2.6875rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
.page-flow .flow--01 .flow__item:first-child::after {
  height: 100%;
  top: 0;
}
.page-flow .flow--04 {
  -webkit-padding-after: 14.5625rem;
          padding-block-end: 14.5625rem;
}
@media (min-width: 751px) {
  .page-flow .flow--04 {
    -webkit-padding-after: 9.0625rem;
            padding-block-end: 9.0625rem;
  }
}
.page-flow .flow--04 .flow__item:last-child {
  -webkit-padding-after: 0;
          padding-block-end: 0;
}
.page-flow .flow--04 .flow__item:last-child::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  bottom: -1.25rem;
  left: 1.875rem;
  background: var(--black);
  border-radius: var(--circle);
}
@media (min-width: 751px) {
  .page-flow .flow--04 .flow__item:last-child::before {
    width: 0.9375rem;
    height: 0.9375rem;
    bottom: -0.9375rem;
    left: 1.1875rem;
  }
}

.page-price .hero__title {
  padding-block: 1.125rem 1.625rem;
  padding-inline: 2rem 3.4375rem;
  background: url(../images/price/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-price .hero__title {
    padding-block: 1.125rem 1.375rem;
    padding-inline: 2.625rem 3.9375rem;
    background: url(../images/price/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-price .hero__title-head {
  -webkit-margin-start: 1.625rem;
          margin-inline-start: 1.625rem;
}
@media (min-width: 751px) {
  .page-price .hero__title-head {
    -webkit-margin-start: 0.8125rem;
            margin-inline-start: 0.8125rem;
  }
}
.page-price .hero__title-foot {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .page-price .hero__title-foot {
    font-size: 3rem;
  }
}
.page-price .hero__text {
  -webkit-margin-after: 2.875rem;
          margin-block-end: 2.875rem;
}
@media (min-width: 751px) {
  .page-price .hero__text {
    -webkit-margin-after: 2.875rem;
            margin-block-end: 2.875rem;
  }
}
.page-price .hero__price {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .page-price .hero__price {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.page-price .hero__price-title {
  padding-block: 2.375rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 3.125rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-price .hero__price-title {
    padding-block: 1rem;
    font-size: 1.75rem;
  }
}
.page-price .hero__price-title--small {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .page-price .hero__price-title--small {
    font-size: 0.875rem;
  }
}
.page-price .hero__price-basic {
  padding-block: 3.5625rem 2.25rem;
  border: 2px solid var(--black);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-price .hero__price-basic {
    padding-block: 1.3125rem 1.875rem;
  }
}
.page-price .hero__price-basic-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 1.6875rem;
          margin-block-end: 1.6875rem;
  margin-inline: auto;
  text-align: right;
  font-size: 2.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .hero__price-basic-title {
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
    font-size: 1.375rem;
    letter-spacing: 0.1em;
  }
}
.page-price .hero__price-basic-title--small {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-price .hero__price-basic-title--small {
    font-size: 0.8125rem;
  }
}
.page-price .hero__price-basic-title--large {
  color: var(--red);
  font-size: 7.5rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-price .hero__price-basic-title--large {
    font-size: 4.75rem;
    letter-spacing: 0.05em;
  }
}
.page-price .hero__price-basic-text {
  position: relative;
  text-align: center;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-price .hero__price-basic-text {
    text-align: center;
    font-size: 0.9375rem;
  }
}
.page-price .service {
  padding-block: 5rem 5.3125rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-price .service {
    padding-block: 4.75rem 5.4375rem;
  }
}
.page-price .service__title {
  -webkit-margin-after: 1.625rem;
          margin-block-end: 1.625rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-price .service__title {
    -webkit-margin-after: 2.6875rem;
            margin-block-end: 2.6875rem;
    font-size: 1.375rem;
  }
}
.page-price .service__lead {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  padding-block: 1.375rem 1.875rem;
  background: url(../images/price/service_lead_bg.webp) no-repeat top left/cover;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-price .service__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 2.1875rem;
            margin-block-end: 2.1875rem;
    margin-inline: auto;
    padding-block: 0.8125rem 0.875rem;
    padding-inline: 2.0625rem 1.875rem;
    background: url(../images/price/service_lead_bg--pc.webp) no-repeat top left/cover;
    font-size: 1.5rem;
  }
}
.page-price .service__lead--large {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .service__lead--large {
    font-size: 1.75rem;
  }
}
.page-price .service__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3125rem;
}
@media (min-width: 751px) {
  .page-price .service__wrapper {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
  }
}
.page-price .service__item {
  place-content: end;
  height: 9.375rem;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
  background: var(--white);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .service__item {
    height: 6.875rem;
    -webkit-padding-after: 1.1875rem;
            padding-block-end: 1.1875rem;
  }
}
.page-price .service__item-icon {
  margin-inline: auto;
}
.page-price .service__item-text {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .service__item-text {
    font-size: 1.125rem;
  }
}
.page-price .service__item:nth-child(1) .service__item-icon {
  width: 4.3125rem;
  -webkit-margin-after: 1.125rem;
          margin-block-end: 1.125rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(1) .service__item-icon {
    width: 2.75rem;
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
  }
}
.page-price .service__item:nth-child(2) .service__item-icon {
  width: 4.5625rem;
  -webkit-margin-after: 1.5625rem;
          margin-block-end: 1.5625rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(2) .service__item-icon {
    width: 3rem;
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
  }
}
.page-price .service__item:nth-child(3) .service__item-icon {
  width: 5.9375rem;
  -webkit-margin-after: 1.4375rem;
          margin-block-end: 1.4375rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(3) .service__item-icon {
    width: 3.75rem;
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
  }
}
.page-price .service__item:nth-child(4) .service__item-icon {
  width: 3.75rem;
  -webkit-margin-after: 1.125rem;
          margin-block-end: 1.125rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(4) .service__item-icon {
    width: 2.25rem;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}
.page-price .service__item:nth-child(5) .service__item-icon {
  width: 5.3125rem;
  -webkit-margin-after: 0.8125rem;
          margin-block-end: 0.8125rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(5) .service__item-icon {
    width: 3.3125rem;
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
  }
}
.page-price .service__item:nth-child(6) .service__item-icon {
  width: 5.0625rem;
  -webkit-margin-after: 0.4375rem;
          margin-block-end: 0.4375rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(6) .service__item-icon {
    width: 3.0625rem;
    -webkit-margin-after: 0.75rem;
            margin-block-end: 0.75rem;
  }
}
.page-price .service__item:nth-child(7) .service__item-icon {
  width: 3.0625rem;
  -webkit-margin-after: 1.3125rem;
          margin-block-end: 1.3125rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(7) .service__item-icon {
    width: 2.1875rem;
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
  }
}
.page-price .service__item:nth-child(8) .service__item-icon {
  width: 3.125rem;
  -webkit-margin-after: 1.125rem;
          margin-block-end: 1.125rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(8) .service__item-icon {
    width: 2.25rem;
    -webkit-margin-after: 0.875rem;
            margin-block-end: 0.875rem;
  }
}
.page-price .service__item:nth-child(9) {
  -webkit-padding-after: 1rem;
          padding-block-end: 1rem;
}
.page-price .service__item:nth-child(9) .service__item-icon {
  width: 5.625rem;
  -webkit-margin-after: 0.4375rem;
          margin-block-end: 0.4375rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(9) .service__item-icon {
    width: 3.875rem;
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
  }
}
.page-price .service__item:nth-child(10) .service__item-icon {
  width: 3.125rem;
  -webkit-margin-after: 1.125rem;
          margin-block-end: 1.125rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(10) .service__item-icon {
    width: 2.1875rem;
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
  }
}
.page-price .service__item:nth-child(11) .service__item-icon {
  width: 1.875rem;
  -webkit-margin-after: 1rem;
          margin-block-end: 1rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(11) .service__item-icon {
    width: 1.375rem;
    -webkit-margin-after: 0.75rem;
            margin-block-end: 0.75rem;
  }
}
.page-price .service__item:nth-child(12) .service__item-icon {
  width: 3.6875rem;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
@media (min-width: 751px) {
  .page-price .service__item:nth-child(12) .service__item-icon {
    width: 2.75rem;
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
  }
}
.page-price .price-table {
  padding-block: 4.625rem 9.5625rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-price .price-table {
    padding-block: 3.3125rem 6.4375rem;
  }
}
.page-price .price-table::before {
  content: "";
  position: absolute;
  width: 3.8125rem;
  height: 4.5625rem;
  top: -1.875rem;
  left: 50%;
  background: url(../images/top/price_basic_plus.webp) no-repeat top left/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .page-price .price-table::before {
    width: 2.4375rem;
    height: 2.8125rem;
    top: -1.125rem;
  }
}
.page-price .price-table__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
  padding-inline: 4.5625rem;
}
@media (min-width: 751px) {
  .page-price .price-table__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 62.5rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    margin-inline: auto;
    padding-inline: 0;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__slide:not(:last-child) {
    -webkit-margin-end: 4.5rem;
            margin-inline-end: 4.5rem;
  }
}
.page-price .price-table__title {
  -webkit-margin-after: 2.9375rem;
          margin-block-end: 2.9375rem;
  position: relative;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-price .price-table__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    margin-inline: auto;
    font-size: 1.625rem;
  }
}
.page-price .price-table__title::after {
  content: "";
  width: 11rem;
  height: 5.5625rem;
  position: absolute;
  top: -5.3125rem;
  right: 3.5625rem;
  background: url(../images/top/price_body_deco.webp) no-repeat top left/cover;
  z-index: 1;
}
@media (min-width: 751px) {
  .page-price .price-table__title::after {
    width: 6.9375rem;
    height: 3.5625rem;
    top: -4.6875rem;
    right: -7.5rem;
  }
}
.page-price .price-table__lead {
  width: 100%;
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  margin-inline: auto;
  padding-block: 0.9375rem;
  padding-inline: 4.625rem 4.125rem;
  background: var(--blue-1);
  border-radius: 0.625rem;
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .price-table__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 1.3125rem;
            margin-block-end: 1.3125rem;
    margin-inline: auto;
    padding-block: 0.5625rem;
    padding-inline: 3.25rem;
    font-size: 1rem;
  }
}
.page-price .price-table__price {
  position: relative;
}
@media (min-width: 751px) {
  .page-price .price-table__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item p:first-child {
    border-right: 1px dotted var(--white);
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.page-price .price-table__price--row1 .price-table__price-item:first-child p {
  border-radius: 0.625rem 0.625rem 0 0;
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item:first-child p {
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
.page-price .price-table__price--row1 .price-table__price-item:first-child p:last-child {
  border: 1px solid var(--black);
}
@media (max-width: 750px) {
  .page-price .price-table__price--row1 .price-table__price-item:not(:first-child) p {
    border-bottom: 1px dotted var(--white);
  }
}
.page-price .price-table__price--row1 .price-table__price-item:not(:first-child) p:not(:first-child) {
  border-bottom: 1px dotted var(--black);
  border-right: 1px solid var(--black);
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item:not(:first-child) p:not(:first-child) {
    border-right: 1px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item:not(:first-child) p:last-child {
    border-bottom: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row1 .price-table__price-item:nth-child(2) p:first-child {
    border-radius: 0.625rem 0 0 0;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item:last-child p:first-child {
    border-right: none;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row1 .price-table__price-item:last-child p:first-child {
    border-bottom: none;
    border-radius: 0 0 0 0.625rem;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item:last-child p:not(:first-child):not(:last-child) {
    border-right: 1px solid var(--black);
  }
}
.page-price .price-table__price--row1 .price-table__price-item:last-child p:last-child {
  border-radius: 0 0 0.625rem 0;
}
@media (min-width: 751px) {
  .page-price .price-table__price--row1 .price-table__price-item:last-child p:last-child {
    border-right: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row1 .price-table__price-item:last-child p:last-child {
    border-bottom: 1px solid var(--black);
  }
}
.page-price .price-table__price--row3 .price-table__price-item p {
  width: 9rem;
  text-align: center;
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item p {
    width: 11.25rem;
  }
}
.page-price .price-table__price--row3 .price-table__price-item p:first-child {
  width: 11.25rem;
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p {
    width: 8.5rem;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item p:first-child {
    border-right: 1px dotted var(--white);
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item p:first-child {
    border-bottom: 1px dotted var(--white);
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p:nth-child(2) {
    border: 1px solid var(--black);
    border-radius: 0.625rem 0 0 0;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p:nth-child(2) {
    border-left: 1px solid var(--black);
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p:nth-child(3), .page-price .price-table__price--row3 .price-table__price-item:first-child p:nth-child(4) {
    border: 1px solid var(--black);
    border-top: none;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p:last-child {
    border-radius: 0 0 0 0.625rem;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p:not(:first-child) {
    border-top: 1px solid var(--black);
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:first-child p:not(:last-child) {
    border-bottom: 1px dotted var(--white);
  }
}
.page-price .price-table__price--row3 .price-table__price-item:not(:first-child) p:not(:first-child) {
  border-right: 1px dotted var(--black);
  border-bottom: 1px dotted var(--black);
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:not(:first-child) p:last-child {
    border-bottom: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:not(:first-child) p:last-child {
    border-right: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:nth-child(2) p:first-child {
    border-radius: 0.625rem 0 0 0;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:last-child p:first-child {
    border-right: none;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:last-child p:first-child {
    border-bottom: none;
    border-radius: 0 0 0 0.625rem;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--row3 .price-table__price-item:last-child p:not(:first-child) {
    border-bottom: 1px solid var(--black) !important;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:last-child p:not(:first-child):not(:last-child) {
    border-right: 1px solid var(--black);
  }
}
.page-price .price-table__price--row3 .price-table__price-item:last-child p:last-child {
  border-radius: 0 0 0.625rem 0;
}
@media (min-width: 751px) {
  .page-price .price-table__price--row3 .price-table__price-item:last-child p:last-child {
    border-right: 1px solid var(--black);
  }
}
.page-price .price-table__price--col3 .price-table__price-item p {
  width: 22.125rem;
}
@media (min-width: 751px) {
  .page-price .price-table__price--col3 .price-table__price-item p {
    width: 11.25rem;
    height: 5.3125rem;
  }
}
.page-price .price-table__price--col3 .price-table__price-item p:first-child {
  width: 15.9375rem;
}
@media (min-width: 751px) {
  .page-price .price-table__price--col3 .price-table__price-item p:first-child {
    width: 11.25rem;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--col3 .price-table__price-item:first-child p {
    width: 8.5rem;
  }
}
.page-price .price-table__price--col3 .price-table__price-item:last-child {
  height: auto;
}
@media (min-width: 751px) {
  .page-price .price-table__price--col3 .price-table__price-item:last-child p {
    width: 22.5rem;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--col3 .price-table__price-item:last-child p {
    padding-block: 1.375rem;
    padding-inline: 1.375rem;
  }
}
.page-price .price-table__price--col3 .price-table__price-item:last-child p:not(:first-child) {
  padding-inline: 1.625rem 1.1875rem;
  text-align: left;
  font-size: 1.625rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-price .price-table__price--col3 .price-table__price-item:last-child p:not(:first-child) {
    font-size: 0.875rem;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--col3 .price-table__price-item:not(:nth-child(1)) p:first-child {
    -webkit-padding-start: 1.875rem;
            padding-inline-start: 1.875rem;
  }
}
.page-price .price-table__price--col4 .price-table__price-item p {
  width: 22.125rem;
}
@media (min-width: 751px) {
  .page-price .price-table__price--col4 .price-table__price-item p {
    width: 11.25rem;
    height: 4.0625rem;
  }
}
.page-price .price-table__price--col4 .price-table__price-item p:first-child {
  width: 15.9375rem;
}
@media (min-width: 751px) {
  .page-price .price-table__price--col4 .price-table__price-item p:first-child {
    width: 11.25rem;
  }
}
@media (min-width: 751px) {
  .page-price .price-table__price--col4 .price-table__price-item:first-child p {
    width: 8.5rem;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price--col4 .price-table__price-item:not(:nth-child(1)) p:first-child {
    -webkit-padding-start: 1.875rem;
            padding-inline-start: 1.875rem;
  }
}
.page-price .price-table__price-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .page-price .price-table__price-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-price .price-table__price-item p {
  place-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-price .price-table__price-item p:first-child {
  background: var(--black);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .price-table__price-item p:first-child {
    height: 2.8125rem;
    text-align: center;
    font-size: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-price .price-table__price-item p:not(:first-child) {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .price-table__price-item p:not(:first-child) {
    padding-inline: 0;
    font-size: 0.875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-price .price-table__price-item--large {
  font-size: 2.25rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-price .price-table__price-item--large {
    font-size: 1.3125rem;
  }
}
.page-price .price-table__price-item--small {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .page-price .price-table__price-item--small {
    font-size: 0.8125rem;
  }
}
.page-price .price-table__price-item:first-child p:first-child {
  height: 5.625rem;
  background: none;
}
@media (min-width: 751px) {
  .page-price .price-table__price-item:first-child p:first-child {
    height: 2.8125rem;
  }
}
.page-price .price-table__price-item:first-child p:not(:first-child) {
  place-content: center;
  background: var(--darkGray);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .price-table__price-item:first-child p:not(:first-child) {
    font-size: 1rem;
  }
}
@media (max-width: 750px) {
  .page-price .price-table__price-item:not(:nth-child(1)) {
    height: 6.4375rem;
  }
}
.page-price .price-table .simplebar-track.simplebar-horizontal {
  width: 38.125rem;
  height: 1.1875rem;
  margin-inline: auto;
  bottom: -14.375rem;
  background: #dbdbdb;
  border-radius: 0.625rem;
}
.page-price .price-table .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: 1.1875rem;
  top: 0;
}
.page-price .price-table .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  left: 0;
  right: 0;
  background: #8b8b8a;
  border-radius: 0.625rem;
  opacity: 1;
}
.page-price .price-table__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
}
.page-price .price-table__pagination .splide__pagination__page {
  width: 0.625rem;
  height: 0.625rem;
  margin: 0;
  background: var(--white);
  border: 2px solid var(--black);
  opacity: 1;
}
.page-price .price-table__pagination .splide__pagination__page.is-active {
  background: var(--black);
  -webkit-transform: scale(1);
          transform: scale(1);
}
.page-price .price-table__arrow {
  width: 1.875rem;
  height: 1.875rem;
  top: 6.875rem;
  opacity: 1;
}
.page-price .price-table__arrow--prev {
  left: -4.375rem;
}
.page-price .price-table__arrow--prev::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-price .price-table__arrow--prev svg {
  display: none;
}
.page-price .price-table__arrow--next {
  right: -4.375rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
}
.page-price .price-table__arrow--next svg {
  display: none;
}
.page-price .price-table__attention {
  width: 37.9375rem;
  margin-inline: auto;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-price .price-table__attention {
    width: 34.75rem;
    -webkit-padding-after: 2.5rem;
            padding-block-end: 2.5rem;
    font-size: 0.875rem;
  }
}
.page-price .example {
  background: var(--lightBeige);
}
.page-price .example__container {
  margin-inline: 2.625rem;
  padding-block: 4.6875rem 6.5625rem;
  position: relative;
  background: var(--lightBeige);
  border-radius: 1.25rem 1.25rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .example__container {
    width: 90rem;
    -webkit-margin-before: -2.8125rem;
            margin-block-start: -2.8125rem;
    margin-inline: auto;
    padding-block: 3.125rem 6.125rem;
  }
}
.page-price .example__container::after {
  content: "";
  width: 9.5rem;
  height: 16.875rem;
  position: absolute;
  bottom: -3.75rem;
  left: 1rem;
  background: url(../images/price/example_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-price .example__container::after {
    width: 5.25rem;
    height: 9.3125rem;
    bottom: 0;
    left: 13.75rem;
  }
}
.page-price .example__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: -6.875rem;
          margin-block-start: -6.875rem;
  -webkit-margin-after: 3.625rem;
          margin-block-end: 3.625rem;
  margin-inline: auto;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-price .example__title {
    -webkit-margin-before: -5rem;
            margin-block-start: -5rem;
    -webkit-margin-after: 3.875rem;
            margin-block-end: 3.875rem;
    font-size: 2.75rem;
  }
}
.page-price .example__title-top {
  display: block;
  -webkit-margin-after: 1.625rem;
          margin-block-end: 1.625rem;
  padding-block: 1.25rem 1.25rem;
  padding-inline: 7.8125rem;
  background: url(../images/price/example_title_top_bg.webp) no-repeat top left/cover;
  font-size: 2.5rem;
}
@media (min-width: 751px) {
  .page-price .example__title-top {
    padding-block: 0.875rem 0.875rem;
    padding-inline: 4.875rem;
    background: url(../images/price/example_title_top_bg--pc.webp) no-repeat top left/cover;
    font-size: 1.75rem;
  }
}
.page-price .example__price {
  padding-block: 1.75rem;
  padding-inline: 1.875rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .example__price {
    width: 62.5rem;
    margin-inline: auto;
    padding-block: 1.75rem;
    padding-inline: 2.6875rem 2.375rem;
  }
}
.page-price .example__price:not(:last-child) {
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
@media (min-width: 751px) {
  .page-price .example__price:not(:last-child) {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-price .example__price-title {
  -webkit-margin-after: 1.6875rem;
          margin-block-end: 1.6875rem;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-price .example__price-title {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    font-size: 2rem;
  }
}
.page-price .example__price-title-num {
  -webkit-margin-start: 1.75rem;
          margin-inline-start: 1.75rem;
  -webkit-padding-start: 1.75rem;
          padding-inline-start: 1.75rem;
  position: relative;
  color: var(--red);
  font-size: 5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-price .example__price-title-num {
    -webkit-margin-start: 1.4375rem;
            margin-inline-start: 1.4375rem;
    -webkit-padding-start: 1.4375rem;
            padding-inline-start: 1.4375rem;
    font-size: 3.125rem;
  }
}
.page-price .example__price-title-num::before {
  content: "";
  width: 0.1875rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--black);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 751px) {
  .page-price .example__price-title-num::before {
    height: 1.8125rem;
  }
}
.page-price .example__price-text {
  -webkit-margin-after: 2.625rem;
          margin-block-end: 2.625rem;
  -webkit-padding-after: 0.8125rem;
          padding-block-end: 0.8125rem;
  border-bottom: 2px dotted var(--black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-price .example__price-text {
    -webkit-margin-after: 1.5625rem;
            margin-block-end: 1.5625rem;
    -webkit-padding-after: 1.5625rem;
            padding-block-end: 1.5625rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 751px) {
  .page-price .example__price-wrapper {
    display: grid;
    grid-template-areas: "result label" "result total";
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.375rem;
       -moz-column-gap: 1.375rem;
            column-gap: 1.375rem;
  }
}
@media (min-width: 751px) {
  .page-price .example__price-results {
    grid-area: result;
  }
}
.page-price .example__price-results-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-after: 0.8125rem;
          margin-block-end: 0.8125rem;
  color: var(--white);
  font-size: 2.25rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-price .example__price-results-head {
    -webkit-margin-after: 0.6875rem;
            margin-block-end: 0.6875rem;
    font-size: 1.625rem;
  }
}
.page-price .example__price-results-head span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  padding-block: 0.8125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .example__price-results-head span {
    padding-block: 0.625rem;
    letter-spacing: 0.1em;
  }
}
.page-price .example__price-results-head span:first-child {
  width: 19rem;
  padding-inline: 6.125rem;
  position: relative;
  background: var(--darkGray);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .example__price-results-head span:first-child {
    width: 14.375rem;
    padding-inline: 4.6875rem;
  }
}
.page-price .example__price-results-head span:nth-child(2) {
  width: 20rem;
  margin-inline: -1.5625rem 0;
  padding-inline: 6.75rem 8.3125rem;
  background: var(--blue-1);
  text-align: right;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .example__price-results-head span:nth-child(2) {
    width: 15.1875rem;
    margin-inline: -1.125rem 0;
    padding-inline: 5.125rem 5.75rem;
  }
}
.page-price .example__price-results-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
}
.page-price .example__price-label {
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  padding-block: 2.0625rem;
  padding-inline: 1.875rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-price .example__price-label {
    grid-area: label;
    margin-block: 3.5625rem 1.4375rem;
    padding-block: 1.875rem;
    padding-inline: 1.875rem;
  }
}
.page-price .example__price-label-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  padding-block: 0.625rem;
  padding-inline: 2.75rem;
  background: var(--black);
  border-radius: 0.3125rem;
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-price .example__price-label-title {
    -webkit-margin-after: 0.375rem;
            margin-block-end: 0.375rem;
    padding-block: 0.375rem;
    padding-inline: 1.6875rem;
    font-size: 1rem;
  }
}
.page-price .example__price-label-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-price .example__price-label-text {
    font-size: 1.125rem;
  }
}
.page-price .example__price-label-text:not(:last-child) {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
}
@media (min-width: 751px) {
  .page-price .example__price-label-text:not(:last-child) {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}
@media (min-width: 751px) {
  .page-price .example__price-total {
    grid-area: total;
  }
}
.page-price .example__price-total-title {
  text-align: right;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 1.75rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-price .example__price-total-title {
    -webkit-margin-after: 0.5625rem;
            margin-block-end: 0.5625rem;
    font-size: 1.0625rem;
  }
}
.page-price .example__price-total-title--large {
  color: var(--red);
  font-size: 5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-price .example__price-total-title--large {
    font-size: 3.125rem;
  }
}
.page-price .example__price-total-text {
  text-align: right;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-price .example__price-total-text {
    font-size: 0.8125rem;
  }
}
.page-price .comparison {
  padding-block: 5.375rem;
}
@media (min-width: 751px) {
  .page-price .comparison {
    padding-block: 6.0625rem 5.3125rem;
  }
}
.page-price .comparison__title {
  -webkit-margin-after: 4.25rem;
          margin-block-end: 4.25rem;
  text-align: center;
  font-size: 3.4375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-price .comparison__title {
    -webkit-margin-after: 2.8125rem;
            margin-block-end: 2.8125rem;
    font-size: 2.75rem;
  }
}
.page-price .comparison__title--small {
  font-size: 3.125rem;
}
@media (min-width: 751px) {
  .page-price .comparison__title--small {
    font-size: 2.5rem;
  }
}
.page-price .comparison__title--large {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .page-price .comparison__title--large {
    font-size: 3rem;
  }
}
.page-price .comparison__title--line {
  display: inline-block;
  -webkit-padding-after: 1.25rem;
          padding-block-end: 1.25rem;
  border-bottom: 2px dotted var(--black);
}
@media (min-width: 751px) {
  .page-price .comparison__title--line {
    -webkit-padding-after: 0.75rem;
            padding-block-end: 0.75rem;
  }
}
.page-price .comparison__table {
  width: 100%;
  -webkit-margin-after: 6.875rem;
          margin-block-end: 6.875rem;
  padding-inline: 2.625rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-price .comparison__table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 2.8125rem;
            margin-block-end: 2.8125rem;
    margin-inline: auto;
    padding-inline: 0;
  }
}
.page-price .comparison__table-scroll {
  display: none;
}
@media (max-width: 750px) {
  .page-price .comparison__table-scroll {
    display: block;
    place-content: center;
    width: 16.625rem;
    height: 16.625rem;
    position: absolute;
    top: 50%;
    left: 15rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1.25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
}
.page-price .comparison__table-scroll.is-hidden {
  opacity: 0;
}
@media (max-width: 750px) {
  .page-price .comparison__table-scroll-icon {
    width: 6.8125rem;
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
    margin-inline: auto;
    -webkit-animation: shakeX 3s linear infinite;
            animation: shakeX 3s linear infinite;
  }
}
@-webkit-keyframes shakeX {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-1.25rem);
            transform: translateX(-1.25rem);
  }
  75% {
    -webkit-transform: translateX(1.25rem);
            transform: translateX(1.25rem);
  }
}
@keyframes shakeX {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(-1.25rem);
            transform: translateX(-1.25rem);
  }
  75% {
    -webkit-transform: translateX(1.25rem);
            transform: translateX(1.25rem);
  }
}
@media (max-width: 750px) {
  .page-price .comparison__table-scroll-text {
    text-align: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 900;
  }
}
.page-price .comparison__table-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.page-price .comparison__table-head-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  place-content: center;
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .comparison__table-head-item {
    font-size: 1.25rem;
  }
}
.page-price .comparison__table-head-item-space {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.0625rem;
}
@media (min-width: 751px) {
  .page-price .comparison__table-head-item-space {
    width: 15.625rem;
  }
}
.page-price .comparison__table-head-item:nth-of-type(1) {
  width: 12.0625rem;
  padding-block: 0.8125rem 1.25rem;
  padding-inline: 0.75rem;
  border: 0.5rem solid var(--red);
  border-bottom: 1px dotted var(--black);
}
@media (min-width: 751px) {
  .page-price .comparison__table-head-item:nth-of-type(1) {
    width: 15.625rem;
    padding-block: 0.9375rem;
    padding-inline: 5.25rem;
    border: 0.375rem solid var(--red);
    border-bottom: 1px dotted var(--black);
  }
}
.page-price .comparison__table-head-item:not(:first-child):not(:nth-child(2)) {
  width: 11.6875rem;
  height: 7.5rem;
  background: var(--darkGray);
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
}
@media (min-width: 751px) {
  .page-price .comparison__table-head-item:not(:first-child):not(:nth-child(2)) {
    width: 15.625rem;
    height: 3.75rem;
  }
}
.page-price .comparison__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.page-price .comparison__table-body-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 11.6875rem;
  height: 5rem;
  place-content: center;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item {
    width: 15.625rem;
    height: 3.125rem;
  }
}
.page-price .comparison__table-body-item--small {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item--small {
    font-size: 1rem;
  }
}
.page-price .comparison__table-body-item--medium {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item--medium {
    font-size: 1.75rem;
  }
}
.page-price .comparison__table-body-item--large {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item--large {
    font-size: 1.625rem;
  }
}
.page-price .comparison__table-body-item:nth-of-type(1) {
  width: 12.0625rem;
  place-content: center;
  background: var(--black);
  border-bottom: 1px dotted var(--white);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item:nth-of-type(1) {
    width: 15.625rem;
    font-size: 1.25rem;
  }
}
.page-price .comparison__table-body-item:nth-of-type(2) {
  width: 12.0625rem;
  border-right: 0.5rem solid var(--red);
  border-left: 0.5rem solid var(--red);
  border-bottom: 1px dotted var(--black);
  color: var(--red);
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item:nth-of-type(2) {
    width: 15.625rem;
    border-right: 0.375rem solid var(--red);
    border-left: 0.375rem solid var(--red);
  }
}
.page-price .comparison__table-body-item:nth-of-type(3), .page-price .comparison__table-body-item:nth-of-type(4) {
  border-right: 1px solid var(--black);
  border-bottom: 1px dotted var(--black);
}
.page-price .comparison__table-body-item:not(:first-child) {
  font-size: 1.625rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body-item:not(:first-child) {
    font-size: 1rem;
  }
}
.page-price .comparison__table-body:nth-of-type(2) .comparison__table-body-item:first-child {
  border-radius: 0.625rem 0 0 0;
}
.page-price .comparison__table-body:last-of-type .comparison__table-body-item:first-child {
  border-radius: 0 0 0 0.625rem;
}
.page-price .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(2) {
  height: 5.625rem;
  border-bottom: 0.5rem solid var(--red);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-price .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(2) {
    height: 3.75rem;
    border-width: 0.375rem;
  }
}
.page-price .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(3), .page-price .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(4) {
  border-bottom: 1px solid var(--black);
}
.page-price .comparison__table-body:last-of-type .comparison__table-body-item:nth-of-type(4) {
  border-radius: 0 0 0.625rem 0;
}
.page-price .comparison__table-foot {
  text-align: center;
  font-size: 2.125rem;
  font-weight: 900;
  line-height: 1.5;
}
.page-price .comparison__table-foot--large {
  font-size: 3.125rem;
}
.page-price .comparison .simplebar-track.simplebar-horizontal {
  width: 41.875rem;
  height: 1.1875rem;
  margin-inline: auto;
  bottom: 2.5rem;
  background: #dbdbdb;
  border-radius: 0.625rem;
}
.page-price .comparison .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  height: 1.1875rem;
  top: 0;
}
.page-price .comparison .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  left: 0;
  right: 0;
  background: #8b8b8a;
  border-radius: 0.625rem;
  opacity: 1;
}
.page-price .discount {
  padding-block: 5.125rem 12.125rem;
  background: #ecebe6;
}
@media (min-width: 751px) {
  .page-price .discount {
    padding-block: 5.4375rem 10rem;
  }
}
.page-price .discount__title {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  text-align: center;
  font-size: 2.75rem;
  font-weight: 900;
}
.page-price .discount__title-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  -webkit-margin-after: 2.625rem;
          margin-block-end: 2.625rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-price .discount__title-top {
    gap: 1.0625rem;
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
    font-size: 1.625rem;
  }
}
.page-price .discount__title-top::before, .page-price .discount__title-top::after {
  content: "";
  width: 2px;
  height: 2.6875rem;
}
@media (min-width: 751px) {
  .page-price .discount__title-top::before, .page-price .discount__title-top::after {
    height: 1.75rem;
  }
}
.page-price .discount__title-top::before {
  border-right: 2px dotted var(--black);
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.page-price .discount__title-top::after {
  border-left: 2px dotted var(--black);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.page-price .discount__wrapper {
  counter-reset: discount;
}
.page-price .discount__item {
  position: relative;
}
@media (min-width: 751px) {
  .page-price .discount__item {
    padding-block: 1.5625rem;
    padding-inline: 3.75rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 0.625rem;
  }
}
.page-price .discount__item::before {
  content: counter(discount, decimal-leading-zero);
  counter-increment: discount;
  position: absolute;
  top: -0.3125rem;
  left: -0.1875rem;
  text-align: center;
  color: var(--white);
  font-size: 4.125rem;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-price .discount__item::before {
    top: -0.25rem;
    left: -0.125rem;
    font-size: 2.625rem;
  }
}
.page-price .discount__item:nth-child(2)::before {
  left: -0.3125rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:nth-child(2)::before {
    left: -0.3125rem;
  }
}
.page-price .discount__item::after {
  content: "";
  width: 7rem;
  height: 7rem;
  position: absolute;
  top: -1.25rem;
  left: -1.875rem;
  background: url(../images/price/discount_num_bg.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-price .discount__item::after {
    width: 4.5rem;
    height: 4.5rem;
    top: -0.9375rem;
    left: -1.25rem;
  }
}
.page-price .discount__item:not(:last-child) {
  -webkit-margin-after: 2.625rem;
          margin-block-end: 2.625rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:not(:last-child) {
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
  }
}
.page-price .discount__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  font-size: 2.5rem;
  font-weight: 900;
}
@media (max-width: 750px) {
  .page-price .discount__item-title {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 1.875rem;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 0.625rem;
  }
}
@media (min-width: 751px) {
  .page-price .discount__item-title {
    gap: 1.875rem;
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
    -webkit-padding-after: 1.0625rem;
            padding-block-end: 1.0625rem;
    border-bottom: 2px dotted var(--black);
    font-size: 1.625rem;
  }
}
@media (max-width: 750px) {
  .page-price .discount__item:first-child .discount__item-title {
    padding-inline: 5.8125rem 3.625rem;
  }
}
.page-price .discount__item:first-child .discount__item-title-price {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:first-child .discount__item-title-price {
    font-size: 3.125rem;
  }
}
.page-price .discount__item:first-child .discount__item-title-price--small {
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:first-child .discount__item-title-price--small {
    font-size: 1.5rem;
  }
}
@media (max-width: 750px) {
  .page-price .discount__item:nth-child(2) .discount__item-title {
    padding-inline: 5.5rem 1.6875rem;
  }
}
.page-price .discount__item:nth-child(2) .discount__item-title-price {
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:nth-child(2) .discount__item-title-price {
    font-size: 1.5rem;
  }
}
.page-price .discount__item:nth-child(2) .discount__item-title-price--medium {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:nth-child(2) .discount__item-title-price--medium {
    font-size: 1.5rem;
  }
}
.page-price .discount__item:nth-child(2) .discount__item-title-price--large {
  font-size: 3rem;
}
@media (min-width: 751px) {
  .page-price .discount__item:nth-child(2) .discount__item-title-price--large {
    font-size: 3.125rem;
  }
}
.page-price .discount__item-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .page-price .discount__item-text {
    margin-inline: 1.25rem;
  }
}
@media (min-width: 751px) {
  .page-price .discount__item-text {
    font-size: 1.125rem;
  }
}

.page-gaiju .hero {
  background: var(--darkBeige);
}
@media (min-width: 751px) {
  .page-gaiju .hero {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), color-stop(50%, var(--white)), color-stop(50%, var(--darkBeige)), to(var(--darkBeige)));
    background: linear-gradient(to bottom, var(--white) 0%, var(--white) 50%, var(--darkBeige) 50%, var(--darkBeige) 100%);
  }
}
.page-gaiju .hero__title {
  padding-block: 1.125rem 1.5rem;
  padding-inline: 2rem 3.0625rem;
  background: url(../images/gaiju/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-gaiju .hero__title {
    padding-block: 1.0625rem 1.25rem;
    padding-inline: 2.5625rem 3.625rem;
    background: url(../images/gaiju/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju .hero__title-head {
  -webkit-margin-start: 0.9375rem;
          margin-inline-start: 0.9375rem;
}
@media (min-width: 751px) {
  .page-gaiju .hero__title-head {
    -webkit-margin-start: 0.25rem;
            margin-inline-start: 0.25rem;
  }
}
.page-gaiju .target {
  -webkit-margin-before: -1px;
          margin-block-start: -1px;
  padding-block: 0 5.375rem;
  background: var(--darkBeige);
}
@media (min-width: 751px) {
  .page-gaiju .target {
    -webkit-padding-after: 3.625rem;
            padding-block-end: 3.625rem;
  }
}
.page-gaiju .target__item {
  padding-block: 2.5rem 3.25rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item {
    padding-block: 1.25rem 2.25rem;
    padding-inline: 2.125rem;
  }
}
.page-gaiju .target__item:not(:last-child) {
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item:not(:last-child) {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.page-gaiju .target__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head {
    display: grid;
    grid-template-areas: "level img" "price img";
    grid-template-columns: 28.5rem 23.875rem;
    gap: 0 4.375rem;
    -webkit-margin-after: 2.375rem;
            margin-block-end: 2.375rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju .target__item-head-wrapper {
    width: 17rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.625rem;
    -webkit-margin-after: 1.625rem;
            margin-block-end: 1.625rem;
    -webkit-padding-after: 0;
            padding-block-end: 0;
    border-bottom: 2px dotted var(--black);
  }
}
.page-gaiju .target__item-head-title {
  font-size: 3.125rem;
  font-weight: 900;
}
@media (max-width: 750px) {
  .page-gaiju .target__item-head-title {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-title {
    font-size: 2rem;
  }
}
.page-gaiju .target__item-head-level {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.4375rem;
}
@media (max-width: 750px) {
  .page-gaiju .target__item-head-level {
    display: grid;
    grid-template-areas: "text num" "star num";
  }
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-area: level;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5625rem;
  }
}
.page-gaiju .target__item-head-level-text {
  grid-area: text;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 1rem 0.8125rem;
  padding-inline: 3.3125rem 1.3125rem;
  position: relative;
  background: var(--black);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
@media (max-width: 750px) {
  .page-gaiju .target__item-head-level-text {
    -webkit-transform: translateY(0.625rem);
            transform: translateY(0.625rem);
  }
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-level-text {
    gap: 0.5625rem;
    padding-block: 0.5625rem;
    padding-inline: 2.0625rem 1.1875rem;
    font-size: 1rem;
  }
}
.page-gaiju .target__item-head-level-text::before {
  content: "";
  width: 1.9375rem;
  height: 1.6875rem;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  background: url(../images/top/target_danger_icon.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-level-text::before {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 1.125rem;
    height: 1rem;
    left: 0.5625rem;
  }
}
.page-gaiju .target__item-head-level-star {
  display: grid;
  grid-area: star;
  grid-template-columns: repeat(5, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-level-star {
    grid-template-columns: repeat(5, 1.0625rem);
    gap: 0.3125rem;
  }
}
.page-gaiju .target__item-head-level-num {
  grid-area: num;
  color: var(--red);
  font-size: 7.8125rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-level-num {
    font-size: 4.75rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju .target__item-head-img {
    width: 19rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju .target__item-head-img {
    grid-area: img;
  }
}
.page-gaiju .target__item-price {
  width: 100%;
}
@media (max-width: 750px) {
  .page-gaiju .target__item-price {
    -webkit-margin-after: 3.25rem;
            margin-block-end: 3.25rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju .target__item-price {
    grid-area: price;
  }
}
.page-gaiju .target__item-price-title {
  padding-block: 1.25rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-price-title {
    padding-block: 0.875rem;
    font-size: 1.375rem;
  }
}
.page-gaiju .target__item-price-wrapper {
  padding-block: 1.1875rem;
  background: var(--lightBeige);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-price-wrapper {
    padding-block: 0.625rem 1.25rem;
  }
}
.page-gaiju .target__item-price-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: right;
  font-size: 2.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-price-text {
    text-align: center;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
  }
}
.page-gaiju .target__item-price-text--small {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-price-text--small {
    font-size: 0.875rem;
  }
}
.page-gaiju .target__item-price-text--large {
  font-size: 6rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-price-text--large {
    font-size: 3.125rem;
    letter-spacing: 0.05em;
  }
}
.page-gaiju .target__item-body-text {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-body-text {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 1rem;
  }
}
.page-gaiju .target__item-body-text .u-marker-yellow {
  font-weight: 700;
}
.page-gaiju .target__item-body-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto 0;
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-body-link a {
    gap: 1.125rem;
    margin-inline: auto;
    border-width: 2px;
    font-size: 1.125rem;
  }
}
.page-gaiju .target__item-body-link a span {
  text-decoration: underline;
  text-underline-offset: 0.5625rem;
  text-decoration-thickness: 0.25rem;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-body-link a span {
    text-decoration-thickness: 0.125rem;
  }
}
.page-gaiju .target__item-body-link a::after {
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju .target__item-body-link a::after {
    width: 1.8125rem;
    height: 1.8125rem;
  }
}
.page-gaiju .other {
  -webkit-margin-before: -1px;
          margin-block-start: -1px;
  -webkit-padding-after: 14.1875rem;
          padding-block-end: 14.1875rem;
  background: var(--darkBeige);
}
@media (min-width: 751px) {
  .page-gaiju .other {
    -webkit-padding-after: 9.8125rem;
            padding-block-end: 9.8125rem;
  }
}
.page-gaiju .other__title {
  -webkit-margin-after: 13.25rem;
          margin-block-end: 13.25rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju .other__title {
    -webkit-margin-after: 9.6875rem;
            margin-block-end: 9.6875rem;
    font-size: 2.5rem;
  }
}
.page-gaiju .other__title .u-br {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.page-gaiju .other__title .u-br:not(:last-child) {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__title .u-br:not(:last-child) {
    -webkit-margin-after: 1.125rem;
            margin-block-end: 1.125rem;
  }
}
.page-gaiju .other__title-deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__title-deco {
    gap: 0;
  }
}
.page-gaiju .other__title-deco::before, .page-gaiju .other__title-deco::after {
  content: "";
  display: block;
  width: 2.4375rem;
  height: 4.625rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__title-deco::before, .page-gaiju .other__title-deco::after {
    width: 1.8125rem;
    height: 3.5rem;
  }
}
.page-gaiju .other__title-deco::before {
  -webkit-margin-end: 0.4375rem;
          margin-inline-end: 0.4375rem;
  background: url(../images/gaiju/other_title_deco_left.webp) no-repeat top left/cover;
}
.page-gaiju .other__title-deco::after {
  margin-inline: 0.9375rem 0.8125rem;
  background: url(../images/gaiju/other_title_deco_right.webp) no-repeat top left/cover;
}
.page-gaiju .other__title--small {
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__title--small {
    font-size: 2.5rem;
  }
}
.page-gaiju .other__title--large {
  font-size: 3.125rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__title--large {
    font-size: 2.75rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju .other__title--large-pc {
    font-size: 2.75rem;
  }
}
.page-gaiju .other__container {
  position: relative;
}
.page-gaiju .other__text-top {
  width: 14.125rem;
  position: absolute;
  top: -9.9375rem;
  background: url(../images/gaiju/other_text_top_bg.webp) no-repeat top left/cover;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-top {
    width: 15.8125rem;
    top: -7.8125rem;
    background: url(../images/gaiju/other_text_top_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju .other__text-top:nth-child(1) {
  padding-block: 1.5625rem 2.5rem;
  left: 6.0625rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-top:nth-child(1) {
    padding-block: 0.625rem 1.125rem;
    left: 13.75rem;
  }
}
.page-gaiju .other__text-top:nth-child(1)::before {
  content: "";
  width: 6.6875rem;
  height: 11.5625rem;
  position: absolute;
  top: 0rem;
  left: -6.875rem;
  background: url(../images/gaiju/other_human.webp) no-repeat top left/cover;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-top:nth-child(1)::before {
    width: 5.1875rem;
    height: 8.875rem;
  }
}
.page-gaiju .other__text-top:nth-child(2) {
  padding-block: 1.5625rem 2.5rem;
  right: 3.375rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-top:nth-child(2) {
    padding-block: 0.625rem 1.125rem;
    right: 13.75rem;
  }
}
.page-gaiju .other__text-top:nth-child(2)::before {
  content: "";
  width: 9.875rem;
  height: 5rem;
  position: absolute;
  top: -1.875rem;
  right: -4.375rem;
  background: url(../images/gaiju/other_mouse.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-top:nth-child(2)::before {
    width: 10.75rem;
    height: 5.4375rem;
    top: -1.25rem;
    right: -6.875rem;
  }
}
.page-gaiju .other__text-top--small {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-top--small {
    font-size: 1.25rem;
  }
}
.page-gaiju .other__text-body {
  width: 38.125rem;
  margin-inline: auto;
  padding-block: 2.6875rem;
  position: relative;
  background: url(../images/gaiju/other_text_bg.webp) no-repeat top left/cover;
  text-align: center;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-body {
    width: 48.75rem;
    padding-block: 1.875rem;
    padding-inline: 0;
    background: url(../images/gaiju/other_text_bg--pc.webp) no-repeat top left/cover;
    font-size: 1.625rem;
  }
}
.page-gaiju .other__text-body::before {
  content: "";
  width: 6.6875rem;
  height: 5.625rem;
  position: absolute;
  bottom: 0.1875rem;
  right: -1.875rem;
  background: url(../images/gaiju/other_bat.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju .other__text-body::before {
    width: 7.9375rem;
    height: 3.3125rem;
    bottom: 0.5625rem;
    right: -4.25rem;
    background: url(../images/gaiju/other_bat--pc.webp) no-repeat top left/cover;
  }
}

.page-gaiju-details .u-marker-yellow {
  font-weight: 700;
}
.page-gaiju-details .hero {
  -webkit-padding-after: 7.75rem;
          padding-block-end: 7.75rem;
}
.page-gaiju-details .hero__title--small {
  font-size: 2.375rem;
}
.page-gaiju-details .hero__img {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-gaiju-details .what {
  -webkit-padding-after: 5.625rem;
          padding-block-end: 5.625rem;
}
.page-gaiju-details .what__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.375rem;
          margin-block-end: 2.375rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__title {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    font-size: 2.75rem;
  }
}
.page-gaiju-details .what__title::before {
  content: "";
  width: 9.6875rem;
  height: 10.9375rem;
  position: absolute;
  top: -1.25rem;
  left: -9.6875rem;
  background: url(../images/gaiju-details/what_title_deco.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__title::before {
    width: 8.5rem;
    height: 7.1875rem;
    background: url(../images/gaiju-details/what_title_deco--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-details .what__title--small {
  font-size: 2.5rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__title--small {
    font-size: 2rem;
  }
}
.page-gaiju-details .what__title-en {
  -webkit-margin-after: 3.375rem;
          margin-block-end: 3.375rem;
  text-align: center;
  color: var(--red);
  font-size: 2.25rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__title-en {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    font-size: 1.375rem;
  }
}
.page-gaiju-details .what__head-text {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__head-text {
    -webkit-margin-after: 3.5rem;
            margin-block-end: 3.5rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .what__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.125rem;
  }
}
.page-gaiju-details .what__mv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__mv {
    grid-template-columns: repeat(1, 27.625rem);
    gap: 1.1875rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.page-gaiju-details .what__body-text {
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__body-text {
    font-size: 1rem;
  }
}
.page-gaiju-details .what__body-text:not(:last-child) {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .what__body-text:not(:last-child) {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
  }
}
.page-gaiju-details .damage {
  padding-block: 6.25rem;
  background: var(--darkBeige);
}
.page-gaiju-details .damage__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__title {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    font-size: 2.75rem;
  }
}
.page-gaiju-details .damage__title::after {
  content: "";
  width: 6.875rem;
  height: 5.5625rem;
  position: absolute;
  top: -4.375rem;
  right: -3.75rem;
  background: url(../images/gaiju-details/damage_title_deco.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__title::after {
    width: 4.6875rem;
    height: 3.8125rem;
    top: -3.75rem;
  }
}
.page-gaiju-details .damage__head-text {
  -webkit-margin-after: 3.25rem;
          margin-block-end: 3.25rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__head-text {
    text-align: center;
    font-size: 1.125rem;
  }
}
.page-gaiju-details .damage__item {
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
  position: relative;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
.page-gaiju-details .damage__item:not(:last-child) {
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
.page-gaiju-details .damage__item::before {
  content: "";
  position: absolute;
}
.page-gaiju-details .damage__item--noise::before {
  width: 10.8125rem;
  height: 9.5625rem;
  top: 2.5rem;
  right: 2.25rem;
  background: url(../images/gaiju-details/damage_noise_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--noise::before {
    width: 9.5625rem;
    height: 7.75rem;
    top: 1.5625rem;
    right: 4.0625rem;
    background: url(../images/gaiju-details/damage_noise_icon--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-details .damage__item--virus::before {
  width: 9.1875rem;
  height: 10.3125rem;
  top: 2.125rem;
  right: 3.8125rem;
  background: url(../images/gaiju-details/damage_virus_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--virus::before {
    width: 7.8125rem;
    height: 8.6875rem;
    top: 1.0625rem;
    right: 5.0625rem;
  }
}
.page-gaiju-details .damage__item--insect::before {
  width: 14.9375rem;
  height: 9.125rem;
  top: 3.125rem;
  right: 2.1875rem;
  background: url(../images/gaiju-details/damage_insect_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--insect::before {
    width: 13rem;
    height: 7.9375rem;
    top: 1.25rem;
    right: 3.1875rem;
  }
}
.page-gaiju-details .damage__item--insect-medium::before {
  width: 12.9375rem;
  height: 10.4375rem;
  top: 2.125rem;
  right: 1.8125rem;
  background: url(../images/gaiju-details/damage_insect_medium_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--insect-medium::before {
    width: 13rem;
    height: 7.9375rem;
    top: 1.25rem;
    right: 3.3125rem;
    background: url(../images/gaiju-details/damage_insect_icon.webp) no-repeat top left/cover;
  }
}
.page-gaiju-details .damage__item--insect-small::before {
  width: 9.9375rem;
  height: 11.0625rem;
  top: 1.5rem;
  right: 0.5625rem;
  background: url(../images/gaiju-details/damage_insect_small_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--insect-small::before {
    width: 13rem;
    height: 7.9375rem;
    top: 1.25rem;
    right: 3.3125rem;
    background: url(../images/gaiju-details/damage_insect_icon.webp) no-repeat top left/cover;
  }
}
.page-gaiju-details .damage__item--excrement::before {
  width: 14.9375rem;
  height: 4.6875rem;
  top: 5.9375rem;
  right: 1.9375rem;
  background: url(../images/gaiju-details/damage_excrement_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--excrement::before {
    width: 14.9375rem;
    height: 4.6875rem;
    top: 3.375rem;
    right: 3.625rem;
  }
}
.page-gaiju-details .damage__item--fire::before {
  width: 23.4375rem;
  height: 6.375rem;
  top: 6.5625rem;
  right: 0.8125rem;
  background: url(../images/gaiju-details/damage_fire_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--fire::before {
    width: 20.0625rem;
    height: 5.4375rem;
    top: 2.25rem;
    right: 3.25rem;
  }
}
.page-gaiju-details .damage__item--intrusion::before {
  width: 16.8125rem;
  height: 8.125rem;
  top: 2.1875rem;
  right: 2.0625rem;
  background: url(../images/gaiju-details/damage_intrusion_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--intrusion::before {
    width: 12.75rem;
    height: 6.1875rem;
    top: 1.75rem;
    right: 3.25rem;
  }
}
.page-gaiju-details .damage__item--crops::before {
  width: 13.625rem;
  height: 11.8125rem;
  top: 0.5625rem;
  right: 2.8125rem;
  background: url(../images/gaiju-details/damage_crops_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--crops::before {
    width: 10.0625rem;
    height: 8.625rem;
    top: 1.875rem;
    right: 5.25rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .damage__item--crops .damage__item-lead {
    -webkit-padding-after: 1.875rem;
            padding-block-end: 1.875rem;
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.page-gaiju-details .damage__item--pets::before {
  width: 15.6875rem;
  height: 7.8125rem;
  top: 3.3125rem;
  right: 1.8125rem;
  background: url(../images/gaiju-details/damage_pets_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--pets::before {
    width: 13.375rem;
    height: 6.625rem;
    top: 2.25rem;
    right: 3.9375rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .damage__item--pets .damage__item-lead {
    -webkit-padding-after: 1.875rem;
            padding-block-end: 1.875rem;
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.page-gaiju-details .damage__item--bat-noise::before {
  width: 9.5625rem;
  height: 7.8125rem;
  top: 2.1875rem;
  right: 3.6875rem;
  background: url(../images/gaiju-details/damage_bat_noise_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--bat-noise::before {
    width: 8.5rem;
    height: 6.375rem;
    top: 1.875rem;
    right: 3.1875rem;
  }
}
.page-gaiju-details .damage__item--bat-breeding::before {
  width: 10.4375rem;
  height: 9.9375rem;
  top: 1.3125rem;
  right: 4.875rem;
  background: url(../images/gaiju-details/damage_bat_breeding_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item--bat-breeding::before {
    width: 7.8125rem;
    height: 7.5rem;
    top: 1.5625rem;
    right: 6.25rem;
  }
}
.page-gaiju-details .damage__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.3125rem;
          margin-block-end: 2.3125rem;
  padding-block: 0.5rem;
  padding-inline: 1.875rem 2.125rem;
  position: relative;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  border-radius: 0.625rem 0 0.625rem 0;
  font-size: 2.75rem;
  font-weight: 900;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-title {
    -webkit-margin-after: 2.0625rem;
            margin-block-end: 2.0625rem;
    padding-block: 1.1875rem;
    padding-inline: 2.875rem 4.25rem;
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.page-gaiju-details .damage__item-title-num {
  -webkit-margin-start: 1.25rem;
          margin-inline-start: 1.25rem;
  position: relative;
  top: 0.25rem;
  color: var(--red);
  font-size: 3.75rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-title-num {
    -webkit-margin-start: 2.375rem;
            margin-inline-start: 2.375rem;
    font-size: 3.125rem;
  }
}
.page-gaiju-details .damage__item-title::before {
  content: "";
  width: 2.5625rem;
  height: 2.25rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
  background: url(../images/gaiju-details/damage_title_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-title::before {
    -webkit-margin-end: 1.375rem;
            margin-inline-end: 1.375rem;
  }
}
.page-gaiju-details .damage__item-lead {
  margin-inline: 1.875rem;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  -webkit-padding-after: 1rem;
          padding-block-end: 1rem;
  border-bottom: 2px dotted var(--black);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    margin-inline: 2.625rem auto;
    -webkit-padding-after: 0.5625rem;
            padding-block-end: 0.5625rem;
    font-size: 1.625rem;
  }
}
.page-gaiju-details .damage__item-lead--medium {
  font-size: 2.5rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-lead--medium {
    font-size: 2rem;
  }
}
.page-gaiju-details .damage__item-lead--large {
  font-size: 2.625rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-lead--large {
    font-size: 2rem;
  }
}
.page-gaiju-details .damage__item-text {
  margin-inline: 1.875rem;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .damage__item-text {
    margin-inline: 2.625rem 1.625rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}
.page-gaiju-details .overview {
  -webkit-padding-after: 5.25rem;
          padding-block-end: 5.25rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .overview {
    -webkit-padding-after: 5.625rem;
            padding-block-end: 5.625rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .overview__container {
    max-width: 90rem;
    -webkit-margin-before: -3.75rem;
            margin-block-start: -3.75rem;
    margin-inline: auto;
    position: relative;
    background: var(--white);
    border-radius: 1.25rem 1.25rem 0 0;
  }
}
.page-gaiju-details .overview__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: -1.875rem;
          margin-block-start: -1.875rem;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  margin-inline: auto;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju-details .overview__title {
    font-size: 2.75rem;
    -webkit-transform: translateY(-1.875rem);
            transform: translateY(-1.875rem);
  }
}
.page-gaiju-details .overview__title-top {
  display: block;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  padding-block: 1rem 1rem;
  padding-inline: 9.75rem;
  position: relative;
  background: url(../images/gaiju-details/overview_title_top_bg.webp) no-repeat top left/contain;
  font-size: 2.5rem;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-gaiju-details .overview__title-top {
    padding-block: 0.875rem 0.875rem;
    padding-inline: 6.0625rem;
    background: url(../images/gaiju-details/overview_title_top_bg--pc.webp) no-repeat top left/contain;
    font-size: 1.75rem;
  }
}
.page-gaiju-details .overview__body {
  display: grid;
  grid-template-areas: "text01 text01" "img img" "text02 text02";
  grid-template-columns: 100%;
}
@media (min-width: 751px) {
  .page-gaiju-details .overview__body {
    grid-template-areas: "text01 img" "text02 img";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.page-gaiju-details .overview__body-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .overview__body-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.page-gaiju-details .overview__body-text:nth-of-type(1) {
  grid-area: text01;
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .overview__body-text:nth-of-type(1) {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.page-gaiju-details .overview__body-text:nth-of-type(2) {
  grid-area: text02;
}
.page-gaiju-details .overview__body-text .u-marker-yellow {
  font-weight: 900;
}
.page-gaiju-details .overview__body-img {
  grid-area: img;
}
@media (max-width: 750px) {
  .page-gaiju-details .overview__body-img {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-gaiju-details .work {
  padding-block: 6.25rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-gaiju-details .work {
    padding-block: 5.8125rem 5.1875rem;
  }
}
.page-gaiju-details .work__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__title {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
    font-size: 2rem;
  }
}
.page-gaiju-details .work__title--large {
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__title--large {
    font-size: 2.75rem;
  }
}
.page-gaiju-details .work__title::before {
  content: "";
  width: 8.625rem;
  height: 12.625rem;
  position: absolute;
  top: -2.75rem;
  left: -11.25rem;
  background: url(../images/gaiju-details/work_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__title::before {
    width: 6.8125rem;
    height: 9.875rem;
    top: -4.375rem;
  }
}
.page-gaiju-details .work__title::after {
  content: "";
  width: 3.8125rem;
  height: 6.1875rem;
  position: absolute;
  top: 2.5rem;
  right: -8.75rem;
  background: url(../images/gaiju-details/work_stamp.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__title::after {
    width: 4.25rem;
    height: 6.9375rem;
    top: -2.5rem;
  }
}
.page-gaiju-details .work__text {
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__text {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    text-align: center;
    font-size: 1.125rem;
  }
}
.page-gaiju-details .work__check {
  -webkit-margin-after: 2.6875rem;
          margin-block-end: 2.6875rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-gaiju-details .work__check-title {
  padding-block: 1.25rem;
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check-title {
    padding-block: 1.0625rem;
    font-size: 1.75rem;
  }
}
.page-gaiju-details .work__check-list {
  padding-block: 1.875rem 2.625rem;
  padding-inline: 1.875rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 6.25rem;
       -moz-column-gap: 6.25rem;
            column-gap: 6.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-block: 2rem;
  }
}
.page-gaiju-details .work__check-list::before {
  content: "";
  width: 7.625rem;
  height: 12.25rem;
  position: absolute;
  bottom: -1.9375rem;
  right: -1.25rem;
  background: url(../images/gaiju-details/work_check_list_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check-list::before {
    width: 5.3125rem;
    height: 8.4375rem;
    right: -8.75rem;
  }
}
.page-gaiju-details .work__check-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check-item {
    gap: 0.9375rem;
  }
}
.page-gaiju-details .work__check-item:not(:last-child) {
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
.page-gaiju-details .work__check-item::before {
  content: "";
  width: 2.25rem;
  height: 1.8125rem;
  background: url(../images/gaiju-details/work_check_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check-item::before {
    width: 1.5625rem;
    height: 1.25rem;
  }
}
.page-gaiju-details .work__check-item p {
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__check-item p {
    font-size: 1.125rem;
  }
}
.page-gaiju-details .work__foot {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__foot {
    font-size: 1.75rem;
  }
}
.page-gaiju-details .work__foot--medium {
  font-size: 3rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__foot--medium {
    font-size: 1.75rem;
  }
}
.page-gaiju-details .work__foot--large {
  font-size: 3.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .work__foot--large {
    font-size: 2.5rem;
  }
}
.page-gaiju-details .price {
  -webkit-padding-after: 5.25rem;
          padding-block-end: 5.25rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .price {
    -webkit-padding-after: 2.1875rem;
            padding-block-end: 2.1875rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .price__container {
    width: 90rem;
    margin-inline: auto;
    position: relative;
    background: var(--white);
    border-radius: 1.25rem 1.25rem 0 0;
    -webkit-transform: translateY(-3.75rem);
            transform: translateY(-3.75rem);
  }
}
.page-gaiju-details .price__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: -1.875rem;
          margin-block-start: -1.875rem;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  margin-inline: auto;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__title {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 2.75rem;
    -webkit-transform: translateY(-1.25rem);
            transform: translateY(-1.25rem);
  }
}
.page-gaiju-details .price__title-top {
  display: block;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  padding-block: 1rem 1.375rem;
  padding-inline: 9.375rem;
  position: relative;
  background: url(../images/gaiju-details/overview_title_top_bg.webp) no-repeat top left/contain;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__title-top {
    padding-block: 0.875rem 0.875rem;
    padding-inline: 6.0625rem;
    background: url(../images/gaiju-details/overview_title_top_bg--pc.webp) no-repeat top left/contain;
    font-size: 1.75rem;
  }
}
.page-gaiju-details .price__head-text {
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__head-text {
    -webkit-margin-after: 2.0625rem;
            margin-block-end: 2.0625rem;
    font-size: 1.125rem;
  }
}
.page-gaiju-details .price__basic {
  -webkit-margin-after: 4.1875rem;
          margin-block-end: 4.1875rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic {
    -webkit-margin-after: 3.9375rem;
            margin-block-end: 3.9375rem;
  }
}
.page-gaiju-details .price__basic::after {
  content: "";
  width: 3.8125rem;
  height: 4.5625rem;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  background: url(../images/gaiju-details/price_plus_icon.webp) no-repeat top center/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic::after {
    width: 2.4375rem;
    height: 2.8125rem;
    bottom: -1.5rem;
  }
}
.page-gaiju-details .price__basic-title {
  padding-block: 2.5rem;
  background: var(--black);
  border-radius: 0.625rem 0.625rem 0 0;
  text-align: center;
  color: var(--white);
  font-size: 3.125rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic-title {
    padding-block: 1rem;
    font-size: 1.75rem;
  }
}
.page-gaiju-details .price__basic-body {
  padding-block: 1.9375rem 3.625rem;
  padding-inline: 2.9375rem;
  border: 2px solid var(--black);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic-body {
    padding-block: 1.3125rem 1.875rem;
  }
}
.page-gaiju-details .price__basic-body-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
  margin-inline: auto;
  text-align: right;
  font-size: 2.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic-body-title {
    -webkit-margin-after: 1.375rem;
            margin-block-end: 1.375rem;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
  }
}
.page-gaiju-details .price__basic-body-title--small {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic-body-title--small {
    font-size: 0.8125rem;
  }
}
.page-gaiju-details .price__basic-body-title--large {
  color: var(--red);
  font-size: 7.5rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic-body-title--large {
    font-size: 4.75rem;
    letter-spacing: 0.05em;
  }
}
.page-gaiju-details .price__basic-body-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.page-gaiju-details .price__basic-body-text {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__basic-body-text {
    font-size: 0.9375rem;
  }
}
.page-gaiju-details .price__other-title {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-title {
    -webkit-margin-after: 1.3125rem;
            margin-block-end: 1.3125rem;
    font-size: 1.625rem;
  }
}
.page-gaiju-details .price__other-text {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-text {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 1.125rem;
  }
}
.page-gaiju-details .price__other-table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  margin-inline: auto;
  position: relative;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
  }
}
.page-gaiju-details .price__other-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.page-gaiju-details .price__other-table-item p {
  place-content: center;
  width: 22.125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item p {
    width: 12.5rem;
    height: 4.0625rem;
  }
}
.page-gaiju-details .price__other-table-item p:first-child {
  width: 15.9375rem;
  background: var(--black);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item p:first-child {
    width: 12.5rem;
    height: 2.8125rem;
    text-align: center;
    font-size: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-gaiju-details .price__other-table-item p:not(:first-child) {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item p:not(:first-child) {
    padding-inline: 0;
    font-size: 0.875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-gaiju-details .price__other-table-item--large {
  font-size: 2.25rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item--large {
    font-size: 1.3125rem;
  }
}
.page-gaiju-details .price__other-table-item--small {
  font-size: 1.5rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item--small {
    font-size: 0.8125rem;
  }
}
.page-gaiju-details .price__other-table-item:first-child p:first-child {
  height: 5.625rem;
  background: none;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:first-child p:first-child {
    width: 8.5rem;
    height: 2.8125rem;
  }
}
.page-gaiju-details .price__other-table-item:first-child p:not(:first-child) {
  place-content: center;
  background: var(--darkGray);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:first-child p:not(:first-child) {
    height: 4.0625rem;
    font-size: 1rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .price__other-table-item:not(:nth-child(1)) {
    height: 6.4375rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .price__other-table-item:not(:nth-child(1)) p:first-child {
    -webkit-padding-start: 1.875rem;
            padding-inline-start: 1.875rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item p:first-child {
    border-right: 1px dotted var(--white);
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.page-gaiju-details .price__other-table-item:first-child p {
  border-radius: 0.625rem 0.625rem 0 0;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:first-child p {
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .price__other-table-item:not(:first-child) p {
    border-bottom: 1px dotted var(--white);
  }
}
.page-gaiju-details .price__other-table-item:not(:first-child) p:not(:first-child) {
  border-bottom: 1px dotted var(--black);
  border-right: 1px solid var(--black);
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:not(:first-child) p:not(:first-child) {
    border-right: 1px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:not(:first-child) p:last-child {
    border-bottom: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .price__other-table-item:nth-child(2) p:first-child {
    border-radius: 0.625rem 0 0 0;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:last-child p:first-child {
    border-right: none;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .price__other-table-item:last-child p:first-child {
    border-bottom: none;
    border-radius: 0 0 0 0.625rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:last-child p:not(:first-child):not(:last-child) {
    border-right: 1px solid var(--black);
  }
}
.page-gaiju-details .price__other-table-item:last-child p:last-child {
  border-radius: 0 0 0.625rem 0;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-table-item:last-child p:last-child {
    border-right: 1px solid var(--black);
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .price__other-table-item:last-child p:last-child {
    border-bottom: 1px solid var(--black);
  }
}
.page-gaiju-details .price__other-attention {
  width: 37.9375rem;
  margin-inline: auto;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .price__other-attention {
    width: 62.5rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.page-gaiju-details .example {
  padding-block: 6.25rem 6.5rem;
  position: relative;
  background: var(--lightBeige);
}
.page-gaiju-details .example__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 3.375rem;
          margin-block-end: 3.375rem;
  margin-inline: auto;
  position: relative;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__title {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    font-size: 2.75rem;
  }
}
.page-gaiju-details .example__head-text {
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__head-text {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    text-align: center;
    font-size: 1.125rem;
  }
}
.page-gaiju-details .example__price {
  padding-block: 1.75rem;
  padding-inline: 1.875rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price {
    width: 62.5rem;
    margin-inline: auto;
    padding-block: 1.75rem 2.125rem;
    padding-inline: 2.6875rem 2.375rem;
  }
}
.page-gaiju-details .example__price:not(:last-child) {
  -webkit-margin-after: 3rem;
          margin-block-end: 3rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price:not(:last-child) {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-gaiju-details .example__price-title {
  -webkit-margin-after: 0.3125rem;
          margin-block-end: 0.3125rem;
  font-size: 3.125rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-title {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 2rem;
  }
}
.page-gaiju-details .example__price-title-num {
  -webkit-margin-start: 1.75rem;
          margin-inline-start: 1.75rem;
  -webkit-padding-start: 1.75rem;
          padding-inline-start: 1.75rem;
  position: relative;
  color: var(--red);
  font-size: 5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-title-num {
    -webkit-margin-start: 1.25rem;
            margin-inline-start: 1.25rem;
    -webkit-padding-start: 1.5rem;
            padding-inline-start: 1.5rem;
    top: 0.125rem;
    font-size: 3.125rem;
  }
}
.page-gaiju-details .example__price-title-num::before {
  content: "";
  width: 0.1875rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--black);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-title-num::before {
    height: 1.8125rem;
  }
}
.page-gaiju-details .example__price-text {
  -webkit-margin-after: 2.625rem;
          margin-block-end: 2.625rem;
  -webkit-padding-after: 0.8125rem;
          padding-block-end: 0.8125rem;
  border-bottom: 2px dotted var(--black);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-text {
    -webkit-margin-after: 1.5625rem;
            margin-block-end: 1.5625rem;
    -webkit-padding-after: 1.5625rem;
            padding-block-end: 1.5625rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-wrapper {
    display: grid;
    grid-template-areas: "result label" "result total";
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.375rem;
       -moz-column-gap: 1.375rem;
            column-gap: 1.375rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-results {
    grid-area: result;
  }
}
.page-gaiju-details .example__price-results-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-after: 0.8125rem;
          margin-block-end: 0.8125rem;
  color: var(--white);
  font-size: 2.25rem;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-results-head {
    -webkit-margin-after: 0.6875rem;
            margin-block-end: 0.6875rem;
    font-size: 1.625rem;
  }
}
.page-gaiju-details .example__price-results-head span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  padding-block: 0.8125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-results-head span {
    padding-block: 0.625rem;
  }
}
.page-gaiju-details .example__price-results-head span:first-child {
  width: 19rem;
  padding-inline: 5.75rem;
  position: relative;
  background: var(--darkGray);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-results-head span:first-child {
    width: 14.375rem;
    padding-inline: 4.375rem;
  }
}
.page-gaiju-details .example__price-results-head span:nth-child(2) {
  width: 20rem;
  margin-inline: -1.5625rem 0;
  padding-inline: 6.875rem 6.875rem;
  background: var(--blue-1);
  text-align: right;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-results-head span:nth-child(2) {
    width: 15.1875rem;
    margin-inline: -1.125rem 0;
    padding-inline: 5.125rem 5.75rem;
  }
}
.page-gaiju-details .example__price-results-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-results-body {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.page-gaiju-details .example__price-label {
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  padding-block: 2.0625rem;
  padding-inline: 1.875rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-label {
    grid-area: label;
    margin-block: 3.5625rem 1.4375rem;
    padding-block: 1.875rem;
    padding-inline: 1.875rem;
  }
}
.page-gaiju-details .example__price-label-title {
  width: 12.5rem;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  padding-block: 0.625rem;
  background: var(--black);
  border-radius: 0.3125rem;
  text-align: center;
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-label-title {
    width: 7.75rem;
    -webkit-margin-after: 0.375rem;
            margin-block-end: 0.375rem;
    padding-block: 0.375rem;
    font-size: 1rem;
  }
}
.page-gaiju-details .example__price-label-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-label-text {
    font-size: 1.125rem;
  }
}
.page-gaiju-details .example__price-label-text:not(:last-child) {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-label-text:not(:last-child) {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-total {
    grid-area: total;
  }
}
.page-gaiju-details .example__price-total-title {
  text-align: right;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 1.75rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-total-title {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.0625rem;
  }
}
.page-gaiju-details .example__price-total-title--large {
  color: var(--red);
  font-size: 5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-total-title--large {
    font-size: 3.125rem;
  }
}
.page-gaiju-details .example__price-total-text {
  text-align: right;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .example__price-total-text {
    font-size: 0.8125rem;
  }
}
.page-gaiju-details .guarantee {
  padding-block: 0rem 13.375rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee {
    padding-block: 0 11.5rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__container {
    width: 90rem;
    margin-inline: auto;
    background: var(--white);
    border-radius: 1.25rem 1.25rem 0 0;
    -webkit-transform: translateY(-1.875rem);
            transform: translateY(-1.875rem);
  }
}
.page-gaiju-details .guarantee__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: -2.5rem;
          margin-block-start: -2.5rem;
  -webkit-margin-after: 2.8125rem;
          margin-block-end: 2.8125rem;
  margin-inline: auto;
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__title {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 2.75rem;
    -webkit-transform: translateY(-1.25rem);
            transform: translateY(-1.25rem);
  }
}
.page-gaiju-details .guarantee__title-top {
  display: block;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  padding-block: 1rem 1rem;
  padding-inline: 9.75rem;
  position: relative;
  background: url(../images/gaiju-details/overview_title_top_bg.webp) no-repeat top left/contain;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__title-top {
    padding-block: 0.75rem 0.75rem;
    padding-inline: 4.875rem;
    background: url(../images/gaiju-details/overview_title_top_bg--pc.webp) no-repeat top left/contain;
    font-size: 1.75rem;
  }
}
.page-gaiju-details .guarantee__head-text {
  -webkit-margin-after: 2.875rem;
          margin-block-end: 2.875rem;
  padding-inline: 2.8125rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__head-text {
    -webkit-margin-after: 2.875rem;
            margin-block-end: 2.875rem;
    padding-inline: 0;
    text-align: center;
    font-size: 1.125rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem 3.125rem;
  }
}
.page-gaiju-details .guarantee__body-list-item {
  display: grid;
  grid-template-areas: "ribon lead" "text text";
  grid-template-columns: 5.375rem 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem 1.125rem;
  padding-block: 1.75rem 2.5rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--lightBeige);
  border-radius: 0.625rem;
  color: var(--black);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-list-item {
    display: block;
    height: 13.25rem;
    margin-block: 0;
    margin-inline: 0;
    padding-block: 2.125rem;
    padding-inline: 7.1875rem 2.625rem;
    position: relative;
    border: none;
  }
}
@media (max-width: 750px) {
  .page-gaiju-details .guarantee__body-list-item:not(:last-child) {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.page-gaiju-details .guarantee__body-list-item:nth-of-type(1) .guarantee__body-lead {
  position: relative;
  top: -0.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-list-item:nth-of-type(1) .guarantee__body-lead {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.page-gaiju-details .guarantee__body-list-item:nth-of-type(2) .guarantee__body-lead {
  position: relative;
  top: -0.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-list-item:nth-of-type(2) .guarantee__body-lead {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.page-gaiju-details .guarantee__body-list-item:nth-of-type(3) .guarantee__body-lead {
  letter-spacing: 0.025em;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-list-item:nth-of-type(3) .guarantee__body-lead {
    -webkit-padding-before: 0.625rem;
            padding-block-start: 0.625rem;
  }
}
.page-gaiju-details .guarantee__body-list-item:nth-of-type(4) .guarantee__body-lead {
  letter-spacing: 0.025em;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-list-item:nth-of-type(4) .guarantee__body-lead {
    -webkit-padding-before: 0.625rem;
            padding-block-start: 0.625rem;
  }
}
.page-gaiju-details .guarantee__body-ribon {
  grid-area: ribon;
  width: 100%;
  padding-block: 0.6875rem 1.6875rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-ribon {
    width: 3.875rem;
    padding-block: 0.5rem 0.875rem;
    position: absolute;
    top: 2.125rem;
    left: 2.125rem;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
.page-gaiju-details .guarantee__body-ribon--large {
  -webkit-margin-before: 0.6875rem;
          margin-block-start: 0.6875rem;
  font-size: 2.125rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-ribon--large {
    -webkit-margin-before: 0.5rem;
            margin-block-start: 0.5rem;
    font-size: 1.5rem;
  }
}
.page-gaiju-details .guarantee__body-lead {
  grid-area: lead;
  font-size: 3.125rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-lead {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 2rem;
  }
}
.page-gaiju-details .guarantee__body-lead--small {
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-lead--small {
    font-size: 1.5rem;
  }
}
.page-gaiju-details .guarantee__body-lead--medium {
  font-size: 3rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-lead--medium {
    font-size: 1.875rem;
  }
}
.page-gaiju-details .guarantee__body-lead--large {
  font-size: 5rem;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-lead--large {
    font-size: 3.25rem;
  }
}
.page-gaiju-details .guarantee__body-text {
  grid-area: text;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-details .guarantee__body-text {
    font-size: 1rem;
  }
}

.page-gaiju-rat .hero__title {
  padding-block: 1.125rem 2.1875rem;
  padding-inline: 3.8125rem 6.3125rem;
  background: url(../images/gaiju-details/rat/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-gaiju-rat .hero__title {
    padding-block: 1.0625rem 1.8125rem;
    padding-inline: 4.0625rem 5.3125rem;
    background: url(../images/gaiju-details/rat/hero_title_bg--pc.webp) no-repeat top left/contain;
  }
}
.page-gaiju-rat .hero__title-head {
  -webkit-margin-start: 0.4375rem;
          margin-inline-start: 0.4375rem;
}
@media (min-width: 751px) {
  .page-gaiju-rat .hero__title-head {
    -webkit-margin-start: 0.5rem;
            margin-inline-start: 0.5rem;
  }
}
.page-gaiju-rat .overview__title-top {
  padding-block: 0.875rem 1.25rem;
}
@media (min-width: 751px) {
  .page-gaiju-rat .overview__title-top {
    padding-block: 0.625rem 1.125rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-rat .overview__body {
    grid-template-columns: 30.75rem 30.25rem;
    -webkit-column-gap: 1.3125rem;
       -moz-column-gap: 1.3125rem;
            column-gap: 1.3125rem;
  }
}
.page-gaiju-rat .damage__title::before {
  content: "";
  width: 11.875rem;
  height: 6rem;
  position: absolute;
  top: -7.875rem;
  left: -1.25rem;
  background: url(../images/gaiju-details/rat/damage_title_rat.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-rat .damage__title::before {
    width: 10.5rem;
    height: 5.3125rem;
    top: -7.1875rem;
    left: -14.375rem;
  }
}
.page-gaiju-rat .price__title-top {
  padding-block: 0.875rem 1.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-rat .price__title-top {
    padding-block: 0.75rem 1.125rem;
  }
}
.page-gaiju-rat .example__title::before {
  content: "";
  width: 13.75rem;
  height: 6.875rem;
  position: absolute;
  top: -8.4375rem;
  right: -13.75rem;
  background: url(../images/gaiju-details/rat/example_title_rat.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-rat .example__title::before {
    width: 10.125rem;
    height: 5.125rem;
    top: -6.625rem;
    left: -15rem;
    right: auto;
    background: url(../images/gaiju-details/rat/example_title_rat--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-rat .guarantee__title-top {
  padding-block: 0.875rem 1.75rem;
}
@media (min-width: 751px) {
  .page-gaiju-rat .guarantee__title-top {
    padding-block: 0.625rem 0.875rem;
  }
}

.page-gaiju-raccoon .hero__title {
  padding-block: 1.125rem 2rem;
  padding-inline: 2.4375rem 5.125rem;
  background: url(../images/gaiju-details/raccoon/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .hero__title {
    padding-block: 1.0625rem 1.6875rem;
    padding-inline: 2.5rem 6rem;
    background: url(../images/gaiju-details/raccoon/hero_title_bg--pc.webp) no-repeat top left/contain;
  }
}
.page-gaiju-raccoon .hero__title-head {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .hero__title-head {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
  }
}
.page-gaiju-raccoon .hero__title-foot {
  -webkit-margin-start: 1.6875rem;
          margin-inline-start: 1.6875rem;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .hero__title-foot {
    -webkit-margin-start: 1.6875rem;
            margin-inline-start: 1.6875rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .what__body-text {
    line-height: 1.8;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .what__body-text--top {
    grid-area: head-text;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .what__body-text--bottom {
    grid-area: head-text;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .what__mv {
    grid-area: mv;
  }
}
.page-gaiju-raccoon .what__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .what__wrapper {
    display: grid;
    grid-template-areas: "mv head-text" "mv body-text";
    grid-template-rows: 1fr 1fr;
  }
}
.page-gaiju-raccoon .damage__title::before {
  content: "";
  width: 10.875rem;
  height: 7.625rem;
  position: absolute;
  top: -7.875rem;
  left: -1.25rem;
  background: url(../images/gaiju-details/raccoon/damage_title_raccoon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .damage__title::before {
    width: 10.875rem;
    height: 7.625rem;
    top: -8.125rem;
    left: -11.25rem;
  }
}
.page-gaiju-raccoon .damage__title::after {
  width: 5rem;
  height: 4.0625rem;
  right: -1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .damage__title::after {
    top: -3.125rem;
    right: -3.75rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-raccoon .damage__item--noise::before {
    top: 1.0625rem;
    right: 3.75rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-raccoon .damage__item--noise .damage__item-lead {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    -webkit-padding-after: 1.4375rem;
            padding-block-end: 1.4375rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-raccoon .damage__item--virus::before {
    top: 1rem;
    right: 3.75rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-raccoon .damage__item--virus .damage__item-lead {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    -webkit-padding-after: 1.3125rem;
            padding-block-end: 1.3125rem;
  }
}
.page-gaiju-raccoon .overview__title-top {
  padding-block: 1.25rem 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .overview__title-top {
    padding-block: 0.875rem 1.5rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .overview__body {
    grid-template-columns: 40rem auto;
    gap: 2.9375rem;
  }
}
.page-gaiju-raccoon .price__title-top {
  padding-block: 1.25rem 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .price__title-top {
    padding-block: 1rem 1.5rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .price__other-table-item p:last-child {
    height: 5.375rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .price__other-table-item:first-child p:last-child {
    height: 5.375rem !important;
  }
}
.page-gaiju-raccoon .price__other-table-item:last-child {
  height: auto;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .price__other-table-item:last-child p {
    width: 25rem;
  }
}
.page-gaiju-raccoon .price__other-table-item:last-child p:last-child {
  padding-block: 1.375rem;
  padding-inline: 2rem;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .price__other-table-item:last-child p:last-child {
    padding-block: 1rem;
    padding-inline: 1.125rem;
    font-size: 0.875rem;
  }
}
.page-gaiju-raccoon .example__title::before {
  content: "";
  width: 11.4375rem;
  height: 8rem;
  position: absolute;
  top: -8.75rem;
  right: -13.75rem;
  background: url(../images/gaiju-details/raccoon/example_title_raccoon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .example__title::before {
    width: 10.375rem;
    height: 7.1875rem;
    top: -8.125rem;
    right: -18.75rem;
    background: url(../images/gaiju-details/raccoon/example_title_raccoon--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-raccoon .guarantee__title-top {
  padding-block: 1.25rem 2.125rem;
}
@media (min-width: 751px) {
  .page-gaiju-raccoon .guarantee__title-top {
    padding-block: 0.875rem 1.25rem;
  }
}

.page-gaiju-weasel .hero__title {
  padding-block: 1.125rem 2rem;
  padding-inline: 2.875rem 8.6875rem;
  background: url(../images/gaiju-details/weasel/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .hero__title {
    padding-block: 1.0625rem 1.75rem;
    padding-inline: 2.6875rem 8.75rem;
    background: url(../images/gaiju-details/weasel/hero_title_bg--pc.webp) no-repeat top left/contain;
  }
}
.page-gaiju-weasel .hero__title-head {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
.page-gaiju-weasel .hero__title-foot {
  -webkit-margin-start: 4.75rem;
          margin-inline-start: 4.75rem;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .hero__title-foot {
    -webkit-margin-start: 4.5625rem;
            margin-inline-start: 4.5625rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-weasel .what__title::before {
    left: -12.5rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-weasel .what__body-text {
    line-height: 1.8;
  }
}
.page-gaiju-weasel .damage__title::before {
  content: "";
  width: 13.8125rem;
  height: 6.75rem;
  position: absolute;
  top: -7.875rem;
  left: -5rem;
  background: url(../images/gaiju-details/weasel/damage_title_raccoon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .damage__title::before {
    width: 13.8125rem;
    height: 6.75rem;
    top: -9.375rem;
    left: -15.625rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-weasel .damage__item--noise::before {
    top: 1.0625rem;
    right: 3.75rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-weasel .damage__item--noise .damage__item-lead {
    -webkit-padding-after: 1.4375rem;
            padding-block-end: 1.4375rem;
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-weasel .damage__item--virus::before {
    top: 1rem;
    right: 3.75rem;
  }
}
@media (max-width: 750px) {
  .page-gaiju-weasel .damage__item--virus .damage__item-lead {
    -webkit-padding-after: 1.3125rem;
            padding-block-end: 1.3125rem;
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.page-gaiju-weasel .overview__title-top {
  padding-block: 0.75rem 1.5rem;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .overview__title-top {
    padding-block: 0.75rem 1rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-weasel .overview__body {
    grid-template-columns: 40rem auto;
    gap: 2.9375rem;
  }
}
.page-gaiju-weasel .price__title-top {
  padding-block: 0.75rem 1.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .price__title-top {
    padding-block: 0.875rem 1rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-weasel .price__other-table-item p:last-child {
    height: 5.375rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-weasel .price__other-table-item:first-child p:last-child {
    height: 5.375rem !important;
  }
}
.page-gaiju-weasel .price__other-table-item:last-child {
  height: auto;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .price__other-table-item:last-child p {
    width: 25rem;
  }
}
.page-gaiju-weasel .price__other-table-item:last-child p:last-child {
  padding-block: 1.375rem;
  padding-inline: 2rem;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .price__other-table-item:last-child p:last-child {
    padding-block: 1rem;
    padding-inline: 1.125rem;
    font-size: 0.875rem;
  }
}
.page-gaiju-weasel .example__title::before {
  content: "";
  width: 13.8125rem;
  height: 6.75rem;
  position: absolute;
  top: -8.75rem;
  right: -14.5625rem;
  background: url(../images/gaiju-details/weasel/example_title_raccoon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .example__title::before {
    width: 11.125rem;
    height: 5.4375rem;
    top: -8.75rem;
    right: -25rem;
    background: url(../images/gaiju-details/weasel/example_title_raccoon--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-weasel .guarantee__title-top {
  padding-block: 0.75rem 1.625rem;
}
@media (min-width: 751px) {
  .page-gaiju-weasel .guarantee__title-top {
    padding-block: 0.5rem 1rem;
  }
}

.page-gaiju-bat .hero__title {
  padding-block: 1.125rem 1.9375rem;
  padding-inline: 4.25rem 7.5625rem;
  background: url(../images/gaiju-details/bat/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-gaiju-bat .hero__title {
    padding-block: 1.0625rem 1.6875rem;
    padding-inline: 4rem 7rem;
    background: url(../images/gaiju-details/bat/hero_title_bg--pc.webp) no-repeat top left/contain;
  }
}
.page-gaiju-bat .hero__title-head {
  -webkit-margin-after: 2.4375rem;
          margin-block-end: 2.4375rem;
}
.page-gaiju-bat .hero__title-foot {
  -webkit-margin-start: 1.875rem;
          margin-inline-start: 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-bat .hero__title-foot {
    -webkit-margin-start: 2.875rem;
            margin-inline-start: 2.875rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-bat .what__title::before {
    left: -11.25rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-bat .what__body-text {
    line-height: 1.8;
  }
}
.page-gaiju-bat .damage__title::before {
  content: "";
  width: 13.75rem;
  height: 6.75rem;
  position: absolute;
  top: -7.875rem;
  left: -5rem;
  background: url(../images/gaiju-details/bat/damage_title_bat.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-bat .damage__title::before {
    width: 13.75rem;
    height: 6.75rem;
    top: -8.125rem;
    left: -13.75rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-bat .damage__title::after {
    top: -3.125rem;
    right: -4.375rem;
  }
}
.page-gaiju-bat .overview__title-top {
  -webkit-padding-after: 1.75rem;
          padding-block-end: 1.75rem;
}
@media (min-width: 751px) {
  .page-gaiju-bat .overview__title-top {
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-bat .overview__body {
    grid-template-columns: 40rem auto;
    grid-template-rows: 0fr 1fr;
    gap: 2.9375rem 2.0625rem;
  }
}
.page-gaiju-bat .price__title-top {
  -webkit-padding-after: 1.75rem;
          padding-block-end: 1.75rem;
}
@media (min-width: 751px) {
  .page-gaiju-bat .price__title-top {
    -webkit-padding-after: 1.5rem;
            padding-block-end: 1.5rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-bat .price__other-table-item p:last-child {
    height: 5.375rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-bat .price__other-table-item:first-child p:last-child {
    height: 5.375rem !important;
  }
}
.page-gaiju-bat .price__other-table-item:last-child {
  height: auto;
}
@media (min-width: 751px) {
  .page-gaiju-bat .price__other-table-item:last-child p {
    width: 25rem;
  }
}
.page-gaiju-bat .price__other-table-item:last-child p:last-child {
  padding-block: 1.375rem;
  padding-inline: 2rem;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-bat .price__other-table-item:last-child p:last-child {
    padding-block: 1rem;
    padding-inline: 1.125rem;
    font-size: 0.875rem;
  }
}
.page-gaiju-bat .example__title::before {
  content: "";
  width: 13.8125rem;
  height: 6.75rem;
  position: absolute;
  top: -8.75rem;
  right: -14.5625rem;
  background: url(../images/gaiju-details/bat/example_title_bat.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-bat .example__title::before {
    width: 13.75rem;
    height: 6.75rem;
    top: -8.75rem;
    right: -25rem;
    background: url(../images/gaiju-details/bat/example_title_bat--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-bat .guarantee__title-top {
  -webkit-padding-after: 1.75rem;
          padding-block-end: 1.75rem;
}
@media (min-width: 751px) {
  .page-gaiju-bat .guarantee__title-top {
    -webkit-padding-after: 1rem;
            padding-block-end: 1rem;
  }
}

.page-gaiju-palm-civet .hero__title {
  padding-block: 1.125rem 2rem;
  padding-inline: 1.875rem 5.1875rem;
  background: url(../images/gaiju-details/palm-civet/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .hero__title {
    padding-block: 1.0625rem 1.6875rem;
    padding-inline: 1.75rem 5.6875rem;
    background: url(../images/gaiju-details/palm-civet/hero_title_bg--pc.webp) no-repeat top left/contain;
  }
}
.page-gaiju-palm-civet .hero__title-head {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .hero__title-head {
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
  }
}
.page-gaiju-palm-civet .hero__title-foot {
  -webkit-margin-start: 2.125rem;
          margin-inline-start: 2.125rem;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .hero__title-foot {
    -webkit-margin-start: 2.375rem;
            margin-inline-start: 2.375rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .what__title::before {
    left: -10rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .what__body-text {
    line-height: 1.8;
  }
}
.page-gaiju-palm-civet .damage__title::before {
  content: "";
  width: 11.9375rem;
  height: 8.5625rem;
  position: absolute;
  top: -9.375rem;
  left: -1.25rem;
  background: url(../images/gaiju-details/palm-civet/damage_title_palm_civet.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .damage__title::before {
    width: 11.875rem;
    height: 8.5625rem;
    top: -10.625rem;
    left: -13.75rem;
  }
}
.page-gaiju-palm-civet .damage__title::after {
  width: 5rem;
  height: 4.0625rem;
  top: -3.75rem;
  right: -1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .damage__title::after {
    top: -3.125rem;
    right: -4.375rem;
  }
}
.page-gaiju-palm-civet .overview__title-top {
  padding-block: 1.25rem 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .overview__title-top {
    padding-block: 1rem 1.25rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .overview__body {
    grid-template-columns: 40rem auto;
    grid-template-rows: 0fr 1fr;
    gap: 2.5rem 3rem;
  }
}
.page-gaiju-palm-civet .price__title-top {
  padding-block: 1.25rem 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .price__title-top {
    padding-block: 1rem 1.5rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .price__other-table-item p:last-child {
    height: 5.375rem;
  }
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .price__other-table-item:first-child p:last-child {
    height: 5.375rem !important;
  }
}
.page-gaiju-palm-civet .price__other-table-item:last-child {
  height: auto;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .price__other-table-item:last-child p {
    width: 25rem;
  }
}
.page-gaiju-palm-civet .price__other-table-item:last-child p:last-child {
  padding-block: 1.375rem;
  padding-inline: 2rem;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .price__other-table-item:last-child p:last-child {
    padding-block: 1rem;
    padding-inline: 1.125rem;
    font-size: 0.875rem;
  }
}
.page-gaiju-palm-civet .example__title::before {
  content: "";
  width: 11.6875rem;
  height: 8.375rem;
  position: absolute;
  top: -8.75rem;
  right: -15.625rem;
  background: url(../images/gaiju-details/palm-civet/example_title_palm_civet.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .example__title::before {
    width: 9.1875rem;
    height: 6.5625rem;
    top: -8.125rem;
    right: -21.875rem;
    background: url(../images/gaiju-details/palm-civet/example_title_palm_civet--pc.webp) no-repeat top left/cover;
  }
}
.page-gaiju-palm-civet .guarantee__title-top {
  padding-block: 1.25rem 1.875rem;
}
@media (min-width: 751px) {
  .page-gaiju-palm-civet .guarantee__title-top {
    padding-block: 0.75rem 1.375rem;
  }
}

.page-faq .hero {
  -webkit-padding-after: 2.375rem;
          padding-block-end: 2.375rem;
  background: var(--white);
}
@media (min-width: 751px) {
  .page-faq .hero {
    -webkit-padding-after: 4.375rem;
            padding-block-end: 4.375rem;
  }
}
.page-faq .hero__title {
  padding-block: 1.25rem 2rem;
  padding-inline: 3.8125rem 4rem;
  background: url(../images/faq/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-faq .hero__title {
    padding-block: 0.8125rem 1.6875rem;
    padding-inline: 4.0625rem 4.5625rem;
    background: url(../images/faq/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-faq .hero__title-head {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
}
@media (min-width: 751px) {
  .page-faq .hero__title-head {
    -webkit-margin-after: 2.375rem;
            margin-block-end: 2.375rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
@media (min-width: 751px) {
  .page-faq .hero__title-foot {
    -webkit-margin-start: 0.625rem;
            margin-inline-start: 0.625rem;
  }
}
.page-faq .hero__img {
  -webkit-margin-after: 6.8125rem;
          margin-block-end: 6.8125rem;
}
@media (min-width: 751px) {
  .page-faq .hero__img {
    -webkit-margin-after: 4.875rem;
            margin-block-end: 4.875rem;
  }
}
.page-faq .hero__text a {
  display: inline-block;
  color: var(--blue-1);
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}
.page-faq .faq {
  -webkit-padding-after: 13.125rem;
          padding-block-end: 13.125rem;
}
@media (min-width: 751px) {
  .page-faq .faq {
    -webkit-padding-after: 11.25rem;
            padding-block-end: 11.25rem;
  }
}
.page-faq .faq__contents:not(:last-child) {
  -webkit-margin-after: 6.25rem;
          margin-block-end: 6.25rem;
}
@media (min-width: 751px) {
  .page-faq .faq__contents:not(:last-child) {
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
  }
}
.page-faq .faq__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3125rem;
  -webkit-margin-after: 3.5rem;
          margin-block-end: 3.5rem;
  -webkit-padding-start: 0.625rem;
          padding-inline-start: 0.625rem;
  position: relative;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-faq .faq__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.125rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    -webkit-padding-start: 3.75rem;
            padding-inline-start: 3.75rem;
    font-size: 1.625rem;
  }
}
.page-faq .faq__title::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  top: 1.625rem;
  background: var(--blue-1);
  border-radius: var(--around);
}
@media (min-width: 751px) {
  .page-faq .faq__title::before {
    width: 0.9375rem;
    height: 0.9375rem;
    top: 0;
  }
}
.page-faq .faq__contents::before {
  content: "";
  display: block;
  width: 100%;
  height: 1.375rem;
  -webkit-margin-after: 2.625rem;
          margin-block-end: 2.625rem;
  background: url(../images/faq/list_border_top.webp) no-repeat top center/cover;
}
@media (min-width: 751px) {
  .page-faq .faq__contents::before {
    height: 0.8125rem;
    -webkit-margin-after: 3.25rem;
            margin-block-end: 3.25rem;
    background: url(../images/faq/list_border_top--pc.webp) no-repeat top center/cover;
  }
}
.page-faq .faq__list {
  padding-inline: 1.875rem;
}
@media (min-width: 751px) {
  .page-faq .faq__list {
    padding-inline: 3.75rem;
  }
}
.page-faq .faq__item:not(:last-child) {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .page-faq .faq__item:not(:last-child) {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}
.page-faq .faq__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4375rem;
  width: calc(100% - 2.8125rem);
}
@media (min-width: 751px) {
  .page-faq .faq__item-wrapper {
    gap: 0.9375rem;
    width: calc(100% - 0.9375rem);
  }
}
.page-faq .faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
  position: relative;
  border-bottom: 0.1875rem dotted var(--black);
}
@media (min-width: 751px) {
  .page-faq .faq__question {
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
  }
}
.page-faq .faq__question::after {
  content: "";
}
.page-faq .faq__question .faq__icon {
  position: relative;
  top: 0.25rem;
}
.page-faq .faq__question-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-faq .faq__question-text {
    font-size: 1.125rem;
  }
}
.page-faq .faq__ancer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4375rem;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
}
@media (min-width: 751px) {
  .page-faq .faq__ancer {
    gap: 0.9375rem;
    -webkit-padding-before: 1.25rem;
            padding-block-start: 1.25rem;
  }
}
.page-faq .faq__ancer .faq__icon {
  color: var(--red);
}
.page-faq .faq__ancer-text {
  font-size: 1.75rem;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-faq .faq__ancer-text {
    font-size: 1rem;
  }
}
.page-faq .faq__ancer-text small {
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .page-faq .faq__ancer-text small {
    font-size: 0.875rem;
  }
}
.page-faq .faq .js-toggle-item {
  display: none;
}
.page-faq .faq__icon {
  font-size: 3.125rem;
  font-family: var(--font-en);
  white-space: nowrap;
}
@media (min-width: 751px) {
  .page-faq .faq__icon {
    font-size: 1.875rem;
  }
}
.page-faq .faq__circle {
  display: block;
  width: 2.8125rem;
  height: 2.8125rem;
  position: relative;
  background: var(--black);
  border-radius: var(--around);
}
@media (min-width: 751px) {
  .page-faq .faq__circle {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.page-faq .faq__circle::before, .page-faq .faq__circle::after {
  content: "";
  width: 1.375rem;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (min-width: 751px) {
  .page-faq .faq__circle::before, .page-faq .faq__circle::after {
    width: 0.625rem;
    height: 0.125rem;
  }
}
.page-faq .faq__circle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-faq .faq__circle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.page-faq .faq .is-active .faq__circle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.page-contact {
  background: var(--lightBeige);
}
.page-contact .hero {
  -webkit-padding-after: 6.1875rem;
          padding-block-end: 6.1875rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-contact .hero {
    -webkit-padding-after: 5.125rem;
            padding-block-end: 5.125rem;
  }
}
.page-contact .hero__title {
  padding-block: 1.25rem 1.875rem;
  padding-inline: 2.375rem 2.25rem;
  background: url(../images/contact/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-contact .hero__title {
    padding-block: 1.125rem 1.75rem;
    padding-inline: 2.5625rem 2.3125rem;
    background: url(../images/contact/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-contact .hero__title-head {
  -webkit-margin-after: 1.9375rem;
          margin-block-end: 1.9375rem;
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
}
@media (min-width: 751px) {
  .page-contact .hero__title-head {
    -webkit-margin-after: 1.9375rem;
            margin-block-end: 1.9375rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.page-contact .hero__img {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-contact .contact {
  -webkit-padding-after: 4.75rem;
          padding-block-end: 4.75rem;
}
@media (min-width: 751px) {
  .page-contact .contact {
    -webkit-padding-after: 6rem;
            padding-block-end: 6rem;
  }
}
.page-contact .contact__title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  color: var(--blue-1);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-contact .contact__title {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    font-size: 1.875rem;
  }
}
.page-contact .contact__head-text {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-contact .contact__head-text {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    text-align: center;
    font-size: 1.125rem;
  }
}
.page-contact .contact__foot-text {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-contact .contact__foot-text {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
    font-size: 1.5rem;
  }
}
.page-contact .contact__foot-tel a {
  text-align: center;
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
}
@media (min-width: 751px) {
  .page-contact .contact__foot-tel a {
    font-size: 2.5rem;
  }
}
.page-contact .form__container {
  -webkit-margin-after: 6.25rem;
          margin-block-end: 6.25rem;
  padding-block: 4.0625rem 6.875rem;
  padding-inline: 1.875rem;
  background: var(--white);
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-contact .form__container {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
    padding-block: 2.5rem 3.75rem;
    padding-inline: 6.25rem;
  }
}
.page-contact .form__title {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-contact .form__title {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    font-size: 1.75rem;
  }
}
@media (min-width: 751px) {
  .page-contact .form__table dl {
    display: grid;
    grid-template-columns: 17.9375rem 27.1875rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 5rem;
  }
}
.page-contact .form__table dl:not(:last-of-type) {
  -webkit-margin-after: 3.25rem;
          margin-block-end: 3.25rem;
}
@media (min-width: 751px) {
  .page-contact .form__table dl:not(:last-of-type) {
    -webkit-margin-after: 1.375rem;
            margin-block-end: 1.375rem;
  }
}
@media (min-width: 751px) {
  .page-contact .form__table dl:last-of-type {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.page-contact .form__table dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3125rem;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-contact .form__table dl dt {
    gap: 0.875rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.125rem;
  }
}
.page-contact .form__table dl dd input,
.page-contact .form__table dl dd textarea {
  width: 100%;
  font-size: 1.75rem;
  border: 1px solid var(--black);
  border-radius: 0.3125rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-contact .form__table dl dd input,
  .page-contact .form__table dl dd textarea {
    font-size: 1rem;
  }
}
.page-contact .form__table dl dd input {
  place-content: center;
  padding-block: 1.75rem;
  padding-inline: 1.75rem;
}
@media (min-width: 751px) {
  .page-contact .form__table dl dd input {
    padding-block: 1rem;
    padding-inline: 1.125rem;
  }
}
.page-contact .form__table dl dd input::-webkit-input-placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd input::-moz-placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd input::-ms-input-placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd input::placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd textarea {
  min-height: 18.75rem;
  padding-block: 2rem;
  padding-inline: 1.4375rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-contact .form__table dl dd textarea {
    min-height: 6.625rem;
    padding-block: 1rem;
    padding-inline: 0.8125rem;
  }
}
.page-contact .form__table dl dd textarea::-webkit-input-placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd textarea::-moz-placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd textarea::-ms-input-placeholder {
  color: #ccc;
}
.page-contact .form__table dl dd textarea::placeholder {
  color: #ccc;
}
@media (max-width: 750px) {
  .page-contact .form__address-num input {
    width: 18.125rem !important;
  }
}
.page-contact .form__require::after, .page-contact .form__optional::after {
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  color: #fff;
  font-size: 1.375rem;
}
@media (min-width: 751px) {
  .page-contact .form__require::after, .page-contact .form__optional::after {
    padding-block: 0.3125rem;
    padding-inline: 0.625rem;
    font-size: 0.875rem;
  }
}
.page-contact .form__require::after {
  content: "必須";
  background: #d9341f;
}
.page-contact .form__optional::after {
  content: "任意";
  background: #999;
}
.page-contact .form__input-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media (min-width: 751px) {
  .page-contact .form__input-wrapper {
    gap: 0.9375rem;
  }
}
.page-contact .form__file {
  height: auto !important;
  padding: 0 !important;
  border: none !important;
}
.page-contact .form__note {
  -webkit-margin-before: 1.3125rem;
          margin-block-start: 1.3125rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-contact .form__note {
    -webkit-margin-before: 0.75rem;
            margin-block-start: 0.75rem;
    font-size: 0.8125rem;
  }
}
@media (min-width: 751px) {
  .page-contact .form__check-box {
    display: grid;
    grid-template-areas: "rat weasel unknown" "palm-civet raccoon ." "bat other .";
    grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content max-content;
    gap: 0.75rem 1.25rem;
  }
}
.page-contact .form__check-box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.625rem;
}
@media (min-width: 751px) {
  .page-contact .form__check-box li {
    gap: 0.75rem;
  }
}
@media (max-width: 750px) {
  .page-contact .form__check-box li:not(:last-child) {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
  }
}
@media (min-width: 751px) {
  .page-contact .form__check-box li:nth-child(1) {
    grid-area: rat;
  }
  .page-contact .form__check-box li:nth-child(2) {
    grid-area: palm-civet;
  }
  .page-contact .form__check-box li:nth-child(3) {
    grid-area: bat;
  }
  .page-contact .form__check-box li:nth-child(4) {
    grid-area: weasel;
  }
  .page-contact .form__check-box li:nth-child(5) {
    grid-area: raccoon;
  }
  .page-contact .form__check-box li:nth-child(6) {
    grid-area: other;
  }
  .page-contact .form__check-box li:nth-child(7) {
    grid-area: unknown;
  }
}
.page-contact .form__check-box input {
  width: 2rem !important;
  height: 2rem !important;
  margin: 0;
}
@media (min-width: 751px) {
  .page-contact .form__check-box input {
    width: 1rem !important;
    height: 1rem !important;
  }
}
.page-contact .form__check-box label {
  font-size: 1.75rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-contact .form__check-box label {
    font-size: 0.9375rem;
  }
}
.page-contact .form__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .page-contact .form__button {
    width: 25rem;
    -webkit-margin-before: 2.6875rem;
            margin-block-start: 2.6875rem;
  }
}
.page-contact .form__button button {
  display: block;
  place-content: center;
  width: 32.375rem;
  height: 7.6875rem;
  background: var(--red);
  border-radius: var(--around);
  color: var(--white);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-box-shadow: 0 0.5rem 0 #881f12;
          box-shadow: 0 0.5rem 0 #881f12;
}
@media (min-width: 751px) {
  .page-contact .form__button button {
    width: 25rem;
    height: 3.75rem;
    font-size: 1.375rem;
    -webkit-box-shadow: 0 0.25rem 0 #881f12;
            box-shadow: 0 0.25rem 0 #881f12;
  }
}
.page-contact .form__button button:disabled {
  background: var(--gray);
  -webkit-box-shadow: 0 0.5rem 0 #999999;
          box-shadow: 0 0.5rem 0 #999999;
}
@media (min-width: 751px) {
  .page-contact .form__button button:disabled {
    -webkit-box-shadow: 0 0.25rem 0 #999999;
            box-shadow: 0 0.25rem 0 #999999;
  }
}
@media (max-width: 750px) {
  .page-contact .form .error-msg-balloon {
    left: auto !important;
    right: 5rem;
  }
}
.page-contact .form .error-msg-balloon span {
  padding-inline: 0.3125rem;
  position: relative;
  background: var(--red);
  color: var(--white);
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-contact .form .error-msg-balloon span {
    font-size: 0.875rem;
  }
}
.page-contact .form .error-msg-balloon span::before {
  content: "";
  width: 0.5rem;
  height: 0.3125rem;
  position: absolute;
  bottom: -0.3125rem;
  left: 50%;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.page-confirm {
  background: var(--lightBeige);
}
.page-confirm .hero {
  -webkit-padding-after: 6.1875rem;
          padding-block-end: 6.1875rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-confirm .hero {
    -webkit-padding-after: 5.125rem;
            padding-block-end: 5.125rem;
  }
}
.page-confirm .hero__title {
  padding-block: 1.25rem 1.75rem;
  padding-inline: 2.375rem 2.25rem;
  background: url(../images/contact/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-confirm .hero__title {
    padding-block: 1.125rem 1.75rem;
    padding-inline: 2.5625rem 2.3125rem;
    background: url(../images/contact/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-confirm .hero__title-head {
  -webkit-margin-after: 1.9375rem;
          margin-block-end: 1.9375rem;
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
}
@media (min-width: 751px) {
  .page-confirm .hero__title-head {
    -webkit-margin-after: 1.9375rem;
            margin-block-end: 1.9375rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.page-confirm .hero__img {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-confirm .contact {
  -webkit-padding-after: 6.0625rem;
          padding-block-end: 6.0625rem;
}
@media (min-width: 751px) {
  .page-confirm .contact {
    -webkit-padding-after: 6.375rem;
            padding-block-end: 6.375rem;
  }
}
.page-confirm .contact__title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  color: var(--blue-1);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-confirm .contact__title {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    font-size: 1.875rem;
  }
}
.page-confirm .contact__head-text {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-confirm .contact__head-text {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    text-align: center;
    font-size: 1.125rem;
  }
}
.page-confirm .form__container {
  -webkit-margin-after: 6.25rem;
          margin-block-end: 6.25rem;
  padding-block: 2.5rem 6.25rem;
  padding-inline: 1.25rem;
  background: var(--white);
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-confirm .form__container {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
    padding-block: 2.5rem 3.125rem;
    padding-inline: 3.75rem;
  }
}
.page-confirm .form__title {
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-confirm .form__title {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
    font-size: 1.75rem;
  }
}
@media (min-width: 751px) {
  .page-confirm .form__table dl {
    display: grid;
    grid-template-columns: 17.9375rem 27.1875rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 5rem;
    padding-inline: 2.5rem;
  }
}
.page-confirm .form__table dl:not(:last-of-type) {
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
}
@media (min-width: 751px) {
  .page-confirm .form__table dl:not(:last-of-type) {
    -webkit-margin-after: 1.5625rem;
            margin-block-end: 1.5625rem;
  }
}
@media (min-width: 751px) {
  .page-confirm .form__table dl:nth-of-type(even) {
    padding-block: 1.125rem;
    background: #ecebe6;
  }
}
@media (min-width: 751px) {
  .page-confirm .form__table dl:last-of-type {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.page-confirm .form__table dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.3125rem;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .page-confirm .form__table dl dt {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
    padding-block: 1.25rem;
    padding-inline: 1.375rem;
    background: #ecebe6;
  }
}
@media (min-width: 751px) {
  .page-confirm .form__table dl dt {
    gap: 0.875rem;
    font-size: 1.125rem;
  }
}
.page-confirm .form__table dl dd {
  padding-inline: 1.375rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-confirm .form__table dl dd {
    padding-inline: 0;
    font-size: 1rem;
  }
}
@media (min-width: 751px) {
  .page-confirm .form__check-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem;
  }
}
.page-confirm .form__require::after, .page-confirm .form__optional::after {
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  color: #fff;
  font-size: 1.375rem;
}
@media (min-width: 751px) {
  .page-confirm .form__require::after, .page-confirm .form__optional::after {
    padding-block: 0.3125rem;
    padding-inline: 0.625rem;
    font-size: 0.875rem;
  }
}
.page-confirm .form__require::after {
  content: "必須";
  background: #d9341f;
}
.page-confirm .form__optional::after {
  content: "任意";
  background: #999;
}
.page-confirm .form__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 5.625rem;
          margin-block-start: 5.625rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .page-confirm .form__button {
    width: 25rem;
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}
.page-confirm .form__button button {
  display: block;
  place-content: center;
  margin-inline: auto;
  border-radius: var(--around);
  cursor: pointer;
}
.page-confirm .form__button button:nth-child(1) {
  width: 32.375rem;
  height: 7.6875rem;
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 0 0.5rem 0 #881f12;
          box-shadow: 0 0.5rem 0 #881f12;
}
@media (min-width: 751px) {
  .page-confirm .form__button button:nth-child(1) {
    width: 25rem;
    height: 3.75rem;
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 1.375rem;
    -webkit-box-shadow: 0 0.25rem 0 #881f12;
            box-shadow: 0 0.25rem 0 #881f12;
  }
}
.page-confirm .form__button button:nth-child(2) {
  width: 25rem;
  height: 6.25rem;
  position: relative;
  background: var(--white);
  border: 0.25rem solid var(--black);
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-confirm .form__button button:nth-child(2) {
    width: 18.75rem;
    height: 3.75rem;
    border-width: 0.125rem;
    font-size: 1.375rem;
  }
}
.page-confirm .form__button button:nth-child(2):before {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 50%;
  left: 2.125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 751px) {
  .page-confirm .form__button button:nth-child(2):before {
    width: 1.625rem;
    height: 1.625rem;
    left: 1.4375rem;
  }
}

.page-thanks .contact {
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
  padding-bottom: 6.5rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-thanks .contact {
    -webkit-margin-before: 8.75rem;
            margin-block-start: 8.75rem;
  }
}
.page-thanks .contact__title {
  -webkit-margin-after: 6.0625rem;
          margin-block-end: 6.0625rem;
  padding-block: 5.3125rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .page-thanks .contact__title {
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
    padding-block: 5rem;
    letter-spacing: 0.05em;
  }
}
.page-thanks .contact__text {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-thanks .contact__text {
    text-align: center;
    font-size: 1.125rem;
  }
}
.page-thanks .contact__text:last-child {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
}
.page-thanks .contact__text small {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-thanks .contact__text small {
    font-size: 1.125rem;
  }
}
.page-thanks .contact__tel {
  -webkit-margin-after: 4.375rem;
          margin-block-end: 4.375rem;
  text-align: center;
}
@media (min-width: 751px) {
  .page-thanks .contact__tel {
    -webkit-margin-after: 3.4375rem;
            margin-block-end: 3.4375rem;
  }
}
.page-thanks .contact__tel a {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.3125rem;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-thanks .contact__tel a {
    text-decoration-thickness: 0.125rem;
  }
}
.page-thanks .contact__button a {
  display: block;
  place-content: center;
  width: 25rem;
  height: 6.25rem;
  margin-inline: auto;
  position: relative;
  background: var(--white);
  border-radius: var(--around);
  border: 0.25rem solid var(--black);
  text-align: center;
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .page-thanks .contact__button a {
    width: 18.75rem;
    height: 3.75rem;
    border-width: 0.125rem;
    font-size: 1.375rem;
    letter-spacing: 0.1em;
  }
}
.page-thanks .contact__button a:before {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  position: absolute;
  top: 50%;
  left: 2.125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 751px) {
  .page-thanks .contact__button a:before {
    width: 1.625rem;
    height: 1.625rem;
    left: 1.4375rem;
  }
}

.page-voice .hero {
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
  background: var(--white);
}
.page-voice .hero__title {
  padding-block: 1.25rem 1.75rem;
  padding-inline: 3.625rem 5.8125rem;
  background: url(../images/voice/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-voice .hero__title {
    padding-block: 1.125rem 1.75rem;
    padding-inline: 3.375rem 3.75rem;
    background: url(../images/voice/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-voice .hero__title-head {
  -webkit-margin-after: 1.1875rem;
          margin-block-end: 1.1875rem;
}
@media (min-width: 751px) {
  .page-voice .hero__title-head {
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}
.page-voice .hero__title-foot {
  -webkit-margin-start: 1.25rem;
          margin-inline-start: 1.25rem;
}
@media (min-width: 751px) {
  .page-voice .hero__title-foot {
    -webkit-margin-start: 0.875rem;
            margin-inline-start: 0.875rem;
  }
}
.page-voice .hero__text {
  -webkit-margin-after: 4.375rem;
          margin-block-end: 4.375rem;
}
.page-voice .article {
  -webkit-padding-after: 14.375rem;
          padding-block-end: 14.375rem;
}
.page-voice .article__item {
  -webkit-margin-after: 5.25rem;
          margin-block-end: 5.25rem;
  border: 0.25rem solid var(--black);
  border-radius: 0.625rem;
  position: relative;
}
@media (min-width: 751px) {
  .page-voice .article__item {
    display: grid;
    grid-template-columns: 25rem 1fr;
    -webkit-margin-after: 3.5625rem;
            margin-block-end: 3.5625rem;
    border-width: 0.125rem;
  }
}
.page-voice .article__item:last-of-type {
  -webkit-margin-after: 4.25rem;
          margin-block-end: 4.25rem;
}
@media (min-width: 751px) {
  .page-voice .article__item:last-of-type {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
  }
}
.page-voice .article__title {
  width: 26.875rem;
  position: absolute;
  top: -1.5625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), color-stop(55%, var(--white)), color-stop(55%, var(--beige)), to(var(--beige)));
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 55%, var(--beige) 55%, var(--beige) 100%);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .page-voice .article__title {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 751px) {
  .page-voice .article__title {
    width: 15.625rem;
    top: -0.75rem;
    left: 4.6875rem;
    font-size: 1.125rem;
  }
}
.page-voice .article__thumb {
  padding-block: 3.25rem 2.6875rem;
  padding-inline: 1.875rem;
  background: var(--beige);
  border-radius: 0.625rem 0.625rem 0 0;
}
@media (min-width: 751px) {
  .page-voice .article__thumb {
    padding-block: 2.5rem;
    padding-inline: 2.5rem;
    border-radius: 0.625rem 0 0 0.625rem;
  }
}
.page-voice .article__thumb picture {
  height: 26.625rem;
}
@media (min-width: 751px) {
  .page-voice .article__thumb picture {
    height: 15rem;
  }
}
.page-voice .article__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.page-voice .article__wrapper {
  padding-block: 2.5rem 3.125rem;
  padding-inline: 1.875rem;
  background: var(--white);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .page-voice .article__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 2.5rem;
    border-radius: 0 0.625rem 0.625rem 0;
  }
}
.page-voice .article__wrapper p {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  font-size: 1.75rem;
  line-height: 1.6;
}
@media (min-width: 751px) {
  .page-voice .article__wrapper p {
    font-size: 1rem;
  }
}
.page-voice .article__wrapper p:last-of-type {
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
}
@media (min-width: 751px) {
  .page-voice .article__wrapper p:last-of-type {
    -webkit-margin-after: 0.9375rem;
            margin-block-end: 0.9375rem;
  }
}
.page-voice .article__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.625rem;
}
@media (min-width: 751px) {
  .page-voice .article__link {
    -webkit-margin-before: auto;
            margin-block-start: auto;
    margin-inline: auto 3.75rem;
    font-size: 1.125rem;
    text-decoration-thickness: 0.125rem;
    text-underline-offset: 0.3125rem;
  }
}
.page-voice .article__link::after {
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  position: absolute;
  top: 50%;
  right: -4.8125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 751px) {
  .page-voice .article__link::after {
    width: 1.875rem;
    height: 1.875rem;
    right: -3.4375rem;
  }
}

@media (min-width: 751px) {
  .single-voice__container .l-container {
    width: 52.5rem;
  }
}
.single-voice .hero {
  -webkit-padding-after: 10.375rem;
          padding-block-end: 10.375rem;
  overflow-x: hidden;
}
@media (min-width: 751px) {
  .single-voice .hero {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-after: 8.5625rem;
            padding-block-end: 8.5625rem;
  }
}
.single-voice .hero__title {
  padding-block: 1.25rem 2rem;
  padding-inline: 3.25rem 8.3125rem;
  top: 8.875rem;
  background: url(../images/voice/single/hero_title_bg.webp) no-repeat top left/contain;
  z-index: 1;
}
@media (min-width: 751px) {
  .single-voice .hero__title {
    padding-block: 1.0625rem 1.6875rem;
    padding-inline: 2.9375rem 7.125rem;
    top: 10.0625rem;
    background: url(../images/voice/single/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.single-voice .hero__title-head {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
}
@media (min-width: 751px) {
  .single-voice .hero__title-head {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
  }
}
.single-voice .hero__title-foot {
  -webkit-margin-start: 4.375rem;
          margin-inline-start: 4.375rem;
}
@media (min-width: 751px) {
  .single-voice .hero__title-foot {
    -webkit-margin-start: 4.5rem;
            margin-inline-start: 4.5rem;
  }
}
.single-voice .hero__img {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
@media (min-width: 751px) {
  .single-voice .hero__img {
    min-width: 2000px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.single-voice .post__title {
  -webkit-margin-after: 2.3125rem;
          margin-block-end: 2.3125rem;
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
  border-bottom: 0.25rem solid var(--black);
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-voice .post__title {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    border-width: 0.125rem;
    font-size: 1.5rem;
  }
}
.single-voice .post__container {
  -webkit-margin-after: 7.9375rem;
          margin-block-end: 7.9375rem;
}
@media (min-width: 751px) {
  .single-voice .post__container {
    display: grid;
    grid-template-columns: 30rem 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 2.8125rem;
    -webkit-margin-after: 7.875rem;
            margin-block-end: 7.875rem;
  }
}
.single-voice .post__thumb {
  height: 46.625rem;
  -webkit-margin-after: 4.5625rem;
          margin-block-end: 4.5625rem;
}
@media (min-width: 751px) {
  .single-voice .post__thumb {
    height: 33.75rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
.single-voice .post__thumb img {
  height: 90%;
  border: 1px solid #cbcdce;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 95%;
     object-position: 50% 95%;
}
.single-voice .post__lead {
  -webkit-margin-after: 2.1875rem;
          margin-block-end: 2.1875rem;
  -webkit-padding-after: 1.6875rem;
          padding-block-end: 1.6875rem;
  border-bottom: 0.125rem dotted var(--black);
  font-size: 1.6875rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-voice .post__lead {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    -webkit-padding-after: 0.875rem;
            padding-block-end: 0.875rem;
    font-size: 1.125rem;
  }
}
.single-voice .post__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-margin-after: 4.5rem;
          margin-block-end: 4.5rem;
}
@media (min-width: 751px) {
  .single-voice .post__list {
    -webkit-margin-after: 1.75rem;
            margin-block-end: 1.75rem;
  }
}
.single-voice .post__list:last-of-type {
  -webkit-margin-after: 7.625rem;
          margin-block-end: 7.625rem;
}
@media (min-width: 751px) {
  .single-voice .post__list:last-of-type {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.single-voice .post__item {
  place-content: center;
  height: 5rem;
  background: #bcbcbc;
  text-align: center;
  color: var(--darkGray);
  font-size: 1.625rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .single-voice .post__item {
    height: 2.8125rem;
    font-size: 0.9375rem;
  }
}
.single-voice .post__item:first-child {
  border-radius: 0.625rem 0 0 0.625rem;
}
.single-voice .post__item:last-child {
  border-radius: 0 0.625rem 0.625rem 0;
}
.single-voice .post__item:not(:last-child) {
  border-right: 0.125rem dotted var(--white);
}
.single-voice .post__item.is-active {
  background: var(--blue-1);
  color: var(--white);
}
.single-voice .post__feedback {
  padding-block: 4.1875rem 2.9375rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--beige);
  border: 0.1875rem solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .single-voice .post__feedback {
    padding-block: 2.5rem 2.0625rem;
    padding-inline: 1.25rem 1.0625rem;
  }
}
.single-voice .post__feedback-title {
  width: 21.5625rem;
  position: absolute;
  top: -1.5625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), color-stop(55%, var(--white)), color-stop(55%, var(--beige)), to(var(--beige)));
  background: linear-gradient(to bottom, var(--white) 0%, var(--white) 55%, var(--beige) 55%, var(--beige) 100%);
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (max-width: 750px) {
  .single-voice .post__feedback-title {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 751px) {
  .single-voice .post__feedback-title {
    width: 13.125rem;
    top: -0.75rem;
    left: 50%;
    font-size: 1.125rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.single-voice .post__feedback-text {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-voice .post__feedback-text {
    font-size: 1rem;
  }
}
.single-voice .post__feedback-text:not(:last-child) {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.single-voice .sidebar {
  -webkit-margin-after: 7.375rem;
          margin-block-end: 7.375rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar {
    height: auto;
    -webkit-margin-before: 0;
            margin-block-start: 0;
    -webkit-margin-after: 6.125rem;
            margin-block-end: 6.125rem;
    position: relative;
    top: auto;
  }
}
@media (min-width: 751px) {
  .single-voice .sidebar__container {
    width: 62.5rem;
  }
}
.single-voice .sidebar__title {
  -webkit-margin-after: 2.9375rem;
          margin-block-end: 2.9375rem;
  -webkit-padding-after: 0;
          padding-block-end: 0;
  border-bottom: 0;
  text-align: center;
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar__title {
    -webkit-margin-after: 3.1875rem;
            margin-block-end: 3.1875rem;
    font-size: 1.875rem;
  }
}
@media (min-width: 751px) {
  .single-voice .sidebar__wrapper {
    height: auto;
    overflow-y: hidden;
  }
}
.single-voice .sidebar__article {
  padding: 0 !important;
  border-bottom: none !important;
  background: var(--lightBeige);
  border-radius: 0.9375rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar__article {
    border-radius: 0.625rem;
  }
}
.single-voice .sidebar__article:not(:last-of-type) {
  -webkit-margin-after: 2.875rem;
          margin-block-end: 2.875rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar__article:not(:last-of-type) {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}
.single-voice .sidebar__article a {
  gap: 0;
}
@media (min-width: 751px) {
  .single-voice .sidebar__article a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.single-voice .sidebar__article-wrapper {
  gap: 0;
  padding-block: 1.125rem;
  padding-inline: 1.875rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar__article-wrapper {
    padding-block: 1.6875rem;
    padding-inline: 3.125rem;
  }
}
.single-voice .sidebar__article-title {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar__article-title {
    -webkit-margin-after: 0.8125rem;
            margin-block-end: 0.8125rem;
    font-size: 1.25rem;
  }
}
.single-voice .sidebar__article-date::before {
  display: none;
}
.single-voice .sidebar__article-thumb {
  width: 12.75rem;
  height: 12.75rem;
}
@media (min-width: 751px) {
  .single-voice .sidebar__article-thumb {
    width: 12.5rem;
    height: 6.875rem;
  }
}
.single-voice .sidebar__article-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.single-voice .back {
  -webkit-margin-after: 14.0625rem;
          margin-block-end: 14.0625rem;
}
@media (min-width: 751px) {
  .single-voice .back {
    -webkit-margin-after: 11.0625rem;
            margin-block-end: 11.0625rem;
  }
}
.single-voice .back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-block: 1.6875rem;
  padding-inline: 2.125rem 7.875rem;
  border: 0.25rem solid var(--black);
  border-radius: var(--around);
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-voice .back a {
    gap: 2.75rem;
    padding-block: 1.0625rem;
    padding-inline: 1.4375rem 5.625rem;
    border-width: 0.125rem;
    font-size: 1.375rem;
  }
}
.single-voice .back a::before {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top center/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 751px) {
  .single-voice .back a::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.page-case {
  background: var(--lightBeige);
}
.page-case .hero {
  -webkit-padding-after: 5.4375rem;
          padding-block-end: 5.4375rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .page-case .hero {
    -webkit-padding-after: 4rem;
            padding-block-end: 4rem;
  }
}
.page-case .hero__title {
  padding-block: 1.125rem 1.875rem;
  padding-inline: 3.875rem 8rem;
  background: url(../images/case/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-case .hero__title {
    padding-block: 1.0625rem 1.625rem;
    padding-inline: 3.6875rem 5.25rem;
    background: url(../images/case/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
@media (min-width: 751px) {
  .page-case .hero__title-head {
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}
.page-case .hero__title-foot {
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
}
@media (min-width: 751px) {
  .page-case .hero__title-foot {
    -webkit-margin-start: 1.75rem;
            margin-inline-start: 1.75rem;
  }
}
.page-case .case {
  -webkit-padding-after: 14.5625rem;
          padding-block-end: 14.5625rem;
}
@media (min-width: 751px) {
  .page-case .case {
    -webkit-padding-after: 10.125rem;
            padding-block-end: 10.125rem;
  }
}
.page-case .case__item {
  display: grid;
  grid-template-areas: "img" "title" "text" "table" "link";
  padding-block: 2.5rem 3.75rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .page-case .case__item {
    grid-template-areas: "img title" "img text" ". link" "table table";
    grid-template-columns: 21.25rem 1fr;
  }
}
.page-case .case__item:not(:last-child) {
  -webkit-margin-after: 5.5rem;
          margin-block-end: 5.5rem;
}
@media (min-width: 751px) {
  .page-case .case__item:not(:last-child) {
    -webkit-margin-after: 3.125rem;
            margin-block-end: 3.125rem;
  }
}
.page-case .case__top {
  padding-inline: 1.25rem;
  position: absolute;
  top: -1.625rem;
  left: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--lightBeige)), color-stop(50%, var(--lightBeige)), color-stop(50%, var(--white)), to(var(--white)));
  background: linear-gradient(to bottom, var(--lightBeige) 0%, var(--lightBeige) 50%, var(--white) 50%, var(--white) 100%);
  color: var(--red);
  font-size: 2.75rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .page-case .case__top {
    padding-inline: 0.9375rem;
    top: -1.125rem;
    left: 5.9375rem;
    font-size: 1.875rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.page-case .case__top--large {
  font-size: 3.375rem;
}
@media (min-width: 751px) {
  .page-case .case__top--large {
    font-size: 2.375rem;
  }
}
.page-case .case__title {
  grid-area: title;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-case .case__title {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    font-size: 1.375rem;
  }
}
.page-case .case__text {
  grid-area: text;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-case .case__text {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1rem;
  }
}
.page-case .case__img {
  grid-area: img;
  -webkit-margin-after: 2.75rem;
          margin-block-end: 2.75rem;
}
@media (min-width: 751px) {
  .page-case .case__img {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    -webkit-margin-end: 1.875rem;
            margin-inline-end: 1.875rem;
  }
}
.page-case .case__link {
  grid-area: link;
}
.page-case .case__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.625rem;
}
@media (min-width: 751px) {
  .page-case .case__link a {
    gap: 1.1875rem;
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    margin-inline: auto 0;
    font-size: 1.125rem;
    text-decoration-thickness: 0.125rem;
    text-underline-offset: 0.375rem;
  }
}
.page-case .case__link a::after {
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top center/cover;
}
@media (max-width: 750px) {
  .page-case .case__link a::after {
    position: absolute;
    top: 50%;
    right: -4.8125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (min-width: 751px) {
  .page-case .case__link a::after {
    width: 1.8125rem;
    height: 1.8125rem;
  }
}
.page-case .case__table {
  grid-area: table;
  -webkit-margin-after: 3.25rem;
          margin-block-end: 3.25rem;
  border: 1px solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .page-case .case__table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
@media (max-width: 750px) {
  .page-case .case__table-list {
    display: grid;
    grid-template-columns: 12.9375rem 25.125rem;
  }
}
@media (max-width: 750px) {
  .page-case .case__table-list:not(:last-child) .case__table-head {
    border-bottom: 2px dotted var(--white);
  }
}
@media (min-width: 751px) {
  .page-case .case__table-list:not(:last-child) .case__table-head {
    border-right: 2px dotted var(--white);
  }
}
@media (max-width: 750px) {
  .page-case .case__table-list:not(:last-child) .case__table-body {
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-case .case__table-list:not(:last-child) .case__table-body {
    border-right: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .page-case .case__table-list:first-child .case__table-head {
    border-radius: 0.5rem 0 0 0;
  }
}
@media (min-width: 751px) {
  .page-case .case__table-list:last-child .case__table-head {
    border-radius: 0 0.5rem 0 0;
  }
}
.page-case .case__table-head {
  place-content: center;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .page-case .case__table-head {
    height: 2.8125rem;
    font-size: 1rem;
  }
}
.page-case .case__table-body {
  place-content: center;
  padding-block: 2.1875rem;
  padding-inline: 2.3125rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-case .case__table-body {
    padding-block: 1.875rem;
    padding-inline: 0.625rem;
    text-align: center;
    font-size: 1rem;
  }
}

@media (min-width: 751px) {
  .single-case__container .l-container {
    width: 52.5rem;
  }
}
.single-case .hero {
  -webkit-padding-after: 9.125rem;
          padding-block-end: 9.125rem;
  overflow-x: hidden;
}
@media (min-width: 751px) {
  .single-case .hero {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-after: 8.25rem;
            padding-block-end: 8.25rem;
  }
}
.single-case .hero__title {
  padding-block: 1rem 2rem;
  padding-inline: 2rem 9.125rem;
  top: 8.875rem;
  background: url(../images/case/single/hero_title_bg.webp) no-repeat top left/contain;
  z-index: 1;
}
@media (min-width: 751px) {
  .single-case .hero__title {
    padding-block: 0.8125rem 1.625rem;
    padding-inline: 2.5rem 9.25rem;
    top: 10.0625rem;
    background: url(../images/case/single/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.single-case .hero__title-head {
  -webkit-margin-after: 2.5625rem;
          margin-block-end: 2.5625rem;
}
@media (min-width: 751px) {
  .single-case .hero__title-head {
    -webkit-margin-after: 2.875rem;
            margin-block-end: 2.875rem;
    font-size: 1.375rem;
  }
}
.single-case .hero__title-foot {
  -webkit-margin-start: 6.875rem;
          margin-inline-start: 6.875rem;
  color: var(--red);
}
@media (min-width: 751px) {
  .single-case .hero__title-foot {
    -webkit-margin-start: 5.9375rem;
            margin-inline-start: 5.9375rem;
  }
}
.single-case .hero__img {
  width: 100%;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
@media (min-width: 751px) {
  .single-case .hero__img {
    min-width: 2000px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.single-case .post {
  -webkit-margin-after: 5.125rem;
          margin-block-end: 5.125rem;
}
@media (min-width: 751px) {
  .single-case .post {
    -webkit-margin-after: 2.6875rem;
            margin-block-end: 2.6875rem;
  }
}
.single-case .post__title {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .single-case .post__title {
    -webkit-margin-after: 1.125rem;
            margin-block-end: 1.125rem;
    font-size: 1.625rem;
  }
}
.single-case .date {
  -webkit-margin-after: 5.125rem;
          margin-block-end: 5.125rem;
}
@media (min-width: 751px) {
  .single-case .date {
    -webkit-margin-after: 2.5625rem;
            margin-block-end: 2.5625rem;
  }
}
.single-case .date__title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  -webkit-padding-after: 1.5625rem;
          padding-block-end: 1.5625rem;
  border-bottom: 2px solid var(--black);
  font-size: 1.625rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-case .date__title {
    -webkit-margin-after: 1.375rem;
            margin-block-end: 1.375rem;
    -webkit-padding-after: 2.0625rem;
            padding-block-end: 2.0625rem;
    font-size: 1rem;
  }
}
.single-case .date__title-en {
  display: inline-block;
  -webkit-margin-end: 1.875rem;
          margin-inline-end: 1.875rem;
  color: var(--red);
  font-size: 3.125rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .single-case .date__title-en {
    -webkit-margin-end: 1rem;
            margin-inline-end: 1rem;
    font-size: 2rem;
  }
}
.single-case .date dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
}
.single-case .date dt {
  place-content: center;
  width: 12.9375rem;
  height: 5rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-case .date dt {
    width: 7.5rem;
    height: 2.8125rem;
    -webkit-padding-start: 1.375rem;
            padding-inline-start: 1.375rem;
    text-align: left;
    font-size: 1rem;
  }
}
.single-case .date dt:not(:last-of-type) {
  border-bottom: 2px dotted var(--white);
}
.single-case .date dt:first-of-type {
  border-radius: 0.5rem 0 0 0;
}
@media (min-width: 751px) {
  .single-case .date dt:nth-last-of-type(2) {
    border-bottom: none;
    border-radius: 0 0 0 0.5rem;
  }
}
.single-case .date dt:last-of-type {
  border-radius: 0 0 0 0.5rem;
}
@media (min-width: 751px) {
  .single-case .date dt:last-of-type {
    border-radius: 0;
  }
}
.single-case .date dd {
  place-content: center;
  width: calc(100% - 12.9375rem);
  height: 5rem;
  -webkit-padding-start: 2.3125rem;
          padding-inline-start: 2.3125rem;
  border-right: 1px solid var(--black);
  border-bottom: 2px dotted var(--black);
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-case .date dd {
    width: 18.75rem;
    height: 2.8125rem;
    -webkit-padding-start: 0.9375rem;
            padding-inline-start: 0.9375rem;
    font-size: 1rem;
    font-weight: 400;
  }
}
.single-case .date dd--large {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .single-case .date dd--large {
    font-size: 1.375rem;
  }
}
.single-case .date dd:first-of-type {
  border-top: 1px solid var(--black);
  border-radius: 0 0.5rem 0 0;
}
@media (min-width: 751px) {
  .single-case .date dd:first-of-type {
    border-radius: 0;
  }
}
@media (min-width: 751px) {
  .single-case .date dd:nth-of-type(2) {
    border-top: 1px solid var(--black);
    border-radius: 0 0.5rem 0 0;
  }
}
@media (min-width: 751px) {
  .single-case .date dd:nth-of-type(even) {
    border-right: 1px solid var(--black);
  }
}
@media (min-width: 751px) {
  .single-case .date dd:not(:last-of-type) {
    border-bottom: 2px dotted var(--black);
  }
}
@media (min-width: 751px) {
  .single-case .date dd:nth-last-of-type(2) {
    border-bottom: 1px solid var(--black);
  }
}
.single-case .date dd:last-of-type {
  border-bottom: 1px solid var(--black);
  border-radius: 0 0 0.5rem 0;
}
@media (min-width: 751px) {
  .single-case .date dd:last-of-type {
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
  }
}
.single-case .date p {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-case .date p {
    font-size: 1rem;
  }
}
.single-case .date img {
  display: block;
}
@media (min-width: 751px) {
  .single-case .date img {
    width: 42.5rem;
    margin-inline: auto;
  }
}
.single-case .content h2.wp-block-heading {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  -webkit-padding-after: 1.5625rem;
          padding-block-end: 1.5625rem;
  border-bottom: 2px solid var(--black);
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-case .content h2.wp-block-heading {
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    font-size: 1.5rem;
  }
}
.single-case .content h3.wp-block-heading {
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
  padding-inline: 1.5625rem;
  border-left: 0.125rem solid var(--black);
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-case .content h3.wp-block-heading {
    -webkit-margin-after: 2.125rem;
            margin-block-end: 2.125rem;
    padding-inline: 1.25rem;
    border-width: 0.25rem;
    font-size: 1.375rem;
  }
}
.single-case .content h4.wp-block-heading {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  -webkit-padding-after: 1.5625rem;
          padding-block-end: 1.5625rem;
  border-bottom: 0.125rem dotted var(--black);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-case .content h4.wp-block-heading {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    font-size: 1.25rem;
  }
}
.single-case .content h5.wp-block-heading {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  padding-block: 1.5625rem;
  padding-inline: 1.25rem;
  background: rgba(0, 0, 15, 0.06);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-case .content h5.wp-block-heading {
    -webkit-margin-after: 1.125rem;
            margin-block-end: 1.125rem;
    padding-block: 1rem;
    padding-inline: 0.625rem;
    padding-inline: 1rem;
    font-size: 1.125rem;
  }
}
.single-case .content p {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-case .content p {
    font-size: 1rem;
  }
}
.single-case .content ul {
  -webkit-margin-start: 1em;
          margin-inline-start: 1em;
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  list-style: disc;
}
.single-case .content ul li {
  font-size: 1.875rem;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .single-case .content ul li {
    font-size: 1rem;
  }
}
.single-case .content ul li:not(:last-of-type) {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.single-case .content img {
  display: block;
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
}
@media (min-width: 751px) {
  .single-case .content img {
    width: 42.5rem;
    margin-inline: auto;
  }
}
.single-case .content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
}
.single-case .content dt {
  place-content: center;
  width: 12.9375rem;
  height: 5rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-case .content dt {
    width: 7.5rem;
    height: 2.8125rem;
    -webkit-padding-start: 1.375rem;
            padding-inline-start: 1.375rem;
    text-align: left;
    font-size: 1rem;
  }
}
.single-case .content dt:not(:last-of-type) {
  border-bottom: 2px dotted var(--white);
}
@media (min-width: 751px) {
  .single-case .content dt:first-of-type {
    border-radius: 0.5rem 0 0 0;
  }
}
@media (min-width: 751px) {
  .single-case .content dt:nth-last-of-type(2) {
    border-bottom: none;
    border-radius: 0 0 0 0.5rem;
  }
}
.single-case .content dd {
  place-content: center;
  width: 18.75rem;
  height: 5rem;
  -webkit-padding-start: 2.3125rem;
          padding-inline-start: 2.3125rem;
  font-size: 1.75rem;
  font-weight: 700;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-case .content dd {
    width: 18.75rem;
    height: 2.8125rem;
    -webkit-padding-start: 0.9375rem;
            padding-inline-start: 0.9375rem;
    font-size: 1rem;
    font-weight: 400;
  }
}
.single-case .content dd--large {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .single-case .content dd--large {
    font-size: 1.375rem;
  }
}
.single-case .content dd:first-of-type {
  border-top: 1px solid var(--black);
}
.single-case .content dd:nth-of-type(2) {
  border-radius: 0 0.5rem 0 0;
  border-top: 1px solid var(--black);
}
.single-case .content dd:nth-of-type(even) {
  border-right: 1px solid var(--black);
}
.single-case .content dd:not(:last-of-type) {
  border-bottom: 2px dotted var(--black);
}
.single-case .content dd:nth-last-of-type(2) {
  border-bottom: 1px solid var(--black);
}
.single-case .content dd:nth-last-of-type(1) {
  border-bottom: 1px solid var(--black);
  border-radius: 0 0 0.5rem 0;
}
.single-case .back {
  margin-block: 3.75rem 14.375rem;
}
@media (min-width: 751px) {
  .single-case .back {
    margin-block: 3.3125rem 10rem;
  }
}
.single-case .back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-block: 1.6875rem;
  padding-inline: 2.125rem 7.875rem;
  border: 0.125rem solid var(--black);
  border-radius: var(--around);
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-case .back a {
    gap: 2.75rem;
    padding-block: 1.0625rem;
    padding-inline: 1.4375rem 5.625rem;
    font-size: 1.375rem;
  }
}
.single-case .back a::before {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top center/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 751px) {
  .single-case .back a::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.page-local .hero {
  -webkit-padding-after: 8rem;
          padding-block-end: 8rem;
}
@media (min-width: 751px) {
  .page-local .hero {
    -webkit-padding-after: 5.6875rem;
            padding-block-end: 5.6875rem;
  }
}
.page-local .hero__title {
  padding-block: 1.125rem 2.125rem;
  padding-inline: 3.75rem 5.9375rem;
  background: url(../images/local/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-local .hero__title {
    padding-block: 1.125rem 1.75rem;
    padding-inline: 3.375rem 5.25rem;
    background: url(../images/local/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-local .hero__title-head {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
}
@media (min-width: 751px) {
  .page-local .hero__title-head {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.page-local .hero__title-foot {
  -webkit-margin-start: 2.5rem;
          margin-inline-start: 2.5rem;
}
@media (min-width: 751px) {
  .page-local .hero__title-foot {
    -webkit-margin-start: 0.875rem;
            margin-inline-start: 0.875rem;
  }
}
.page-local .hero__img {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.page-local .article {
  -webkit-padding-after: 14.375rem;
          padding-block-end: 14.375rem;
}
@media (min-width: 751px) {
  .page-local .article {
    -webkit-padding-after: 10.125rem;
            padding-block-end: 10.125rem;
  }
}
.page-local .article__container {
  -webkit-margin-after: 4.5625rem;
          margin-block-end: 4.5625rem;
}
@media (min-width: 751px) {
  .page-local .article__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.375rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
}
@media (max-width: 750px) {
  .page-local .article__item:not(:last-child) {
    -webkit-margin-after: 1.6875rem;
            margin-block-end: 1.6875rem;
  }
}
.page-local .article__item a {
  display: grid;
  grid-template-areas: "thumb wrapper";
  grid-template-columns: 15rem 1fr;
  border: 0.125rem solid var(--black);
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (min-width: 751px) {
  .page-local .article__item a {
    grid-template-columns: 7.8125rem 1fr;
  }
}
.page-local .article__item-wrapper {
  grid-area: wrapper;
  width: 100%;
  padding-block: 2.25rem 1.875rem;
  padding-inline: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-local .article__item-wrapper {
    padding-block: 1rem 1.125rem;
    padding-inline: 1.4375rem 2.3125rem;
  }
}
.page-local .article__title {
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-local .article__title {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 1.25rem;
  }
}
.page-local .article__thumb {
  grid-area: thumb;
  border-right: 0.125rem solid var(--black);
}
@media (min-width: 751px) {
  .page-local .article__thumb {
    height: 100%;
  }
}
.page-local .article__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.page-local .article__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  color: #aaa;
  font-size: 1.5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-local .article__date {
    font-size: 0.75rem;
  }
}
.page-local .article__date::before {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../images/common/article-date-icon.webp) top left/cover;
}
@media (min-width: 751px) {
  .page-local .article__date::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.single-local {
  /*
      ここから固定
  */
}
.single-local .is-layout-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 750px) {
  .single-local .is-layout-flex {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}
.single-local .is-layout-flex > :is(*, div) {
  width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.single-local .has-text-align-center {
  text-align: center;
}
.single-local .wp-element-button, .single-local .wp-block-button__link {
  border: 2px solid;
  text-align: center;
  font-size: 2rem !important;
}
@media (min-width: 751px) {
  .single-local .wp-element-button, .single-local .wp-block-button__link {
    font-size: 1rem !important;
  }
}
.single-local .wp-block-buttons + p {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}
.single-local #ez-toc-container {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-local .ez-toc-wrap-center {
  margin: 0 auto 2.5rem !important;
}
.single-local div#ez-toc-container ul li, .single-local div#ez-toc-container ul li a {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .single-local div#ez-toc-container ul li, .single-local div#ez-toc-container ul li a {
    font-size: 1rem;
  }
}
.single-local .entry-content h2.wp-block-heading {
  -webkit-margin-after: 2.875rem;
          margin-block-end: 2.875rem;
  -webkit-padding-after: 1.75rem;
          padding-block-end: 1.75rem;
  border-bottom: 0.25rem solid var(--black);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .single-local .entry-content h2.wp-block-heading {
    -webkit-margin-after: 2.625rem;
            margin-block-end: 2.625rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    border-width: 0.125rem;
    font-size: 1.5rem;
  }
}
.single-local .entry-content h3.wp-block-heading {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  padding-inline: 1.25rem;
  border-left: 0.375rem solid var(--black);
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-local .entry-content h3.wp-block-heading {
    -webkit-margin-after: 2.375rem;
            margin-block-end: 2.375rem;
    border-width: 0.25rem;
    font-size: 1.375rem;
  }
}
.single-local .entry-content h4.wp-block-heading {
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  border-bottom: 0.125rem dotted var(--black);
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-local .entry-content h4.wp-block-heading {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
    font-size: 1.25rem;
  }
}
.single-local .entry-content h5.wp-block-heading {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding-block: 1.75rem;
  padding-inline: 1.25rem;
  background: rgba(0, 0, 15, 0.06);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-local .entry-content h5.wp-block-heading {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
    padding-block: 1.25rem;
    font-size: 1.125rem;
  }
}
.single-local .entry-content p {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-local .entry-content p {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.single-local .entry-content p a {
  display: inline-block;
}
.single-local .entry-content ul {
  -webkit-margin-start: 1em;
          margin-inline-start: 1em;
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  list-style: disc;
}
.single-local .entry-content ul li {
  font-size: 1.875rem;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .single-local .entry-content ul li {
    font-size: 1rem;
  }
}
.single-local .entry-content ul li:not(:last-of-type) {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.single-local .entry-content table {
  width: 100%;
  -webkit-margin-after: 3.625rem;
          margin-block-end: 3.625rem;
}
@media (min-width: 751px) {
  .single-local .entry-content table {
    -webkit-margin-after: 2.375rem;
            margin-block-end: 2.375rem;
  }
}
.single-local .entry-content table tr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.single-local .entry-content table tr:first-child th {
  background: #8b8b8a;
  border-radius: 0.625rem 0.625rem 0 0;
  border: 0.125rem solid var(--black);
  border-bottom: none;
  color: var(--white);
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .single-local .entry-content table tr:first-child th {
    border: 0.0625rem solid var(--black);
    border-bottom: none;
    font-size: 0.875rem;
  }
}
.single-local .entry-content table tr:last-child td {
  border-bottom: 0.125rem solid var(--black);
  border-radius: 0 0 0.625rem 0.625rem;
}
@media (min-width: 751px) {
  .single-local .entry-content table tr:last-child td {
    border-bottom: 0.0625rem solid var(--black);
  }
}
.single-local .entry-content table th {
  place-content: center;
  height: 6.25rem;
  background: var(--white);
  border-left: 0.125rem solid var(--black);
  border-right: 0.125rem solid var(--black);
  border-bottom: 0.1875rem dotted var(--black);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .single-local .entry-content table th {
    height: 3.125rem;
    border-left: 0.0625rem solid var(--black);
    border-right: 0.0625rem solid var(--black);
    border-bottom: 0.125rem dotted var(--black);
    font-size: 1rem;
  }
}
.single-local .entry-content table td {
  place-content: center;
  height: 6.25rem;
  background: var(--white);
  border-right: 0.125rem solid var(--black);
  border-bottom: 0.1875rem dotted var(--black);
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .single-local .entry-content table td {
    height: 3.125rem;
    border-right: 0.0625rem solid var(--black);
    border-bottom: 0.125rem dotted var(--black);
    font-size: 1rem;
  }
}
.single-local .entry-content table td:first-child {
  border-left: 0.125rem solid var(--black);
}
@media (min-width: 751px) {
  .single-local .entry-content table td:first-child {
    border-left: 0.0625rem solid var(--black);
  }
}
.single-local .entry-content img {
  display: block;
  -webkit-margin-after: 4.375rem;
          margin-block-end: 4.375rem;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .single-local .entry-content img {
    -webkit-margin-after: 3.3125rem;
            margin-block-end: 3.3125rem;
  }
}
.single-local .entry-content iframe {
  max-width: 43.125rem;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  margin-inline: auto;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .single-local .entry-content iframe {
    width: 25.75rem;
    height: 21.5625rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.single-local__container {
  width: 41.875rem;
  -webkit-margin-after: 15.1875rem;
          margin-block-end: 15.1875rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .single-local__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.875rem;
    width: 75rem;
    position: relative;
  }
}
.single-local__wrapper .l-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-local__wrapper .l-container {
    width: 46.25rem;
  }
}
.single-local .hero {
  height: 18.9375rem;
  -webkit-margin-after: 17.5rem;
          margin-block-end: 17.5rem;
  -webkit-padding-after: 0;
          padding-block-end: 0;
  position: relative;
}
@media (min-width: 751px) {
  .single-local .hero {
    height: 15.625rem;
    -webkit-margin-after: 13rem;
            margin-block-end: 13rem;
    -webkit-padding-before: 0;
            padding-block-start: 0;
  }
}
.single-local .hero::before {
  content: "";
  width: 100vw;
  height: 18.75rem;
  position: absolute;
  left: -2.5rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .single-local .hero::before {
    height: 15.625rem;
    top: 0;
    left: auto;
    right: -3.4375rem;
  }
}
.single-local .hero__img {
  width: 41.875rem;
  position: relative;
  top: 3.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .single-local .hero__img {
    width: 100%;
    top: 3.1875rem;
  }
}
.single-local .single-cta img {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  border-radius: 0 !important;
}
@media (min-width: 751px) {
  .single-local .single-cta a {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 751px) {
  .single-local .single-cta__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 15.3125rem;
  }
}
.single-local .single-cta__main img {
  vertical-align: middle;
}
.single-local .single-cta__main-text {
  -webkit-margin-before: -1px;
          margin-block-start: -1px;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  padding-block: 2.125rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-local .single-cta__main-text {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    padding-block: 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}
.single-local .single-cta__sub {
  -webkit-margin-after: 1.375rem;
          margin-block-end: 1.375rem;
}
@media (min-width: 751px) {
  .single-local .single-cta__sub {
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}
.single-local .single-cta__sub-title {
  -webkit-margin-before: -1px;
          margin-block-start: -1px;
  -webkit-margin-after: 3.375rem;
          margin-block-end: 3.375rem;
  padding-block: 2.6875rem;
  background: var(--blue-1);
  text-align: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-local .single-cta__sub-title {
    -webkit-margin-after: 2.8125rem;
            margin-block-end: 2.8125rem;
    padding-block: 1.25rem;
    border-radius: 0 0 0.625rem 0.625rem;
    font-size: 1.75rem;
  }
}
.single-local .single-cta__sub-text {
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-local .single-cta__sub-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.single-local .single-cta__sub-text:not(:last-child) {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
}
@media (min-width: 751px) {
  .single-local .single-cta__sub-img img {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.single-local .author {
  margin-block: 5.3125rem;
}
@media (min-width: 751px) {
  .single-local .author {
    margin-block: 4.375rem 0;
  }
}
.single-local .back {
  -webkit-margin-after: 6.25rem;
          margin-block-end: 6.25rem;
}
@media (min-width: 751px) {
  .single-local .back {
    margin-block: 5rem 0;
  }
}
.single-local .back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-block: 1.6875rem;
  padding-inline: 2.125rem 7.875rem;
  border: 0.125rem solid var(--black);
  border-radius: var(--around);
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-local .back a {
    gap: 2.75rem;
    padding-block: 1.0625rem;
    padding-inline: 1.4375rem 5.625rem;
    font-size: 1.375rem;
  }
}
.single-local .back a::before {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top center/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 751px) {
  .single-local .back a::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.page-column .hero {
  -webkit-padding-after: 3.9375rem;
          padding-block-end: 3.9375rem;
}
@media (min-width: 751px) {
  .page-column .hero {
    -webkit-padding-after: 2.5rem;
            padding-block-end: 2.5rem;
  }
}
.page-column .hero__title {
  padding-block: 1.25rem 2rem;
  padding-inline: 2.25rem 1.9375rem;
  background: url(../images/column/hero_title_bg.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .page-column .hero__title {
    padding-block: 1.0625rem 1.625rem;
    padding-inline: 2.6875rem 2.5625rem;
    background: url(../images/column/hero_title_bg--pc.webp) no-repeat top left/cover;
  }
}
.page-column .hero__title-head {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  -webkit-margin-start: 0.75rem;
          margin-inline-start: 0.75rem;
}
@media (min-width: 751px) {
  .page-column .hero__title-head {
    -webkit-margin-after: 2.09375rem;
            margin-block-end: 2.09375rem;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.page-column .hero__img {
  -webkit-margin-after: 6.375rem;
          margin-block-end: 6.375rem;
}
@media (min-width: 751px) {
  .page-column .hero__img {
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
  }
}
.page-column .article {
  -webkit-padding-after: 14.375rem;
          padding-block-end: 14.375rem;
}
@media (min-width: 751px) {
  .page-column .article {
    -webkit-padding-after: 10.125rem;
            padding-block-end: 10.125rem;
  }
}
.page-column .article__container {
  -webkit-margin-after: 4.5625rem;
          margin-block-end: 4.5625rem;
}
@media (min-width: 751px) {
  .page-column .article__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.375rem;
    -webkit-margin-after: 4rem;
            margin-block-end: 4rem;
  }
}
@media (max-width: 750px) {
  .page-column .article__item:not(:last-child) {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
@media (min-width: 751px) {
  .page-column .article__item:not(:last-child) {
    border-radius: 0.625rem;
  }
}
.page-column .article__item a {
  display: grid;
  grid-template-areas: "thumb wrapper";
  grid-template-columns: 15rem 1fr;
  border: 0.125rem solid var(--black);
  border-radius: 0.9375rem;
  overflow: hidden;
}
@media (min-width: 751px) {
  .page-column .article__item a {
    grid-template-columns: 7.8125rem 1fr;
  }
}
.page-column .article__item-wrapper {
  grid-area: wrapper;
  width: 100%;
  padding-block: 1rem 1.875rem;
  padding-inline: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .page-column .article__item-wrapper {
    padding-block: 0.875rem 1.125rem;
    padding-inline: 1.5rem 2.3125rem;
  }
}
.page-column .article__title {
  -webkit-margin-after: 1.75rem;
          margin-block-end: 1.75rem;
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .page-column .article__title {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    font-size: 1.25rem;
  }
}
.page-column .article__thumb {
  grid-area: thumb;
  border-right: 0.125rem solid var(--black);
}
@media (min-width: 751px) {
  .page-column .article__thumb {
    height: 100%;
  }
}
.page-column .article__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
.page-column .article__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  color: #aaa;
  font-size: 1.5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .page-column .article__date {
    font-size: 0.75rem;
  }
}
.page-column .article__date::before {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../images/common/article-date-icon.webp) top left/cover;
}
@media (min-width: 751px) {
  .page-column .article__date::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.single-column img {
  max-width: 100%;
  max-height: 100%;
}
.single-column .is-layout-flex {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 750px) {
  .single-column .is-layout-flex {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
}
.single-column .is-layout-flex > :is(*, div) {
  width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.single-column .has-text-align-center {
  text-align: center;
}
.single-column .wp-element-button, .single-column .wp-block-button__link {
  border: 2px solid;
  text-align: center;
  font-size: 2rem !important;
}
@media (min-width: 751px) {
  .single-column .wp-element-button, .single-column .wp-block-button__link {
    font-size: 1rem !important;
  }
}
.single-column .wp-block-buttons + p {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}
.single-column #ez-toc-container {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-column .ez-toc-wrap-center {
  margin: 0 auto 2.5rem !important;
}
.single-column div#ez-toc-container ul li, .single-column div#ez-toc-container ul li a {
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .single-column div#ez-toc-container ul li, .single-column div#ez-toc-container ul li a {
    font-size: 1rem;
  }
}
@media (max-width: 750px) {
  .single-column .sidebar__container {
    padding-inline: 2.8125rem;
  }
}
.single-column .u-marker-yellow {
  font-weight: 700;
}
.single-column__container {
  -webkit-margin-after: 8.25rem;
          margin-block-end: 8.25rem;
}
@media (min-width: 751px) {
  .single-column__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6.875rem;
    width: 75rem;
    -webkit-margin-after: 6.5625rem;
            margin-block-end: 6.5625rem;
    margin-inline: auto;
  }
}
.single-column__wrapper .l-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-column__wrapper .l-container {
    width: 46.25rem;
  }
}
.single-column .hero {
  padding-block: 4.0625rem 0;
  position: relative;
  background: var(--lightBeige);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .single-column .hero {
    -webkit-padding-before: 3.25rem;
            padding-block-start: 3.25rem;
  }
}
.single-column .hero::before {
  content: "";
  width: 100vw;
  height: 32.1875rem;
  position: absolute;
  top: 0;
  left: 50%;
  background: var(--lightBeige);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .single-column .hero::before {
    width: 100vw;
    height: 23.125rem;
    left: auto;
    right: -3.4375rem;
    -webkit-transform: none;
            transform: none;
  }
}
.single-column .hero .l-container {
  position: relative;
}
.single-column .hero__title {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  position: relative;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  z-index: 1;
}
@media (min-width: 751px) {
  .single-column .hero__title {
    font-size: 1.625rem;
  }
}
.single-column .hero__date {
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  position: relative;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  z-index: 1;
}
@media (min-width: 751px) {
  .single-column .hero__date {
    font-size: 0.75rem;
  }
}
.single-column .hero__img {
  width: 41.875rem;
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .single-column .hero__img {
    width: 46.25rem;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.single-column .intro {
  -webkit-margin-after: 4.75rem;
          margin-block-end: 4.75rem;
}
@media (min-width: 751px) {
  .single-column .intro {
    -webkit-margin-after: 2.625rem;
            margin-block-end: 2.625rem;
  }
}
.single-column .intro__text {
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .intro__text {
    font-size: 1rem;
  }
}
.single-column .intro__text:not(:last-child) {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
}
.single-column .intro__list {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media (min-width: 751px) {
  .single-column .intro__list {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.single-column .intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .intro__item {
    gap: 0.5625rem;
    font-size: 1rem;
  }
}
.single-column .intro__item::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  position: relative;
  top: 0.625rem;
  background: url(../images/common/check_icon.webp) no-repeat top center/cover;
}
@media (min-width: 751px) {
  .single-column .intro__item::before {
    width: 1.25rem;
    height: 1.25rem;
    top: 0.1875rem;
  }
}
.single-column .intro__item:not(:last-child) {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}
@media (min-width: 751px) {
  .single-column .intro__item:not(:last-child) {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
  }
}
.single-column .entry-content {
  -webkit-margin-after: 4.25rem;
          margin-block-end: 4.25rem;
}
@media (min-width: 751px) {
  .single-column .entry-content {
    -webkit-margin-after: 6.25rem;
            margin-block-end: 6.25rem;
  }
}
.single-column .entry-content h1.wp-block-heading {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .entry-content h1.wp-block-heading {
    -webkit-margin-after: 2.75rem;
            margin-block-end: 2.75rem;
    font-size: 1.5rem;
  }
}
.single-column .entry-content h2.wp-block-heading {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
  border-bottom: 2px solid var(--black);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .entry-content h2.wp-block-heading {
    -webkit-margin-after: 2.75rem;
            margin-block-end: 2.75rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    font-size: 1.5rem;
  }
}
.single-column .entry-content h3.wp-block-heading {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  padding-inline: 1.25rem;
  border-left: 0.375rem solid var(--black);
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-column .entry-content h3.wp-block-heading {
    -webkit-margin-after: 2.375rem;
            margin-block-end: 2.375rem;
    border-width: 0.25rem;
    font-size: 1.375rem;
  }
}
.single-column .entry-content h4.wp-block-heading {
  -webkit-margin-after: 2.25rem;
          margin-block-end: 2.25rem;
  -webkit-padding-after: 0.625rem;
          padding-block-end: 0.625rem;
  border-bottom: 0.125rem dotted var(--black);
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-column .entry-content h4.wp-block-heading {
    -webkit-margin-after: 2.25rem;
            margin-block-end: 2.25rem;
    font-size: 1.25rem;
  }
}
.single-column .entry-content h5.wp-block-heading {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding-block: 1.75rem;
  padding-inline: 1.25rem;
  background: rgba(0, 0, 15, 0.06);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-column .entry-content h5.wp-block-heading {
    -webkit-margin-after: 1.5rem;
            margin-block-end: 1.5rem;
    padding-block: 1.25rem;
    font-size: 1.125rem;
  }
}
.single-column .entry-content p {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .entry-content p {
    font-size: 1rem;
  }
}
.single-column .entry-content ul {
  -webkit-margin-start: 1em;
          margin-inline-start: 1em;
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
  list-style: disc;
}
.single-column .entry-content ul li {
  font-size: 1.875rem;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .single-column .entry-content ul li {
    font-size: 1rem;
  }
}
.single-column .entry-content ul li:not(:last-of-type) {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.single-column .entry-content img {
  display: block;
  -webkit-margin-after: 4.375rem;
          margin-block-end: 4.375rem;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .single-column .entry-content img {
    -webkit-margin-after: 3.3125rem;
            margin-block-end: 3.3125rem;
  }
}
.single-column .aripro {
  -webkit-margin-after: 2.125rem;
          margin-block-end: 2.125rem;
}
@media (min-width: 751px) {
  .single-column .aripro {
    -webkit-margin-after: 6.25rem;
            margin-block-end: 6.25rem;
  }
}
.single-column .aripro__title {
  -webkit-margin-after: 3.4375rem;
          margin-block-end: 3.4375rem;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
  border-bottom: 2px solid var(--black);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .aripro__title {
    -webkit-margin-after: 2.75rem;
            margin-block-end: 2.75rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    font-size: 1.5rem;
  }
}
.single-column .aripro__text {
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column .aripro__text {
    font-size: 1rem;
  }
}
.single-column .aripro__text:not(:last-of-type) {
  -webkit-margin-after: 2em;
          margin-block-end: 2em;
}
.single-column .aripro__img {
  -webkit-margin-after: 4.375rem;
          margin-block-end: 4.375rem;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .single-column .aripro__img {
    width: 37.5rem;
    -webkit-margin-after: 3.3125rem;
            margin-block-end: 3.3125rem;
    margin-inline: auto;
  }
}
.single-column .author {
  margin-block: 5.3125rem;
}
@media (min-width: 751px) {
  .single-column .author {
    margin-block: 4.375rem 0;
  }
}
.single-column__foot {
  -webkit-padding-after: 14.0625rem;
          padding-block-end: 14.0625rem;
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .single-column__foot {
    -webkit-padding-before: 3.125rem;
            padding-block-start: 3.125rem;
    -webkit-padding-after: 8.5rem;
            padding-block-end: 8.5rem;
  }
}
@media (min-width: 751px) {
  .single-column__foot-container {
    display: grid;
    grid-template-columns: 32.5rem 40rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
    width: 75rem;
    margin-inline: auto;
  }
}
.single-column__foot-img {
  position: relative;
}
@media (max-width: 750px) {
  .single-column__foot-img {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
  }
}
.single-column__foot-img img {
  border-radius: 0.625rem;
}
.single-column__foot-text {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-column__foot-text {
    -webkit-margin-after: 2.3125rem;
            margin-block-end: 2.3125rem;
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.single-column__foot-attention {
  text-align: right;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .single-column__foot-attention {
    font-size: 0.625rem;
  }
}
.single-column__foot-house {
  position: absolute;
  bottom: -1.25rem;
  left: 2.5rem;
  text-align: center;
  font-weight: 900;
}
@media (min-width: 751px) {
  .single-column__foot-house {
    bottom: -1.25rem;
    left: 1.75rem;
  }
}
.single-column__foot-house-bg {
  -webkit-margin-after: 0.875rem;
          margin-block-end: 0.875rem;
  padding-block: 5.9375rem 0.9375rem;
  padding-inline: 2.25rem;
  background: url(../images/column/single/foot_house_bg.webp) no-repeat top center/cover;
}
@media (min-width: 751px) {
  .single-column__foot-house-bg {
    -webkit-margin-after: 0.1875rem;
            margin-block-end: 0.1875rem;
    padding-block: 3.875rem 0.75rem;
    padding-inline: 2.125rem;
  }
}
.single-column__foot-house .single-column__foot-year {
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  -webkit-padding-after: 0rem;
          padding-block-end: 0rem;
  border-bottom: 2px dotted;
  text-align: center;
  font-size: 2.375rem;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-year {
    -webkit-margin-after: 0.5625rem;
            margin-block-end: 0.5625rem;
    -webkit-padding-after: 0.5625rem;
            padding-block-end: 0.5625rem;
    font-size: 1.1875rem;
  }
}
.single-column__foot-house .single-column__foot-year--large {
  font-size: 3.4375rem;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-year--large {
    font-size: 1.75rem;
  }
}
.single-column__foot-house .single-column__foot-achievements {
  text-align: center;
  font-size: 2.125rem;
}
.single-column__foot-house .single-column__foot-achievements .u-br:first-child {
  -webkit-margin-after: 0.6875rem;
          margin-block-end: 0.6875rem;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-achievements {
    font-size: 1.125rem;
  }
}
.single-column__foot-house .single-column__foot-achievements--medium {
  font-size: 2.25rem;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-achievements--medium {
    font-size: 0.9375rem;
  }
}
.single-column__foot-house .single-column__foot-achievements--small-large {
  font-size: 2.125rem;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-achievements--small-large {
    font-size: 1.3125rem;
  }
}
.single-column__foot-house .single-column__foot-achievements--large {
  font-size: 4.625rem;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-achievements--large {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
  }
}
.single-column__foot-house .single-column__foot-achievements--super {
  font-size: 1.25rem;
  vertical-align: super;
}
@media (min-width: 751px) {
  .single-column__foot-house .single-column__foot-achievements--super {
    font-size: 0.625rem;
  }
}
.single-column__foot-house-attention {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (min-width: 751px) {
  .single-column__foot-house-attention {
    text-align: left;
    font-size: 0.625rem;
  }
}
.single-column .back {
  -webkit-margin-after: 6.25rem;
          margin-block-end: 6.25rem;
}
@media (min-width: 751px) {
  .single-column .back {
    margin-block: 5rem 0;
  }
}
.single-column .back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-block: 1.6875rem;
  padding-inline: 2.125rem 7.875rem;
  border: 0.125rem solid var(--black);
  border-radius: var(--around);
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-column .back a {
    gap: 2.75rem;
    padding-block: 1.0625rem;
    padding-inline: 1.4375rem 5.625rem;
    font-size: 1.375rem;
  }
}
.single-column .back a::before {
  content: "";
  width: 2.8125rem;
  height: 2.8125rem;
  background: url(../images/common/arrow_to_right_black.webp) no-repeat top center/cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 751px) {
  .single-column .back a::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}
.single-column #ez-toc-container {
  width: 100%;
  -webkit-margin-after: 5.0625rem;
          margin-block-end: 5.0625rem;
  position: relative;
  padding-block: 3.5625rem 3.75rem;
  background: var(--lightBeige);
  border: 0.25rem solid var(--black);
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 750px) {
  .single-column #ez-toc-container {
    width: 41.875rem;
    margin-inline: auto;
  }
}
@media (min-width: 751px) {
  .single-column #ez-toc-container {
    -webkit-margin-after: 3.5625rem;
            margin-block-end: 3.5625rem;
    padding-block: 2.5rem;
    padding-inline: 2.5rem;
    border-width: 0.125rem;
  }
}
.single-column #ez-toc-container .ez-toc-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
  text-align: center;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer !important;
}
@media (max-width: 750px) {
  .single-column #ez-toc-container .ez-toc-title {
    margin-inline: auto;
  }
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
    font-size: 1.5rem;
  }
}
.single-column #ez-toc-container .ez-toc-title::before {
  content: "";
  display: block;
  width: 1.8125rem;
  height: 1.375rem;
  -webkit-margin-end: 1.6875rem;
          margin-inline-end: 1.6875rem;
  background: url(../images/common/index_icon.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-title::before {
    width: 1.25rem;
    height: 0.9375rem;
    -webkit-margin-end: 1.125rem;
            margin-inline-end: 1.125rem;
  }
}
.single-column #ez-toc-container .ez-toc-list {
  width: 36.875rem;
  margin-inline: auto;
  counter-reset: item;
  list-style: none;
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-list {
    width: 100%;
  }
}
.single-column #ez-toc-container .ez-toc-list li {
  counter-increment: item;
}
.single-column #ez-toc-container .ez-toc-list ul {
  counter-reset: item;
}
.single-column #ez-toc-container .ez-toc-heading-1::before {
  display: none;
}
.single-column #ez-toc-container .ez-toc-heading-level-2 {
  padding-block: 2.5rem 2.625rem;
  position: relative;
}
.single-column #ez-toc-container .ez-toc-heading-level-2::before {
  content: counters(item, ".", decimal) ". ";
  width: 2.125rem;
  color: var(--red);
  font-size: 2.5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2::before {
    font-size: 1.25rem;
  }
}
.single-column #ez-toc-container .ez-toc-heading-level-2 a::before {
  display: none !important;
}
.single-column #ez-toc-container .ez-toc-heading-level-2:last-child {
  padding-block: 2.5rem 0;
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2:last-child {
    padding-block: 1.9375rem 0;
  }
}
.single-column #ez-toc-container .ez-toc-heading-level-2:not(:last-child) {
  border-bottom: 0.1875rem dotted var(--black);
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2:not(:last-child) {
    border-width: 0.125rem;
  }
}
.single-column #ez-toc-container .ez-toc-heading-level-2:first-child {
  -webkit-padding-before: 0;
          padding-block-start: 0;
}
.single-column #ez-toc-container .ez-toc-heading-level-2:last-child {
  -webkit-padding-after: 0;
          padding-block-end: 0;
}
.single-column #ez-toc-container .ez-toc-heading-level-2 > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-margin-start: 2.625rem;
          margin-inline-start: 2.625rem;
  -webkit-padding-start: 1.375rem;
          padding-inline-start: 1.375rem;
  border-left: 0.25rem solid var(--black);
  color: var(--black);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2 > a {
    width: 80%;
  }
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2 > a {
    -webkit-margin-start: 1rem;
            margin-inline-start: 1rem;
    -webkit-padding-start: 1rem;
            padding-inline-start: 1rem;
    border-width: 0.125rem;
    font-size: 1.125rem;
  }
}
.single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 {
  -webkit-margin-before: 2.1875rem;
          margin-block-start: 2.1875rem;
}
.single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}
.single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3:first-of-type {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3 > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--black);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3 > a {
    width: 80%;
  }
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3 > a {
    font-size: 0.875rem;
  }
}
.single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3::before {
  content: counters(item, ".", decimal) ". ";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 3.375rem;
  -webkit-margin-end: 1.25rem;
          margin-inline-end: 1.25rem;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  color: var(--black);
  font-size: 2rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .single-column #ez-toc-container .ez-toc-heading-level-2 .ez-toc-list-level-3 .ez-toc-heading-level-3::before {
    width: 1.875rem;
    -webkit-margin-end: 0.875rem;
            margin-inline-end: 0.875rem;
    font-size: 1.125rem;
  }
}

/*
3.2 - Component
============================================================================= */
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-section__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-block: 1.5625rem;
  position: relative;
  background: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--around);
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .c-section__button {
    padding-block: 1.375rem;
    font-size: 1.375rem;
  }
}
.c-section__button::after {
  content: "";
  width: 3.4375rem;
  height: 3.4375rem;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  background: url(../images/common/arrow_to_right_white.webp) no-repeat top left/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 751px) {
  .c-section__button::after {
    width: 1.8125rem;
    height: 1.8125rem;
    right: 1.25rem;
  }
}

.c-globalNav {
  z-index: 60;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 750px) {
  .c-globalNav {
    display: grid;
    grid-template-areas: "top feature" "gaiju price" "guarantee flow" "voice case" "faq column" "achievements ." "tel tel" "mail mail" "line line";
    gap: 2.5rem;
    width: 100vw;
    height: 100vh;
    padding-block: 12.5rem;
    padding-inline: 2.5rem;
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--white);
    overflow-y: scroll;
    z-index: -1;
  }
}
@media (min-width: 751px) {
  .c-globalNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.875rem;
    position: relative;
  }
}
@media (max-width: 750px) {
  .c-globalNav.is-active {
    right: 0;
  }
}
.c-globalNav__item:nth-child(1) {
  grid-area: top;
}
@media (min-width: 751px) {
  .c-globalNav__item:nth-child(1) {
    display: none;
  }
}
.c-globalNav__item:nth-child(2) {
  grid-area: feature;
}
.c-globalNav__item:nth-child(3) {
  grid-area: gaiju;
}
.c-globalNav__item:nth-child(4) {
  grid-area: price;
}
.c-globalNav__item:nth-child(5) {
  grid-area: guarantee;
}
.c-globalNav__item:nth-child(6) {
  grid-area: flow;
}
.c-globalNav__item:nth-child(7) {
  grid-area: voice;
}
.c-globalNav__item:nth-child(8) {
  grid-area: case;
}
.c-globalNav__item:nth-child(9) {
  grid-area: faq;
}
.c-globalNav__item:nth-child(10) {
  grid-area: column;
}
.c-globalNav__item:nth-child(11) {
  grid-area: achievements;
}
.c-globalNav__item:nth-child(12) {
  grid-area: tel;
}
@media (min-width: 751px) {
  .c-globalNav__item:nth-child(12) {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    position: absolute;
    top: -5rem;
    right: 26.25rem;
  }
}
.c-globalNav__item:nth-child(13) {
  grid-area: mail;
}
@media (min-width: 751px) {
  .c-globalNav__item:nth-child(13) {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    position: absolute;
    top: -5.9375rem;
    right: 6.25rem;
  }
}
.c-globalNav__item:nth-child(14) {
  grid-area: line;
}
@media (min-width: 751px) {
  .c-globalNav__item:nth-child(14) {
    display: none;
  }
}
.c-globalNav__link--nav {
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .c-globalNav__link--nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
    border-bottom: 1px solid;
  }
}
@media (min-width: 751px) {
  .c-globalNav__link--nav {
    font-size: 1rem;
  }
}
@media (max-width: 750px) {
  .c-globalNav__link--nav::after {
    content: "";
    width: 3.125rem;
    height: 3.125rem;
    background: url(../images/common/arrow_to_right_black.webp) no-repeat top left/cover;
  }
}
.c-globalNav__link-tel {
  padding-block: 1.25rem 0rem;
  position: relative;
  background: var(--red);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--red-shadow);
          box-shadow: 0 0.5rem 0 var(--red-shadow);
}
@media (min-width: 751px) {
  .c-globalNav__link-tel {
    padding-block: 0;
    background: transparent;
    color: var(--red);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 750px) {
  .c-globalNav__link-tel::after {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    position: absolute;
    top: 50%;
    right: 3.75rem;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
.c-globalNav__link-tel .c-globalNav__item-head {
  display: block;
  -webkit-margin-after: 0.375rem;
          margin-block-end: 0.375rem;
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .c-globalNav__link-tel .c-globalNav__item-head {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.875rem;
  }
}
.c-globalNav__link-tel .c-globalNav__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media (min-width: 751px) {
  .c-globalNav__link-tel .c-globalNav__item-body {
    gap: 0.875rem;
  }
}
.c-globalNav__link-tel .c-globalNav__item-icon {
  width: 3rem;
}
@media (min-width: 751px) {
  .c-globalNav__link-tel .c-globalNav__item-icon {
    width: 1.875rem;
  }
}
.c-globalNav__link-tel .c-globalNav__item--small {
  font-size: 1.625rem;
}
.c-globalNav__link-tel .c-globalNav__item-num {
  font-size: 4.25rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .c-globalNav__link-tel .c-globalNav__item-num {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
}
.c-globalNav__link-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8125rem;
  padding-block: 1.25rem 1rem;
  position: relative;
  background: var(--blue-1);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--blue-shadow);
          box-shadow: 0 0.5rem 0 var(--blue-shadow);
}
@media (min-width: 751px) {
  .c-globalNav__link-mail {
    padding-block: 1.125rem;
    padding-inline: 2.375rem 4.3125rem;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.c-globalNav__link-mail::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 50%;
  right: 3.75rem;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 751px) {
  .c-globalNav__link-mail::after {
    width: 0.4375rem;
    height: 0.4375rem;
    right: 1.5625rem;
  }
}
.c-globalNav__link-mail .c-globalNav__item-icon {
  width: 2.5rem;
}
@media (max-width: 750px) {
  .c-globalNav__link-mail .c-globalNav__item-icon {
    position: absolute;
    top: 50%;
    left: 5.75rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (min-width: 751px) {
  .c-globalNav__link-mail .c-globalNav__item-icon {
    width: 1.375rem;
  }
}
.c-globalNav__link-mail .c-globalNav__item-text {
  font-size: 2.125rem;
  line-height: 1.25;
}
@media (min-width: 751px) {
  .c-globalNav__link-mail .c-globalNav__item-text {
    font-size: 1.25rem;
  }
}
.c-globalNav__link-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding-block: 1.75rem 1.5rem;
  position: relative;
  background: var(--line-green);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--line-green-shadow);
          box-shadow: 0 0.5rem 0 var(--line-green-shadow);
}
.c-globalNav__link-line::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 50%;
  right: 3.75rem;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-globalNav__link-line .c-globalNav__item-icon {
  width: 3.125rem;
}
@media (max-width: 750px) {
  .c-globalNav__link-line .c-globalNav__item-icon {
    position: absolute;
    top: 50%;
    left: 5.4375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.c-globalNav__link-line .c-globalNav__item-text {
  display: block;
  -webkit-margin-after: 0.9375rem;
          margin-block-end: 0.9375rem;
  font-size: 2.125rem;
}
.c-globalNav__link-line small {
  display: block;
  font-size: 1.25rem;
}

.c-hamburger {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.4375rem;
  height: 2.5rem;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 50;
}
@media (min-width: 751px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger::before, .c-hamburger::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4375rem;
  position: absolute;
  background: var(--black);
  border-radius: var(--around);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.c-hamburger::before {
  top: 0;
}
.c-hamburger::after {
  bottom: 0;
}
.is-drawerActive .c-hamburger {
  background-color: transparent;
}
.is-drawerActive .c-hamburger::before, .is-drawerActive .c-hamburger::after {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.is-drawerActive .c-hamburger::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.is-drawerActive .c-hamburger::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger__line {
  width: 100%;
  height: 0.4375rem;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--black);
  border-radius: var(--around);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.is-drawerActive .c-hamburger__line {
  background-color: transparent;
}

.cta {
  position: relative;
  background: var(--beige);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 75rem;
    margin-inline: auto;
    padding-block: 1.25rem 1.5rem;
    padding-inline: 2.1875rem 1.375rem;
    background: var(--white);
    border: 2px solid;
    border-radius: 0.625rem;
  }
}
.cta__wrapper {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding-block: 2.4375rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--white);
  border: 2px solid;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .cta__wrapper {
    display: grid;
    grid-template-areas: "day day" "mail line";
    gap: 1.5rem 0.75rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 0;
    -webkit-padding-start: 1.5625rem;
            padding-inline-start: 1.5625rem;
    border: none;
    border-left: 2px dotted var(--black);
    border-radius: 0;
  }
}
.cta__wrapper::after {
  content: "";
  width: 7.625rem;
  height: 12.25rem;
  position: absolute;
  top: -6.125rem;
  right: -2.5rem;
  background: url(../images/cta/cta_human.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .cta__wrapper::after {
    width: 3.875rem;
    height: 6.25rem;
    top: -3rem;
    right: 2.625rem;
  }
}
.cta__tel-wrapper {
  place-content: end;
}
@media (min-width: 751px) {
  .cta__tel-wrapper {
    -webkit-padding-end: 2.1875rem;
            padding-inline-end: 2.1875rem;
  }
}
.cta__tel-button {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.6875rem 1.25rem;
  background: var(--red);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--red-shadow);
          box-shadow: 0 0.5rem 0 var(--red-shadow);
}
@media (min-width: 751px) {
  .cta__tel-button {
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    padding-block: 0;
    background: none;
    color: var(--red);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 751px) {
  .cta__tel-button::after {
    display: none;
  }
}
.cta__tel-button::after {
  right: 1.875rem;
}
.cta__tel-head {
  display: block;
  -webkit-margin-after: 0rem;
          margin-block-end: 0rem;
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .cta__tel-head {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    text-align: center;
    color: var(--black);
    font-size: 1.625rem;
  }
}
.cta__tel-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media (min-width: 751px) {
  .cta__tel-body {
    gap: 0;
    color: var(--red);
  }
}
.cta__tel-icon {
  width: 3rem;
}
@media (min-width: 751px) {
  .cta__tel-icon {
    width: 4.125rem;
    -webkit-margin-end: 0.5rem;
            margin-inline-end: 0.5rem;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
}
.cta__tel--small {
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .cta__tel--small {
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
}
.cta__tel-num {
  position: relative;
  top: 0.25rem;
  font-size: 5rem;
  font-family: var(--font-en);
  letter-spacing: 0em;
}
@media (min-width: 751px) {
  .cta__tel-num {
    font-size: 5rem;
    letter-spacing: 0;
  }
}
.cta__mail {
  grid-area: mail;
}
.cta__mail-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8125rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.625rem;
  padding-inline: 2.25rem 2.5rem;
  background: var(--blue-1);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--blue-shadow);
          box-shadow: 0 0.5rem 0 var(--blue-shadow);
}
@media (min-width: 751px) {
  .cta__mail-button {
    place-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.6875rem;
    width: 16.875rem;
    height: 6.25rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0.9375rem;
    padding-inline: 2.1875rem;
    background: var(--blue-1);
    border-radius: 1.25rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--blue-shadow);
            box-shadow: 0 0.25rem 0 var(--blue-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta__mail-button::after {
  right: 2.5rem;
}
@media (min-width: 751px) {
  .cta__mail-button::after {
    right: 0.9375rem;
  }
}
.cta__mail-icon {
  width: 2.8125rem;
}
@media (min-width: 751px) {
  .cta__mail-icon {
    width: 1.375rem;
  }
}
.cta__mail-text {
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta__mail-text {
    font-size: 1.25rem;
  }
}
.cta__line {
  grid-area: line;
}
.cta__line-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  padding-block: 2.6875rem;
  padding-inline: 2.25rem 2.5rem;
  background: var(--line-green);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--line-green-shadow);
          box-shadow: 0 0.5rem 0 var(--line-green-shadow);
}
@media (min-width: 751px) {
  .cta__line-button {
    place-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.6875rem;
    width: 16.875rem;
    height: 6.25rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-inline: 2.1875rem;
    background: var(--line-green);
    border-radius: 1.25rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--line-green-shadow);
            box-shadow: 0 0.25rem 0 var(--line-green-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta__line-button small {
  display: block;
  font-size: 1.375rem;
}
@media (min-width: 751px) {
  .cta__line-button small {
    font-size: 0.8125rem;
  }
}
.cta__line-button::after {
  right: 2.5rem;
}
@media (min-width: 751px) {
  .cta__line-button::after {
    right: 0.9375rem;
  }
}
.cta__line-icon {
  width: 3.5rem;
}
@media (min-width: 751px) {
  .cta__line-icon {
    width: 1.8125rem;
  }
}
.cta__line-text {
  display: block;
  -webkit-margin-after: 0.9375rem;
          margin-block-end: 0.9375rem;
  font-size: 2.375rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta__line-text {
    font-size: 1.25rem;
  }
}
.cta__button {
  position: relative;
}
.cta__button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 751px) {
  .cta__button::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.cta__time {
  -webkit-margin-after: 2.625rem;
          margin-block-end: 2.625rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta__time {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 0.875rem;
  }
}
.cta__day {
  -webkit-margin-after: 2.3125rem;
          margin-block-end: 2.3125rem;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta__day {
    grid-area: day;
    width: 100%;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.625rem;
  }
}
.cta__day--large {
  font-size: 4.375rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .cta__day--large {
    font-size: 2.625rem;
  }
}
.cta__attention {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .cta__attention {
    position: absolute;
    bottom: -2.125rem;
    right: 0;
    font-size: 0.625rem;
  }
}

.cta-navy {
  padding-block: 13.75rem 2.625rem;
  position: relative;
}
@media (min-width: 751px) {
  .cta-navy {
    padding-block: 5.9375rem 4.0625rem;
  }
}
.cta-navy__head {
  width: 44.375rem;
  position: absolute;
  top: -7.5rem;
  left: 50%;
  -webkit-padding-after: 1.5rem;
          padding-block-end: 1.5rem;
  background: url(../images/common/cta-navy_head_bg.webp) no-repeat top left/contain;
  border-radius: 0.5625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
@media (min-width: 751px) {
  .cta-navy__head {
    display: grid;
    grid-template-columns: 41.875rem auto;
    width: 75rem;
    -webkit-padding-after: 0.6875rem;
            padding-block-end: 0.6875rem;
    top: -3.75rem;
    background: url(../images/common/cta-navy_head_bg--pc.webp) no-repeat top left/cover;
  }
}
.cta-navy__head-title {
  padding-block: 1.75rem 0;
  text-align: center;
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .cta-navy__head-title {
    padding-block: 1.4375rem 1.125rem;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.cta-navy__head-title--small {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .cta-navy__head-title--small {
    font-size: 1.4375rem;
  }
}
.cta-navy__head-title--large {
  font-size: 3.5rem;
}
@media (min-width: 751px) {
  .cta-navy__head-title--large {
    font-size: 2.5rem;
  }
}
.cta-navy__head-title--super {
  position: absolute;
  top: -0.9375rem;
  right: -0.625rem;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .cta-navy__head-title--super {
    top: -0.5rem;
    right: -0.3125rem;
    font-size: 0.625rem;
  }
}
.cta-navy__head-title-block {
  position: relative;
}
@media (max-width: 750px) {
  .cta-navy__head-title .u-ls-tigth {
    letter-spacing: -0.5em;
  }
}
.cta-navy__head-logo {
  padding-block: 0.6875rem 0.8125rem;
}
@media (min-width: 751px) {
  .cta-navy__head-logo {
    place-content: center;
    padding-block: 0;
    position: relative;
    border-radius: 0 0.625rem 0.625rem 0;
  }
}
.cta-navy__head-logo picture {
  width: 30.75rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .cta-navy__head-logo picture {
    width: 25.125rem;
  }
}
.cta-navy__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: 11.25rem;
          margin-inline-start: 11.25rem;
  -webkit-margin-after: 2.125rem;
          margin-block-end: 2.125rem;
  position: relative;
}
@media (min-width: 751px) {
  .cta-navy__body {
    margin-inline: auto;
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.cta-navy__body::before {
  content: "";
  width: 10.625rem;
  height: 15.5625rem;
  position: absolute;
  top: -3.75rem;
  left: -10.625rem;
  background: url(../images/common/cta-navy_body_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .cta-navy__body::before {
    width: 6.3125rem;
    height: 9.3125rem;
    top: -2.8125rem;
    left: -7.5rem;
    background: url(../images/common/cta-navy_body_human--pc.webp) no-repeat top left/cover;
  }
}
.cta-navy__body-title {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  text-align: center;
  font-size: 3.75rem;
}
@media (min-width: 751px) {
  .cta-navy__body-title {
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
    font-size: 3.4375rem;
  }
}
.cta-navy__body-title--small {
  font-size: 3.125rem;
}
@media (min-width: 751px) {
  .cta-navy__body-title--small {
    font-size: 2.8125rem;
  }
}
.cta-navy__body-text {
  text-align: center;
  font-size: 2.125rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .cta-navy__body-text {
    font-size: 1.625rem;
    line-height: 1;
  }
}
.cta-navy__body-text--large {
  font-size: 2.75rem;
}
@media (min-width: 751px) {
  .cta-navy__body-text--large {
    font-size: 2.25rem;
  }
}
@media (min-width: 751px) {
  .cta-navy__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 75rem;
    margin-inline: auto;
    padding-block: 1.25rem 1.5rem;
    padding-inline: 2.1875rem 1.375rem;
    position: relative;
    background: var(--white);
    border: 2px solid;
    border-radius: 0.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta-navy__wrapper {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding-block: 1.875rem 3.125rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--white);
  border: 2px solid;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .cta-navy__wrapper {
    display: grid;
    grid-template-areas: "day day" "mail line";
    gap: 1.5rem 0.75rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 0;
    -webkit-padding-start: 1.5625rem;
            padding-inline-start: 1.5625rem;
    border: none;
    border-left: 2px dotted var(--black);
    border-radius: 0;
  }
}
.cta-navy__wrapper::after {
  content: "";
  width: 7.625rem;
  height: 12.25rem;
  position: absolute;
  top: -6.125rem;
  right: -2.5rem;
  background: url(../images/cta/cta_human.webp) no-repeat top left/contain;
}
@media (min-width: 751px) {
  .cta-navy__wrapper::after {
    width: 4.875rem;
    height: 7.8125rem;
    top: -10.625rem;
    right: 10rem;
  }
}
.cta-navy__tel-wrapper {
  place-content: end;
}
.cta-navy__tel-button {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.6875rem 1.25rem;
  background: var(--red);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--red-shadow);
          box-shadow: 0 0.5rem 0 var(--red-shadow);
}
@media (min-width: 751px) {
  .cta-navy__tel-button {
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    padding-block: 0;
    background: none;
    color: var(--red);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 751px) {
  .cta-navy__tel-button::after {
    display: none;
  }
}
.cta-navy__tel-button::after {
  right: 1.25rem;
}
.cta-navy__tel-head {
  display: block;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .cta-navy__tel-head {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    text-align: center;
    color: var(--black);
    font-size: 1.625rem;
  }
}
.cta-navy__tel-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 751px) {
  .cta-navy__tel-body {
    gap: 0;
    color: var(--red);
  }
}
.cta-navy__tel-icon {
  width: 3rem;
}
@media (min-width: 751px) {
  .cta-navy__tel-icon {
    width: 4.125rem;
    -webkit-margin-end: 0.5rem;
            margin-inline-end: 0.5rem;
  }
}
.cta-navy__tel--small {
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .cta-navy__tel--small {
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
  }
}
.cta-navy__tel-num {
  position: relative;
  top: 0.25rem;
  font-size: 5rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .cta-navy__tel-num {
    font-size: 5rem;
    letter-spacing: 0;
  }
}
.cta-navy__mail {
  grid-area: mail;
}
.cta-navy__mail-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8125rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.625rem;
  padding-inline: 2.25rem 2.5rem;
  background: var(--blue-1);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--blue-shadow);
          box-shadow: 0 0.5rem 0 var(--blue-shadow);
}
@media (min-width: 751px) {
  .cta-navy__mail-button {
    place-content: center;
    display: block;
    width: 16.875rem;
    height: 6.25rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 2.1875rem;
    background: var(--blue-1);
    border-radius: 1.25rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--blue-shadow);
            box-shadow: 0 0.25rem 0 var(--blue-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta-navy__mail-button::after {
  right: 2.5rem;
}
@media (min-width: 751px) {
  .cta-navy__mail-button::after {
    right: 0.9375rem;
  }
}
.cta-navy__mail-icon {
  width: 2.8125rem;
}
@media (min-width: 751px) {
  .cta-navy__mail-icon {
    width: 1.375rem;
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    margin-inline: auto;
  }
}
.cta-navy__mail-text {
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-navy__mail-text {
    font-size: 1.25rem;
  }
}
.cta-navy__line {
  grid-area: line;
}
.cta-navy__line-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  padding-block: 2rem 1.25rem;
  padding-inline: 2.25rem 2.5rem;
  background: var(--line-green);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--line-green-shadow);
          box-shadow: 0 0.5rem 0 var(--line-green-shadow);
}
@media (min-width: 751px) {
  .cta-navy__line-button {
    place-content: center;
    display: block;
    width: 16.875rem;
    height: 6.25rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 2.1875rem;
    background: var(--line-green);
    border-radius: 1.25rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--line-green-shadow);
            box-shadow: 0 0.25rem 0 var(--line-green-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta-navy__line-button small {
  display: block;
  font-size: 1.375rem;
}
@media (min-width: 751px) {
  .cta-navy__line-button small {
    font-size: 0.8125rem;
  }
}
.cta-navy__line-button::after {
  right: 2.5rem;
}
@media (min-width: 751px) {
  .cta-navy__line-button::after {
    right: 0.9375rem;
  }
}
.cta-navy__line-icon {
  width: 3.5rem;
}
@media (min-width: 751px) {
  .cta-navy__line-icon {
    width: 1.8125rem;
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    margin-inline: auto;
  }
}
.cta-navy__line-text {
  display: block;
  -webkit-margin-after: 0.9375rem;
          margin-block-end: 0.9375rem;
  font-size: 2.375rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-navy__line-text {
    -webkit-margin-after: 0.5rem;
            margin-block-end: 0.5rem;
    font-size: 1.25rem;
  }
}
.cta-navy__button {
  position: relative;
}
.cta-navy__button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 751px) {
  .cta-navy__button::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.cta-navy__time {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-navy__time {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 0.875rem;
  }
}
.cta-navy__day {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-navy__day {
    grid-area: day;
    width: 100%;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.625rem;
  }
}
.cta-navy__day--large {
  font-size: 4.375rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .cta-navy__day--large {
    font-size: 2.625rem;
  }
}
.cta-navy__attention {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .cta-navy__attention {
    position: absolute;
    bottom: -2.125rem;
    right: 0;
    font-size: 0.625rem;
  }
}

.cta-gaiju {
  padding-block: 14.6875rem 4.6875rem;
  position: relative;
}
@media (min-width: 751px) {
  .cta-gaiju {
    padding-block: 7.1875rem 4.0625rem;
  }
}
.cta-gaiju__head {
  width: 44.375rem;
  position: absolute;
  top: -8.125rem;
  left: 50%;
  border: 2px solid var(--black);
  border-radius: 0.5625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 751px) {
  .cta-gaiju__head {
    display: grid;
    grid-template-columns: 41.875rem auto;
    width: 75rem;
    top: -4.375rem;
  }
}
@media (min-width: 751px) {
  .cta-gaiju__head::before {
    content: "";
    width: 3px;
    height: 1.25rem;
    position: absolute;
    top: 50%;
    right: -2px;
    background: var(--white);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.cta-gaiju__head::after {
  content: "";
  width: 2.75rem;
  height: 2rem;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  background: url(../images/common/cta-navy_head_fukidashi.webp) no-repeat top left/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .cta-gaiju__head::after {
    width: 1.4375rem;
    height: 1.0625rem;
    bottom: -0.8125rem;
    background: url(../images/common/cta-navy_head_fukidashi--pc.webp) no-repeat top left/cover;
  }
}
.cta-gaiju__head-title {
  padding-block: 1.75rem 1.25rem;
  background: var(--blue-3);
  text-align: center;
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .cta-gaiju__head-title {
    padding-block: 1.6875rem 1.5625rem;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.cta-gaiju__head-title--small {
  font-size: 2rem;
}
@media (min-width: 751px) {
  .cta-gaiju__head-title--small {
    font-size: 1.4375rem;
  }
}
.cta-gaiju__head-title--large {
  font-size: 3.5rem;
}
@media (min-width: 751px) {
  .cta-gaiju__head-title--large {
    font-size: 2.5rem;
  }
}
.cta-gaiju__head-title--super {
  position: absolute;
  top: -0.9375rem;
  right: -0.625rem;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .cta-gaiju__head-title--super {
    top: -0.5rem;
    right: -0.3125rem;
    font-size: 0.625rem;
  }
}
.cta-gaiju__head-title-block {
  position: relative;
}
@media (max-width: 750px) {
  .cta-gaiju__head-title .u-ls-tigth {
    letter-spacing: -0.5em;
  }
}
.cta-gaiju__head-logo {
  padding-block: 0.6875rem 0.8125rem;
  background: var(--white);
}
@media (min-width: 751px) {
  .cta-gaiju__head-logo {
    place-content: center;
    padding-block: 0;
    position: relative;
    border-radius: 0 0.625rem 0.625rem 0;
  }
}
.cta-gaiju__head-logo picture {
  width: 30.75rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .cta-gaiju__head-logo picture {
    width: 25.125rem;
  }
}
.cta-gaiju__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 3.125rem;
          margin-block-end: 3.125rem;
  margin-inline: 2.5rem;
  position: relative;
}
@media (min-width: 751px) {
  .cta-gaiju__body {
    margin-inline: auto;
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.cta-gaiju__body-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  margin-inline: auto 1.875rem;
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
  position: relative;
  border-bottom: 2px dotted var(--black);
  text-align: center;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.4;
}
@media (min-width: 751px) {
  .cta-gaiju__body-title {
    width: 62.5rem;
    -webkit-margin-after: 2.1875rem;
            margin-block-end: 2.1875rem;
    margin-inline: auto;
    -webkit-padding-after: 1.5625rem;
            padding-block-end: 1.5625rem;
    font-size: 2rem;
    line-height: 1;
  }
}
.cta-gaiju__body-title::before {
  content: "";
  width: 10.625rem;
  height: 15.5625rem;
  position: absolute;
  bottom: -0.9375rem;
  left: -10rem;
  background: url(../images/common/cta-navy_body_human.webp) no-repeat top left/cover;
}
@media (min-width: 751px) {
  .cta-gaiju__body-title::before {
    width: 5.375rem;
    height: 7.9375rem;
    bottom: 0.4375rem;
    left: 0.625rem;
    background: url(../images/common/cta-navy_body_human--pc.webp) no-repeat top left/cover;
  }
}
@media (min-width: 751px) {
  .cta-gaiju__body-title::after {
    content: "";
    width: 7.625rem;
    height: 12.25rem;
    position: absolute;
    bottom: 0;
    background: url(../images/cta/cta_human.webp) no-repeat top left/contain;
    width: 4.4375rem;
    height: 7.0625rem;
    bottom: 0.625rem;
    right: 1.25rem;
  }
}
.cta-gaiju__body-title--large {
  font-size: 3.375rem;
}
@media (min-width: 751px) {
  .cta-gaiju__body-title--large {
    font-size: 2.75rem;
  }
}
.cta-gaiju__body-title-bottom {
  letter-spacing: 0.05em;
}
.cta-gaiju__body-wrapper {
  display: grid;
  grid-template-columns: 100%;
}
@media (min-width: 751px) {
  .cta-gaiju__body-wrapper {
    grid-template-columns: 29.875rem 29.625rem;
    gap: 3rem;
  }
}
.cta-gaiju__body-text {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .cta-gaiju__body-text {
    font-size: 1rem;
  }
}
.cta-gaiju__body-text:not(:last-child) {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
}
@media (max-width: 750px) {
  .cta-gaiju__body-text:last-child {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
  }
}
.cta-gaiju__body-img img {
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .cta-gaiju__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 75rem;
    margin-inline: auto;
    padding-block: 1.25rem 1.5rem;
    padding-inline: 2.1875rem 1.375rem;
    position: relative;
    background: var(--white);
    border: 2px solid;
    border-radius: 0.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta-gaiju__wrapper {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
  padding-block: 1.875rem 3.125rem;
  padding-inline: 1.875rem;
  position: relative;
  background: var(--white);
  border: 2px solid;
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .cta-gaiju__wrapper {
    display: grid;
    grid-template-areas: "day day" "mail line";
    gap: 1.5rem 0.75rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 0;
    -webkit-padding-start: 1.5625rem;
            padding-inline-start: 1.5625rem;
    border: none;
    border-left: 2px dotted var(--black);
    border-radius: 0;
  }
}
@media (max-width: 750px) {
  .cta-gaiju__wrapper::after {
    content: "";
    width: 7.625rem;
    height: 12.25rem;
    position: absolute;
    top: -6.125rem;
    right: -2.5rem;
    background: url(../images/cta/cta_human.webp) no-repeat top left/contain;
  }
}
.cta-gaiju__tel-wrapper {
  place-content: end;
}
.cta-gaiju__tel-button {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.6875rem 1.25rem;
  background: var(--red);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--red-shadow);
          box-shadow: 0 0.5rem 0 var(--red-shadow);
}
@media (min-width: 751px) {
  .cta-gaiju__tel-button {
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    padding-block: 0;
    background: none;
    color: var(--red);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 751px) {
  .cta-gaiju__tel-button::after {
    display: none;
  }
}
.cta-gaiju__tel-button::after {
  right: 1.25rem;
}
.cta-gaiju__tel-head {
  display: block;
  -webkit-margin-after: 0.625rem;
          margin-block-end: 0.625rem;
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .cta-gaiju__tel-head {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    text-align: center;
    color: var(--black);
    font-size: 1.625rem;
  }
}
.cta-gaiju__tel-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 751px) {
  .cta-gaiju__tel-body {
    gap: 0;
    color: var(--red);
  }
}
.cta-gaiju__tel-icon {
  width: 3rem;
}
@media (min-width: 751px) {
  .cta-gaiju__tel-icon {
    width: 4.125rem;
    -webkit-margin-end: 0.5rem;
            margin-inline-end: 0.5rem;
  }
}
.cta-gaiju__tel--small {
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .cta-gaiju__tel--small {
    -webkit-margin-end: 0.75rem;
            margin-inline-end: 0.75rem;
  }
}
.cta-gaiju__tel-num {
  position: relative;
  top: 0.25rem;
  font-size: 5rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .cta-gaiju__tel-num {
    font-size: 5rem;
    letter-spacing: 0;
  }
}
.cta-gaiju__mail {
  grid-area: mail;
}
.cta-gaiju__mail-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8125rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-block: 1.625rem;
  padding-inline: 2.25rem 2.5rem;
  background: var(--blue-1);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--blue-shadow);
          box-shadow: 0 0.5rem 0 var(--blue-shadow);
}
@media (min-width: 751px) {
  .cta-gaiju__mail-button {
    place-content: center;
    display: block;
    width: 16.875rem;
    height: 6.25rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 2.1875rem;
    background: var(--blue-1);
    border-radius: 1.25rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--blue-shadow);
            box-shadow: 0 0.25rem 0 var(--blue-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta-gaiju__mail-button::after {
  right: 2.5rem;
}
@media (min-width: 751px) {
  .cta-gaiju__mail-button::after {
    right: 0.9375rem;
  }
}
.cta-gaiju__mail-icon {
  width: 2.8125rem;
}
@media (min-width: 751px) {
  .cta-gaiju__mail-icon {
    width: 1.375rem;
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    margin-inline: auto;
  }
}
.cta-gaiju__mail-text {
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-gaiju__mail-text {
    font-size: 1.25rem;
  }
}
.cta-gaiju__line {
  grid-area: line;
}
.cta-gaiju__line-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  padding-block: 2rem 1.25rem;
  padding-inline: 2.25rem 2.5rem;
  background: var(--line-green);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--line-green-shadow);
          box-shadow: 0 0.5rem 0 var(--line-green-shadow);
}
@media (min-width: 751px) {
  .cta-gaiju__line-button {
    place-content: center;
    display: block;
    width: 16.875rem;
    height: 6.25rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 2.1875rem;
    background: var(--line-green);
    border-radius: 1.25rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--line-green-shadow);
            box-shadow: 0 0.25rem 0 var(--line-green-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.cta-gaiju__line-button small {
  display: block;
  font-size: 1.375rem;
}
@media (min-width: 751px) {
  .cta-gaiju__line-button small {
    font-size: 0.8125rem;
  }
}
.cta-gaiju__line-button::after {
  right: 2.5rem;
}
@media (min-width: 751px) {
  .cta-gaiju__line-button::after {
    right: 0.9375rem;
  }
}
.cta-gaiju__line-icon {
  width: 3.5rem;
}
@media (min-width: 751px) {
  .cta-gaiju__line-icon {
    width: 1.8125rem;
    -webkit-margin-after: 0.625rem;
            margin-block-end: 0.625rem;
    margin-inline: auto;
  }
}
.cta-gaiju__line-text {
  display: block;
  -webkit-margin-after: 0.9375rem;
          margin-block-end: 0.9375rem;
  font-size: 2.375rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-gaiju__line-text {
    -webkit-margin-after: 0.5rem;
            margin-block-end: 0.5rem;
    font-size: 1.25rem;
  }
}
.cta-gaiju__button {
  position: relative;
}
.cta-gaiju__button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 751px) {
  .cta-gaiju__button::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.cta-gaiju__time {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-gaiju__time {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 0.875rem;
  }
}
.cta-gaiju__day {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .cta-gaiju__day {
    grid-area: day;
    width: 100%;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    font-size: 1.625rem;
  }
}
.cta-gaiju__day--large {
  font-size: 4.375rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .cta-gaiju__day--large {
    font-size: 2.625rem;
  }
}
.cta-gaiju__attention {
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .cta-gaiju__attention {
    position: absolute;
    bottom: -2.125rem;
    right: 0;
    font-size: 0.625rem;
  }
}

.section__title-en {
  text-align: center;
  color: var(--red);
  font-size: 2.25rem;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.15em;
}
@media (min-width: 751px) {
  .section__title-en {
    font-size: 1.375rem;
  }
}

.breadcrumbs {
  -webkit-margin-before: 7.5rem;
          margin-block-start: 7.5rem;
  padding-block: 1.25rem;
  padding-inline: 2.5rem;
  background: var(--blue-1);
}
@media (min-width: 751px) {
  .breadcrumbs {
    -webkit-margin-before: 8.9375rem;
            margin-block-start: 8.9375rem;
    padding-block: 0.625rem;
  }
}
.breadcrumbs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 751px) {
  .breadcrumbs__container {
    gap: 0.625rem;
    width: 76.875rem;
  }
}
.breadcrumbs p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  position: relative;
  color: #b5c2d3;
  font-size: 1.25rem;
}
@media (min-width: 751px) {
  .breadcrumbs p {
    gap: 0.625rem;
    font-size: 0.75rem;
  }
}
.breadcrumbs p:last-child {
  color: var(--white);
}
.breadcrumbs p:not(:last-child)::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #b5c2d3;
  border-right: 0.125rem solid #b5c2d3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 751px) {
  .breadcrumbs p:not(:last-child)::after {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}
.breadcrumbs p:nth-last-child(2)::after {
  border-color: var(--white);
}
.breadcrumbs p a {
  color: #b5c2d3;
}

.page-hero {
  -webkit-padding-after: 4.0625rem;
          padding-block-end: 4.0625rem;
  background: var(--white);
}
@media (min-width: 751px) {
  .page-hero {
    -webkit-padding-before: 3.125rem;
            padding-block-start: 3.125rem;
  }
}
@media (min-width: 751px) {
  .page-hero__container {
    max-width: 90rem;
    position: relative;
    margin-inline: auto;
  }
}
.page-hero__img {
  -webkit-margin-after: 6.875rem;
          margin-block-end: 6.875rem;
}
@media (min-width: 751px) {
  .page-hero__img {
    width: 85rem;
    -webkit-margin-after: 5rem;
            margin-block-end: 5rem;
    margin-inline: auto;
  }
}
.page-hero__title-wrapper {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}
.page-hero__title {
  position: absolute;
  top: 12.9375rem;
  left: 2.1875rem;
  font-size: 3.4375rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .page-hero__title {
    top: 13.375rem;
    left: 13.75rem;
    font-size: 3rem;
  }
}
.page-hero__title-head {
  -webkit-margin-after: 2.3125rem;
          margin-block-end: 2.3125rem;
  font-size: 1.75rem;
}
@media (min-width: 751px) {
  .page-hero__title-head {
    -webkit-margin-after: 2.3125rem;
            margin-block-end: 2.3125rem;
    font-size: 1.625rem;
  }
}
.page-hero__text {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .page-hero__text {
    font-size: 1.125rem;
  }
}

.c-pagination__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 751px) {
  .c-pagination__links {
    gap: 0.75rem;
  }
}
.c-pagination__num {
  place-content: center;
  width: 4.4375rem;
  height: 4.4375rem;
  background: #f0efec;
  border-radius: 50%;
  text-align: center;
  color: var(--black);
  font-size: 2rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .c-pagination__num {
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 1rem;
  }
}
.c-pagination__current {
  background: var(--black);
  color: var(--white);
}
.c-pagination__prev {
  position: relative;
}
.c-pagination__prev::after {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
  -webkit-transform: translate(-30%, -50%) rotate(-45deg);
          transform: translate(-30%, -50%) rotate(-45deg);
}
@media (min-width: 751px) {
  .c-pagination__prev::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}
.c-pagination__next {
  position: relative;
}
.c-pagination__next::after {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
          transform: translate(-60%, -50%) rotate(45deg);
}
@media (min-width: 751px) {
  .c-pagination__next::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.single-cta__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  background: var(--lightBeige);
  border: 0.25rem solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .single-cta__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-width: 0.125rem;
    overflow: hidden;
  }
}
.single-cta__wrapper {
  padding-inline: 3.4375rem;
}
@media (max-width: 750px) {
  .single-cta__wrapper {
    padding-block: 2.5rem 2.75rem;
  }
}
@media (min-width: 751px) {
  .single-cta__wrapper {
    width: 100%;
    padding-inline: 1.125rem;
  }
}
@media (min-width: 751px) {
  .single-cta.spacer .single-cta__wrapper {
    padding-block: 2rem;
  }
}
@media (min-width: 751px) {
  .single-cta__block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1875rem;
    width: 28.625rem;
    -webkit-margin-after: 1rem;
            margin-block-end: 1rem;
    margin-inline: auto;
  }
}
.single-cta__title {
  -webkit-margin-after: 2.75rem;
          margin-block-end: 2.75rem;
  text-align: center;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .single-cta__title {
    -webkit-margin-after: 0.875rem;
            margin-block-end: 0.875rem;
    font-size: 1.5rem;
  }
}
.single-cta__tel {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  line-height: 1 !important;
}
.single-cta__tel-button {
  place-content: center;
  -webkit-margin-after: 1.0625rem;
          margin-block-end: 1.0625rem;
  -webkit-padding-start: 3.75rem;
          padding-inline-start: 3.75rem;
  position: relative;
  background: var(--red);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--red-shadow);
          box-shadow: 0 0.5rem 0 var(--red-shadow);
}
@media (min-width: 751px) {
  .single-cta__tel-button {
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 0;
    padding-inline: 0;
    background: none;
    color: var(--red);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (min-width: 751px) {
  .single-cta__tel-button::after {
    display: none;
  }
}
.single-cta__tel-head {
  display: block;
  -webkit-margin-after: 0rem;
          margin-block-end: 0rem;
  font-size: 1.875rem;
}
@media (min-width: 751px) {
  .single-cta__tel-head {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    text-align: center;
    color: var(--black);
    font-size: 1.625rem;
  }
}
.single-cta__tel-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.75rem;
}
@media (min-width: 751px) {
  .single-cta__tel-body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    color: var(--red);
  }
}
.single-cta__tel-icon {
  width: 3rem;
}
@media (min-width: 751px) {
  .single-cta__tel-icon {
    width: 3.125rem;
    -webkit-margin-end: 0.625rem;
            margin-inline-end: 0.625rem;
  }
}
.single-cta__tel--small {
  font-size: 1.625rem;
}
@media (min-width: 751px) {
  .single-cta__tel--small {
    -webkit-margin-end: 0.625rem;
            margin-inline-end: 0.625rem;
    font-size: 1.25rem;
  }
}
.single-cta__tel-num {
  position: relative;
  top: 0.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .single-cta__tel-num {
    font-size: 4rem;
    letter-spacing: 0;
  }
}
.single-cta__time {
  -webkit-margin-after: 1.3125rem !important;
          margin-block-end: 1.3125rem !important;
  font-size: 0.8125rem !important;
}
.single-cta__mail {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}
.single-cta__mail-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  padding-inline: 2.5rem;
  position: relative;
  background: #0e2b69;
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--blue-shadow);
          box-shadow: 0 0.5rem 0 var(--blue-shadow);
}
@media (min-width: 751px) {
  .single-cta__mail-button {
    gap: 1.5rem;
    height: 5.3125rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-block: 1.25rem 1.4375rem;
    padding-inline: 0.9375rem 0;
    border-radius: 0.9375rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--blue-shadow);
            box-shadow: 0 0.25rem 0 var(--blue-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.single-cta__mail-icon {
  width: 2.5625rem;
  position: relative;
  top: 0.1875rem;
}
@media (min-width: 751px) {
  .single-cta__mail-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 1.375rem;
  }
}
.single-cta__mail-text {
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-cta__mail-text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.single-cta__line {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}
.single-cta__line-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4375rem;
  -webkit-margin-after: 2.0625rem;
          margin-block-end: 2.0625rem;
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
  position: relative;
  background: var(--line-green);
  border-radius: var(--around);
  text-align: center;
  color: var(--white);
  -webkit-box-shadow: 0 0.5rem 0 var(--line-green-shadow);
          box-shadow: 0 0.5rem 0 var(--line-green-shadow);
}
@media (min-width: 751px) {
  .single-cta__line-button {
    gap: 1.0625rem;
    height: 5.3125rem;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    padding-inline: 0.9375rem 0;
    background: var(--line-green);
    border-radius: 0.9375rem;
    color: var(--white);
    -webkit-box-shadow: 0 0.25rem 0 var(--line-green-shadow);
            box-shadow: 0 0.25rem 0 var(--line-green-shadow);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.single-cta__line-icon {
  width: 3.5rem;
  position: relative;
  top: 0.125rem;
}
@media (min-width: 751px) {
  .single-cta__line-icon {
    width: 1.8125rem;
  }
}
.single-cta__line-text {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-cta__line-text {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.single-cta__button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 750px) {
  .single-cta__button {
    height: 6.25rem;
  }
}
.single-cta__button::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 751px) {
  .single-cta__button::after {
    width: 0.375rem;
    height: 0.375rem;
    right: 0.9375rem;
  }
}
.single-cta__time {
  -webkit-margin-after: 1.625rem !important;
          margin-block-end: 1.625rem !important;
  text-align: center;
  font-size: 1.25rem !important;
  font-weight: 700;
}
@media (min-width: 751px) {
  .single-cta__time {
    -webkit-margin-after: 1.3125rem !important;
            margin-block-end: 1.3125rem !important;
    font-size: 0.8125rem !important;
  }
}
.single-cta__reception {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  text-align: center;
  font-size: 1.25rem !important;
  font-weight: 500;
}
@media (min-width: 751px) {
  .single-cta__reception {
    font-size: 0.8125rem !important;
  }
}

.author__container {
  padding-block: 2.5rem 3.125rem;
  padding-inline: 1.5rem;
  position: relative;
  background: var(--white);
  border: 0.125rem solid var(--black);
  border-radius: 0.625rem;
}
@media (min-width: 751px) {
  .author__container {
    display: grid;
    grid-template-columns: 10.125rem 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1.6875rem;
    padding-block: 2.625rem 2.3125rem;
    padding-inline: 2.5rem;
  }
}
.author__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.875rem;
  position: absolute;
  top: -0.9375rem;
  left: 50%;
  background: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 751px) {
  .author__title {
    top: -0.625rem;
    padding-inline: 1.5rem;
    font-size: 1.25rem;
  }
}
@media (max-width: 750px) {
  .author__img {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}
.author__lead {
  -webkit-margin-after: 1.875rem;
          margin-block-end: 1.875rem;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .author__lead {
    -webkit-margin-after: 1.0625rem;
            margin-block-end: 1.0625rem;
    text-align: left;
    font-size: 1.25rem;
  }
}
.author__text {
  -webkit-margin-after: 2.8125rem !important;
          margin-block-end: 2.8125rem !important;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .author__text {
    -webkit-margin-after: 0 !important;
            margin-block-end: 0 !important;
    font-size: 1rem;
    line-height: 1.7;
  }
}
.author__qualification p {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .author__qualification p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (min-width: 751px) {
  .sidebar {
    height: 100%;
    -webkit-margin-before: 3.25rem;
            margin-block-start: 3.25rem;
    position: sticky;
    top: 10rem;
    z-index: 10;
  }
}
@media (min-width: 751px) {
  .sidebar__container {
    width: 21.875rem;
  }
}
@media (min-width: 751px) {
  .sidebar__wrapper {
    height: 31.25rem;
    overflow-y: scroll;
  }
}
.sidebar__title {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  -webkit-padding-after: 1.5625rem;
          padding-block-end: 1.5625rem;
  border-bottom: 2px solid var(--black);
  font-size: 1.625rem;
  font-weight: 700;
}
@media (min-width: 751px) {
  .sidebar__title {
    -webkit-margin-after: 1.4375rem;
            margin-block-end: 1.4375rem;
    -webkit-padding-after: 0.6875rem;
            padding-block-end: 0.6875rem;
    font-size: 0.875rem;
  }
}
.sidebar__title-en {
  display: inline-block;
  -webkit-margin-end: 1.875rem;
          margin-inline-end: 1.875rem;
  color: var(--red);
  font-size: 3.125rem;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .sidebar__title-en {
    -webkit-margin-end: 1rem;
            margin-inline-end: 1rem;
    font-size: 1.625rem;
  }
}
.sidebar__article:not(:last-child) {
  -webkit-margin-after: 2.6875rem;
          margin-block-end: 2.6875rem;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
  border-bottom: 0.125rem dotted var(--black);
}
@media (min-width: 751px) {
  .sidebar__article:not(:last-child) {
    -webkit-margin-after: 1.25rem;
            margin-block-end: 1.25rem;
    -webkit-padding-after: 1.25rem;
            padding-block-end: 1.25rem;
  }
}
.sidebar__article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 2rem;
}
@media (max-width: 750px) {
  .sidebar__article a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 750px) {
  .sidebar__article a:not(:last-child) {
    gap: 1.25rem;
    -webkit-margin-after: 2.75rem;
            margin-block-end: 2.75rem;
    -webkit-padding-after: 2.5625rem;
            padding-block-end: 2.5625rem;
    border-bottom: 2px dotted var(--black);
  }
}
.sidebar__article-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 750px) {
  .sidebar__article-wrapper {
    gap: 3.125rem;
  }
}
.sidebar__article-title {
  color: var(--black);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 751px) {
  .sidebar__article-title {
    font-size: 1rem;
  }
}
.sidebar__article-thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15rem;
  height: 100%;
}
@media (min-width: 751px) {
  .sidebar__article-thumb {
    width: 7.8125rem;
  }
}
.sidebar__article-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  color: #aaa;
  font-size: 1.5rem;
  font-family: var(--font-en);
}
@media (min-width: 751px) {
  .sidebar__article-date {
    font-size: 0.8125rem !important;
  }
}
.sidebar__article-date::before {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../images/common/article-date-icon.webp) top left/cover;
}
@media (min-width: 751px) {
  .sidebar__article-date::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

/*
3.3 - Utility
============================================================================= */
.u-display--pc {
  display: none !important;
}
@media (min-width: 751px) {
  .u-display--pc {
    display: block !important;
  }
}
.u-display--sp {
  display: block !important;
}
@media (min-width: 751px) {
  .u-display--sp {
    display: none !important;
  }
}

.u-inline--pc {
  display: none !important;
}
@media (min-width: 751px) {
  .u-inline--pc {
    display: inline !important;
  }
}
.u-inline--sp {
  display: inline !important;
}
@media (min-width: 751px) {
  .u-inline--sp {
    display: none !important;
  }
}

.u-bg-beige {
  background: var(--beige);
}
.u-bg-beige--sp {
  background: var(--beige);
}
@media (min-width: 751px) {
  .u-bg-beige--sp {
    background: transparent;
  }
}
.u-bg-beige--pc {
  background: transparent;
}
@media (min-width: 751px) {
  .u-bg-beige--pc {
    background: var(--beige);
  }
}

.u-bg-lightBeige {
  background: var(--lightBeige);
}
.u-bg-lightBeige--sp {
  background: var(--lightBeige);
}
@media (min-width: 751px) {
  .u-bg-lightBeige--sp {
    background: transparent;
  }
}
.u-bg-lightBeige--pc {
  background: transparent;
}
@media (min-width: 751px) {
  .u-bg-lightBeige--pc {
    background: var(--lightBeige);
  }
}

.u-bg-darkBeige {
  background: var(--darkBeige);
}
.u-bg-darkBeige--sp {
  background: var(--darkBeige);
}
@media (min-width: 751px) {
  .u-bg-darkBeige--sp {
    background: transparent;
  }
}
.u-bg-darkBeige--pc {
  background: transparent;
}
@media (min-width: 751px) {
  .u-bg-darkBeige--pc {
    background: var(--darkBeige);
  }
}

.u-break {
  display: inline-block;
}
@media (min-width: 751px) {
  .u-break--pc {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  .u-break--sp {
    display: inline-block;
  }
}

.u-br {
  display: block;
}
@media (max-width: 750px) {
  .u-br--sp {
    display: block;
  }
}
@media (min-width: 751px) {
  .u-br--pc {
    display: block;
  }
}

.u-spacer-bottom-tight {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
}
.u-spacer-bottom-regular {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
}
.u-spacer-bottom-medium {
  -webkit-margin-after: 1.5em;
          margin-block-end: 1.5em;
}

.u-ta-center {
  text-align: center;
}
.u-ta-left {
  text-align: left;
}
.u-ta-right {
  text-align: right;
}

.u-color-black {
  color: var(--black);
}
.u-color-white {
  color: var(--white);
}
.u-color-red {
  color: var(--red);
}

.u-lh-tigth {
  line-height: 1.25;
}
.u-lh-regular {
  line-height: 1.5;
}
.u-lh-medium {
  line-height: 1.8;
}

.u-ls-tigth {
  letter-spacing: 0.05em;
}
.u-ls-regular {
  letter-spacing: 0.1em;
}
.u-ls-medium {
  letter-spacing: 0.15em;
}
.u-ls-large {
  letter-spacing: 0.2em;
}

.u-marker-yellow {
  text-decoration: underline;
  text-decoration-color: #fdec5c;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.25em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.u-fw-light {
  font-weight: 300 !important;
}

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

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

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

.u-fw-black {
  font-weight: 900 !important;
}

.u-ff-ja {
  font-family: var(--font-ja) !important;
}

.u-ff-en {
  font-family: var(--font-en) !important;
}

.u-ff-mix {
  font-family: var(--font-mix) !important;
}

.u-visuallyHidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*----------------------------------------------------------
    validation message
----------------------------------------------------------*/
.page-contact .form__table .error {
  background: var(--lightRed);
}
@media (max-width: 750px) {
  .page-contact .form__table .errmsg-box {
    margin: 1em 0 2em;
    padding: 1em;
    color: var(--moodyRed);
    font-size: 1.625rem;
    font-weight: bold;
    line-height: normal;
    background: var(--lightRed);
  }
}
@media (min-width: 751px) {
  .page-contact .form__table .errmsg-box {
    margin: 1em 0 2em;
    padding: 1em;
    color: var(--moodyRed);
    font-size: 1rem;
    font-weight: bold;
    line-height: normal;
    background: var(--lightRed);
  }
}