@charset "UTF-8";
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;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

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

.wrapper {
  position: relative;
}

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

picture,
figure {
  display: block;
}

img {
  width: 100%;
}

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

body {
  position: relative;
  overflow-x: hidden;
  word-break: break-all;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
}

@font-face {
  font-family: "gothicM";
  src: url(../fonts/A-OTF-GothicMB101Pr5-Medium.otf) format("opentype");
}
@font-face {
  font-family: "gothicB";
  src: url(../fonts/A-OTF-GothicMB101Pr5-Bold.otf) format("opentype");
}
@font-face {
  font-family: "gothicDB";
  src: url(../fonts/A-OTF-GothicMB101Pr5-DeBold.otf) format("opentype");
}
@font-face {
  font-family: "gothicH";
  src: url(../fonts/A-OTF-GothicMB101Pr5-Heavy.otf) format("opentype");
}
@font-face {
  font-family: "dinB";
  src: url(../fonts/DINNextLTPro-Bold.otf) format("opentype");
}
.arial {
  font-family: Arial, Helvetica, sans-serif;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
}

.hiragino {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  xl-PC
  ----------------------------------------------- */
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    width: 44.375rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    width: 62.5rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 767px) {
  .header-bg {
    background: #fff;
  }
  .header-inner {
    padding: 0.4375rem 0.625rem 0.5rem 1.875rem;
  }
  .header-box {
    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;
  }
  .header-logo {
    width: 23.5rem;
  }
  .header-tel {
    width: 17.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .header-bg {
    background: #fff;
  }
  .header-inner {
    padding: 0.8125rem 0;
  }
  .header-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header-logo {
    width: 19.5rem;
    padding: 0.125rem 0 0 0;
  }
  .header-tel-txt {
    font-size: 2.875rem;
    color: #ff2100;
    font-weight: bold;
    position: relative;
    padding-top: 0.5625rem;
  }
  .header-tel-txt::before {
    content: "";
    position: absolute;
    background: url(../images/header-tel.webp) no-repeat center/cover;
    width: 3.8125rem;
    height: 3rem;
    top: 5%;
    left: -23%;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {
  .fv-bg {
    background: url(../images/fv-bg_sp.webp) no-repeat center/cover;
  }
  .fv-inner {
    padding: 0.4375rem 0 2.5rem;
  }
  .fv-txt01 {
    width: 46.875rem;
    margin-left: -1.25rem;
  }
  .fv-ttl01 {
    width: 45.625rem;
    margin-left: -0.625rem;
    margin-top: 0.1875rem;
  }
  .fv-txt02 {
    width: 100%;
    margin: 1.5rem 0 0 0;
  }
  .fv-box-mail {
    font-size: 1.875rem;
    letter-spacing: 0.04em;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    border-bottom: #fff solid 0.1125rem;
    width: 27.3125rem;
    margin: 1.25rem auto 0;
    padding: 0 0 0.125rem;
  }
  .fv-box-ttl02 {
    font-family: "gothicB";
    font-size: 1.625rem;
    color: #fff;
    letter-spacing: 0.04em;
    padding: 0 0 0 8.125rem;
  }
  .fv-box-ttl02 .big {
    font-size: 1.875rem;
  }
  .fv-cta-tel {
    background: url(../images/cta-btn_sp.webp) no-repeat center/cover;
    width: 45rem;
    margin: 0.625rem 0 0 -0.3125rem;
    padding: 3.1875rem 0 2.625rem 0;
  }
  .fv-cta-tel-txt {
    font-size: 4.5625rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: -0.02em;
    position: relative;
    padding: 0.25rem 0 0 11.5625rem;
  }
  .fv-cta-tel-txt::before {
    content: "";
    position: absolute;
    background: url(../images/cta-tel_sp.webp) no-repeat center/cover;
    width: 9.375rem;
    height: 5.75rem;
    bottom: 13%;
    left: 4.3%;
  }
  .fv-cta-tel-txt03 {
    font-size: 1.375rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: 0.5rem 0 0 0;
  }
  .fv-note {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    margin: 2.5625rem 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .fv-bg {
    background: url(../images/fv-bg.webp) no-repeat center/cover;
    padding: 0.3125rem 0 2.5rem 0;
  }
  .fv-txt01 {
    width: 56.25rem;
    padding: 0 0 0 8.75rem;
  }
  .fv-ttl01 {
    width: 34.6875rem;
    margin: 1.875rem 0 0 0;
  }
  .fv-txt02 {
    width: 38.3125rem;
    margin: 0.9375rem auto 0;
  }
  .fv-box {
    background: #fff;
    padding: 1.5625rem 0 1.3125rem;
    margin: 0.6875rem 0 0 0;
  }
  .fv-box-ttl01 {
    font-family: "gothicB";
    font-size: 1.375rem;
    color: #f50000;
    letter-spacing: 0.04em;
    text-align: center;
    position: relative;
    margin-top: 0.125rem;
  }
  .fv-box-ttl01 .color {
    color: #0117c3;
  }
  .fv-box-ttl01 .big {
    font-size: 1.75rem;
  }
  .fv-box-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/cta-item01.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 1.875rem;
    top: 0;
    left: 23.8%;
  }
  .fv-box-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item02.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 1.875rem;
    top: 0;
    right: 23.8%;
  }
  .fv-box-tel-txt {
    font-size: 4.375rem;
    color: #ff2100;
    font-weight: bold;
    text-align: center;
    margin-right: -7.1875rem;
    letter-spacing: -0.02em;
    position: relative;
    margin-top: 0.375rem;
  }
  .fv-box-tel-txt .small {
    font-size: 0.875rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 0;
    padding-left: 0.625rem;
  }
  .fv-box-tel-txt::before {
    content: "";
    position: absolute;
    background: url(../images/cta-tel.webp) no-repeat center/cover;
    width: 7.75rem;
    height: 3.9375rem;
    bottom: 16%;
    left: 11%;
  }
  .fv-box-mail {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    font-family: "gothicB";
    color: #1c2ec7;
    text-align: center;
    border-bottom: #9b9fe0 solid 0.1875rem;
    width: 16.4375rem;
    margin: 0.5625rem auto 0;
    padding: 0 0 0.0625rem;
  }
  .fv-note {
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0;
    margin: 1.4375rem 0 0 0;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {
  .support-bg {
    background: #e9eff2;
    padding: 3.125rem 0 5rem;
  }
  .support-head-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .support-head-img01 {
    margin-left: -0.5rem;
  }
  .support-head-img02 {
    margin-right: -0.75rem;
  }
  .support-ttl01 {
    margin: 3.125rem auto 0;
  }
  .support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0.5625rem 0.625rem;
    margin: 0.9375rem 0 0 0;
  }
  .support-txt01 {
    width: 27.1875rem;
    margin: 1.25rem auto -1.75rem;
    position: relative;
    z-index: 5;
  }
  .support-btm-block {
    background: #fff;
    padding: 2.6875rem 0 1.6875rem 1.25rem;
    position: relative;
  }
  .support-btm-block::before {
    position: absolute;
    content: "";
    background: url(../images/support-txt02.webp) no-repeat center/cover;
    width: 22.6875rem;
    height: 18.75rem;
    top: 6%;
    right: 2%;
  }
  .support-btm-box .txt {
    font-size: 1.625rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    position: relative;
    margin: 0 0 0.91875rem;
    padding: 0 0 0 2.5rem;
  }
  .support-btm-box .txt::before {
    content: "";
    position: absolute;
    background: url(../images/support-item01.webp) no-repeat center/cover;
    width: 2.125rem;
    height: 1.875rem;
    top: -12%;
    left: 0%;
  }
  .support-btm-box .txt .alert {
    display: inline-block;
    font-size: 1.25rem;
    -webkit-transform: translate(0.0625rem, -0.4375rem);
            transform: translate(0.0625rem, -0.4375rem);
  }
  .support-note {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    color: #555;
    margin: 1.8125rem 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .support-bg {
    background: #e9eff2;
    padding: 2.9375rem 0 6.25rem;
  }
  .support-head-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .support-ttl01 {
    width: 44.625rem;
    margin: 3.125rem auto 0;
  }
  .support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0.8125rem 1.25rem;
    margin: 1.875rem 0 0 0;
  }
  .support-txt01 {
    width: 27.0625rem;
    margin: 1.875rem auto -1.875rem;
    position: relative;
    z-index: 5;
  }
  .support-btm-block {
    background: #fff;
    padding: 3.5625rem 0 2.8125rem 5.9375rem;
    position: relative;
  }
  .support-btm-block::before {
    position: absolute;
    content: "";
    background: url(../images/support-txt02.webp) no-repeat center/cover;
    width: 15.1875rem;
    height: 12.5625rem;
    top: 15%;
    right: 7%;
  }
  .support-btm-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 31.75rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .support-btm-box .txt {
    font-size: 1.375rem;
    letter-spacing: 0.02em;
    position: relative;
    margin: 0 0 1.25rem;
    padding: 0 0 0 2.5rem;
  }
  .support-btm-box .txt::before {
    content: "";
    position: absolute;
    background: url(../images/support-item01.webp) no-repeat center/cover;
    width: 2rem;
    height: 1.875rem;
    top: -28%;
    left: 1%;
  }
  .support-btm-box .txt .alert {
    display: inline-block;
    font-size: 1rem;
    -webkit-transform: translate(0.0625rem, -0.4375rem);
            transform: translate(0.0625rem, -0.4375rem);
  }
  .support-note {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
}
/*==============================================================================
cta
============================================================================= */
@media screen and (max-width: 767px) {
  .cta-bg {
    background: url(../images/cta-bg_sp.webp) no-repeat center/cover;
    padding: 0.0625rem 0 3.3125rem;
  }
  .cta-head-ttl {
    width: 27.8125rem;
    margin: -1.25rem 0 0 -0.5rem;
  }
  .cta-box-ttl {
    font-family: "gothicB";
    color: #fff;
    font-size: 2.875rem;
    text-align: center;
    font-style: italic;
    letter-spacing: 0;
    margin: 3.3125rem 0 0;
    line-height: 1.24;
  }
  .cta-box-ttl .color {
    color: #f8fb02;
    font-size: 4.0625rem;
  }
  .cta-box-ttl .mid {
    font-size: 4.0625rem;
  }
  .cta-box-txt01 {
    width: 45rem;
    margin: -0.1875rem 0 0 -0.625rem;
  }
  .cta-box-ttl02 {
    font-family: "gothicB";
    font-size: 1.625rem;
    color: #fff;
    letter-spacing: 0.04em;
    padding: 0 0 0 8.125rem;
  }
  .cta-box-ttl02 .big {
    font-size: 1.875rem;
  }
  .cta-box-img01 {
    width: 100%;
    margin-top: 0.625rem;
  }
  .cta-tel {
    background: url(../images/cta-btn_sp.webp) no-repeat center/cover;
    width: 45rem;
    margin: 1.0625rem 0 0 -0.3125rem;
    padding: 3.1875rem 0 2.5rem 0;
  }
  .cta-tel-txt {
    font-size: 4.5625rem;
    color: #fff;
    font-weight: bold;
    letter-spacing: -0.02em;
    position: relative;
    padding: 0.1875rem 0 0 11.5625rem;
  }
  .cta-tel-txt::before {
    content: "";
    position: absolute;
    background: url(../images/cta-tel_sp.webp) no-repeat center/cover;
    width: 9.375rem;
    height: 5.75rem;
    bottom: 13%;
    left: 4.3%;
  }
  .cta-tel-txt03 {
    font-size: 1.375rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: 0.5rem 0 0 0;
  }
  .cta-mail {
    font-size: 1.875rem;
    letter-spacing: 0.04em;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    border-bottom: #fff solid 0.1125rem;
    width: 27.3125rem;
    margin: 1.25rem auto 0;
    padding: 0 0 0.125rem;
  }
  .cta-contents-txt01 {
    background: #0698f1;
    padding: 0.3125rem 3.125rem 0.625rem 3.125rem;
    margin: 2.625rem 0 0 0;
  }
  .cta-contents-time {
    background: #fff;
    color: #ff2100;
    font-size: 1.75rem;
    padding: 1.4375rem 0 1.5625rem;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .cta-contents-time .color {
    color: #000;
  }
  .cta-note {
    font-size: 1.25rem;
    margin: 1.25rem 0 0 0;
    color: #fff;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .cta-bg {
    background: url(../images/cta-bg.webp) no-repeat center/cover;
    padding: 0.0625rem 0 3.125rem;
  }
  .cta-head-ttl {
    width: 47.9375rem;
    margin: -1.0625rem 0 0 1.125rem;
  }
  .cta-box {
    padding: 0 1.875rem;
  }
  .cta-box-ttl {
    font-family: "gothicB";
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    font-style: italic;
    letter-spacing: 0;
    margin: 3.25rem 0 0;
  }
  .cta-box-ttl .color {
    color: #f8fb02;
    font-size: 4.0625rem;
  }
  .cta-box-ttl .mid {
    font-size: 3.75rem;
  }
  .cta-box-txt01 {
    width: 40.4375rem;
    margin: 0.4375rem auto 1.1875rem;
  }
  .cta-box-inner {
    background: #fff;
    padding: 1.625rem 5.625rem 1.75rem 5.625rem;
    position: relative;
  }
  .cta-box-ttl02 {
    font-family: "gothicB";
    font-size: 1.375rem;
    color: #f50000;
    letter-spacing: 0.04em;
    text-align: center;
    position: relative;
    margin-top: 0.125rem;
  }
  .cta-box-ttl02 .color {
    color: #0117c3;
  }
  .cta-box-ttl02 .big {
    font-size: 1.75rem;
  }
  .cta-box-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/cta-item01.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 1.875rem;
    top: 0;
    left: 15%;
  }
  .cta-box-ttl02::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item02.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 1.875rem;
    top: 0;
    right: 15%;
  }
  .cta-box-img01 {
    margin-top: 0.3125rem;
  }
  .cta-tel-txt {
    font-size: 4.375rem;
    color: #ff2100;
    font-weight: bold;
    text-align: center;
    margin-right: -7.1875rem;
    letter-spacing: -0.02em;
    position: relative;
    margin-top: 0.5rem;
  }
  .cta-tel-txt .small {
    font-size: 0.875rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 0;
    padding-left: 0.625rem;
  }
  .cta-tel-txt::before {
    content: "";
    position: absolute;
    background: url(../images/cta-tel.webp) no-repeat center/cover;
    width: 7.75rem;
    height: 3.9375rem;
    bottom: 16%;
    left: 0;
  }
  .cta-mail {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    font-family: "gothicB";
    color: #1c2ec7;
    text-align: center;
    border-bottom: #9b9fe0 solid 0.1875rem;
    width: 16.4375rem;
    margin: 0.5625rem auto 0;
    padding: 0 0 0.0625rem;
  }
  .cta-contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1.25rem 0 0 0;
  }
  .cta-contents-txt01 {
    background: #0698f1;
    padding: 0.9375rem 0.9375rem 1.1875rem;
    position: relative;
  }
  .cta-contents-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/cta-shape.webp) no-repeat center/cover;
    width: 0.625rem;
    height: 0.625rem;
    top: 41%;
    right: -2%;
  }
  .cta-contents-time {
    background: #fff;
    border: solid 0.0625rem #1c2ec7;
    color: #ff2100;
    font-size: 1.0625rem;
    padding: 1.4375rem 0 0 0;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.57;
    border-left: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .cta-contents-time .color {
    color: #000;
  }
  .cta-note {
    font-size: 0.75rem;
    text-align: center;
    margin: 0.9375rem 0 0;
  }
}
/*==============================================================================
area
============================================================================= */
@media screen and (max-width: 767px) {
  .area-bg {
    background: url(../images/area-bg_sp.webp) no-repeat center/cover;
    padding: 4.0625rem 0 6.125rem;
  }
  .area-bg02 {
    background: url(../images/area-bg03_sp.webp) no-repeat center/cover;
    padding: 4.0625rem 0 5rem;
  }
  .area-ttl01 {
    font-size: 3.75rem;
    color: #000;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.04em;
    text-align: left;
    line-height: 1.22;
    position: relative;
    z-index: 5;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .area-ttl01 .color {
    color: #ff2100;
    font-size: 6.875rem;
    letter-spacing: 0.02em;
  }
  .area-ttl01 .small01 {
    font-size: 3.4375rem;
  }
  .area-ttl01 .small02 {
    font-size: 3.125rem;
  }
  .area-box {
    margin-top: 2.5rem;
  }
  .area-box-ttl01 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg02_sp.webp) no-repeat center/cover;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 1.625rem 0 1.5rem;
    position: relative;
    width: 44.0625rem;
    margin: 0 auto;
  }
  .area-box-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/area-item01.webp) no-repeat center/cover;
    width: 11.3125rem;
    height: 16.6875rem;
    bottom: 54%;
    right: -1%;
  }
  .area-box-ttl02 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg02_sp.webp) no-repeat center/cover;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 1.625rem 0 1.5rem;
    position: relative;
    width: 44.0625rem;
    margin: 0 auto;
  }
  .area-box-txt01 {
    border: solid #0663e0 0.4375rem;
    background: #fff;
    padding: 4.625rem 1.875rem 3.4375rem;
    font-weight: 600;
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    line-height: 1.53;
    margin-top: -2.8125rem;
  }
  .area-box-item {
    border: solid #0663e0 0.4375rem;
    background: #fff;
    padding: 3.9375rem 1.875rem 3.125rem;
    margin-bottom: 1.25rem;
    margin-top: -2.8125rem;
  }
  .area-box-txt {
    font-size: 2.5rem;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    line-height: 1.42;
    text-align: center;
    margin-bottom: 1.875rem;
  }
  .area-box-txt .color {
    color: #ff2100;
  }
  .area-box-img {
    margin: 0 auto;
  }
  .area-box02 {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .area-bg {
    background: url(../images/area-bg.webp) no-repeat center/cover;
    padding: 3.3125rem 0 3.625rem;
  }
  .area-bg02 {
    background: url(../images/area-bg03.webp) no-repeat center/cover;
    padding: 3.3125rem 0 5.875rem;
  }
  .area-ttl01 {
    font-size: 3rem;
    color: #000;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.12;
    position: relative;
  }
  .area-ttl01 .color {
    color: #ff2100;
    font-size: 3.75rem;
    letter-spacing: 0.04em;
  }
  .area-ttl01 .small01 {
    font-size: 2.125rem;
  }
  .area-ttl01 .small02 {
    font-size: 2.5rem;
  }
  .area-ttl01 .big {
    font-size: 3.4375rem;
  }
  .area-box {
    margin: 1.6875rem 0 0;
  }
  .area-box-ttl01 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg02.webp) no-repeat center/cover;
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 1.375rem 0;
    position: relative;
    z-index: 5;
    width: 44.0625rem;
    margin: 0 auto;
  }
  .area-box-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/area-item01.webp) no-repeat center/cover;
    width: 8.125rem;
    height: 11.9375rem;
    bottom: 35%;
    right: -19%;
  }
  .area-box-ttl02 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg02.webp) no-repeat center/cover;
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 1.375rem 0;
    position: relative;
    z-index: 5;
    width: 44.0625rem;
    margin: 0 auto;
  }
  .area-box-txt01 {
    border: solid #0663e0 0.4375rem;
    background: #fff;
    padding: 3rem 2.0625rem 1.6875rem;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    margin: -2.4375rem 0 0;
  }
  .area-box-item {
    border: solid #0663e0 0.4375rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 0 2rem;
    margin: -2.4375rem 0 0;
  }
  .area-box-txt {
    font-size: 2rem;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    line-height: 1.56;
    margin-top: 3.875rem;
  }
  .area-box-txt .color {
    color: #ff2100;
  }
  .area-box-img {
    width: 23.75rem;
    margin-bottom: -0.25rem;
  }
  .area-box02 {
    margin-top: 1.875rem;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {
  .solution-bg {
    background: url(../images/solution-bg_sp.webp) no-repeat top/cover;
    padding: 3.75rem 0 6.25rem;
  }
  .solution-ttl01 {
    width: 39.1875rem;
    margin: 0 auto;
  }
  .solution-head-box {
    padding: 0.0625rem 0 0;
  }
  .solution-head-txt {
    font-size: 2.5rem;
    color: #fff;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    line-height: 1.45;
    width: 44.5rem;
    height: 13.4375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 4.875rem 0 1.875rem 1.5625rem;
    margin: 1.5625rem 0 0 0;
  }
  .solution-head-txt .color {
    color: #f8fb02;
  }
  .solution-head-txt:first-of-type {
    background: url(../images/solution-bg02_sp.webp) no-repeat center/cover;
  }
  .solution-head-txt:nth-of-type(2) {
    background: url(../images/solution-bg03_sp.webp) no-repeat center/cover;
  }
  .solution-head-txt:nth-of-type(3) {
    background: url(../images/solution-bg04_sp.webp) no-repeat center/cover;
    padding: 6.5625rem 0 1.875rem 1.5625rem;
  }
  .solution-txt01 {
    width: 26.375rem;
    margin: 2.375rem auto 0;
  }
  .solution-ttl02 {
    width: 44.125rem;
    margin: 8.875rem 0 0;
  }
  .solution-list {
    margin: 1.9375rem 0 0;
  }
  .solution-item {
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    background: url(../images/solution-bg05.webp) no-repeat center/cover;
    border: solid #fff 0.3125rem;
  }
  .solution-item:first-of-type {
    padding: 5.375rem 1.875rem 2.3125rem 1.875rem;
    position: relative;
  }
  .solution-item:first-of-type::before {
    content: "";
    position: absolute;
    background: url(../images/solution-txt02_sp.webp) no-repeat center/cover;
    width: 36.625rem;
    height: 5.625rem;
    top: -6.2%;
    left: 8.7%;
  }
  .solution-item:nth-of-type(2) {
    padding: 5.375rem 1.875rem 2.5625rem 1.875rem;
    margin: 4.5rem 0 0;
    position: relative;
  }
  .solution-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    background: url(../images/solution-txt03_sp.webp) no-repeat center/cover;
    width: 36.625rem;
    height: 5.625rem;
    top: -8.5%;
    left: 8.7%;
  }
  .solution-item:nth-of-type(3) {
    padding: 2.375rem 1.625rem 3.8125rem;
    margin: 8.9375rem 0 0;
    position: relative;
  }
  .solution-item:nth-of-type(3)::before {
    content: "";
    position: absolute;
    background: url(../images/solution-item01.webp) no-repeat center/cover;
    width: 6.3125rem;
    height: 5.5625rem;
    top: -6.7%;
    left: 44%;
  }
  .solution-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0.5625rem 0.625rem;
  }
  .solution-grid-ttl {
    background: #bcd9ff;
    font-size: 1.625rem;
    letter-spacing: 0;
    font-weight: bold;
    text-align: center;
    padding: 0.75rem 0;
  }
  .solution-grid-ttl span {
    font-size: 1.375rem;
  }
  .solution-item-ttl01 {
    font-size: 2.875rem;
    line-height: 1.3;
    color: #fff;
    font-family: "gothicB";
    letter-spacing: 0.02em;
    text-align: center;
    background: url(../images/solution-bg08_sp.webp) no-repeat center/cover;
    padding: 1.625rem 0 3.1875rem;
  }
  .solution-item-img {
    margin: 0.4375rem 0 0;
  }
  .solution-item-txt01 {
    font-size: 2.25rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 0.3125rem 0.3125rem 0 #fff, -0.3125rem -0.3125rem 0 #fff, -0.3125rem 0.3125rem 0 #fff, 0.3125rem -0.3125rem 0 #fff, 0.3125rem 0 0 #fff, -0.3125rem 0 0 #fff, 0 0.3125rem 0 #fff, 0 -0.3125rem 0 #fff;
    position: relative;
    margin: 2.5rem 0 0;
  }
  .solution-item-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/solution-item02.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 2.8125rem;
    top: -20%;
    left: 0.5%;
  }
  .solution-item-txt01::after {
    content: "";
    position: absolute;
    background: url(../images/solution-item03.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 2.8125rem;
    top: -20%;
    right: 0.5%;
  }
  .solution-item-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.75rem 1.25rem;
    margin: 2.125rem 0 0;
  }
  .solution-item-box .txt {
    color: #0117c3;
    font-size: 1.625rem;
    background: #bcd9ff;
    padding: 1.0625rem 0;
    font-weight: bold;
    text-align: center;
  }
  .solution-item-txt02 {
    font-size: 1.625rem;
    color: #0117c3;
    text-align: center;
    margin: -1.5625rem 0 0 5rem;
    letter-spacing: 0;
  }
  .solution-item-txt03 {
    font-size: 1.875rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 2.125rem 0.9375rem 0;
  }
  .solution-item-ttl02 {
    font-size: 3.125rem;
    color: #fff;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    text-align: center;
    background: url(../images/solution-bg08_sp.webp) no-repeat center/cover;
    padding: 1.5625rem 0 2.875rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin: 3.6875rem 0 0;
    line-height: 1.25;
  }
  .solution-item-ttl02 .small02 {
    font-size: 2.75rem;
  }
  .solution-item-ttl02 .mid {
    font-size: 2.75rem;
  }
  .solution-item-logo {
    margin: 0.75rem auto 0;
    width: 37.625rem;
  }
  .solution-item-note {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    text-align: left;
    color: #555;
    margin: 2.6875rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .solution-bg {
    background: url(../images/solution-bg.webp) no-repeat center/cover;
    padding: 3.5625rem 0 6.25rem;
  }
  .solution-ttl01 {
    width: 60.9375rem;
    margin: 0 0 0 1rem;
  }
  .solution-head-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.25rem;
    margin: 1.875rem 0 0;
  }
  .solution-head-txt {
    font-size: 1.25rem;
    color: #fff;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    line-height: 1.4;
    padding: 3.1875rem 0 1.5rem 0.9375rem;
  }
  .solution-head-txt .color {
    color: #f8fb02;
  }
  .solution-head-txt:first-of-type {
    background: url(../images/solution-bg02.webp) no-repeat center/cover;
  }
  .solution-head-txt:nth-of-type(2) {
    background: url(../images/solution-bg03.webp) no-repeat center/cover;
  }
  .solution-head-txt:nth-of-type(3) {
    background: url(../images/solution-bg04.webp) no-repeat center/cover;
    padding: 4.125rem 0 0 0.9375rem;
  }
  .solution-txt01 {
    width: 57.875rem;
    margin: 1.5625rem -2.8125rem 0 auto;
  }
  .solution-ttl02 {
    margin: 9.625rem 0 0;
  }
  .solution-list {
    margin: 5.625rem 0 0;
  }
  .solution-item {
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    background: url(../images/solution-bg05.webp) no-repeat center/cover;
    border: solid #fff 0.3125rem;
  }
  .solution-item:first-of-type {
    padding: 4.0625rem 2.625rem 3rem 2.625rem;
    position: relative;
  }
  .solution-item:first-of-type::before {
    content: "";
    position: absolute;
    background: url(../images/solution-txt02.webp) no-repeat center/cover;
    width: 20.375rem;
    height: 3.125rem;
    top: -3.2%;
    left: 33.7%;
  }
  .solution-item:nth-of-type(2) {
    padding: 4.0625rem 2.625rem 2.8125rem 2.625rem;
    margin: 4.375rem 0 0;
    position: relative;
  }
  .solution-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    background: url(../images/solution-txt03.webp) no-repeat center/cover;
    width: 20.375rem;
    height: 3.125rem;
    top: -4.5%;
    left: 33.7%;
  }
  .solution-item:nth-of-type(3) {
    padding: 2.1875rem 2.5rem 2.3125rem;
    margin: 8.4375rem 0 0;
    position: relative;
  }
  .solution-item:nth-of-type(3)::before {
    content: "";
    position: absolute;
    background: url(../images/solution-item01.webp) no-repeat center/cover;
    width: 5.3125rem;
    height: 4.625rem;
    top: -10.5%;
    left: 46%;
  }
  .solution-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0.875rem 0.9375rem;
  }
  .solution-grid-ttl {
    background: #bcd9ff;
    font-size: 1.125rem;
    letter-spacing: 0;
    font-weight: bold;
    text-align: center;
    padding: 0.6875rem 0;
  }
  .solution-item-ttl01 {
    font-size: 2.75rem;
    color: #fff;
    font-family: "gothicB";
    letter-spacing: 0.02em;
    text-align: center;
    background: url(../images/solution-bg08.webp) no-repeat center/cover;
    width: 57.5rem;
    height: 7.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2.1875rem 0 0;
  }
  .solution-item-img {
    margin: 0.625rem 0 0;
  }
  .solution-item-txt01 {
    font-size: 2.25rem;
    text-align: center;
    font-weight: bold;
    text-shadow: 0.3125rem 0.3125rem 0 #fff, -0.3125rem -0.3125rem 0 #fff, -0.3125rem 0.3125rem 0 #fff, 0.3125rem -0.3125rem 0 #fff, 0.3125rem 0 0 #fff, -0.3125rem 0 0 #fff, 0 0.3125rem 0 #fff, 0 -0.3125rem 0 #fff;
    position: relative;
    margin: 2.1875rem 0 0;
  }
  .solution-item-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/solution-item02.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 2.8125rem;
    top: -20%;
    left: 14.5%;
  }
  .solution-item-txt01::after {
    content: "";
    position: absolute;
    background: url(../images/solution-item03.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 2.8125rem;
    top: -20%;
    right: 14.5%;
  }
  .solution-item-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0.375rem;
    margin: 1.875rem 0 0;
  }
  .solution-item-box .txt {
    color: #0117c3;
    font-size: 1.125rem;
    background: #bcd9ff;
    padding: 0.6875rem 0;
    font-weight: bold;
    text-align: center;
  }
  .solution-item-txt02 {
    font-size: 1.125rem;
    color: #0117c3;
    text-align: right;
    margin: 0.375rem 0 0;
    letter-spacing: 0;
  }
  .solution-item-txt03 {
    font-size: 1.125rem;
    text-align: center;
    letter-spacing: 0.04em;
    margin: 1.3125rem 0 0;
  }
  .solution-item-ttl02 {
    font-size: 2.625rem;
    color: #fff;
    font-family: "gothicB";
    letter-spacing: -0.02em;
    text-align: center;
    background: url(../images/solution-bg08.webp) no-repeat center/cover;
    width: 57.5rem;
    height: 7.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2.125rem 0 0;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin: 3.125rem 0 0;
  }
  .solution-item-ttl02 .small01 {
    font-size: 2rem;
  }
  .solution-item-ttl02 .small02 {
    font-size: 1.75rem;
  }
  .solution-item-ttl02 .mid {
    font-size: 2.125rem;
  }
  .solution-item-logo {
    margin: 0.625rem auto 0;
    width: 57.1875rem;
  }
  .solution-item-note {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-align: left;
    margin: 1.4375rem 0 0;
  }
}
/*==============================================================================
price
============================================================================= */
@media screen and (max-width: 767px) {
  .price-bg {
    background: url(../images/price-bg_sp.webp) no-repeat top/cover;
    padding: 4.75rem 0 5.8125rem;
  }
  .price-ttl01 {
    width: 37.9375rem;
    margin: 0 auto;
  }
  .price-txt01 {
    font-size: 2rem;
    font-family: "gothicB";
    line-height: 1.28;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    background: url(../images/price-bg01_sp.webp) no-repeat center/cover;
    width: 44.375rem;
    margin: 1.625rem auto 0;
    padding: 0.875rem 0 1.5rem;
    position: relative;
  }
  .price-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/price-item01.webp) no-repeat center/cover;
    width: 8.5rem;
    height: 17.125rem;
    bottom: -53%;
    right: -0.5%;
  }
  .price-txt02 {
    font-size: 2.25rem;
    font-family: "gothicDB";
    letter-spacing: 0.04em;
    margin: 1.125rem 0 0 0.625rem;
  }
  .price-txt02 .color {
    color: #ff2100;
    border-bottom: 0.125rem #ff2100 solid;
    padding: 0 0 0.1875rem 0;
    font-size: 2.8125rem;
  }
  .price-list {
    margin: 3.25rem 0.625rem 0;
  }
  .price-item:first-of-type {
    padding: 2.5rem 2rem 3.4375rem;
  }
  .price-item:nth-of-type(2) {
    padding: 0.3125rem 2rem 3rem;
    margin: 12.3125rem 0 0;
    position: relative;
  }
  .price-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    background: url(../images/price-txt02_sp.webp) no-repeat center/cover;
    width: 23.1875rem;
    height: 8.625rem;
    top: -14.3%;
    left: 23%;
  }
  .price-item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    background: url(../images/price-item02.webp) no-repeat center/cover;
    width: 9.25rem;
    height: 16.5rem;
    top: -16%;
    left: -1.5%;
  }
  .price-item:nth-of-type(3) {
    background: url(../images/price-bg04_sp.webp) no-repeat center/cover;
    padding: 2rem 0 2.8125rem;
    margin: 6.9375rem 1.875rem 0;
    position: relative;
  }
  .price-item:nth-of-type(3)::before {
    content: "";
    position: absolute;
    background: url(../images/price-item03_sp.webp) no-repeat center/cover;
    width: 6.1875rem;
    height: 8.375rem;
    top: -10%;
    left: -2.5%;
  }
  .price-item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    background: url(../images/price-item04.webp) no-repeat center/cover;
    width: 5rem;
    height: 4.375rem;
    top: -25%;
    left: 45%;
  }
  .price-item {
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    background: url(../images/price-bg02.webp) no-repeat center/cover;
    border: solid #fff 0.3125rem;
  }
  .price-item-txt01 {
    width: 40rem;
    margin: 0 auto 0 -0.625rem;
  }
  .price-item-txt02 {
    width: 35.3125rem;
    margin: 0 auto;
  }
  .price-item-txt03 {
    font-size: 2.25rem;
    text-align: center;
    color: #0015e0;
    font-weight: bold;
    position: relative;
    letter-spacing: 0.04em;
  }
  .price-item-txt03::before {
    content: "";
    position: absolute;
    background: url(../images/price-shape_sp.webp) no-repeat center/cover;
    width: 23rem;
    height: 1.125rem;
    bottom: -90%;
    left: 20%;
  }
  .price-item-txt04 {
    width: 36rem;
    margin: 1.875rem auto 0;
  }
  .price-item-txt05 {
    font-size: 1.75rem;
    margin: 1.875rem 0 0 1.875rem;
    line-height: 1.35;
  }
  .price-item-txt05 .color {
    color: #ff2100;
  }
  .price-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.625rem 1.8125rem;
    margin: 1.25rem 0 0;
  }
  .price-grid-ttl {
    font-size: 1.625rem;
    text-align: center;
    background: #bcd9ff;
    font-weight: bold;
    padding: 0.875rem 0;
  }
  .price-grid-txt {
    font-size: 1.9375rem;
    color: #ff2100;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    margin: 0.6875rem -4.375rem 0 0;
  }
  .price-grid-txt .big {
    font-size: 4.0625rem;
    letter-spacing: -0.04em;
  }
  .price-grid-txt .alert {
    display: inline-block;
    font-size: 1rem;
    -webkit-transform: translate(-4.0625rem, -2.1875rem);
            transform: translate(-4.0625rem, -2.1875rem);
    color: #000;
  }
  .price-grid-container02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem 1.8125rem;
    margin: 1.4375rem 0 0;
  }
  .price-grid-ttl02 {
    font-size: 1.625rem;
    text-align: center;
    background: #bcd9ff;
    font-weight: bold;
    padding: 0.875rem 0;
  }
  .price-grid-txt04 {
    width: 39.375rem;
    margin: -0.8125rem 0 0;
  }
  .price-note {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 1.125rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .price-bg {
    background: url(../images/price-bg.webp) no-repeat center/cover;
    padding: 4.0625rem 0 5.5rem;
  }
  .price-ttl01 {
    width: 49.125rem;
    margin: 0 auto;
    position: relative;
  }
  .price-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/price-item01.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 12.875rem;
    top: 55%;
    right: -12%;
  }
  .price-txt01 {
    font-size: 1.5rem;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    background: url(../images/price-bg01.webp) no-repeat center/cover;
    width: 40.5rem;
    margin: 1.125rem auto 0;
    padding: 1.375rem 0 2rem;
  }
  .price-txt02 {
    font-size: 1.6875rem;
    font-family: "gothicDB";
    letter-spacing: 0.04em;
    text-align: center;
    margin: 1.25rem 0 0;
  }
  .price-txt02 .color {
    color: #ff2100;
    border-bottom: 0.1875rem #ff2100 solid;
    padding: 0 0 0.1875rem 0;
  }
  .price-list {
    margin: 2.25rem 0 0;
  }
  .price-item:first-of-type {
    padding: 2.25rem 2.5rem 2.25rem;
  }
  .price-item:nth-of-type(2) {
    padding: 0.0625rem 0.9375rem 1.6875rem 2.5rem;
    margin: 7.125rem 0 0;
    position: relative;
  }
  .price-item:nth-of-type(2)::before {
    content: "";
    position: absolute;
    background: url(../images/price-txt02.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 5.3125rem;
    top: -24%;
    left: 40%;
  }
  .price-item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    background: url(../images/price-item02.webp) no-repeat center/cover;
    width: 6rem;
    height: 10.5625rem;
    top: -25.5%;
    left: -5%;
  }
  .price-item:nth-of-type(3) {
    background: url(../images/price-bg04.webp) no-repeat center/cover;
    padding: 2.125rem 0 2.25rem 5.625rem;
    margin: 4.8125rem 0 0;
    position: relative;
  }
  .price-item:nth-of-type(3)::before {
    content: "";
    position: absolute;
    background: url(../images/price-item03.webp) no-repeat center/cover;
    width: 3.625rem;
    height: 4.9375rem;
    top: -10%;
    left: 3.5%;
  }
  .price-item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    background: url(../images/price-item04.webp) no-repeat center/cover;
    width: 3.625rem;
    height: 3.25rem;
    top: -32%;
    left: 48%;
  }
  .price-item {
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    background: url(../images/price-bg02.webp) no-repeat center/cover;
    border: solid #fff 0.3125rem;
  }
  .price-item-txt01 {
    width: 28.125rem;
    margin: 0 auto;
  }
  .price-item-txt02 {
    margin: -5rem 0 0 -0.3125rem;
  }
  .price-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -2.5rem 0 0;
  }
  .price-item-txt03 {
    font-size: 1.5rem;
    color: #0015e0;
    font-weight: bold;
    position: relative;
    letter-spacing: 0.04em;
    margin: 0 0 0 5rem;
  }
  .price-item-txt03::before {
    content: "";
    position: absolute;
    background: url(../images/price-shape.webp) no-repeat center/cover;
    width: 16.125rem;
    height: 0.9375rem;
    bottom: -102%;
    left: -1%;
  }
  .price-item-txt04 {
    width: 25rem;
    margin: 1.125rem 0 0;
  }
  .price-item-txt05 {
    font-size: 1.125rem;
    margin: 0.875rem 0 0;
  }
  .price-item-txt05 .color {
    color: #ff2100;
  }
  .price-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1.8125rem;
    margin: 0.625rem 0 0;
  }
  .price-grid-ttl {
    font-size: 1.125rem;
    text-align: center;
    background: #bcd9ff;
    font-weight: bold;
    padding: 0.625rem 0;
  }
  .price-grid-txt {
    font-size: 1.375rem;
    color: #ff2100;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    margin: 0.625rem -2.8125rem 0 0;
  }
  .price-grid-txt .big {
    font-size: 2.75rem;
    letter-spacing: -0.04em;
    display: inline-block;
    padding-right: 0.3125rem;
  }
  .price-grid-txt .alert {
    display: inline-block;
    font-size: 0.6875rem;
    -webkit-transform: translate(-3.125rem, -1.5625rem);
            transform: translate(-3.125rem, -1.5625rem);
    color: #000;
  }
  .price-grid-container02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0.625rem;
    width: 26.875rem;
  }
  .price-grid-ttl02 {
    font-size: 1.125rem;
    text-align: center;
    background: #bcd9ff;
    font-weight: bold;
    padding: 0.625rem 0;
  }
  .price-grid-txt04 {
    width: 33.5625rem;
    margin: 3.9375rem 0 0 -0.3125rem;
  }
  .price-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 1.5625rem 0 0;
  }
}
/*==============================================================================
value
============================================================================= */
@media screen and (max-width: 767px) {
  .value-inner {
    width: 43.125rem;
  }
  .value-bg {
    background: url(../images/value-bg_sp.webp) no-repeat center/cover;
    padding: 3.25rem 0 4.5rem;
  }
  .value-ttl01 {
    width: 42rem;
    margin: 0 -0.9375rem 0 auto;
  }
  .value-ttl02 {
    font-size: 2.5rem;
    font-family: "gothicB";
    text-align: center;
    margin: 1.0625rem 0 0;
  }
  .value-ttl02 .color {
    font-size: 2.75rem;
    color: #f13f18;
  }
  .value-grid {
    margin-top: 3.25rem;
  }
  .value-grid-box {
    background: #fff;
    padding: 2.625rem 0 2.4375rem 1.875rem;
    margin-bottom: 1.875rem;
  }
  .value-grid-ttl {
    font-size: 3.4375rem;
    color: #0663e0;
    font-family: "gothicB";
    line-height: 1.36;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .value-grid-ttl .big {
    font-size: 5.625rem;
    font-family: "dinB";
    display: block;
  }
  .value-grid-txt {
    font-size: 1.875rem;
    line-height: 1.63;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-top: 1.0625rem;
  }
  .value-grid-txt .color {
    color: #ff2100;
  }
  .value-grid-txt .alert {
    display: inline-block;
    font-size: 1rem;
    -webkit-transform: translate(-0.4375rem, -0.625rem);
            transform: translate(-0.4375rem, -0.625rem);
  }
  .value-grid-box01 {
    position: relative;
  }
  .value-grid-box01:before {
    content: "";
    position: absolute;
    background: url(../images/value-item01.webp) no-repeat center/cover;
    width: 16.875rem;
    height: 9.1875rem;
    top: 11%;
    right: -4%;
  }
  .value-grid-box02 {
    position: relative;
  }
  .value-grid-box02:before {
    content: "";
    position: absolute;
    background: url(../images/value-item02.webp) no-repeat center/cover;
    width: 15rem;
    height: 10.25rem;
    top: 6%;
    right: 0%;
  }
  .value-grid-box03 {
    position: relative;
  }
  .value-grid-box03:before {
    content: "";
    position: absolute;
    background: url(../images/value-item03.webp) no-repeat center/cover;
    width: 14.5rem;
    height: 13.875rem;
    top: 5%;
    right: 1%;
  }
  .value-grid-box04 {
    position: relative;
    padding: 2.5rem 0 1.0625rem 1.875rem;
  }
  .value-grid-box04:before {
    content: "";
    position: absolute;
    background: url(../images/value-item04.webp) no-repeat center/cover;
    width: 13.9375rem;
    height: 11rem;
    top: 4%;
    right: 2.5%;
  }
  .value-note {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    margin-top: -0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .value-bg {
    background: url(../images/value-bg.webp) no-repeat center/cover;
    padding: 5rem 0 7.1875rem;
  }
  .value-ttl01 {
    width: 35.9375rem;
    margin: 0 auto;
  }
  .value-ttl02 {
    font-size: 2.125rem;
    font-family: "gothicB";
    text-align: center;
    margin: 0.875rem 0 0;
  }
  .value-ttl02 .color {
    font-size: 2.375rem;
    color: #f13f18;
  }
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.25rem;
    margin-top: 3.875rem;
  }
  .value-grid-box {
    background: #fff;
    padding: 2.375rem 1.875rem 1.25rem;
    height: 15.375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .value-grid-ttl {
    font-size: 1.875rem;
    color: #0663e0;
    font-family: "gothicB";
    line-height: 1.6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .value-grid-ttl .big {
    font-size: 4.0625rem;
    font-family: "dinB";
    display: block;
  }
  .value-grid-txt {
    font-size: 1.125rem;
    line-height: 1.93;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-top: 0.625rem;
    margin-bottom: -0.125rem;
  }
  .value-grid-txt .color {
    color: #f13f18;
  }
  .value-grid-box01 {
    position: relative;
  }
  .value-grid-box01:before {
    content: "";
    position: absolute;
    background: url(../images/value-item01.webp) no-repeat center/cover;
    width: 12.125rem;
    height: 6.625rem;
    top: 8%;
    right: -4%;
  }
  .value-grid-box02 {
    position: relative;
  }
  .value-grid-box02:before {
    content: "";
    position: absolute;
    background: url(../images/value-item02.webp) no-repeat center/cover;
    width: 10.9375rem;
    height: 7.4375rem;
    top: 8%;
    right: 0%;
  }
  .value-grid-box03 {
    position: relative;
  }
  .value-grid-box03:before {
    content: "";
    position: absolute;
    background: url(../images/value-item03.webp) no-repeat center/cover;
    width: 10.625rem;
    height: 10rem;
    top: 4%;
    right: 2%;
  }
  .value-grid-box04 {
    position: relative;
  }
  .value-grid-box04:before {
    content: "";
    position: absolute;
    background: url(../images/value-item04.webp) no-repeat center/cover;
    width: 9.25rem;
    height: 7.5rem;
    top: 8%;
    right: 2%;
  }
}
/*==============================================================================
reason
============================================================================= */
@media screen and (max-width: 767px) {
  .reason-bg {
    background: url(../images/reason-bg01_sp.webp) no-repeat center/cover;
    padding: 3.375rem 0 6.3125rem;
  }
  .reason-ttl01 {
    width: 44rem;
    margin: 0 auto;
  }
  .reason-item-ttl01 {
    font-size: 3rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: url(../images/reason-bg02_sp.webp) no-repeat center/cover;
    padding: 3.1875rem 0.625rem 1.5625rem;
    margin-top: 4.625rem;
    position: relative;
    line-height: 1.47;
  }
  .reason-item-ttl01 .color {
    color: #f8fb02;
  }
  .reason-item-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item01.webp) no-repeat center/cover;
    width: 8.3125rem;
    height: 11.8125rem;
    bottom: 52%;
    right: -1%;
  }
  .reason-item-ttl02 {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 0 0.625rem;
  }
  .reason-item-contents {
    background: #fff;
    border: solid 0.375rem #f13f18;
    border-top: none;
  }
  .reason-item-box {
    margin: 3.25rem 0 0 0;
  }
  .reason-item-txt02 {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 1.6875rem;
  }
  .reason-item-txt02 .alert {
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transform: translate(0.0625rem, -0.625rem);
            transform: translate(0.0625rem, -0.625rem);
  }
  .reason-item-txt01 {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    color: #f13f18;
    line-height: 1.5;
    font-weight: 600;
    text-align: center;
  }
  .reason-item-txt01 .alert {
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transform: translate(0.0625rem, -0.8125rem);
            transform: translate(0.0625rem, -0.8125rem);
  }
  .reason-item-img {
    margin: 1.125rem 0 0 0;
  }
  .reason-item-txt {
    width: 42.25rem;
    margin: -2.1875rem 0 0 -0.8125rem;
  }
  .reason-item-txt03 {
    font-size: 2.5rem;
    letter-spacing: 0;
    color: #f13f18;
    font-weight: 600;
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.04em;
    margin: 5.1875rem 0 0 0;
  }
  .reason-item-ttl03 {
    margin: 2rem 0 0 0;
  }
  .reason-item-note {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin-top: 0.625rem;
    text-align: right;
  }
  .reason-item-txt04 {
    font-size: 1.75rem;
    text-align: center;
    margin: 1.8125rem 0 0 0;
  }
  .reason-item01-contents {
    padding: 2.5625rem 2.0625rem 2.8125rem 2.0625rem;
  }
  .reason-item01-contents .reason-item-box:last-child {
    margin-bottom: 2.1875rem;
  }
  .reason-item01-txt01 {
    background: url(../images/reason-img01_sp.webp) no-repeat center/cover;
  }
  .reason-item01-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt01_sp.webp) no-repeat center/cover;
    width: 16.25rem;
    height: 6.625rem;
    top: -27%;
    left: 33%;
  }
  .reason-item01-box {
    margin: 0;
  }
  .reason-item02-contents {
    padding: 2.6875rem 1.5625rem 4.375rem 1.5625rem;
  }
  .reason-item02-box {
    margin: 1.8125rem 0 0 0;
  }
  .reason-item02-img {
    margin: 1rem 0.625rem 0;
  }
  .reason-item02-txt01 {
    background: url(../images/reason-img02_sp.webp) no-repeat center/cover;
  }
  .reason-item02-txt02 {
    margin: 1.8125rem 0.625rem 0;
  }
  .reason-item02-ttl01 {
    margin-top: 6.25rem;
  }
  .reason-item02-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt02_sp.webp) no-repeat center/cover;
    width: 16.9375rem;
    height: 6.5625rem;
    top: -27%;
    left: 31%;
  }
  .reason-item02-ttl03 {
    margin: 2.5rem 0 0 0;
  }
  .reason-item02-contents .reason-item-box:last-child {
    margin-bottom: 2.8125rem;
  }
  .reason-item03-contents {
    padding: 2.5rem 2.1875rem 4.25rem 2.1875rem;
  }
  .reason-item03-txt01 {
    background: url(../images/reason-img03_sp.webp) no-repeat center/cover;
  }
  .reason-item03-ttl01 {
    margin-top: 6.5625rem;
  }
  .reason-item03-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt03_sp.webp) no-repeat center/cover;
    width: 17rem;
    height: 6.625rem;
    top: -28%;
    left: 32%;
  }
  .reason-item03-box {
    margin: 0;
  }
  .reason-item03-img {
    margin: 0;
  }
  .reason-item03-txt02 {
    margin: 1.875rem 0 0 0;
  }
  .reason-item04-contents {
    padding: 2.5rem 2.125rem 3.9375rem 2.125rem;
  }
  .reason-item04-ttl01 {
    line-height: 1.4;
    margin-top: 6.5625rem;
    padding: 3.3125rem 0.625rem 1rem;
  }
  .reason-item04-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt04_sp.webp) no-repeat center/cover;
    width: 17.1875rem;
    height: 6.625rem;
    top: -28%;
    left: 31%;
  }
  .reason-item04-ttl01 .big {
    font-family: "dinB";
    font-size: 3.75rem;
  }
  .reason-item04-ttl01 .small {
    font-size: 2.5rem;
  }
  .reason-item04-img {
    margin-top: 1.3125rem;
  }
  .reason-item04-ttl02 {
    font-size: 2.125rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.6;
  }
  .reason-item04-note {
    font-size: 1.25rem;
    color: #555;
    letter-spacing: 0;
    line-height: 1.5;
    margin: -3.75rem 0 0 0;
    display: block;
    padding-left: 1.25rem;
    text-indent: -1.25rem;
  }
  .reason-item05-contents {
    padding: 2.5rem 2.125rem 3.25rem 2.125rem;
  }
  .reason-item05-ttl01 {
    padding: 2.8125rem 0 2.5rem;
    margin-top: 6.5625rem;
  }
  .reason-item05-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt05_sp.webp) no-repeat center/cover;
    width: 17.0625rem;
    height: 6.5625rem;
    top: -27%;
    left: 31%;
  }
  .reason-item05-ttl01 .color {
    font-size: 3.4375rem;
  }
  .reason-item05-ttl01 .big {
    font-size: 5.625rem;
    font-family: "dinB";
  }
  .reason-item05-ttl01 .small {
    font-size: 3rem;
  }
  .reason-item05-box {
    margin: 0;
  }
  .reason-item05-img {
    margin: 0;
  }
  .reason-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0.625rem 0.625rem;
    margin: 1.5625rem 0 0;
  }
  .reason-grid-container02 {
    margin: 1.375rem 0 0;
    grid-gap: 0.6875rem 0.625rem;
  }
  .reason-grid-ttl {
    font-size: 1.625rem;
    letter-spacing: 0;
    background: #bcd9ff;
    text-align: center;
    font-weight: bold;
    padding: 0.75rem 0;
  }
  .reason-grid-ttl02 {
    font-size: 1.4375rem;
  }
  .reason-list02 {
    margin-top: 1.5rem;
  }
  .reason-list02 .reason-item02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.5rem 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reason-list02 .txt01 {
    font-size: 1.75rem;
    color: #fff;
    font-weight: 600;
    background: #f13f18;
    border-radius: 1.5625rem 1.5625rem;
    padding: 0.75rem 1.5rem 0.75rem;
  }
  .reason-list02 .txt02 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-left: 1.5625rem;
  }
  .reason-note {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 1.8125rem;
    color: #555;
  }
}
@media screen and (min-width: 768px) {
  .reason-bg {
    background: url(../images/reason-bg01.webp) no-repeat center/cover;
    padding: 3.75rem 0 6.0625rem;
  }
  .reason-ttl01 {
    width: 41.1875rem;
    margin: 0 auto;
  }
  .reason-item-ttl01 {
    font-size: 2rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: url(../images/reason-bg02.webp) no-repeat center/cover;
    padding: 3.125rem 0 2.5rem;
    margin-top: 5.4375rem;
    position: relative;
    letter-spacing: 0.02em;
  }
  .reason-item-ttl01 .color {
    color: #f8fb02;
  }
  .reason-item-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/reason-item01.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 9.25rem;
    bottom: 40%;
    right: 0.5%;
  }
  .reason-item-contents {
    background: #fff;
    border: solid 0.4375rem #f13f18;
    border-top: none;
    padding: 2.5rem 3.4375rem 1.5625rem 3.4375rem;
  }
  .reason-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    margin: 0 0 3.75rem;
  }
  .reason-item-txt01 {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #f13f18;
    font-weight: bold;
    line-height: 1.58;
  }
  .reason-item-txt01 .alert {
    font-size: 1.5rem;
    display: inline-block;
    -webkit-transform: translate(0.0625rem, -0.3125rem);
            transform: translate(0.0625rem, -0.3125rem);
  }
  .reason-item-txt02 {
    width: 29.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    line-height: 2;
    margin-top: 0.625rem;
  }
  .reason-item-txt02 .alert {
    font-size: 1.125rem;
    display: inline-block;
    -webkit-transform: translate(0rem, -0.1875rem);
            transform: translate(0rem, -0.1875rem);
  }
  .reason-item-txt03 {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #f13f18;
    font-weight: bold;
    line-height: 1.58;
    text-align: center;
    margin: -1.75rem 0 1.4375rem;
  }
  .reason-item-img {
    width: 23.75rem;
  }
  .reason-item-note {
    font-size: 0.75rem;
    text-align: right;
    letter-spacing: 0.04em;
    margin-top: -3rem;
  }
  .reason-item-ttl03 {
    margin: 0 0 1.40625rem;
  }
  .reason-item-txt {
    width: 51.25rem;
    position: relative;
    z-index: 10;
    margin: 0 0 0 5rem;
  }
  .reason-item-txt04 {
    font-size: 1rem;
    margin-top: -0.75rem;
    margin-bottom: 0.875rem;
    padding-left: 47%;
  }
  .reason-item01-txt01 {
    background: url(../images/reason-img01.webp) no-repeat center/cover;
  }
  .reason-item01-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt01.webp) no-repeat center/cover;
    width: 11.6875rem;
    height: 5.1875rem;
    top: -47%;
    left: 40.5%;
  }
  .reason-item02-txt01 {
    background: url(../images/reason-img02.webp) no-repeat center/cover;
  }
  .reason-item02-ttl01 {
    margin-top: 5.75rem;
    padding: 3.0625rem 0 2.4375rem;
  }
  .reason-item02-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt02.webp) no-repeat center/cover;
    width: 12.25rem;
    height: 5.125rem;
    top: -46%;
    left: 40.5%;
  }
  .reason-item02-ttl02 {
    padding: 1.75rem 0.9375rem 2rem 0.9375rem;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .reason-item02-contents {
    padding: 0 2.1875rem 0.625rem 2.1875rem;
  }
  .reason-item02-box {
    padding: 0 1rem;
  }
  .reason-item03-txt01 {
    background: url(../images/reason-img03.webp) no-repeat center/cover;
  }
  .reason-item03-ttl01 {
    padding: 3.125rem 0 2.375rem;
  }
  .reason-item03-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt03.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 5.3125rem;
    top: -46%;
    left: 40.5%;
  }
  .reason-item03-contents {
    padding: 2.5rem 3.4375rem 3.375rem 3.4375rem;
  }
  .reason-item03-box {
    margin: 0;
  }
  .reason-item04-txt01 {
    position: relative;
    z-index: 10;
    margin: -1.5625rem 0 1.0625rem;
  }
  .reason-item04-ttl01 {
    font-size: 2rem;
    padding: 2.375rem 0 1.8125rem;
  }
  .reason-item04-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt04.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 5.3125rem;
    top: -46%;
    left: 40.5%;
  }
  .reason-item04-ttl01 .big {
    font-size: 3.375rem;
    font-family: "dinB";
  }
  .reason-item04-box {
    margin-top: 1.4375rem;
    margin-bottom: 0.9375rem;
  }
  .reason-item04-ttl02 {
    padding: 0 0 0.375rem;
    line-height: 1.6;
    font-size: 1.4375rem;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 10;
    letter-spacing: 0.04em;
    margin: -0.4375rem 0 0;
  }
  .reason-item04-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/reason-item02.webp) no-repeat center/cover;
    width: 23.125rem;
    height: 22.375rem;
    top: -30%;
    right: 4%;
    z-index: -1;
  }
  .reason-item04-note {
    font-size: 0.625rem;
    color: #555;
    letter-spacing: 0;
    margin: -0.625rem 0 0 5.3125rem;
  }
  .reason-item05-ttl01 {
    font-size: 2rem;
    padding: 2.0625rem 0 1.6875rem;
  }
  .reason-item05-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt05.webp) no-repeat center/cover;
    width: 12.3125rem;
    height: 5.3125rem;
    top: -46%;
    left: 40.5%;
  }
  .reason-item05-ttl01 .color {
    font-size: 2.375rem;
  }
  .reason-item05-ttl01 .big {
    font-size: 3.75rem;
    font-family: "dinB";
  }
  .reason-item05-ttl01 .small {
    font-size: 2.375rem;
  }
  .reason-item05-box {
    padding: 2.5rem 0 0;
    margin-bottom: 0;
  }
  .reason-item05-contents {
    padding: 0 3.4375rem 3.4375rem 3.4375rem;
  }
  .reason-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1.625rem 1.75rem;
    margin: 0 0 2.5rem;
  }
  .reason-grid-ttl {
    font-size: 1.125rem;
    letter-spacing: 0;
    background: #bcd9ff;
    text-align: center;
    font-weight: bold;
    padding: 0.625rem 0;
  }
  .reason-list02 {
    margin-top: -0.4375rem;
    position: relative;
    z-index: 10;
  }
  .reason-list02 .reason-item02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0.4375rem 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reason-list02 .txt01 {
    font-size: 0.9375rem;
    color: #fff;
    font-weight: 600;
    background: #f13f18;
    border-radius: 1.5625rem 1.5625rem;
    padding: 0.5625rem 0.8125rem 0.375rem;
  }
  .reason-list02 .txt02 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-left: 0.9375rem;
  }
  .reason-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: right;
    margin-top: 0.8125rem;
  }
}
/*==============================================================================
quality
============================================================================= */
@media screen and (max-width: 767px) {
  .quality-bg {
    background: url(../images/quality-bg_sp.webp) no-repeat top/cover;
    padding: 5.3125rem 0 3rem;
  }
  .quality-ttl01 {
    font-size: 3.75rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: url(../images/quality-bg02_sp.webp) no-repeat center/cover;
    height: 11.0625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 3.875rem;
    width: 45rem;
    margin: 0 0 0 -0.3125rem;
  }
  .quality-ttl01 .big {
    font-size: 4.6875rem;
  }
  .quality-list {
    margin-top: 8.6875rem;
  }
  .quality-item {
    background: url(../images/quality-bg03_sp.webp) no-repeat center/cover;
    margin-bottom: 3.25rem;
    padding: 1.0625rem 1.875rem 3.25rem;
    position: relative;
    border: solid #fff 0.3125rem;
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
  }
  .quality-item-ttl {
    font-size: 2.625rem;
    color: #0663e0;
    font-weight: 600;
    padding-left: 9rem;
    line-height: 1.42;
    letter-spacing: 0;
    margin-right: -0.625rem;
  }
  .quality-item-txt {
    font-size: 1.75rem;
    line-height: 1.6;
    width: 22.8125rem;
    letter-spacing: 0;
  }
  .quality-item-img {
    width: 16.25rem;
    margin-right: -0.625rem;
    margin-top: 0.3125rem;
  }
  .quality-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1.875rem;
  }
  .quality-item01::before {
    content: "";
    position: absolute;
    background: url(../images/quality-txt01_sp.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: -6%;
    left: -2%;
  }
  .quality-item02 {
    padding: 1.0625rem 1.875rem 1.25rem;
  }
  .quality-item02::before {
    content: "";
    position: absolute;
    background: url(../images/quality-txt02_sp.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: -7%;
    left: -1%;
  }
  .quality-item03 {
    padding: 1.0625rem 1.875rem 1.0625rem;
  }
  .quality-item03::before {
    content: "";
    position: absolute;
    background: url(../images/quality-txt03_sp.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: -7%;
    left: -1%;
  }
}
@media screen and (min-width: 768px) {
  .quality-bg {
    background: url(../images/quality-bg.webp) no-repeat center/cover;
    padding: 3.3125rem 0 3.375rem;
  }
  .quality-ttl01 {
    font-size: 3.1875rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: url(../images/quality-bg02.webp) no-repeat center/cover;
    height: 11.0625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 4.125rem;
  }
  .quality-ttl01 .big {
    font-size: 4.375rem;
  }
  .quality-list {
    margin-top: 6.6875rem;
  }
  .quality-item {
    background: url(../images/quality-bg03.webp) no-repeat center/cover;
    border: #fff solid 0.1875rem;
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    margin-bottom: 2.4375rem;
    padding: 1.8125rem 2.5rem 0.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .quality-item-ttl {
    font-size: 1.75rem;
    color: #0663e0;
    font-weight: 600;
    padding-left: 8.125rem;
  }
  .quality-item-txt {
    font-size: 1.125rem;
    line-height: 1.6;
    width: 40.8125rem;
    margin-top: 1.5625rem;
  }
  .quality-item-img {
    width: 11.25rem;
  }
  .quality-item-img img {
    margin-top: -0.625rem;
    padding-bottom: 0.625rem;
  }
  .quality-item01::before {
    content: "";
    position: absolute;
    background: url(../images/quality-txt01.webp) no-repeat center/cover;
    width: 8.4375rem;
    height: 7.6875rem;
    top: -19%;
    left: -1%;
  }
  .quality-item02::before {
    content: "";
    position: absolute;
    background: url(../images/quality-txt02.webp) no-repeat center/cover;
    width: 8.4375rem;
    height: 7.6875rem;
    top: -21%;
    left: -1%;
  }
  .quality-item03::before {
    content: "";
    position: absolute;
    background: url(../images/quality-txt03.webp) no-repeat center/cover;
    width: 8.4375rem;
    height: 7.6875rem;
    top: -21%;
    left: -1%;
  }
}
/*==============================================================================
step
============================================================================= */
@media screen and (max-width: 767px) {
  .step-bg {
    background: url(../images/step-bg_sp.webp) no-repeat center/cover;
    padding: 0 0 6.1875rem;
  }
  .step-ttl01 {
    width: 46.25rem;
  }
  .step-ttl02 {
    font-size: 3rem;
    font-family: "gothicB";
    font-style: italic;
    color: #fff;
    background: url(../images/step-bg01_sp.webp) no-repeat center/cover;
    padding: 1.3125rem 0;
    margin: 4.25rem auto 0;
    text-align: center;
  }
  .step-list {
    padding: 1.96875rem 0 0;
  }
  .step-item {
    background: #fff;
    position: relative;
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4.875rem;
  }
  .step-item::after {
    content: "";
    position: absolute;
    background: url(../images/step-item01_sp.webp) no-repeat center/cover;
    width: 41.25rem;
    height: 4.25rem;
    bottom: -30%;
    left: 5%;
  }
  .step-item:last-child::after {
    display: none;
  }
  .step-item:first-child {
    display: block;
  }
  .step-item-box {
    padding: 2.375rem 1.5625rem 0 1.875rem;
    width: 24.375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .step-item-img {
    width: 20rem;
    margin: 0 0 -0.1875rem;
  }
  .step-item-ttl01 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .step-item-txt01 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    line-height: 1.6;
  }
  .step-item-txt01 .alert {
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transform: translate(-0.4375rem, -0.6875rem);
            transform: translate(-0.4375rem, -0.6875rem);
  }
  .step-item-btn {
    width: 41.9375rem;
    margin: 0.5625rem auto 0;
  }
  .step-item01 {
    position: relative;
    padding: 0 0 1.25rem;
  }
  .step-item01-flex {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .step-item01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt01.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 3.375rem;
    top: -13%;
    left: 0%;
  }
  .step-item01::after {
    bottom: -16%;
    left: 5%;
  }
  .step-item02 {
    position: relative;
  }
  .step-item02::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt02_sp.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 3.375rem;
    top: -23.7%;
    left: 0%;
  }
  .step-item03 {
    position: relative;
  }
  .step-item03::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt03_sp.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 3.375rem;
    top: -23.7%;
    left: 0%;
  }
  .step-item04 {
    position: relative;
  }
  .step-item04::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt04_sp.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 3.375rem;
    top: -22.4%;
    left: 0%;
  }
  .step-item04-txt01 {
    margin: 1rem 0 0 0;
  }
  .step-item05 {
    position: relative;
  }
  .step-item05::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt05_sp.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 3.375rem;
    top: -23.7%;
    left: 0%;
  }
  .step-item06 {
    position: relative;
  }
  .step-item06::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt06_sp.webp) no-repeat center/cover;
    width: 12.5rem;
    height: 3.375rem;
    top: -23.7%;
    left: 0%;
  }
  .step-note {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    margin-top: 2.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .step-bg {
    background: url(../images/step-bg.webp) no-repeat center/cover;
    padding: 0 0 7.5625rem;
  }
  .step-ttl01 {
    width: 68.25rem;
  }
  .step-ttl02 {
    font-size: 2.25rem;
    font-family: "gothicB";
    font-style: italic;
    color: #fff;
    background: url(../images/step-bg01.webp) no-repeat center/cover;
    width: 37.3125rem;
    padding: 1.15625rem 0;
    margin: 3.1875rem auto 0;
    text-align: center;
  }
  .step-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3.25rem 1.875rem;
    margin: 3.75rem 1.25rem 0;
  }
  .step-item {
    background: #fff;
    position: relative;
  }
  .step-item::after {
    content: "";
    position: absolute;
    background: url(../images/step-item01.webp) no-repeat center/cover;
    width: 1.875rem;
    height: 20rem;
    top: 9%;
    right: -9%;
  }
  .step-item:last-child::after {
    display: none;
  }
  .step-item:nth-of-type(3)::after {
    top: 117%;
    left: -230%;
  }
  .step-item:nth-of-type(4)::after {
    top: 6%;
  }
  .step-item:nth-of-type(5)::after {
    top: 6%;
  }
  .step-item-box {
    padding: 1.625rem 1.5625rem 1.75rem 1.6875rem;
  }
  .step-item-ttl01 {
    font-size: 1.625rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .step-item-txt01 {
    font-size: 1.125rem;
    margin-top: 1rem;
    line-height: 1.59;
  }
  .step-item-txt01 .alert {
    font-size: 0.625rem;
    display: inline-block;
    -webkit-transform: translate(-0.4375rem, -0.6875rem);
            transform: translate(-0.4375rem, -0.6875rem);
  }
  .step-item-tel01 {
    font-size: 0.875rem;
    color: #ff2100;
    font-family: "gothicM";
    text-align: center;
    margin-top: 0.5rem;
  }
  .step-item-tel02 {
    font-size: 1.625rem;
    font-weight: bold;
    color: #ff2100;
    text-align: center;
    position: relative;
    padding-left: 1.75rem;
    margin-top: 0.3125rem;
  }
  .step-item-tel02::before {
    content: "";
    position: absolute;
    background: url(../images/tel-icon.webp) no-repeat center/cover;
    width: 1.375rem;
    height: 1.375rem;
    top: 5%;
    left: 9%;
  }
  .step-item-time {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  .step-item01 {
    position: relative;
  }
  .step-item01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt01.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 1.875rem;
    top: -7.2%;
    left: 0%;
  }
  .step-item02 {
    position: relative;
  }
  .step-item02::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt02.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 1.875rem;
    top: -7.2%;
    left: 0%;
  }
  .step-item03 {
    position: relative;
  }
  .step-item03::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt03.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 1.875rem;
    top: -7.2%;
    left: 0%;
  }
  .step-item04 {
    position: relative;
  }
  .step-item04::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt04.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 1.875rem;
    top: -8.5%;
    left: 0%;
  }
  .step-item04-box {
    padding: 1.625rem 1.9375rem 2.6875rem 1.25rem;
  }
  .step-item05 {
    position: relative;
  }
  .step-item05::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt05.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 1.875rem;
    top: -8.5%;
    left: 0%;
  }
  .step-item05-box {
    padding: 1.625rem 1.3125rem 2.6875rem 1.6875rem;
  }
  .step-item06 {
    position: relative;
  }
  .step-item06::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt06.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 1.875rem;
    top: -8.5%;
    left: 0%;
  }
  .step-item06-box {
    padding: 1.625rem 1.5625rem 2.6875rem 3.75rem;
  }
  .step-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 1.3125rem 0 0 1.25rem;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {
  .compare-bg {
    background: url(../images/compare-bg_sp.webp) no-repeat center/cover;
    padding: 3.125rem 0 5.9375rem 0;
  }
  .compare-ttl01 {
    width: 27.5rem;
    margin-left: auto;
  }
  .compare-img01 {
    width: 100%;
    margin: 2.0625rem 0 0 0;
  }
  .compare-note {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    margin: 1.3125rem 0 0 0;
    line-height: 1.5;
    color: #555;
  }
}
@media screen and (min-width: 768px) {
  .compare-bg {
    background: url(../images/compare-bg.webp) no-repeat center/cover;
    padding: 5rem 0 6.625rem 0;
  }
  .compare-ttl01 {
    width: 43.125rem;
    padding: 0 0 0 20rem;
  }
  .compare-img01 {
    width: 100%;
    margin: 3rem 0 0 0;
  }
  .compare-note {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    margin: 0.9375rem 0 0 0;
    line-height: 1.67;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {
  .case-bg {
    background: url(../images/case-bg_sp.webp) no-repeat center/cover;
    padding: 2.8125rem 0 5.875rem 0;
    position: relative;
  }
  .case-bg::before {
    content: "さらに！";
    position: absolute;
    font-family: "gothicB";
    font-style: italic;
    font-size: 2.5rem;
    color: #0117c3;
    top: -0.9%;
    right: 39%;
  }
  .case-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .case-ttl01 {
    width: 42.5rem;
    margin: 0 auto;
  }
  .case-grid-list {
    margin: 2.625rem 0 0 0;
  }
  .case-grid-item {
    background: url(../images/case-bg02_sp.webp) no-repeat center/cover;
    border: #fff solid 0.3125rem;
    padding: 4.875rem 0 1.6875rem 1.875rem;
    position: relative;
    margin: 1.75rem 0 0 0;
  }
  .case-grid-item::before {
    content: "";
    position: absolute;
    width: 12.25rem;
    height: 4.375rem;
    top: -3%;
    left: -0.8%;
  }
  .case-grid-item:first-of-type::before {
    background: url(../images/case-txt01_sp.webp) no-repeat center/cover;
  }
  .case-grid-item:first-of-type::after {
    content: "";
    position: absolute;
    background: url(../images/case-item01.webp) no-repeat center/cover;
    width: 13.5625rem;
    height: 8.625rem;
    top: 18%;
    right: 2%;
  }
  .case-grid-item:nth-of-type(2)::before {
    background: url(../images/case-txt02_sp.webp) no-repeat center/cover;
  }
  .case-grid-item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    background: url(../images/case-item02.webp) no-repeat center/cover;
    width: 12.125rem;
    height: 12.3125rem;
    top: 0%;
    right: 5%;
  }
  .case-grid-item:nth-of-type(3)::before {
    background: url(../images/case-txt03_sp.webp) no-repeat center/cover;
  }
  .case-grid-item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    background: url(../images/case-item03.webp) no-repeat center/cover;
    width: 15.625rem;
    height: 14.875rem;
    top: -16%;
    right: 1%;
  }
  .case-grid-item:nth-of-type(4)::before {
    background: url(../images/case-txt04_sp.webp) no-repeat center/cover;
  }
  .case-grid-item:nth-of-type(4)::after {
    content: "";
    position: absolute;
    background: url(../images/case-item04.webp) no-repeat center/cover;
    width: 11.625rem;
    height: 11.5625rem;
    top: 5%;
    right: 4%;
  }
  .case-grid-txt {
    font-size: 2.125rem;
    letter-spacing: 0.02em;
    line-height: 1.47;
    font-weight: bold;
  }
  .case-grid-txt .color {
    color: #ff3c00;
  }
  .case-txt01 {
    text-align: center;
    font-size: 1.875rem;
    letter-spacing: 0.04em;
    line-height: 1.53;
    font-weight: bold;
    margin: 2.625rem 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .case-bg {
    background: url(../images/case-bg.webp) no-repeat center/cover;
    padding: 0.3125rem 0 5.875rem 0;
    position: relative;
  }
  .case-bg::before {
    content: "さらに！";
    position: absolute;
    font-family: "gothicB";
    font-style: italic;
    font-size: 2.5rem;
    color: #0117c3;
    top: -1.5%;
    right: 44%;
  }
  .case-ttl01 {
    width: 56.25rem;
    margin: 0 auto;
  }
  .case-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2.6875rem 1.25rem;
    margin: 2.25rem 0 0 0;
  }
  .case-grid-item {
    background: url(../images/case-bg02_sp.webp) no-repeat center/cover;
    border: #fff solid 0.3125rem;
    padding: 4.375rem 0 2.5rem 1.5625rem;
    position: relative;
  }
  .case-grid-item::before {
    content: "";
    position: absolute;
    width: 9.125rem;
    height: 3.1875rem;
    top: -2%;
    left: -0.8%;
  }
  .case-grid-item:first-of-type::before {
    background: url(../images/case-txt01.webp) no-repeat center/cover;
  }
  .case-grid-item:first-of-type::after {
    content: "";
    position: absolute;
    background: url(../images/case-item01.webp) no-repeat center/cover;
    width: 12.25rem;
    height: 7.8125rem;
    top: 13%;
    right: 0;
  }
  .case-grid-item:nth-of-type(2)::before {
    background: url(../images/case-txt02.webp) no-repeat center/cover;
  }
  .case-grid-item:nth-of-type(2)::after {
    content: "";
    position: absolute;
    background: url(../images/case-item02.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 11rem;
    top: -1.5%;
    right: 5%;
  }
  .case-grid-item:nth-of-type(3)::before {
    background: url(../images/case-txt03.webp) no-repeat center/cover;
  }
  .case-grid-item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    background: url(../images/case-item03.webp) no-repeat center/cover;
    width: 13.3125rem;
    height: 12.5rem;
    top: -9.5%;
    right: -2%;
  }
  .case-grid-item:nth-of-type(4)::before {
    background: url(../images/case-txt04.webp) no-repeat center/cover;
  }
  .case-grid-item:nth-of-type(4)::after {
    content: "";
    position: absolute;
    background: url(../images/case-item04.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: 6%;
    right: 5%;
  }
  .case-grid-txt {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
    font-weight: bold;
  }
  .case-grid-txt .color {
    color: #ff3c00;
  }
  .case-txt01 {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    font-weight: bold;
    margin: 2.375rem 0 0 0;
  }
}
/*==============================================================================
voice
============================================================================= */
@media screen and (max-width: 767px) {
  .voice-bg {
    background: url(../images/voice-bg_sp.webp) no-repeat center/cover;
    padding: 4.625rem 0 2.5rem;
  }
  .voice-ttl01 {
    width: 43.125rem;
    margin: 0 auto;
  }
  .voice-list {
    padding-top: 5.125rem;
  }
  .voice-item {
    background: url(../images/voice-bg02_sp.webp) no-repeat center/cover;
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    margin-bottom: 3.75rem;
    position: relative;
  }
  .voice-item::before {
    content: "";
    position: absolute;
    background: url(../images/voice-txt01.webp) no-repeat center/cover;
    width: 15.125rem;
    height: 4.8125rem;
    top: -5%;
    left: 34%;
  }
  .voice-item-inner {
    padding: 3.875rem 2.1875rem 3.625rem;
  }
  .voice-item02::before {
    content: "";
    position: absolute;
    background: url(../images/voice-txt02.webp) no-repeat center/cover;
    width: 15.125rem;
    height: 4.8125rem;
    top: -5%;
    left: 34%;
  }
  .voice-item03::before {
    content: "";
    position: absolute;
    background: url(../images/voice-txt03.webp) no-repeat center/cover;
    width: 15.125rem;
    height: 4.8125rem;
    top: -4%;
    left: 34%;
  }
  .voice-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .voice-box-img {
    width: 17.5rem;
  }
  .voice-box-img span {
    font-size: 1.25rem;
    margin-top: 1.625rem;
    display: block;
    color: #555;
  }
  .voice-box-txt {
    font-size: 1.75rem;
    width: 19.3125rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2.6875rem;
  }
  .voice-box03-txt {
    letter-spacing: 0;
  }
  .voice-btn {
    width: 18.4375rem;
    padding-left: 3.75rem;
  }
  .voice-btn-txt {
    font-size: 1.625rem;
    letter-spacing: 0.04em;
    background: #daeefe;
    width: 18.125rem;
    padding: 0.6875rem 0;
    border-radius: 1.5625rem 1.5625rem;
    text-align: center;
    margin-bottom: 1.75rem;
    margin-top: 0.1875rem;
  }
  .voice-modal {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: none;
    z-index: 600;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40.4375rem;
    transform: translate(-50%, -50%);
  }
  .voice-modal-btn {
    position: absolute;
    top: -2.5rem;
    right: 0.625rem;
    width: 5.625rem;
    cursor: pointer;
  }
  .voice-modal-mask {
    display: none;
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #000;
    opacity: 0.7;
  }
  .modal-mask {
    display: none;
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #000;
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .voice-bg {
    background: url(../images/voice-bg.webp) no-repeat center/cover;
    padding: 4.125rem 0 4.0625rem;
  }
  .voice-ttl01 {
    width: 57.375rem;
    margin: 0 auto;
  }
  .voice-list {
    padding: 5.625rem 0 0 0;
  }
  .voice-item {
    background: url(../images/voice-bg02.webp) no-repeat center/cover;
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    margin-bottom: 3.3125rem;
    position: relative;
  }
  .voice-item::before {
    content: "";
    position: absolute;
    background: url(../images/voice-txt01.webp) no-repeat center/cover;
    width: 11.5rem;
    height: 3.75rem;
    top: -11%;
    left: 40%;
  }
  .voice-item-inner {
    padding: 3.5rem 2.8125rem 1.4375rem;
  }
  .voice-item02::before {
    content: "";
    position: absolute;
    background: url(../images/voice-txt02.webp) no-repeat center/cover;
    width: 11.5rem;
    height: 3.75rem;
    top: -11%;
    left: 40%;
  }
  .voice-item03-inner {
    padding: 3.5rem 2.8125rem 2.625rem;
  }
  .voice-item03::before {
    content: "";
    position: absolute;
    background: url(../images/voice-txt03.webp) no-repeat center/cover;
    width: 11.5rem;
    height: 3.75rem;
    top: -11%;
    left: 40%;
  }
  .voice-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .voice-box-img {
    width: 15rem;
  }
  .voice-box-img span {
    font-size: 0.75rem;
    margin-top: 0.625rem;
    display: block;
  }
  .voice-box-txt {
    font-size: 1.375rem;
    width: 23rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    line-height: 1.72;
    padding-left: 1.875rem;
    margin: -0.125rem 0 0 0;
  }
  .voice-btn {
    width: 12.75rem;
    margin-top: -6.3125rem;
    padding-left: 2.5rem;
  }
  .voice-modal {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: none;
    z-index: 600;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 28.125rem;
    transform: translate(-50%, -50%);
  }
  .voice-modal-btn {
    position: absolute;
    top: -2.5rem;
    right: 0.625rem;
    width: 3.75rem;
    cursor: pointer;
  }
  .voice-modal-mask {
    display: none;
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #000;
    opacity: 0.7;
  }
  .modal-mask {
    display: none;
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: #000;
    opacity: 0.7;
  }
}
/*==============================================================================
fv
============================================================================= */
@media screen and (max-width: 767px) {
  .promise-bg {
    background: url(../images/promise-bg01_sp.webp) no-repeat center/cover;
    padding: 3.6875rem 0 7rem 0;
  }
  .promise-ttl01 {
    width: 31.75rem;
    margin: 0 auto;
  }
  .promise-grid-list {
    margin: 2.1875rem 0 0 0;
  }
  .promise-grid-item {
    background: url(../images/promise-bg02_sp.webp) no-repeat center/cover;
    border: #fff solid 0.3125rem;
    padding: 1.8125rem 1.875rem 2.1875rem;
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    margin: 2rem 0 0 0;
    position: relative;
  }
  .promise-grid-item::before {
    content: "";
    position: absolute;
    width: 11.375rem;
    height: 10.75rem;
    top: 0.8%;
    left: -4%;
  }
  .promise-grid-item:first-of-type::before {
    background: url(../images/promise-txt01.webp) no-repeat center/cover;
  }
  .promise-grid-item:nth-of-type(2)::before {
    background: url(../images/promise-txt02.webp) no-repeat center/cover;
  }
  .promise-grid-item:nth-of-type(3)::before {
    background: url(../images/promise-txt03.webp) no-repeat center/cover;
  }
  .promise-grid-item:nth-of-type(4)::before {
    background: url(../images/promise-txt04.webp) no-repeat center/cover;
  }
  .promise-grid-ttl {
    font-size: 2.5rem;
    color: #0698f1;
    line-height: 1.45;
    letter-spacing: 0.04em;
    font-weight: bold;
    padding: 0 0 0 8.75rem;
  }
  .promise-grid-ttl .alert {
    display: inline-block;
    color: #000;
    font-size: 1.25rem;
    -webkit-transform: translate(-0.125rem, -0.75rem);
            transform: translate(-0.125rem, -0.75rem);
  }
  .promise-grid-box {
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0.625rem 0 0 0;
  }
  .promise-grid-img {
    margin: 1.75rem 0 0 0;
    width: 17.5rem;
  }
  .promise-grid-txt {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 1.5rem 0 0 0;
    width: 20rem;
  }
  .promise-note {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    margin: 2.0625rem 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .promise-bg {
    background: url(../images/promise-bg01.webp) no-repeat center/cover;
    padding: 5rem 0 6.875rem 0;
  }
  .promise-ttl01 {
    width: 28.125rem;
    margin: 0 auto;
  }
  .promise-grid-list {
    margin: 2.4375rem 0 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.3125rem 1.75rem;
  }
  .promise-grid-item {
    background: url(../images/promise-bg02.webp) no-repeat center/cover;
    border: #fff solid 0.3125rem;
    padding: 1.8125rem 1.875rem 2.1875rem;
    -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
            box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.07);
    position: relative;
    height: 32.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .promise-grid-item::before {
    content: "";
    position: absolute;
    width: 8.625rem;
    height: 8.0625rem;
    top: -0.5%;
    left: -6%;
  }
  .promise-grid-item:first-of-type::before {
    background: url(../images/promise-txt01.webp) no-repeat center/cover;
  }
  .promise-grid-item:nth-of-type(2)::before {
    background: url(../images/promise-txt02.webp) no-repeat center/cover;
  }
  .promise-grid-item:nth-of-type(3)::before {
    background: url(../images/promise-txt03.webp) no-repeat center/cover;
  }
  .promise-grid-item:nth-of-type(4)::before {
    background: url(../images/promise-txt04.webp) no-repeat center/cover;
  }
  .promise-grid-ttl {
    font-size: 1.75rem;
    color: #0698f1;
    line-height: 1.32;
    letter-spacing: 0.04em;
    font-weight: bold;
    padding: 0 0 0 5.625rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .promise-grid-ttl .alert {
    display: inline-block;
    color: #000;
    font-size: 0.625rem;
    -webkit-transform: translate(-0.125rem, -0.75rem);
            transform: translate(-0.125rem, -0.75rem);
  }
  .promise-grid-img {
    margin: 1.75rem 0 0 0;
  }
  .promise-grid-txt {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin: 1.5rem 0 0 0;
  }
  .promise-note {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    margin: 1.375rem 0 0 0;
  }
}
/*==============================================================================
faq
============================================================================= */
@media screen and (max-width: 767px) {
  .faq-bg {
    background: #e9eff2;
    padding: 0.0625rem 0 7.1875rem;
  }
  .faq-inner {
    width: 43.125rem;
  }
  .faq-ttl01 {
    width: 40.625rem;
    margin: -2.0625rem 0 0 -1.875rem;
  }
  .faq-list {
    margin: 4.5rem 0 0;
  }
  .faq-item {
    margin-top: 1.875rem;
  }
  .faq-item-question {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    height: 9.8125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.4375rem 0 1.4375rem 8rem;
    background: url(../images/faq-bg01_sp.webp) no-repeat center/cover;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.34;
    cursor: pointer;
  }
  .faq-item-question::before {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 4%;
    width: 5.125rem;
    height: 4.5rem;
    transform: translateY(-50%);
    background: url(../images/faq-item01.webp) no-repeat 50% 0/cover;
    content: "";
  }
  .faq-item-question::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    position: absolute;
    top: 42%;
    right: 2.375rem;
    width: 1.125rem;
    height: 1.125rem;
    transform: rotate(135deg);
    border-top: 0.375rem solid #fff;
    border-right: 0.375rem solid #fff;
    content: "";
  }
  .faq-item-answer {
    display: none;
    position: relative;
    margin: 2.25rem 0 0;
    padding: 0 0.9375rem 0.625rem 6.875rem;
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .faq-item-answer::before {
    position: absolute;
    top: 1.5%;
    left: 1.5%;
    width: 5.125rem;
    height: 4.5rem;
    background: url(../images/faq-item02.webp) no-repeat 50% 0/cover;
    content: "";
  }
  .faq-item-note {
    display: block;
    margin: 2.8125rem 0 0.375rem;
    font-size: 1.375rem;
    line-height: 1.45;
    letter-spacing: 0;
  }
  .faq-item-question.open::after {
    -ms-transform: rotate(-45deg);
    top: 45%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (min-width: 768px) {
  .faq-bg {
    background: #e9eff2;
    padding: 1.4375rem 0 5.875rem;
  }
  .faq-ttl01 {
    width: 45.9375rem;
    margin: 0 0 0 -0.625rem;
  }
  .faq-list {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 1.4375rem 0 0;
  }
  .faq-item {
    width: 30.625rem;
  }
  .faq-item-question {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    align-items: center;
    height: 7rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.25rem 0 1.25rem 5.5625rem;
    background: url(../images/faq-bg01.webp) no-repeat center/cover;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    line-height: 1.53;
    cursor: pointer;
  }
  .faq-item-question::before {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 3.5%;
    width: 3.625rem;
    height: 3.1875rem;
    transform: translateY(-50%);
    background: url(../images/faq-item01.webp) no-repeat 50% 0/cover;
    content: "";
  }
  .faq-item-question::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    position: absolute;
    top: 42%;
    right: 2.375rem;
    width: 0.75rem;
    height: 0.75rem;
    transform: rotate(135deg);
    border-top: 0.25rem solid #fff;
    border-right: 0.25rem solid #fff;
    content: "";
  }
  .faq-item-answer {
    display: none;
    position: relative;
    margin: 1.5rem 0 0;
    padding: 0 0.9375rem 0 4.875rem;
    font-size: 1.125rem;
    line-height: 1.68;
  }
  .faq-item-answer::before {
    position: absolute;
    top: 3%;
    left: 0;
    width: 3.625rem;
    height: 3.1875rem;
    background: url(../images/faq-item02.webp) no-repeat 50% 0/cover;
    content: "";
  }
  .faq-item-note {
    display: block;
    margin: 1.6875rem 0 0;
    font-size: 0.875rem;
    line-height: 2.05;
  }
  .faq-item:nth-child(n+3) {
    margin: 2.875rem 0 0;
  }
  .faq-item-question.open::after {
    -ms-transform: rotate(-45deg);
    top: 45%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/*==============================================================================
intro
============================================================================= */
@media screen and (max-width: 767px) {
  .intro-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .intro-bg {
    background: url(../images/intro-bg_sp.webp) no-repeat top center/cover;
    padding: 0.0625rem 0 1.6875rem;
    position: relative;
  }
  .intro-ttl01 {
    width: 38.625rem;
    margin: -3.3125rem auto 0;
  }
  .intro-txt01 {
    font-size: 1.75rem;
    letter-spacing: 0;
    line-height: 1.6;
    padding: 13.875rem 0 0 0;
  }
  .intro-list {
    padding: 4.75rem 0 0 0;
  }
  .intro-item {
    background: #fff;
    border: solid 0.4375rem #0663e0;
    padding: 4.0625rem 1.875rem 3.375rem;
    position: relative;
    margin-bottom: 4.4375rem;
  }
  .intro-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .intro-item-img {
    width: 10.625rem;
    margin-left: -0.3125rem;
  }
  .intro-item-ttl {
    font-size: 2.1875rem;
    color: #0663e0;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-left: 2.1875rem;
    margin-top: 0.625rem;
  }
  .intro-item-txt {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-top: 1.25rem;
    margin-left: 2.1875rem;
  }
  .intro-item-txt01 {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
    margin-top: 1.875rem;
  }
  .intro-item01::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt01.webp) no-repeat center/cover;
    width: 26rem;
    height: 4.1875rem;
    top: -5.7%;
    left: 20%;
  }
  .intro-item02::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt02.webp) no-repeat center/cover;
    width: 26rem;
    height: 4.1875rem;
    top: -5.7%;
    left: 20%;
  }
  .intro-item03 {
    padding: 4.0625rem 1.875rem 2.8125rem;
  }
  .intro-item03::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt03.webp) no-repeat center/cover;
    width: 26rem;
    height: 4.1875rem;
    top: -5.7%;
    left: 20%;
  }
  .intro-item03-ttl {
    margin-right: -1.25rem;
    letter-spacing: 0.02em;
  }
  .intro-item04 {
    padding: 4.0625rem 1.875rem 2.6875rem;
  }
  .intro-item04::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt04.webp) no-repeat center/cover;
    width: 26rem;
    height: 4.1875rem;
    top: -6%;
    left: 20%;
  }
}
@media screen and (min-width: 768px) {
  .intro-bg {
    background: url(../images/intro-bg.webp) no-repeat top center/cover;
    padding: 2.4375rem 0 6.375rem;
    position: relative;
  }
  .intro-ttl01 {
    width: 47.9375rem;
  }
  .intro-list {
    padding-top: 8.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.3125rem 0;
  }
  .intro-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: #fff;
    border: solid 0.375rem #0663e0;
    padding: 3rem 3.125rem 2rem 3.5rem;
  }
  .intro-item-box {
    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;
    width: 17.8125rem;
  }
  .intro-item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0.75rem 0 0 0;
  }
  .intro-item-img {
    width: 7.3125rem;
  }
  .intro-item-ttl {
    font-size: 1.5rem;
    color: #0663e0;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 0.08em;
  }
  .intro-item-txt {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.75;
  }
  .intro-item-txt01 {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 0.625rem;
    width: 34.375rem;
  }
  .intro-item01::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt01.webp) no-repeat center/cover;
    width: 17.5rem;
    height: 2.8125rem;
    top: -9%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .intro-item02::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt02.webp) no-repeat center/cover;
    width: 17.5rem;
    height: 2.8125rem;
    top: -9%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .intro-item03::before {
    content: "";
    position: absolute;
    background: url(../images/intro-txt03.webp) no-repeat center/cover;
    width: 17.5rem;
    height: 2.8125rem;
    top: -9%;
    left: 0;
    right: 0;
    margin: auto;
  }
}
/*==============================================================================
company
============================================================================= */
@media screen and (max-width: 767px) {
  .company-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .company-bg {
    background: url(../images/company-bg_sp.webp) no-repeat center/cover;
    padding: 4.6875rem 0 6.375rem;
  }
  .company-ttl01 {
    font-size: 3.75rem;
    letter-spacing: 0.04em;
    color: #fff;
    font-family: "gothicB";
    font-style: italic;
    text-align: center;
    position: relative;
    line-height: 1.25;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .company-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/company-item01.webp) no-repeat center/cover;
    width: 8.125rem;
    height: 14.5rem;
    bottom: 69%;
    left: -2.5%;
  }
  .company-ttl01 .color {
    color: #f8fb02;
    font-size: 5.375rem;
    font-family: "gothicH";
  }
  .company-contents {
    background: #fff;
    margin-top: 1.8125rem;
    padding: 0 1.875rem 2.625rem;
  }
  .company-contents-ttl01 {
    font-size: 2.125rem;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    padding: 9.625rem 1.25rem 0;
  }
  .company-contents-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/company-txt01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 4.4375rem;
    top: 19%;
    left: 0;
  }
  .company-list {
    padding: 0 1.25rem;
  }
  .company-box-img {
    width: 43.125rem;
    margin-left: -1.875rem;
  }
  .company-box-txt {
    font-size: 1.75rem;
    line-height: 1.71;
    letter-spacing: 0.06em;
    padding-top: 1.6875rem;
  }
  .company-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5rem;
  }
  .company-item .ttl {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.55;
    width: 10.75rem;
  }
  .company-item .txt {
    font-size: 1.625rem;
    line-height: 1.55;
  }
  .company-item .txt .notel {
    pointer-events: none;
    color: #000;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .company-bg {
    background: url(../images/company-bg.webp) no-repeat center/cover;
    padding: 5rem 0 6.375rem;
  }
  .company-ttl01 {
    font-size: 2.875rem;
    letter-spacing: 0.04em;
    color: #fff;
    font-family: "gothicB";
    font-style: italic;
    text-align: center;
    position: relative;
  }
  .company-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/company-item01.webp) no-repeat center/cover;
    width: 7rem;
    height: 12.5rem;
    bottom: 49%;
    left: -6%;
  }
  .company-ttl01 .color {
    color: #f8fb02;
    font-size: 4.3125rem;
    font-family: "gothicH";
  }
  .company-contents {
    background: #fff;
    margin-top: 3.4375rem;
    padding: 2.5rem 2.5rem 2.0625rem;
  }
  .company-contents-ttl01 {
    font-size: 1.375rem;
    font-weight: 600;
    padding-top: 6.25rem;
    position: relative;
    letter-spacing: 0.06em;
    margin-bottom: 1.625rem;
  }
  .company-contents-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/company-txt01.webp) no-repeat center/cover;
    width: 57.5rem;
    height: 2.5625rem;
    top: 24%;
    left: 0;
  }
  .company-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .company-box-img {
    width: 25rem;
  }
  .company-box-txt {
    font-size: 1.125rem;
    line-height: 2;
    width: 31.0625rem;
    letter-spacing: 0.06em;
    padding-left: 1.25rem;
    padding-top: 0.625rem;
  }
  .company-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.8125rem;
  }
  .company-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.75rem;
  }
  .company-item .ttl {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.55;
    width: 7.5rem;
  }
  .company-item .txt {
    font-size: 1.125rem;
    line-height: 1.55;
  }
  .company-item .txt .notel {
    pointer-events: none;
    color: #000;
    text-decoration: none;
  }
}
/*==============================================================================
recruit
============================================================================= */
@media screen and (max-width: 767px) {
  .recruit-bg {
    background: #fff;
    padding: 5.125rem 0 5.75rem;
  }
  .recruit-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .recruit-ttl01 {
    font-size: 3.75rem;
    background: #0663e0;
    color: #fff;
    text-align: center;
    font-family: "gothicB";
    padding: 1.875rem 0;
  }
  .recruit-box-txt {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 1.4375rem auto 1.875rem;
  }
  .recruit-btn {
    width: 41.875rem;
    margin: 2.1875rem 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .recruit-bg {
    background: #fff;
    padding: 5rem 0 7.375rem;
  }
  .recruit-ttl01 {
    font-size: 3.75rem;
    color: #fff;
    text-align: center;
    font-family: "gothicB";
    background: #0663e0;
    padding: 1.875rem 0;
  }
  .recruit-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.5rem;
  }
  .recruit-box-img {
    width: 31.25rem;
  }
  .recruit-box-txt {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    line-height: 2;
    width: 28.75rem;
    margin-top: 1.875rem;
    margin-left: 0.9375rem;
    width: 25.375rem;
  }
  .recruit-btn {
    width: 29.8125rem;
    margin: 3.125rem 0 0 0;
  }
}
/*==============================================================================
Footer
============================================================================= */
@media screen and (max-width: 767px) {
  .footer-bg {
    background: #000;
    padding: 5.375rem 0;
  }
  .footer-txt01 {
    font-size: 1.625rem;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-bottom: #fff solid 0.125rem;
    width: 7.1875rem;
    margin: 0 auto;
  }
  .footer-copy {
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
}
@media screen and (min-width: 768px) {
  .footer-bg {
    background: #000;
    padding: 2.875rem 0;
  }
  .footer-txt01 {
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-bottom: #fff solid 0.125rem;
    width: 5rem;
    margin: 0 auto;
  }
  .footer-copy {
    font-size: 0.625rem;
    color: #fff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
}