@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
  ----------------------------------------------- */
@media screen and (min-width: 2001px) {
  html {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
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.8125rem 0.625rem 0.8125rem 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: 18.125rem;
  }
  .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.625rem;
    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-bottom: 4.6875rem;
    padding-top: 0.3125rem;
  }
  .fv-ttl01 {
    padding: 0.4375rem 0;
    width: 46.875rem;
    margin-left: -1.25rem;
    margin-top: -0.5rem;
  }
  .fv-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin: 0.625rem auto 0;
  }
  .fv-cta {
    background: #ffe505;
    padding: 2.1875rem 0.875rem 0.875rem;
    margin-top: 4.375rem;
  }
  .fv-cta-ttl01 {
    width: 44.6875rem;
    margin: -3.875rem auto 0 -2rem;
  }
  .fv-cta-inner {
    background: #fff;
    padding: 1.875rem 1.875rem 2.1875rem 1.875rem;
    position: relative;
  }
  .fv-cta-inner::before {
    content: "";
    position: absolute;
    background: url(../images/fv-cta-shape.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 1.5625rem;
    top: 0;
    left: 50%;
  }
  .fv-cta-ttl02 {
    font-family: "gothicB";
    font-size: 2.1875rem;
    color: #ff2100;
    letter-spacing: 0.04em;
    text-align: center;
    font-style: italic;
    position: relative;
    margin-top: 0.125rem;
  }
  .fv-cta-ttl02 .color {
    color: #063a62;
  }
  .fv-cta-ttl02 .small {
    font-size: 1.5rem;
  }
  .fv-cta-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/cta-item01_sp.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 2.3125rem;
    top: -10%;
    left: 3%;
  }
  .fv-cta-ttl02::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item02_sp.webp) no-repeat center/cover;
    width: 1.625rem;
    height: 2.3125rem;
    top: -10%;
    right: 2%;
  }
  .fv-cta-tel {
    background: url(../images/cta-btn_sp.webp) no-repeat center/cover;
    width: 41.625rem;
    height: 13.875rem;
    margin-left: -1.25rem;
    margin-top: 0.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .fv-cta-tel-txt {
    font-size: 4.875rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    letter-spacing: -0.04em;
    position: relative;
    padding-top: 2.0625rem;
  }
  .fv-cta-tel-txt02 {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    padding-top: 0.625rem;
  }
  .fv-cta-tel-txt03 {
    font-size: 1.375rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding-top: 1.4375rem;
  }
  .fv-cta-box {
    margin-top: 1.625rem;
  }
  .fv-cta-txt01 {
    width: 32.25rem;
    background: #3375bd;
    padding: 0.25rem 3.3125rem 0.5rem;
  }
  .fv-cta-time {
    background: #fffdeb;
    border: solid 0.0625rem #3375bd;
    color: #ff2100;
    font-size: 1.75rem;
    padding: 0.9375rem 0 1.1875rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.57;
    border-top: none;
    text-align: center;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .fv-cta-time .color {
    color: #000;
  }
  .fv-cta-img01 {
    width: 100%;
    margin-top: 1.875rem;
  }
  .fv-cta-note {
    font-size: 1.25rem;
    margin-top: 2.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .fv-bg {
    background: url(../images/fv-bg.webp) no-repeat center/cover;
  }
  .fv-inner {
    padding: 2.625rem 0 3.5rem;
  }
  .fv-ttl01 {
    width: 38.0625rem;
    margin-top: -0.1875rem;
  }
  .fv-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-top: -1.5rem;
  }
  .fv-box-img01 {
    margin-left: -0.625rem;
  }
  .fv-box-img02 {
    margin-right: -0.625rem;
  }
  .fv-cta {
    background: #ffe505;
    padding: 0.6875rem 2.5rem 2.5rem;
    margin-top: 1.25rem;
  }
  .fv-cta-ttl01 {
    width: 36.75rem;
    height: 7.625rem;
    margin: -1.9375rem auto 0;
    position: relative;
    z-index: 5;
  }
  .fv-cta-inner {
    background: #fff;
    padding: 1.75rem 5rem 1.875rem 5rem;
    margin-top: -1.0625rem;
    position: relative;
  }
  .fv-cta-inner::before {
    content: "";
    position: absolute;
    background: url(../images/fv-cta-shape.webp) no-repeat center/cover;
    width: 1.0625rem;
    height: 1.0625rem;
    top: 0;
    left: 50%;
  }
  .fv-cta-ttl02 {
    font-family: "gothicB";
    font-size: 1.75rem;
    color: #ff2100;
    letter-spacing: 0.04em;
    text-align: center;
    font-style: italic;
    position: relative;
    margin-top: 0.125rem;
  }
  .fv-cta-ttl02 .color {
    color: #063a62;
  }
  .fv-cta-ttl02 .small {
    font-size: 1.375rem;
  }
  .fv-cta-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/cta-item01.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 1.875rem;
    top: 0;
    left: 18%;
  }
  .fv-cta-ttl02::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item02.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 1.875rem;
    top: 0;
    right: 18%;
  }
  .fv-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.375rem;
  }
  .fv-cta-tel-txt .small {
    font-size: 0.875rem;
    color: #000;
    font-weight: 600;
    letter-spacing: 0;
    padding-left: 0.625rem;
  }
  .fv-cta-tel-txt::before {
    content: "";
    position: absolute;
    background: url(../images/tel-icon.webp) no-repeat center/cover;
    width: 3.3125rem;
    height: 3.5625rem;
    bottom: 12%;
    left: 8.1%;
  }
  .fv-cta-tel-txt::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item03.webp) no-repeat center/cover;
    width: 3.8125rem;
    height: 3.5625rem;
    bottom: 16%;
    left: 0%;
  }
  .fv-cta-box {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .fv-cta-txt01 {
    background: #3375bd;
    padding: 0.8125rem 0.6875rem 1.25rem;
    position: relative;
  }
  .fv-cta-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/cta-shape02.webp) no-repeat center/cover;
    width: 0.5rem;
    height: 0.6875rem;
    top: 41%;
    right: -1.5%;
  }
  .fv-cta-time {
    background: #fffdeb;
    border: solid 0.0625rem #3375bd;
    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";
  }
  .fv-cta-time .color {
    color: #000;
  }
  .fv-cta-img01 {
    width: 100%;
    margin-top: 0.375rem;
  }
  .fv-cta-note {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.125rem;
  }
}
/*==============================================================================
area
============================================================================= */
@media screen and (max-width: 767px) {
  .area-bg {
    background: #fffde1;
    padding: 3.9375rem 0 4.9375rem;
    position: relative;
  }
  .area-bg::before {
    content: "";
    position: absolute;
    background: url(../images/area-item01.webp) no-repeat center/cover;
    width: 22.5rem;
    height: 25rem;
    top: 2%;
    right: -2.5%;
  }
  .area-ttl01 {
    font-size: 4.0625rem;
    color: #000;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.04em;
    text-align: left;
    line-height: 1.05;
    position: relative;
    z-index: 5;
  }
  .area-ttl01 .color {
    color: #ff2100;
    font-size: 7.5rem;
    letter-spacing: 0.02em;
  }
  .area-ttl01 .small01 {
    font-size: 3.75rem;
  }
  .area-ttl01 .small02 {
    font-size: 3.625rem;
  }
  .area-ttl01 .big {
    font-size: 4.9375rem;
    display: inline-block;
    margin-left: -1.0625rem;
  }
  .area-box {
    margin-top: 3.5625rem;
  }
  .area-box-ttl01 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg01.webp) no-repeat center/cover;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 2.125rem 0;
    position: relative;
  }
  .area-box-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 10.5625rem;
    height: 16.0625rem;
    bottom: 54%;
    right: -2.5%;
  }
  .area-box-ttl02 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg01.webp) no-repeat center/cover;
    font-size: 2.5rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 2.125rem 0;
    position: relative;
  }
  .area-box-txt01 {
    border: solid #3375bd 0.4375rem;
    border-top: none;
    background: #fff;
    padding: 1.8125rem 1.875rem 3.125rem;
    font-weight: 600;
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    line-height: 1.53;
  }
  .area-box-item {
    border: solid #3375bd 0.4375rem;
    border-top: none;
    background: #fff;
    padding: 1.4375rem 1.875rem 1.6875rem;
    margin-bottom: 1.25rem;
  }
  .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: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .area-bg {
    background: #fffde1;
    padding: 2.5625rem 0 4.5rem;
  }
  .area-ttl01 {
    font-size: 3rem;
    color: #000;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.25;
    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::before {
    content: "";
    position: absolute;
    background: url(../images/area-item01.webp) no-repeat center/cover;
    width: 13.75rem;
    height: 13.125rem;
    top: -20%;
    right: 9.5%;
    z-index: 1;
  }
  .area-box {
    margin-top: 1.5rem;
  }
  .area-box-ttl01 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg01.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;
  }
  .area-box-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 7.125rem;
    height: 10.4375rem;
    bottom: 42%;
    right: 4%;
  }
  .area-box-ttl02 {
    font-family: "gothicB";
    color: #fff;
    background: url(../images/area-bg01.webp) no-repeat center/cover;
    font-size: 1.625rem;
    letter-spacing: 0.12em;
    text-align: center;
    padding: 1.375rem 0;
  }
  .area-box-txt01 {
    border: solid #3375bd 0.4375rem;
    border-top: none;
    background: #fff;
    padding: 1rem 2rem 1.5625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }
  .area-box-item {
    border: solid #3375bd 0.4375rem;
    border-top: none;
    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;
  }
  .area-box-txt {
    font-size: 2rem;
    font-family: "gothicB";
    letter-spacing: 0.04em;
    line-height: 1.56;
    margin-top: 1.875rem;
  }
  .area-box-txt .color {
    color: #ff2100;
  }
  .area-box-img {
    width: 23.75rem;
    margin-bottom: -0.1875rem;
  }
  .area-box02 {
    margin-top: 1.6875rem;
    margin-bottom: 1.25rem;
  }
}
/*==============================================================================
point
============================================================================= */
@media screen and (max-width: 767px) {
  .point-bg {
    background: url(../images/point-bg_sp.webp) no-repeat center/cover;
    padding: 0.625rem 0 2rem;
  }
  .point-head {
    margin-bottom: 7.3125rem;
  }
  .point-head-ttl {
    margin-top: -1.875rem;
  }
  .point-head-img {
    margin-top: 1.5625rem;
  }
  .point-contents-ttl01 {
    width: 39.5625rem;
    margin: 0 auto;
  }
  .point-contents-img {
    width: 46.875rem;
    margin: 2.8125rem 0 4.8125rem -1.25rem;
  }
  .point-list {
    width: 43.125rem;
    margin: 0 auto;
  }
  .point-item {
    background: #fff;
    margin-bottom: 6.375rem;
  }
  .point-item-ttl {
    text-align: center;
    font-family: "gothicB";
    background: #fffde1;
    border: 0.3125rem solid #fff;
    border-bottom: none;
    position: relative;
  }
  .point-item-note {
    text-align: center;
    font-size: 1.25rem;
    position: relative;
    padding: 6.4375rem 0 3.4375rem;
  }
  .point-item-note::before {
    content: "";
    position: absolute;
    background: url(../images/point-item04.webp) no-repeat center/cover;
    width: 10.6875rem;
    height: 3.25rem;
    top: 9%;
    right: 4.2%;
  }
  .point-item-note02 {
    text-align: center;
    font-size: 1.25rem;
    padding-bottom: 3.1875rem;
  }
  .point-item01-ttl {
    font-size: 3.75rem;
    letter-spacing: 0;
    line-height: 1.32;
    padding: 2.0625rem 0 1.875rem;
  }
  .point-item01-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/point-item01.webp) no-repeat center/cover;
    width: 26.75rem;
    height: 5.3125rem;
    top: -14%;
    left: 20%;
  }
  .point-item01-ttl .small {
    font-size: 2.75rem;
    letter-spacing: 0.04em;
    display: inline-block;
    margin-bottom: -1.25rem;
  }
  .point-item01-ttl .color {
    font-size: 5.625rem;
    color: #ff1f00;
    font-family: "dinB";
    letter-spacing: -0.02em;
  }
  .point-item01-ttl .mid {
    font-size: 3.125rem;
  }
  .point-item01-ttl .border {
    border-bottom: solid 0.1875rem #000;
    padding-bottom: 0.1875rem;
  }
  .point-item01-ttl02 {
    font-size: 2.75rem;
    padding: 1.75rem 0;
    line-height: 1.4;
  }
  .point-item01-ttl02 .color {
    color: #ff1f00;
    font-size: 3.125rem;
  }
  .point-item01-ttl02 .big {
    font-size: 3.375rem;
  }
  .point-item01-ttl02 .small {
    font-size: 2.375rem;
  }
  .point-item01-logo {
    padding: 2.6875rem 1.5rem 2.0625rem;
  }
  .point-item02-ttl {
    font-size: 3.75rem;
    letter-spacing: 0;
    line-height: 1.25;
    padding: 3.4375rem 0 2.3125rem;
  }
  .point-item02-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/point-item02.webp) no-repeat center/cover;
    width: 26.75rem;
    height: 5.3125rem;
    top: -19%;
    left: 20%;
  }
  .point-item02-ttl .color {
    color: #ff1f00;
  }
  .point-item02-ttl .small {
    font-size: 2.75rem;
  }
  .point-item02-logo {
    padding: 2.8125rem 3.125rem 3.8125rem;
    width: 36.875rem;
    margin: 0 auto;
  }
  .point-item03-ttl {
    font-size: 3.125rem;
    letter-spacing: 0;
    line-height: 1.4;
    padding: 3.4375rem 0 2.125rem;
  }
  .point-item03-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/point-item03.webp) no-repeat center/cover;
    width: 26.75rem;
    height: 5.3125rem;
    top: -19%;
    left: 20%;
  }
  .point-item03-ttl .color {
    color: #ff1f00;
    font-size: 3.75rem;
  }
  .point-grid01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.875rem;
    padding: 2.1875rem 1.875rem 0;
  }
  .point-grid01-ttl {
    font-size: 1.625rem;
    color: #fff;
    text-align: center;
    background: #479ee3;
    padding: 0.9375rem 0;
  }
  .point-grid01-ttl .small {
    font-size: 1.375rem;
  }
  .point-grid02 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 1.9375rem 1.875rem 4.4375rem;
    grid-gap: 1.4375rem;
    margin: 0 auto;
  }
  .point-grid02-box {
    margin-bottom: 1.4375rem;
  }
  .point-grid02-txt {
    font-size: 1.4375rem;
    letter-spacing: 0;
    font-weight: 600;
    text-align: center;
    margin-top: 0.625rem;
  }
  .point-grid-box {
    width: 18.75rem;
  }
}
@media screen and (min-width: 768px) {
  .point-bg {
    background: url(../images/point-bg.webp) no-repeat center/cover;
    padding: 10.375rem 0 1.875rem;
  }
  .point-head {
    margin-bottom: 8.75rem;
  }
  .point-head-ttl {
    position: absolute;
    top: -6.3%;
    width: 65rem;
    margin-left: -0.9375rem;
  }
  .point-head-img {
    margin-top: -0.1875rem;
  }
  .point-contents-ttl01 {
    width: 63.875rem;
  }
  .point-contents-img {
    margin: 3.1875rem 0 5.625rem;
    height: 24rem;
  }
  .point-item {
    background: #fff;
    margin-bottom: 4.5625rem;
  }
  .point-item-ttl {
    text-align: center;
    font-family: "gothicB";
    background: #fffde1;
    border: 0.3125rem solid #fff;
    border-bottom: none;
    position: relative;
  }
  .point-item-note {
    text-align: center;
    font-size: 0.75rem;
    position: relative;
    margin: 0.9375rem 0 2.5rem;
  }
  .point-item-note::before {
    content: "";
    position: absolute;
    background: url(../images/point-item04.webp) no-repeat center/cover;
    width: 5.625rem;
    height: 1.5625rem;
    top: -50%;
    right: 4%;
  }
  .point-item-note02 {
    font-size: 0.75rem;
    padding: 0 3.125rem 2.625rem;
  }
  .point-item01-ttl {
    font-size: 2.75rem;
    letter-spacing: 0;
    line-height: 1.1;
    padding: 1.875rem 0 2.375rem;
  }
  .point-item01-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/point-item01.webp) no-repeat center/cover;
    width: 20.3125rem;
    height: 4.125rem;
    top: -19%;
    left: 33.5%;
  }
  .point-item01-ttl .small {
    font-size: 2rem;
  }
  .point-item01-ttl .color {
    font-size: 4.125rem;
    color: #ff1f00;
    font-family: "dinB";
  }
  .point-item01-ttl .border {
    border-bottom: solid 0.1875rem #000;
    padding-bottom: 0.1875rem;
  }
  .point-item01-ttl02 {
    font-size: 2.125rem;
    padding: 2.5rem 0 2.375rem;
  }
  .point-item01-ttl02 .color {
    color: #ff1f00;
  }
  .point-item01-ttl02 .big {
    font-size: 2.625rem;
  }
  .point-item01-ttl02 .small {
    font-size: 1.75rem;
  }
  .point-item01-logo {
    padding: 1.875rem 1.75rem 1.75rem;
  }
  .point-item02-ttl {
    font-size: 2.75rem;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 3.25rem 0 2.4375rem;
  }
  .point-item02-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/point-item02.webp) no-repeat center/cover;
    width: 20.3125rem;
    height: 4.125rem;
    top: -27%;
    left: 33.5%;
  }
  .point-item02-ttl .color {
    color: #ff1f00;
  }
  .point-item02-ttl .small {
    font-size: 2.25rem;
  }
  .point-item02-logo {
    padding: 1.875rem 4.0625rem 2.5rem;
  }
  .point-item03-ttl {
    font-size: 2.75rem;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 3.125rem 0 2.5rem;
  }
  .point-item03-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/point-item03.webp) no-repeat center/cover;
    width: 20.3125rem;
    height: 4.125rem;
    top: -27%;
    left: 33.5%;
  }
  .point-item03-ttl .color {
    color: #ff1f00;
  }
  .point-item03-ttl .small {
    font-size: 2.25rem;
  }
  .point-grid01 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0.9375rem;
    padding: 2.1875rem 2.5rem 0;
  }
  .point-grid01-ttl {
    font-size: 1.125rem;
    color: #fff;
    text-align: center;
    background: #479ee3;
    padding: 0.6875rem 0;
  }
  .point-grid02 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    padding: 2.1875rem 2.5rem 2.3125rem;
    width: 53.125rem;
    margin: 0 auto;
  }
  .point-grid02-box {
    margin-bottom: 1.25rem;
  }
  .point-grid02-img {
    width: 7.5rem;
    margin: 0 auto;
  }
  .point-grid02-txt {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-align: center;
    margin-top: 0.75rem;
  }
}
/*==============================================================================
price
============================================================================= */
@media screen and (max-width: 767px) {
  .price-bg {
    background: url(../images/price-bg_sp.webp) no-repeat center/cover;
    padding: 6.0625rem 0 5.9375rem;
  }
  .price-inner {
    width: 43.125rem;
  }
  .price-ttl01 {
    font-size: 3.75rem;
    color: #063a62;
    font-family: "gothicB";
    text-align: center;
    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;
    width: 43.75rem;
    margin-left: -0.3125rem;
  }
  .price-ttl01 .color {
    color: #ff2100;
    font-size: 5rem;
  }
  .price-ttl01 .dot {
    display: inline-block;
    margin: 0 -0.9375rem;
  }
  .price-ttl01 .alert {
    display: inline-block;
    font-size: 1.25rem;
    -webkit-transform: translate(21.25rem, -8.125rem);
            transform: translate(21.25rem, -8.125rem);
    text-shadow: none;
  }
  .price-txt01 {
    font-size: 2rem;
    font-family: "gothicDB";
    color: #fff;
    letter-spacing: 0.04em;
    text-align: center;
    background: url(../images/price-bg02_sp.webp) no-repeat center/cover;
    margin: -1.4375rem auto 1.25rem;
    line-height: 1.28;
    height: 7.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0.9375rem 0;
  }
  .price-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/price-item01.webp) no-repeat center/cover;
    width: 6.875rem;
    height: 14rem;
    top: 5.3%;
    right: -3%;
  }
  .price-txt02 {
    font-size: 2.25rem;
    font-family: "gothicDB";
    color: #063a62;
    letter-spacing: 0.04em;
    margin-bottom: 4.25rem;
  }
  .price-txt02 .color {
    color: #ff2100;
    font-size: 2.8125rem;
    border-bottom: #ff2100 solid 0.1875rem;
    padding-bottom: 0.1875rem;
  }
  .price-box {
    background: #fff;
    border-radius: 0.3125rem 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);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.875rem;
  }
  .price-box-img {
    width: 21.6875rem;
    margin-bottom: -0.125rem;
  }
  .price-box-txt01 {
    font-size: 2.5rem;
    text-align: center;
    color: #fff;
    background: url(../images/price-bg03_sp.webp) no-repeat center/cover;
    margin: 3.125rem auto 0;
    width: 18.8125rem;
    height: 4.0625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0.75rem 0;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .price-box-txt02 {
    font-size: 2.375rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1.25rem;
    font-weight: 600;
  }
  .price-box-txt02 .color {
    color: #ff2100;
  }
  .price-box-txt02 .arial {
    font-size: 5.625rem;
    font-weight: bold;
    letter-spacing: -0.06em;
    display: inline-block;
    margin-right: 0.4375rem;
  }
  .price-box-txt02 .alert {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    -webkit-transform: translate(5.625rem, -5.625rem);
            transform: translate(5.625rem, -5.625rem);
  }
  .price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.875rem;
  }
  .price-grid-box {
    background: #fff;
    border-radius: 0.3125rem 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);
  }
  .price-grid-txt {
    padding-top: 1.25rem;
  }
  .price-grid-txt01 {
    font-size: 2.5rem;
    background: url(../images/price-bg04_sp.webp) no-repeat center/cover;
    width: 19rem;
    padding: 0.8125rem 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
  }
  .price-grid-txt02 {
    font-size: 2.375rem;
    font-weight: 500;
    text-align: center;
    font-weight: 600;
    margin-top: 0.4375rem;
    margin-bottom: -0.9375rem;
  }
  .price-grid-txt02 .color {
    color: #ff2100;
  }
  .price-grid-txt02 .arial {
    font-size: 5.625rem;
    font-weight: bold;
    letter-spacing: -0.06em;
    display: inline-block;
    margin-right: 0.4375rem;
  }
  .price-grid-txt02 .small {
    font-size: 5.25rem;
  }
  .price-grid-txt02 .alert {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    -webkit-transform: translate(5.625rem, -5.5rem);
            transform: translate(5.625rem, -5.5rem);
  }
  .price-grid-txt02 .alert02 {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    -webkit-transform: translate(6.25rem, -5.5rem);
            transform: translate(6.25rem, -5.5rem);
  }
  .price-txt03 {
    width: 20.25rem;
    margin: 1.5rem auto 0;
  }
  .price-bottom-img {
    width: 40.9375rem;
    margin: -2.1875rem auto 0;
    position: relative;
    padding-left: 1.875rem;
  }
  .price-bottom-img:before {
    content: "";
    position: absolute;
    background: url(../images/price-item02.webp) no-repeat center/cover;
    width: 4.6875rem;
    height: 4.6875rem;
    bottom: -22%;
    right: 0;
    left: 0;
    margin: auto;
  }
  .price-bottom-txt {
    background: url(../images/price-bg05_sp.webp) no-repeat center/cover;
    height: 24.6875rem;
    width: 97%;
    margin-left: 0.625rem;
  }
  .price-bottom-txt01 {
    font-size: 2.25rem;
    letter-spacing: 0.04em;
    color: #063a62;
    text-align: center;
    font-weight: 600;
    margin-top: 4.125rem;
    position: relative;
    padding-top: 4.0625rem;
  }
  .price-bottom-txt01:before {
    content: "";
    position: absolute;
    background: url(../images/price-item03_sp.webp) no-repeat center/cover;
    width: 23.125rem;
    height: 1.125rem;
    bottom: -32%;
    margin: auto;
  }
  .price-bottom-txt02 {
    color: #063a62;
    font-size: 3.8125rem;
    font-family: "gothicB";
    text-align: center;
    margin-top: 1.5625rem;
    padding-left: 1.5625rem;
    text-shadow: 0.1875rem 0.1875rem 0 #fff, -0.1875rem -0.1875rem 0 #fff, -0.1875rem 0.1875rem 0 #fff, 0.1875rem -0.1875rem 0 #fff, 0.1875rem 0 0 #fff, -0.1875rem 0 0 #fff, 0 0.1875rem 0 #fff, 0 -0.1875rem 0 #fff;
  }
  .price-bottom-txt02 .small {
    font-size: 3.669375rem;
  }
  .price-bottom-txt02 .color {
    color: #ff2100;
  }
  .price-bottom-txt02 .big {
    font-size: 7.3125rem;
    font-family: "dinB";
  }
  .price-bottom-txt02 .mid {
    font-size: 4.403125rem;
    display: inline-block;
    margin-left: -0.9375rem;
  }
  .price-bottom-txt03 {
    font-size: 1.75rem;
    line-height: 1.35;
    margin-left: 3.4375rem;
    margin-top: 0.875rem;
  }
  .price-bottom-txt03 .color {
    color: #ff2100;
  }
  .price-note {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-top: 0.8125rem;
    padding: 0 1.875rem;
  }
  .price-note .txt {
    display: block;
    padding-left: 3.3125rem;
    text-indent: -3.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .price-bg {
    background: url(../images/price-bg.webp) no-repeat center/cover;
    padding: 4.3125rem 0 4.375rem;
  }
  .price-ttl01 {
    font-size: 3.8125rem;
    color: #063a62;
    font-family: "gothicB";
    text-align: center;
    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;
  }
  .price-ttl01 .color {
    color: #ff2100;
    font-size: 4.375rem;
  }
  .price-ttl01 .alert {
    display: inline-block;
    font-size: 0.625rem;
    -webkit-transform: translate(-0.0625rem, -3.125rem);
            transform: translate(-0.0625rem, -3.125rem);
    text-shadow: none;
  }
  .price-txt01 {
    font-size: 1.5rem;
    font-family: "gothicDB";
    color: #fff;
    letter-spacing: 0.04em;
    text-align: center;
    background: url(../images/price-bg02.webp) no-repeat center/cover;
    width: 40.5rem;
    padding: 1.25rem 0 1.875rem;
    margin: 1.3125rem auto 1.125rem;
    position: relative;
  }
  .price-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/price-item01.webp) no-repeat center/cover;
    width: 6.3125rem;
    height: 12.875rem;
    bottom: -22%;
    right: -23%;
  }
  .price-txt02 {
    font-size: 1.675rem;
    font-family: "gothicDB";
    color: #063a62;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 2.1875rem;
  }
  .price-txt02 .color {
    color: #ff2100;
    font-size: 1.925rem;
    border-bottom: #ff2100 solid 0.1875rem;
  }
  .price-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1.625rem;
  }
  .price-box {
    width: 23.125rem;
    background: #fff;
    border-radius: 0 0 0.3125rem 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);
  }
  .price-box-img {
    width: 23.125rem;
  }
  .price-box-txt01 {
    font-size: 1.3125rem;
    text-align: center;
    color: #fff;
    background: url(../images/price-bg03.webp) no-repeat center/cover;
    margin: 0.9375rem auto 0;
    width: 19.375rem;
    padding: 0.625rem 0;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .price-box-txt02 {
    font-size: 2.25rem;
    font-weight: 500;
    text-align: center;
    margin-left: 3.125rem;
    margin-top: 0.375rem;
    margin-bottom: 1.25rem;
  }
  .price-box-txt02 .color {
    color: #ff2100;
  }
  .price-box-txt02 .arial {
    font-size: 4.8125rem;
    font-weight: bold;
    letter-spacing: -0.06em;
    display: inline-block;
    margin-right: 0.4375rem;
  }
  .price-box-txt02 .alert {
    display: inline-block;
    font-size: 0.841875rem;
    font-weight: 600;
    -webkit-transform: translate(-5rem, -2.1875rem);
            transform: translate(-5rem, -2.1875rem);
  }
  .price-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.6875rem;
    width: 38.75rem;
  }
  .price-grid-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #fff;
    border-radius: 0 0.3125rem 0.3125rem 0;
    height: 9.0625rem;
    width: 19rem;
    -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);
  }
  .price-grid-img {
    width: 7.8125rem;
    height: 9.0625rem;
  }
  .price-grid-txt {
    width: 11.25rem;
    padding-top: 0.9375rem;
  }
  .price-grid-txt01 {
    font-size: 1.125rem;
    background: url(../images/price-bg04.webp) no-repeat center/cover;
    width: 9.6875rem;
    padding: 0.625rem 0;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
  }
  .price-grid-txt02 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1.25rem;
  }
  .price-grid-txt02 .color {
    color: #ff2100;
  }
  .price-grid-txt02 .arial {
    font-size: 2.75rem;
    font-weight: bold;
    letter-spacing: -0.06em;
    display: inline-block;
    margin-right: 0.4375rem;
  }
  .price-grid-txt02 .small {
    font-size: 2.5rem;
  }
  .price-grid-txt02 .alert {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    -webkit-transform: translate(2.5rem, -3.4375rem);
            transform: translate(2.5rem, -3.4375rem);
  }
  .price-grid-txt02 .alert02 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    -webkit-transform: translate(2.8125rem, -3.4375rem);
            transform: translate(2.8125rem, -3.4375rem);
  }
  .price-txt03 {
    width: 12.8125rem;
    margin: 0 auto;
  }
  .price-bottom-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;
    margin-top: -1.5625rem;
  }
  .price-bottom-img {
    width: 30.5rem;
    position: relative;
  }
  .price-bottom-img:before {
    content: "";
    position: absolute;
    background: url(../images/price-item02.webp) no-repeat center/cover;
    width: 3.1875rem;
    height: 3.1875rem;
    top: 35%;
    right: -11%;
  }
  .price-bottom-txt {
    background: url(../images/price-bg05.webp) no-repeat center/cover;
    width: 29.1875rem;
    height: 17.5rem;
    margin-right: -0.9375rem;
    margin-top: -0.1875rem;
  }
  .price-bottom-txt01 {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #063a62;
    text-align: center;
    font-weight: 600;
    margin-top: 2.75rem;
    position: relative;
  }
  .price-bottom-txt01:before {
    content: "";
    position: absolute;
    background: url(../images/price-item03.webp) no-repeat center/cover;
    width: 16.125rem;
    height: 0.8125rem;
    bottom: -96%;
    left: 22%;
  }
  .price-bottom-txt02 {
    color: #063a62;
    font-size: 2.65625rem;
    font-family: "gothicB";
    text-align: center;
    margin-top: 0.8125rem;
    text-shadow: 0.1875rem 0.1875rem 0 #fff, -0.1875rem -0.1875rem 0 #fff, -0.1875rem 0.1875rem 0 #fff, 0.1875rem -0.1875rem 0 #fff, 0.1875rem 0 0 #fff, -0.1875rem 0 0 #fff, 0 0.1875rem 0 #fff, 0 -0.1875rem 0 #fff;
  }
  .price-bottom-txt02 .small {
    font-size: 2.5rem;
  }
  .price-bottom-txt02 .color {
    color: #ff2100;
  }
  .price-bottom-txt02 .big {
    font-size: 5.106875rem;
    font-family: "dinB";
  }
  .price-bottom-txt03 {
    font-size: 1.1875rem;
    line-height: 1.39;
    margin-left: 2.5rem;
    margin-top: 0.8125rem;
  }
  .price-bottom-txt03 .color {
    color: #ff2100;
  }
  .price-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: -0.25rem;
  }
}
/*==============================================================================
value
============================================================================= */
@media screen and (max-width: 767px) {
  .value-inner {
    width: 43.125rem;
  }
  .value-bg {
    background: #f9e0d6;
    padding: 13.75rem 0 5.75rem;
  }
  .value-ttl01 {
    font-size: 7.5rem;
    color: #ff2100;
    font-family: "gothicB";
    letter-spacing: 0.02em;
    text-align: center;
    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;
  }
  .value-ttl01 .small {
    font-size: 5.6875rem;
    color: #063a63;
  }
  .value-ttl01::before {
    position: absolute;
    content: "";
    background: url(../images/value-logo.webp) no-repeat center/cover;
    width: 32.1875rem;
    height: 10.3125rem;
    bottom: 87%;
    left: 14%;
  }
  .value-ttl01::after {
    position: absolute;
    content: "";
    background: url(../images/value-txt01.webp) no-repeat center/cover;
    width: 5.25rem;
    height: 2.9375rem;
    bottom: 88%;
    right: 4%;
  }
  .value-grid {
    margin-top: 3.0625rem;
  }
  .value-grid-box {
    background: #fff;
    padding: 2.5rem 0 2.5rem 1.875rem;
    margin-bottom: 1.875rem;
  }
  .value-grid-ttl {
    font-size: 3.4375rem;
    color: #063a63;
    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: 1rem;
  }
  .value-grid-txt .color {
    color: #ff2100;
  }
  .value-grid-txt .alert {
    display: inline-block;
    font-size: 1.25rem;
    -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.6875rem;
    height: 9.1875rem;
    top: 11%;
    right: -2%;
  }
  .value-grid-box02 {
    position: relative;
  }
  .value-grid-box02:before {
    content: "";
    position: absolute;
    background: url(../images/value-item02.webp) no-repeat center/cover;
    width: 15.4375rem;
    height: 10.5rem;
    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.625rem;
    height: 13.875rem;
    top: 5%;
    right: 2%;
  }
  .value-grid-box04 {
    position: relative;
    padding: 3.4375rem 2.1875rem 2.9375rem;
  }
  .value-grid-box04:before {
    content: "";
    position: absolute;
    background: url(../images/value-item04.webp) no-repeat center/cover;
    width: 12rem;
    height: 8.625rem;
    top: 12%;
    right: -1%;
  }
  .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: #f9e0d6;
    padding: 10rem 0 5.8125rem;
  }
  .value-ttl01 {
    font-size: 5rem;
    color: #ff2100;
    font-family: "gothicB";
    letter-spacing: 0.02em;
    text-align: center;
    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;
  }
  .value-ttl01 .small {
    font-size: 3.75rem;
    color: #063a63;
  }
  .value-ttl01::before {
    position: absolute;
    content: "";
    background: url(../images/value-logo.webp) no-repeat center/cover;
    width: 19.375rem;
    height: 6.25rem;
    bottom: 98%;
    left: 32%;
  }
  .value-ttl01::after {
    position: absolute;
    content: "";
    background: url(../images/value-txt01.webp) no-repeat center/cover;
    width: 3.9375rem;
    height: 2.125rem;
    bottom: 90%;
    right: 26%;
  }
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.25rem;
    margin-top: 2.5rem;
  }
  .value-grid-box {
    background: #fff;
    padding: 2.1875rem 1.875rem;
    height: 15.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .value-grid-ttl {
    font-size: 1.875rem;
    color: #063a63;
    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.75rem;
    margin-bottom: -0.125rem;
  }
  .value-grid-txt .color {
    color: #ff2100;
  }
  .value-grid-txt .alert {
    display: inline-block;
    font-size: 0.625rem;
    -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: 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: 8.75rem;
    height: 6.125rem;
    top: 12%;
    right: -1%;
  }
  .value-grid-box04 .value-grid-ttl {
    margin-top: -0.75rem;
    margin-bottom: 0.9375rem;
  }
  .value-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 1rem;
  }
}
/*==============================================================================
cta
============================================================================= */
@media screen and (max-width: 767px) {
  .cta-bg {
    background: url(../images/cta-bg_sp.webp) no-repeat center/cover;
    padding: 9.375rem 0 4.1875rem;
  }
  .cta-head-ttl {
    font-size: 3.125rem;
    font-family: "gothicH";
    font-style: italic;
    position: relative;
    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;
    line-height: 0.9;
  }
  .cta-head-ttl .small {
    font-size: 2.5rem;
  }
  .cta-head-ttl .color {
    color: #ff2100;
  }
  .cta-head-ttl .big {
    font-size: 6.75rem;
    font-family: "dinB";
  }
  .cta-head-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/cta-txt02_sp.webp) no-repeat center/cover;
    width: 21rem;
    height: 7.4375rem;
    top: -73%;
    left: 0%;
  }
  .cta-box-ttl {
    width: 38.125rem;
    margin: 0 auto;
    padding-top: 2.1875rem;
  }
  .cta-box-txt01 {
    width: 43.75rem;
    margin: -0.125rem auto 0 -1.25rem;
    position: relative;
    z-index: 10;
  }
  .cta-box-inner {
    background: #fff;
    padding: 2.1875rem 2.5rem 2.875rem 2.5rem;
    margin-top: -1.1875rem;
    position: relative;
  }
  .cta-box-inner::before {
    content: "";
    position: absolute;
    background: url(../images/cta-shape.webp) no-repeat center/cover;
    width: 1.1875rem;
    height: 1.1875rem;
    top: 0;
    left: 50%;
  }
  .cta-box-ttl02 {
    font-family: "gothicB";
    font-size: 2.1875rem;
    color: #ff2100;
    letter-spacing: 0.04em;
    text-align: center;
    font-style: italic;
    position: relative;
    margin-top: 0.125rem;
  }
  .cta-box-ttl02 .color {
    color: #063a62;
  }
  .cta-box-ttl02 .small {
    font-size: 1.5rem;
  }
  .cta-box-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/cta-item01_sp.webp) no-repeat center/cover;
    width: 1.25rem;
    height: 2.3125rem;
    top: -10%;
    left: 3%;
  }
  .cta-box-ttl02::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item02_sp.webp) no-repeat center/cover;
    width: 1.625rem;
    height: 2.3125rem;
    top: -10%;
    right: 2%;
  }
  .cta-box-img01 {
    width: 100%;
    margin-top: 1.875rem;
  }
  .cta-tel {
    background: url(../images/cta-btn_sp.webp) no-repeat center/cover;
    width: 41.625rem;
    height: 13.875rem;
    margin-left: -1.25rem;
    margin-top: 0.4375rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .cta-tel-txt {
    font-size: 4.875rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    letter-spacing: -0.04em;
    position: relative;
    padding-top: 2.0625rem;
  }
  .cta-tel-txt02 {
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    padding-top: 0.6875rem;
  }
  .cta-tel-txt03 {
    font-size: 1.375rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding-top: 1.375rem;
  }
  .cta-contents-txt01 {
    width: 32.25rem;
    background: #3375bd;
    padding: 0.25rem 3.5625rem 0.5rem;
    margin-top: 1.625rem;
  }
  .cta-contents-time {
    background: #fffdeb;
    border: solid 0.0625rem #3375bd;
    color: #ff2100;
    font-size: 1.75rem;
    padding: 1.0625rem 0;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.57;
    border-top: none;
    text-align: center;
    height: 5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .cta-contents-time .color {
    color: #000;
  }
  .cta-note {
    font-size: 1.25rem;
    margin-top: 1.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .cta-bg {
    background: url(../images/cta-bg.webp) no-repeat center/cover;
    padding: 2.0625rem 0 2.9375rem;
  }
  .cta-head-ttl {
    font-size: 2.5rem;
    font-family: "gothicH";
    text-align: center;
    font-style: italic;
    position: relative;
    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;
  }
  .cta-head-ttl .small {
    font-size: 1.875rem;
  }
  .cta-head-ttl .color {
    color: #ff2100;
  }
  .cta-head-ttl .big {
    font-size: 5.625rem;
    font-family: "dinB";
  }
  .cta-head-ttl::before {
    content: "";
    position: absolute;
    background: url(../images/cta-txt02.webp) no-repeat center/cover;
    width: 15rem;
    height: 5.3125rem;
    bottom: 65%;
    left: 2%;
  }
  .cta-box {
    padding: 0 2.5rem;
  }
  .cta-box-ttl {
    font-family: "gothicH";
    color: #fff;
    font-size: 2.41875rem;
    text-align: center;
    font-style: italic;
    margin-top: 1.875rem;
    letter-spacing: 0;
  }
  .cta-box-ttl .color {
    color: #ffe505;
    font-size: 3.155rem;
  }
  .cta-box-ttl .color .big {
    font-size: 5.25875rem;
  }
  .cta-box-ttl .color .small {
    font-size: 2.734375rem;
  }
  .cta-box-ttl .mid {
    font-size: 3.68125rem;
  }
  .cta-box-ttl .inline {
    display: inline-block;
    margin: 0 -0.5625rem;
  }
  .cta-box-txt01 {
    width: 39.0625rem;
    margin: -0.125rem auto 0;
    position: relative;
    z-index: 10;
  }
  .cta-box-inner {
    background: #fff;
    padding: 1.75rem 5rem 2.8125rem 5rem;
    margin-top: -1.25rem;
    position: relative;
  }
  .cta-box-inner::before {
    content: "";
    position: absolute;
    background: url(../images/cta-shape.webp) no-repeat center/cover;
    width: 1rem;
    height: 1rem;
    top: 0;
    left: 49%;
  }
  .cta-box-ttl02 {
    font-family: "gothicB";
    font-size: 1.75rem;
    color: #ff2100;
    letter-spacing: 0.04em;
    text-align: center;
    font-style: italic;
    position: relative;
    margin-top: 0.125rem;
  }
  .cta-box-ttl02 .color {
    color: #063a62;
  }
  .cta-box-ttl02 .small {
    font-size: 1.375rem;
  }
  .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: 17%;
  }
  .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: 17%;
  }
  .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.1875rem;
  }
  .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/tel-icon.webp) no-repeat center/cover;
    width: 3.3125rem;
    height: 3.5625rem;
    bottom: 12%;
    left: 8.1%;
  }
  .cta-tel-txt::after {
    content: "";
    position: absolute;
    background: url(../images/cta-item03.webp) no-repeat center/cover;
    width: 3.875rem;
    height: 3.625rem;
    bottom: 16%;
    left: 0;
  }
  .cta-contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0.4375rem;
  }
  .cta-contents-txt01 {
    background: #3375bd;
    padding: 0.8125rem 0.6875rem 1.25rem;
    position: relative;
  }
  .cta-contents-txt01::before {
    content: "";
    position: absolute;
    background: url(../images/cta-shape02.webp) no-repeat center/cover;
    width: 0.5rem;
    height: 0.6875rem;
    top: 41%;
    right: -1.5%;
  }
  .cta-contents-time {
    background: #fffdeb;
    border: solid 0.0625rem #3375bd;
    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-top: 0.9375rem;
    margin-bottom: 0.125rem;
  }
}
/*==============================================================================
reason
============================================================================= */
@media screen and (max-width: 767px) {
  .reason-bg {
    background: #fffee1;
    padding: 3.4375rem 0 6.125rem;
  }
  .reason-ttl01 {
    margin: 0 auto;
  }
  .reason-item-ttl01 {
    font-size: 3rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: #3375bd;
    padding: 3.125rem 0.625rem 1.625rem;
    margin-top: 4.8125rem;
    position: relative;
    line-height: 1.47;
  }
  .reason-item-ttl01 .color {
    color: #ffe505;
  }
  .reason-item-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 9.125rem;
    height: 13.9375rem;
    bottom: 36%;
    right: -1%;
  }
  .reason-item-ttl02 {
    font-size: 2.125rem;
    text-align: center;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding: 2.5rem 0 1.8125rem;
    line-height: 1.47;
    padding-left: 1.875rem;
  }
  .reason-item-ttl02 .big {
    font-size: 2.75rem;
  }
  .reason-item-contents {
    background: #fff;
    border: solid 0.375rem #3375bd;
    border-top: none;
    padding: 0 2.1875rem 0rem 2.1875rem;
  }
  .reason-item-box {
    margin-bottom: 3.1875rem;
  }
  .reason-item-txt02 {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 1.8125rem;
  }
  .reason-item-txt02 .alert {
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transform: translate(26.5625rem, 0.625rem);
            transform: translate(26.5625rem, 0.625rem);
  }
  .reason-item-txt02 .alert02 {
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transform: translate(-0.0625rem, -0.625rem);
            transform: translate(-0.0625rem, -0.625rem);
  }
  .reason-item-txt02 .alert03 {
    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;
    height: 18.375rem;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.3;
    font-weight: 600;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 10.75rem;
    padding-left: 2.5rem;
  }
  .reason-item-txt01 .color {
    color: #ffe505;
  }
  .reason-item-txt {
    width: 41.75rem;
    margin-left: -0.3125rem;
    margin-top: -3.25rem;
  }
  .reason-item-txt03 {
    font-size: 1.75rem;
    margin-top: -1.25rem;
    margin-bottom: 4.375rem;
    text-align: center;
  }
  .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.5rem;
    height: 6.9375rem;
    top: -29%;
    left: 33%;
  }
  .reason-item02-txt01 {
    background: url(../images/reason-img02_sp.webp) no-repeat center/cover;
  }
  .reason-item02-ttl01 {
    font-size: 3rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: #3375bd;
    padding: 0.9375rem 0 0.5625rem;
    margin-top: 7.1875rem;
    position: relative;
  }
  .reason-item02-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt02_sp.webp) no-repeat center/cover;
    width: 17.125rem;
    height: 6.8125rem;
    top: -36%;
    left: 31%;
  }
  .reason-item02-ttl01 .big {
    font-size: 6.25rem;
    font-family: "dinB";
  }
  .reason-item02-ttl01 .color {
    font-size: 4rem;
  }
  .reason-item02-ttl01 .inline {
    display: inline-block;
    margin: 0 -0.625rem;
  }
  .reason-item02-ttl01 .alert {
    font-size: 1.25rem;
    display: inline-block;
    -webkit-transform: translate(-0.625rem, -3.125rem);
            transform: translate(-0.625rem, -3.125rem);
    margin-right: -0.9375rem;
  }
  .reason-item02-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 9.125rem;
    height: 13.9375rem;
    bottom: 19%;
    right: -1%;
  }
  .reason-item02-ttl02 {
    padding: 2.1875rem 0 1.5625rem 1.875rem;
  }
  .reason-item02-contents .reason-item-box:last-child {
    margin-bottom: 2.8125rem;
  }
  .reason-item03-txt01 {
    background: url(../images/reason-img03_sp.webp) no-repeat center/cover;
  }
  .reason-item03-ttl01 {
    margin-top: 7.1875rem;
    padding: 2.875rem 0 2.1875rem;
  }
  .reason-item03-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt03_sp.webp) no-repeat center/cover;
    width: 17.0625rem;
    height: 6.875rem;
    top: -39%;
    left: 32%;
  }
  .reason-item03-ttl01 .color {
    font-size: 3.4375rem;
  }
  .reason-item03-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 9.125rem;
    height: 13.9375rem;
    bottom: 17%;
    right: -1%;
  }
  .reason-item03-ttl02 {
    font-size: 2.75rem;
    padding: 1.875rem 0 1.5625rem 1.875rem;
  }
  .reason-item04-txt {
    margin-left: -0.1875rem;
    margin-top: -2.8125rem;
  }
  .reason-item04-txt01 {
    background: url(../images/reason-img06_sp.webp) no-repeat center/cover;
    padding-top: 12.5rem;
    padding-left: 1.875rem;
    width: 39.375rem;
  }
  .reason-item04-ttl01 {
    line-height: 1.09;
    margin-top: 7.1875rem;
    padding: 3.5625rem 0.625rem 1.25rem;
  }
  .reason-item04-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt04_sp.webp) no-repeat center/cover;
    width: 17.5rem;
    height: 6.875rem;
    top: -30%;
    left: 31%;
  }
  .reason-item04-ttl01 .big {
    font-size: 5rem;
    font-family: "dinB";
  }
  .reason-item04-box {
    margin-top: 2.8125rem;
  }
  .reason-item04-ttl02 {
    padding: 2.625rem 0 1.5625rem 0rem;
  }
  .reason-item04-note {
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 1.5;
    margin: -4.1875rem 0 0 0;
    padding-left: 1.5625rem;
    text-indent: -1.25rem;
  }
  .reason-item05-ttl01 {
    padding: 1.375rem 0 0.9375rem;
    margin-top: 7.1875rem;
  }
  .reason-item05-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt05_sp.webp) no-repeat center/cover;
    width: 17.25rem;
    height: 6.875rem;
    top: -37%;
    left: 31%;
  }
  .reason-item05-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 9.125rem;
    height: 13.9375rem;
    bottom: 20%;
    right: -1%;
  }
  .reason-item05-ttl01 .color {
    font-size: 3.4375rem;
  }
  .reason-item05-ttl01 .big {
    font-size: 5.625rem;
    font-family: "dinB";
  }
  .reason-item05-box {
    padding-top: 2.4375rem;
    margin-bottom: 0;
  }
  .reason-item05-box .reason-item-img {
    width: 39.375rem;
  }
  .reason-item05-txt02 {
    margin-bottom: 3.375rem;
  }
  .reason-list02 {
    margin-top: 1.75rem;
  }
  .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: #3375bd;
    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.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .reason-bg {
    background: #fffee1;
    padding: 4.0625rem 0 4.5625rem;
  }
  .reason-ttl01 {
    width: 38.4375rem;
    margin: 0 auto;
  }
  .reason-item-ttl01 {
    font-size: 2.25rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: #3375bd;
    padding: 2.375rem 0;
    margin-top: 6.5625rem;
    position: relative;
  }
  .reason-item-ttl01 .color {
    font-size: 2.75rem;
    color: #ffe505;
  }
  .reason-item-ttl01 .small {
    font-size: 2rem;
  }
  .reason-item-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 9.5rem;
    bottom: 40%;
    right: 0%;
  }
  .reason-item-ttl02 {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding: 2.3125rem 0 2.625rem;
  }
  .reason-item-ttl02 .big {
    font-size: 1.875rem;
  }
  .reason-item-contents {
    background: #fff;
    border: solid 0.375rem #3375bd;
    border-top: none;
    padding: 0 3.4375rem 1.5rem 3.4375rem;
  }
  .reason-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    margin-bottom: 1.6875rem;
  }
  .reason-item-txt02 {
    width: 29.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    line-height: 2;
    margin-top: 1rem;
  }
  .reason-item-txt02 .alert {
    font-size: 0.75rem;
    display: inline-block;
    -webkit-transform: translate(5.3125rem, 5.6875rem);
            transform: translate(5.3125rem, 5.6875rem);
  }
  .reason-item-txt02 .alert02 {
    font-size: 0.625rem;
    display: inline-block;
    -webkit-transform: translate(-0.0625rem, -0.5rem);
            transform: translate(-0.0625rem, -0.5rem);
  }
  .reason-item-txt02 .alert03 {
    font-size: 0.75rem;
    display: inline-block;
    -webkit-transform: translate(-0.0625rem, -0.5rem);
            transform: translate(-0.0625rem, -0.5rem);
  }
  .reason-item-txt01 {
    font-size: 1.625rem;
    width: 23.75rem;
    height: 11.25rem;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.35;
    font-weight: 600;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 5.9375rem;
    padding-left: 2.5rem;
  }
  .reason-item-txt01 .color {
    color: #ffe505;
  }
  .reason-item-img {
    width: 23.75rem;
  }
  .reason-item-txt {
    width: 56.75rem;
  }
  .reason-item-txt03 {
    font-size: 1rem;
    margin-top: 0.625rem;
    margin-bottom: 0.8125rem;
    padding-left: 47%;
  }
  .reason-item01-txt01 {
    background: url(../images/reason-img01.webp) no-repeat center/cover;
  }
  .reason-item01-ttl01 {
    margin-top: 5.375rem;
  }
  .reason-item01-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt01.webp) no-repeat center/cover;
    width: 11.75rem;
    height: 5.375rem;
    top: -47%;
    left: 40.5%;
  }
  .reason-item02-txt01 {
    background: url(../images/reason-img02.webp) no-repeat center/cover;
  }
  .reason-item02-ttl01 {
    font-size: 2rem;
    font-family: "gothicB";
    color: #fff;
    text-align: center;
    background: #3375bd;
    padding: 1.6875rem 0 1.5625rem;
    position: relative;
  }
  .reason-item02-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/reason-txt02.webp) no-repeat center/cover;
    width: 12.3125rem;
    height: 5.3125rem;
    top: -46%;
    left: 40.5%;
  }
  .reason-item02-ttl01 .small {
    font-size: 2rem;
  }
  .reason-item02-ttl01 .big {
    font-size: 4.25rem;
    font-family: "dinB";
  }
  .reason-item02-ttl01 .alert {
    font-size: 0.75rem;
    display: inline-block;
    -webkit-transform: translate(-0.3125rem, -2.25rem);
            transform: translate(-0.3125rem, -2.25rem);
    margin-right: -0.5rem;
  }
  .reason-item02-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/area-item02.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 9.5rem;
    bottom: 40%;
    right: 0%;
  }
  .reason-item02-ttl02 {
    padding: 1.6875rem 0 1.8125rem;
  }
  .reason-item02-contents {
    padding: 0 3.4375rem 0.5rem 3.4375rem;
  }
  .reason-item03-txt01 {
    background: url(../images/reason-img03.webp) no-repeat center/cover;
  }
  .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-ttl02 {
    padding: 1.6875rem 0 2.125rem;
  }
  .reason-item03-contents {
    padding: 0 3.4375rem 0.5625rem 3.4375rem;
  }
  .reason-item04-txt01 {
    background: url(../images/reason-img06.webp) no-repeat center/cover;
    padding-top: 7.1875rem;
    padding-left: 1.875rem;
    width: 23.75rem;
  }
  .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-ttl01 .color {
    font-size: 2rem;
  }
  .reason-item04-box {
    margin-top: 2.0625rem;
    margin-bottom: 0.9375rem;
  }
  .reason-item04-ttl02 {
    padding: 1.5625rem 0 0.9375rem;
    line-height: 1.5;
  }
  .reason-item04-note {
    font-size: 0.75rem;
    letter-spacing: 0;
    margin: -0.6875rem 0 0 6.875rem;
  }
  .reason-item05-ttl01 {
    font-size: 2rem;
    padding: 1.875rem 0;
  }
  .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-box {
    padding-top: 1.875rem;
    margin-bottom: 0;
  }
  .reason-item05-contents {
    padding: 0 3.4375rem 2.625rem 3.4375rem;
  }
  .reason-list02 {
    margin-top: -0.4375rem;
  }
  .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: #3375bd;
    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;
  }
  .reason-note02 {
    margin-top: 0.5rem;
  }
  .reason-note03 {
    margin-top: 0.75rem;
  }
}
/*==============================================================================
check
============================================================================= */
@media screen and (max-width: 767px) {
  .check-bg {
    background: url(../images/check-bg_sp.webp) no-repeat center/cover;
    padding: 0.75rem 0 6.5rem;
  }
  .check-ttl01 {
    margin: 0 auto;
  }
  .check-grid {
    background: #fff;
    padding: 0rem 1.25rem 3.4375rem;
    margin-top: 0.625rem;
    width: 43.125rem;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .check-grid-ttl {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.37;
    position: relative;
    padding-left: 11.5625rem;
    height: 10.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 3rem;
    margin-bottom: 0.1875rem;
  }
  .check-grid-txt {
    font-size: 2.625rem;
    color: #063a62;
    font-family: "gothicB";
    background: #a0d4fc;
    padding: 2.8125rem 0;
    text-align: center;
    border-radius: 0.625rem 0.625rem;
    height: 7.875rem;
    letter-spacing: 0.04em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .check-grid-txt::before {
    content: "";
    position: absolute;
    background: url(../images/check-shape.webp) no-repeat center/cover;
    width: 2.0625rem;
    height: 1.25rem;
    top: 0;
    left: 46%;
  }
  .check-grid-txt02 {
    padding: 1.625rem 0;
    line-height: 1.33;
    height: 9.875rem;
  }
  .check-grid-ttl01 {
    padding-top: 2.375rem;
    margin-bottom: 0rem;
  }
  .check-grid-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt01_sp.webp) no-repeat center/cover;
    width: 8.4375rem;
    height: 5.8125rem;
    bottom: 23%;
    left: 0;
  }
  .check-grid-ttl02 {
    height: 10rem;
    padding-top: 4.8125rem;
  }
  .check-grid-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt02_sp.webp) no-repeat center/cover;
    width: 9.1875rem;
    height: 5.875rem;
    bottom: 18%;
    left: 0;
  }
  .check-grid-ttl03::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt03_sp.webp) no-repeat center/cover;
    width: 9.3125rem;
    height: 5.9375rem;
    bottom: 23%;
    left: 0;
  }
  .check-grid-ttl04::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt04_sp.webp) no-repeat center/cover;
    width: 9.375rem;
    height: 5.875rem;
    bottom: 23%;
    left: 0;
  }
  .check-grid-ttl05::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt05_sp.webp) no-repeat center/cover;
    width: 9.1875rem;
    height: 5.875rem;
    bottom: 23%;
    left: 0;
  }
  .check-grid-ttl06 {
    height: 10rem;
    padding-top: 3.4375rem;
    margin-bottom: -0.625rem;
  }
  .check-grid-ttl06::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt06_sp.webp) no-repeat center/cover;
    width: 9.25rem;
    height: 5.875rem;
    bottom: 18%;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .check-bg {
    background: url(../images/check-bg.webp) no-repeat center/cover;
    padding: 1.625rem 0 5.75rem;
  }
  .check-ttl01 {
    width: 46.875rem;
    margin: 0 auto;
  }
  .check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    padding: 1.6875rem 2.5rem 3.875rem;
    grid-gap: 1.25rem;
    margin-top: 1.3125rem;
  }
  .check-grid-ttl {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    padding-left: 8.125rem;
    height: 6.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 0.9375rem;
  }
  .check-grid-ttl .alert {
    font-size: 0.625rem;
    display: inline-block;
    -webkit-transform: translate(0.0625rem, -0.5rem);
            transform: translate(0.0625rem, -0.5rem);
  }
  .check-grid-txt {
    font-size: 1.625rem;
    color: #063a62;
    font-family: "gothicB";
    background: #a0d4fc;
    padding: 1.875rem 0;
    text-align: center;
    border-radius: 0.625rem 0.625rem;
    height: 5.625rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  .check-grid-txt::before {
    content: "";
    position: absolute;
    background: url(../images/check-shape.webp) no-repeat center/cover;
    width: 1.375rem;
    height: 0.75rem;
    top: 0;
    left: 46%;
  }
  .check-grid-txt02 {
    padding: 0.9375rem 0;
    font-size: 1.5rem;
    line-height: 1.33;
  }
  .check-grid-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt01.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 4.0625rem;
    bottom: 30%;
    left: 0;
  }
  .check-grid-ttl02 {
    line-height: 2.8;
  }
  .check-grid-ttl02::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt02.webp) no-repeat center/cover;
    width: 6.9375rem;
    height: 4.0625rem;
    bottom: 30%;
    left: 0;
  }
  .check-grid-ttl03 {
    line-height: 2.8;
  }
  .check-grid-ttl03::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt03.webp) no-repeat center/cover;
    width: 7rem;
    height: 4.0625rem;
    bottom: 30%;
    left: 0;
  }
  .check-grid-ttl04 {
    line-height: 2.8;
  }
  .check-grid-ttl04::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt04.webp) no-repeat center/cover;
    width: 6.875rem;
    height: 4.0625rem;
    bottom: 30%;
    left: 0;
  }
  .check-grid-ttl05::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt05.webp) no-repeat center/cover;
    width: 6.875rem;
    height: 4.125rem;
    bottom: 30%;
    left: 0;
  }
  .check-grid-ttl06 {
    line-height: 2.8;
  }
  .check-grid-ttl06::before {
    content: "";
    position: absolute;
    background: url(../images/check-txt06.webp) no-repeat center/cover;
    width: 6.875rem;
    height: 4.0625rem;
    bottom: 30%;
    left: 0;
  }
  .check-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 0.75rem;
  }
}
/*==============================================================================
step
============================================================================= */
@media screen and (max-width: 767px) {
  .step-bg {
    background: url(../images/step-bg_sp.webp) no-repeat center/cover;
    padding: 0.625rem 0 8.125rem;
  }
  .step-ttl01 {
    margin: -3.4375rem -1.25rem 0 0;
  }
  .step-list {
    margin-top: -0.5rem;
  }
  .step-item {
    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: 3.0625rem;
  }
  .step-item-box {
    width: 23.4375rem;
  }
  .step-item-img {
    width: 19.5625rem;
  }
  .step-item-ttl01 {
    font-size: 2.5rem;
    font-weight: 600;
    padding-top: 1.125rem;
    padding-left: 5.9375rem;
  }
  .step-item-txt01 {
    font-size: 1.75rem;
    margin-top: 2.1875rem;
    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: 42.0625rem;
    margin: 1.125rem auto -1.625rem;
  }
  .step-item01-ttl01 {
    position: relative;
  }
  .step-item01-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt01_sp.webp) no-repeat center/cover;
    width: 23.3125rem;
    height: 4.6875rem;
    top: 1%;
    left: 0;
  }
  .step-item02-ttl01 {
    position: relative;
  }
  .step-item02-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt02_sp.webp) no-repeat center/cover;
    width: 23.3125rem;
    height: 4.6875rem;
    top: 0;
    left: 0;
  }
  .step-item03-ttl01 {
    position: relative;
  }
  .step-item03-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt03_sp.webp) no-repeat center/cover;
    width: 23.3125rem;
    height: 4.6875rem;
    top: 0;
    left: 0;
  }
  .step-item04 {
    margin-top: 3.4375rem;
  }
  .step-item04-ttl01 {
    position: relative;
  }
  .step-item04-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt04_sp.webp) no-repeat center/cover;
    width: 23.3125rem;
    height: 4.6875rem;
    top: 0;
    left: 0;
  }
  .step-note {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 2.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .step-bg {
    background: url(../images/step-bg.webp) no-repeat center/cover;
    padding: 0.625rem 0 4.8125rem;
  }
  .step-ttl01 {
    width: 60rem;
    margin: -3.0625rem -9.375rem 0 auto;
  }
  .step-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0.4375rem;
    margin-top: 0.5rem;
  }
  .step-item {
    background: #fff;
    position: relative;
  }
  .step-item::before {
    content: "";
    position: absolute;
    background: url(../images/step-item01.webp) no-repeat center/cover;
    width: 2.0625rem;
    height: 2.3125rem;
    top: 59%;
    right: -7%;
    z-index: 10;
  }
  .step-item:last-child::before {
    display: none;
  }
  .step-item-box {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
  .step-item-ttl01 {
    font-size: 1.625rem;
    text-align: center;
    font-weight: 600;
    padding-top: 3.4375rem;
  }
  .step-item-txt01 {
    font-size: 1.125rem;
    margin-top: 0.875rem;
    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.8125rem;
  }
  .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.4375rem;
    height: 1.4375rem;
    top: 5%;
    left: 0;
  }
  .step-item-time {
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.3125rem;
  }
  .step-item01-ttl01 {
    position: relative;
  }
  .step-item01-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt01.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 2.5rem;
    top: 0;
    left: 25%;
  }
  .step-item02-ttl01 {
    position: relative;
  }
  .step-item02-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt02.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 2.5rem;
    top: 0;
    left: 25%;
  }
  .step-item03-ttl01 {
    position: relative;
  }
  .step-item03-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt03.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 2.5rem;
    top: 0;
    left: 25%;
  }
  .step-item04-ttl01 {
    position: relative;
  }
  .step-item04-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/step-txt04.webp) no-repeat center/cover;
    width: 6.25rem;
    height: 2.5rem;
    top: 0;
    left: 25%;
  }
  .step-note {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-top: 1.1875rem;
  }
}
/*==============================================================================
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: 12.8125rem 0 1.5625rem;
    position: relative;
  }
  .intro-ttl01 {
    font-size: 5rem;
    color: #063a63;
    font-family: "gothicB";
    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;
    text-align: center;
    position: relative;
  }
  .intro-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/logo02.webp) no-repeat center/cover;
    width: 25rem;
    height: 4.375rem;
    bottom: 134%;
    left: 24%;
  }
  .intro-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/intro-txt01_sp.webp) no-repeat center/cover;
    width: 34.375rem;
    height: 7.6875rem;
    bottom: 241%;
    left: 13%;
  }
  .intro-list {
    padding-top: 19.125rem;
  }
  .intro-item {
    background: #fff;
    border: solid 0.4375rem #3375bd;
    padding: 4.0625rem 1.875rem 3.4375rem;
    position: relative;
    margin-bottom: 4.375rem;
  }
  .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: #063a63;
    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;
    color: #063a63;
    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-item01.webp) no-repeat center/cover;
    width: 25.8125rem;
    height: 4.6875rem;
    top: -5.5%;
    left: 20%;
  }
  .intro-item02 {
    padding: 4.0625rem 1.875rem 5.75rem;
  }
  .intro-item02::before {
    content: "";
    position: absolute;
    background: url(../images/intro-item02.webp) no-repeat center/cover;
    width: 25.8125rem;
    height: 4.6875rem;
    top: -6%;
    left: 20%;
  }
  .intro-item03 {
    padding: 4.0625rem 1.875rem 2.875rem;
  }
  .intro-item03::before {
    content: "";
    position: absolute;
    background: url(../images/intro-item03.webp) no-repeat center/cover;
    width: 25.8125rem;
    height: 4.6875rem;
    top: -6%;
    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-item04.webp) no-repeat center/cover;
    width: 25.8125rem;
    height: 4.6875rem;
    top: -6%;
    left: 20%;
  }
}
@media screen and (min-width: 768px) {
  .intro-bg {
    background: url(../images/intro-bg.webp) no-repeat top center/cover;
    padding: 10.3125rem 0 5.9375rem;
    position: relative;
  }
  .intro-ttl01 {
    font-size: 4.0625rem;
    color: #063a63;
    font-family: "gothicB";
    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;
    text-align: center;
    position: relative;
  }
  .intro-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/logo02.webp) no-repeat center/cover;
    width: 23.0625rem;
    height: 4.1875rem;
    bottom: 133%;
    left: 32.5%;
  }
  .intro-ttl01::after {
    content: "";
    position: absolute;
    background: url(../images/intro-txt01.webp) no-repeat center/cover;
    width: 20.3125rem;
    height: 6.5625rem;
    bottom: 117%;
    left: 0;
  }
  .intro-list {
    padding-top: 8.9375rem;
    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.1875rem 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 #3375bd;
    padding: 3rem 6.375rem 2rem 3.5625rem;
  }
  .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: 14.6875rem;
  }
  .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: #063a63;
    font-weight: 600;
    line-height: 1.52;
    letter-spacing: 0.08em;
  }
  .intro-item-txt {
    font-size: 1.125rem;
    color: #063a63;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.75;
  }
  .intro-item-txt span {
    font-size: 1.125rem;
  }
  .intro-item-txt01 {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin-top: 0.625rem;
    width: 34.0625rem;
  }
  .intro-item01::before {
    content: "";
    position: absolute;
    background: url(../images/intro-item01.webp) no-repeat center/cover;
    width: 17.625rem;
    height: 3.1875rem;
    top: -9%;
    left: 20%;
  }
  .intro-item02::before {
    content: "";
    position: absolute;
    background: url(../images/intro-item02.webp) no-repeat center/cover;
    width: 17.625rem;
    height: 3.1875rem;
    top: -9%;
    left: 20%;
  }
  .intro-item03::before {
    content: "";
    position: absolute;
    background: url(../images/intro-item03.webp) no-repeat center/cover;
    width: 17.625rem;
    height: 3.1875rem;
    top: -9%;
    left: 20%;
  }
}
/*==============================================================================
voice
============================================================================= */
@media screen and (max-width: 767px) {
  .voice-bg {
    background: url(../images/voice-bg_sp.webp) no-repeat center/cover;
    padding: 4.5rem 0 2.5rem;
  }
  .voice-ttl01 {
    width: 34.6875rem;
    margin: 0 auto;
  }
  .voice-list {
    padding-top: 4.8125rem;
  }
  .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-item01.webp) no-repeat center/cover;
    width: 15.125rem;
    height: 4.8125rem;
    top: -5%;
    left: 34%;
  }
  .voice-item-inner {
    padding: 3.75rem 1.875rem 3.625rem;
  }
  .voice-item02::before {
    content: "";
    position: absolute;
    background: url(../images/voice-item02.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-item03.webp) no-repeat center/cover;
    width: 15.125rem;
    height: 4.8125rem;
    top: -5%;
    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.6875rem;
    display: block;
  }
  .voice-box-txt {
    font-size: 1.75rem;
    width: 19.3125rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.4375rem;
  }
  .voice-box02-txt {
    margin-bottom: 4.125rem;
  }
  .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.625rem 0;
    border-radius: 1.5625rem 1.5625rem;
    text-align: center;
    margin-bottom: 1.8125rem;
    margin-top: 0.375rem;
  }
  .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.625rem 0 3.125rem;
  }
  .voice-ttl01 {
    width: 56.25rem;
    height: 10.625rem;
    margin: 0 auto;
  }
  .voice-list {
    padding-top: 5.75rem;
  }
  .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-item01.webp) no-repeat center/cover;
    width: 11.625rem;
    height: 3.8125rem;
    top: -12%;
    left: 40%;
  }
  .voice-item-inner {
    padding: 3.4375rem 2.8125rem 1.1875rem;
  }
  .voice-item02::before {
    content: "";
    position: absolute;
    background: url(../images/voice-item02.webp) no-repeat center/cover;
    width: 11.625rem;
    height: 3.8125rem;
    top: -12%;
    left: 40%;
  }
  .voice-item03::before {
    content: "";
    position: absolute;
    background: url(../images/voice-item03.webp) no-repeat center/cover;
    width: 11.625rem;
    height: 3.8125rem;
    top: -12%;
    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-top: 1.125rem;
  }
  .voice-btn {
    width: 12.9375rem;
    margin-top: -6.25rem;
    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;
  }
}
/*==============================================================================
quality
============================================================================= */
@media screen and (max-width: 767px) {
  .quality-bg {
    background: url(../images/quality-bg_sp.webp) no-repeat top/cover;
    padding: 5.3125rem 0 3.75rem;
  }
  .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;
  }
  .quality-ttl01 .big {
    font-size: 4.6875rem;
  }
  .quality-list {
    margin-top: 8.75rem;
  }
  .quality-item {
    background-color: #f1f1f1;
    margin-bottom: 2.8125rem;
    padding: 1.25rem 1.875rem 3.3125rem;
    position: relative;
  }
  .quality-item-ttl {
    font-size: 2.625rem;
    color: #063a62;
    font-weight: 600;
    padding-left: 9.375rem;
    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.4375rem;
    margin-right: -0.625rem;
  }
  .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: 3.125rem;
  }
  .quality-item01::before {
    content: "";
    position: absolute;
    background: url(../images/quality-item01_sp.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: -3.3%;
    left: -1%;
  }
  .quality-item02 {
    padding: 1.25rem 1.875rem 2.5rem;
  }
  .quality-item02::before {
    content: "";
    position: absolute;
    background: url(../images/quality-item02_sp.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: -3.3%;
    left: -1%;
  }
  .quality-item03 {
    padding: 1.25rem 1.875rem 2.5rem;
  }
  .quality-item03::before {
    content: "";
    position: absolute;
    background: url(../images/quality-item03_sp.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 10.6875rem;
    top: -3.3%;
    left: -1%;
  }
}
@media screen and (min-width: 768px) {
  .quality-bg {
    background: url(../images/quality-bg.webp) no-repeat center/cover;
    padding: 3.3125rem 0 4.0625rem;
  }
  .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.0625rem;
  }
  .quality-ttl01 .big {
    font-size: 4.375rem;
  }
  .quality-list {
    margin-top: 6.6875rem;
  }
  .quality-item {
    background-color: #f1f1f1;
    margin-bottom: 2.625rem;
    padding: 1.875rem 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: #063a62;
    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-item01.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 4.6875rem;
    top: -5%;
    left: -1%;
  }
  .quality-item02::before {
    content: "";
    position: absolute;
    background: url(../images/quality-item02.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 4.6875rem;
    top: -5%;
    left: -1%;
  }
  .quality-item03::before {
    content: "";
    position: absolute;
    background: url(../images/quality-item03.webp) no-repeat center/cover;
    width: 10.8125rem;
    height: 4.6875rem;
    top: -5%;
    left: -1%;
  }
}
/*==============================================================================
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: 0.625rem 0 6.4375rem;
  }
  .company-ttl01 {
    width: 43.3125rem;
    margin-top: -2.6875rem;
    margin-left: 2.0625rem;
  }
  .company-contents {
    background: #fff;
    margin-top: 2.125rem;
    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.5625rem 1.25rem 0;
  }
  .company-contents-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/company-item01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 4.4375rem;
    top: 18%;
    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.75rem;
  }
  .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: 0.625rem 0 6.1875rem;
  }
  .company-ttl01 {
    width: 67.0625rem;
    margin-top: -2.0625rem;
  }
  .company-contents {
    background: #fff;
    margin-top: 2.625rem;
    padding: 2.5rem 2.5rem 2rem;
  }
  .company-contents-ttl01 {
    font-size: 1.375rem;
    font-weight: 600;
    padding-top: 6rem;
    position: relative;
    letter-spacing: 0.06em;
    margin-bottom: 1.75rem;
  }
  .company-contents-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/company-item01.webp) no-repeat center/cover;
    width: 57.8125rem;
    height: 2.625rem;
    top: 25%;
    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;
  }
}
/*==============================================================================
faq
============================================================================= */
@media screen and (max-width: 767px) {
  .faq-bg {
    background: url(../images/faq-bg_sp.webp) no-repeat center/cover;
    padding: 7.9375rem 0 4.25rem;
  }
  .faq-inner {
    width: 43.125rem;
  }
  .faq-ttl01 {
    font-size: 4.5rem;
    letter-spacing: 0.08em;
    font-family: "gothicB";
    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;
    text-align: center;
    position: relative;
    margin-bottom: 4.0625rem;
  }
  .faq-ttl01 .color {
    color: #ff2100;
  }
  .faq-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/faq-item01_sp.webp) no-repeat center/cover;
    width: 14.9375rem;
    height: 10.5625rem;
    bottom: 67%;
    left: -3%;
  }
  .faq-list {
    margin: 4.375rem 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 6.5625rem;
    background: url(../images/faq-bg02_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: 2.4375rem;
    height: 2.9375rem;
    transform: translateY(-50%);
    background: url(../images/faq-item02.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 1.25rem 6.875rem;
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
  }
  .faq-item-answer::before {
    position: absolute;
    top: 4%;
    left: 1.5%;
    width: 4.8125rem;
    height: 4.8125rem;
    background: url(../images/faq-item03.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: url(../images/faq-bg.webp) no-repeat center/cover;
    padding: 5rem 0 5.875rem;
  }
  .faq-ttl01 {
    font-size: 3.75rem;
    letter-spacing: 0.08em;
    font-family: "gothicB";
    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;
    text-align: center;
    position: relative;
    margin-bottom: 1.875rem;
  }
  .faq-ttl01 .color {
    color: #ff2100;
  }
  .faq-ttl01::before {
    content: "";
    position: absolute;
    background: url(../images/faq-item01.webp) no-repeat center/cover;
    width: 14.8125rem;
    height: 9.3125rem;
    bottom: -50%;
    left: -1%;
  }
  .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: 3.125rem 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: 6.875rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.4375rem 0 1.4375rem 4.875rem;
    background: url(../images/faq-bg02.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: 4%;
    width: 1.625rem;
    height: 2.0625rem;
    transform: translateY(-50%);
    background: url(../images/faq-item02.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.5625rem 0 0;
    padding: 0 0.9375rem 0 4.875rem;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
  }
  .faq-item-answer::before {
    position: absolute;
    top: 0;
    left: 2%;
    width: 3.4375rem;
    height: 3.4375rem;
    background: url(../images/faq-item03.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: 1.9375rem 0 0;
  }
  .faq-item-question.open::after {
    -ms-transform: rotate(-45deg);
    top: 45%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/*==============================================================================
recruit
============================================================================= */
@media screen and (max-width: 767px) {
  .recruit-bg {
    background: #fff;
    padding: 4.8125rem 0 4.5625rem;
  }
  .recruit-inner {
    width: 43.125rem;
    margin: 0 auto;
  }
  .recruit-ttl01 {
    font-size: 3.75rem;
    background: #063a62;
    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;
    width: 39.0625rem;
    margin: 1.5625rem auto 1.875rem;
  }
  .recruit-btn {
    background: url(../images/recruit-btn-bg.webp) no-repeat center/cover;
    width: 41.75rem;
    height: 9.0625rem;
    font-size: 2.2375rem;
    letter-spacing: 0.06em;
    color: #fff;
    font-family: "gothicH";
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 3.4375rem 0 2.5rem 4.375rem;
    margin: 1.5625rem auto;
  }
}
@media screen and (min-width: 768px) {
  .recruit-bg {
    background: #fff;
    padding: 5.125rem 0 5.9375rem;
  }
  .recruit-ttl01 {
    font-size: 3.75rem;
    color: #063a62;
    text-align: center;
    font-family: "gothicB";
  }
  .recruit-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 3.4375rem;
  }
  .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.0625rem;
    margin-left: 0.9375rem;
  }
  .recruit-btn {
    background: url(../images/recruit-btn-bg.webp) no-repeat center/cover;
    width: 29.6875rem;
    height: 6.25rem;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: #fff;
    font-family: "gothicH";
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2.5rem 0 2.5rem 4.375rem;
    margin-top: 1.125rem;
  }
}
/*==============================================================================
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;
  }
}