@charset "UTF-8";
/* Scss Document */
:root {
  --main-color: #FD7000;
  --sub-color: #000;
}

/* Scss Document */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  padding: 0;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #000;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

img, svg {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
}

input, textarea, button, select {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #000;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  html {
    scroll-padding-top: 0;
  }
  body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
  }
  input, textarea, button, select {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
  }
}
/* Scss Document */
/*　header
----------------------------------------------- */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.header__inner {
  max-width: 1000px;
  margin-inline: auto;
  padding: 40px 20px 0;
}

.header__logo {
  width: 153px;
}

@media screen and (max-width: 750px) {
  .header__inner {
    max-width: none;
    padding: 15px 15px 0;
  }
  .header__logo {
    width: 104px;
  }
}
/*　footer
----------------------------------------------- */
.footer {
  padding: 22px 0 14px;
  color: #FFF;
  text-align: center;
  line-height: 1.8;
  background: #333333;
}

.footer-company {
  font-size: 14px;
}
.footer-company a {
  font-size: 14px;
  color: #FFF;
}
.footer-company a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin-top: 15px;
  display: block;
}

.fixed {
  width: 300px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 6;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
}
.fixed.active {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 750px) {
  .fixed {
    width: 100%;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.05);
            box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.05);
  }
  .fixed img {
    width: 100%;
  }
}
/*　フェード
----------------------------------------------- */
.view01 {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view01.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view02 {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view02.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view03 {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view03.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view04 {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view04.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view05.view-on {
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/*　スライドアニメーション
----------------------------------------------- */
.js-slide-h {
  display: grid;
  -webkit-transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s;
  transition: grid-template-rows 0.4s, -ms-grid-rows 0.4s;
  grid-template-rows: 0fr;
}
.js-slide-h > * {
  overflow: hidden;
}
.js-slide-h.js-active {
  grid-template-rows: 1fr;
}

/*　共通
----------------------------------------------- */
body {
  overflow-x: clip;
}
body.js-on {
  overflow: hidden;
}

#container {
  overflow: hidden;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

.inner {
  max-width: 1030px;
  margin-inline: auto;
  padding: 0 15px;
}

.ttl {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ttl__01 {
  padding: 8px 32px 11px;
  font-size: 29px;
  font-weight: 900;
  color: #FFF;
  line-height: 1.4;
  display: inline-block;
  background: var(--main-color);
  position: relative;
  border-radius: 70px;
}
.ttl__01::before {
  content: "";
  width: 3px;
  height: 10px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ttl__01::after {
  content: "";
  width: 3px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ttl__01-02 {
  padding: 8px 30px 6px;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  line-height: 1.4;
  display: inline-block;
  background: var(--main-color);
  position: relative;
  border-radius: 70px;
}
.ttl__01-02::before {
  content: "";
  width: 2px;
  height: 7px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ttl__01-02::after {
  content: "";
  width: 2px;
  height: 7px;
  background: var(--main-color);
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ttl__01-03 {
  padding: 6px 17px 8px;
  font-size: 20px;
  font-weight: 900;
  color: #FFF;
  line-height: 1.4;
  display: inline-block;
  background: var(--main-color);
  position: relative;
  border-radius: 48px;
}
.ttl__01-03::before {
  content: "";
  width: 2px;
  height: 7px;
  background: #FFF;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ttl__01-03::after {
  content: "";
  width: 2px;
  height: 7px;
  background: var(--main-color);
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ttl__02 {
  margin-top: 19px;
  padding-bottom: 20px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  display: inline-block;
  background: url("../../img/ttl_bd.svg") left bottom/13px 15px repeat-x;
}
.ttl__02 span {
  font-size: 32px;
}

.ttl__02--orange {
  color: var(--main-color);
}

.ttl__02-02 {
  margin-top: 19px;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  display: inline-block;
  background: url("../../img/ttl_bd.svg") left bottom/13px 15px repeat-x;
}
.ttl__02-02 span {
  font-size: 32px;
}

.ttl__02-03 {
  margin-top: 13px;
  padding-bottom: 13px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  display: inline-block;
  background: url("../../img/ttl_bd.svg") left bottom/13px 15px repeat-x;
}
.ttl__02-03 span {
  font-size: 32px;
}

.btn-area {
  text-align: center;
}

.btn-text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.btn-text span {
  font-size: 26px;
}

.btn {
  max-width: 630px;
  margin: 19px auto 0;
}
.btn a {
  padding: 31px 0 34px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  background: var(--main-color);
  border-radius: 56px;
  border: 3px solid #FFF;
  -webkit-box-shadow: 2px 10px 3px #CFCFCF;
          box-shadow: 2px 10px 3px #CFCFCF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .btn a:hover {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-box-shadow: 2px 5px 3px #CFCFCF;
            box-shadow: 2px 5px 3px #CFCFCF;
  }
}
.btn a span {
  line-height: 1;
}

@media screen and (max-width: 750px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp-inline {
    display: inline;
  }
  .pc-inline {
    display: none;
  }
  .inner {
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
  }
  .ttl {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ttl__01 {
    padding: 8px 30px 9px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 48px;
  }
  .ttl__01::before {
    content: "";
    width: 3px;
    height: 10px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ttl__01::after {
    content: "";
    width: 3px;
    height: 10px;
    background: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ttl__01-02 {
    padding: 6px 32px 7px;
    font-size: 18px;
    border-radius: 48px;
  }
  .ttl__01-02::before {
    content: "";
    width: 2px;
    height: 7px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ttl__01-02::after {
    content: "";
    width: 2px;
    height: 7px;
    background: var(--main-color);
    position: absolute;
    bottom: -7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ttl__01-03 {
    width: 100%;
    display: block;
    padding: 8px 0 9px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
  }
  .ttl__01-03::before {
    content: "";
    width: 2px;
    height: 7px;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ttl__01-03::after {
    content: "";
    width: 2px;
    height: 7px;
    background: var(--main-color);
    position: absolute;
    bottom: -7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .ttl__02 {
    margin-top: 13px;
    padding: 0 30px 20px;
    font-size: 28px;
    background: url("../../img/ttl_bd.svg") left bottom/13px 15px repeat-x;
  }
  .ttl__02 span {
    font-size: 26px;
  }
  .ttl__02--orange {
    color: var(--main-color);
  }
  .ttl__02-02 {
    margin-top: 19px;
    padding: 0 33px 20px;
    padding-bottom: 20px;
    font-size: 28px;
  }
  .ttl__02-02 span {
    font-size: 32px;
  }
  .ttl__02-03 {
    margin-top: 13px;
    padding-bottom: 13px;
    font-size: 46px;
    background: url("../../img/ttl_bd.svg") left bottom/13px 15px repeat-x;
  }
  .ttl__02-03 span {
    font-size: 32px;
  }
  .btn-area {
    text-align: center;
  }
  .btn-text {
    font-size: 28px;
  }
  .btn-text span {
    font-size: 22px;
  }
  .btn {
    max-width: 630px;
    margin: 9px auto 0;
  }
  .btn span {
    width: 25px;
    display: block;
  }
  .btn a {
    padding: 20px 0;
    font-size: 24px;
    gap: 0 10px;
    border-radius: 56px;
    -webkit-transition: 0s;
    transition: 0s;
  }
}