@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%;
  height: 100%;
}

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

body {
  position: relative;
  overflow-x: hidden;
  word-break: break-all;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "century";
  src: url(../fonts/CenturyGothicBold.ttf) format("opentype");
}
/*==============================================================================
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;
  }
}
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    width: 75rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 767px) {
  .header--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.125rem 1.25rem;
  }
  .header--logo {
    width: 14.75rem;
  }
  .header--btn01 {
    width: 15.625rem;
    margin-left: auto;
  }
  .header--btn02 {
    width: 6.9375rem;
    margin-left: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .header--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.3125rem 0;
    width: 62.5rem;
    margin: 0 auto;
  }
  .header--logo {
    width: 14.75rem;
  }
  .header--btn01 {
    width: 15.625rem;
    margin-left: 1.25rem;
  }
  .header--tel {
    font-family: "century";
    color: #000;
    font-size: 2.1875rem;
    position: relative;
    padding-left: 2.1875rem;
  }
  .header--tel--block {
    margin-left: auto;
  }
  .header--tel::before {
    content: "";
    position: absolute;
    background: url(../images/tel-icon.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 1.5625rem;
    top: 0.3125rem;
    left: 0.1875rem;
  }
  .header--time {
    font-size: 0.8125rem;
    text-align: right;
    margin-top: 0.625rem;
  }
}
/*==============================================================================
Footer
============================================================================= */
@media screen and (max-width: 767px) {
  .footer--bg {
    background: #8fa1a1;
    padding: 3.0625rem 0;
  }
  .footer--copy {
    font-size: 1.375rem;
    text-align: center;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .footer--bg {
    background: #8fa1a1;
    padding: 2.5625rem;
  }
  .footer--copy {
    font-size: 1rem;
    text-align: center;
    color: #fff;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .kv--bg {
    background: url(../images/kv-img01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 54.625rem;
  }
}
@media screen and (min-width: 768px) {
  .kv--bg {
    background: url(../images/kv-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 31.5625rem;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .cta--bg {
    background: url(../images/cta-img01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 55.4375rem;
  }
  .cta--inner {
    position: relative;
    width: 41.875rem;
    margin: 0 auto;
  }
  .cta--btn01 {
    width: 40.625rem;
    position: absolute;
    top: 20.875rem;
    margin: 0;
  }
  .cta--tel {
    font-size: 3.75rem;
    font-family: "century";
    color: #fff;
    position: absolute;
    top: 41.3125rem;
    margin: 0;
    letter-spacing: 0;
    background: url(../images/cta-tel-btn_sp.webp) no-repeat center/cover;
    width: 40.625rem;
    height: 7.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.875rem 0 1.875rem 4.375rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .cta--bg {
    background: url(../images/cta-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 23.3125rem;
  }
  .cta--inner {
    position: relative;
    width: 62.5rem;
    margin: 0 auto;
  }
  .cta--btn01 {
    width: 30.125rem;
    position: absolute;
    top: 10.75rem;
    right: 0;
  }
  .cta--tel {
    font-size: 3.75rem;
    font-family: "century";
    color: #000;
    position: absolute;
    top: 15.1875rem;
    left: 5rem;
    letter-spacing: 0;
  }
  .cta--tel--block {
    position: relative;
  }
  .cta--tel--block::before {
    content: "";
    position: absolute;
    background: url(../images/tel-icon.webp) no-repeat center/cover;
    width: 2.5625rem;
    height: 2.625rem;
    top: 15.9375rem;
    left: 1.25rem;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .about--bg {
    background: url(../images/about-img01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 99.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .about--bg {
    background: url(../images/about-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 47.6875rem;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .feature--bg {
    background: url(../images/feature-img01_sp.webp) no-repeat top/cover;
    width: 100%;
    height: 229.625rem;
  }
}
@media screen and (min-width: 768px) {
  .feature--bg {
    background: url(../images/feature-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 120.9375rem;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .intro--bg {
    background: url(../images/intro-img01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 184.75rem;
  }
}
@media screen and (min-width: 768px) {
  .intro--bg {
    background: url(../images/intro-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 90.8125rem;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .flow--bg {
    background: url(../images/flow-img01_sp.webp) no-repeat top/cover;
    width: 100%;
    height: 114.375rem;
  }
}
@media screen and (min-width: 768px) {
  .flow--bg {
    background: url(../images/flow-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 67.6875rem;
  }
}
/*==============================================================================
Sample
============================================================================= */
@media screen and (max-width: 767px) {
  .faq--bg {
    background: url(../images/faq-img01_sp.webp) no-repeat center/cover;
    width: 100%;
    height: 192.125rem;
  }
}
@media screen and (min-width: 768px) {
  .faq--bg {
    background: url(../images/faq-img01.webp) no-repeat center/cover;
    width: 100%;
    height: 103.4375rem;
  }
}