@import url("https://fonts.googleapis.com/css2?family=Orelega+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --main-color: #0E95EC;
  --sub-color: #FA3054;
  --text-color: #1e1e1e;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "Orelega One", serif;
  --font-size-base-pc: 1.6rem;
  --font-size-base-sp: 1.5rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 1.65;
  letter-spacing: 0;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.jp {
  font-family: var(--font-family-jp);
}

.en {
  font-family: var(--font-family-en);
}

a {
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
.l-header {
  width: 100%;
  height: 6.4rem;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .l-header {
    display: block;
  }
}
@media (max-width: 767px) {
  .l-header {
    display: block;
  }
}
.l-footer {
  overflow: hidden;
}

.l-main {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .l-main {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-shadow: 0px 0 15px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 0 15px 0px rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 767px) {
  .l-main {
    max-width: 100%;
  }
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container {
  width: 90%;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--sub-color);
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 1.6rem 5rem 2rem 7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 30rem;
  border-radius: 10rem;
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.c-button::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 12px;
  background-image: url(../img/common/icon_link_allow_w.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-button.icon-free {
  background-image: url(../img/common/icon_button_free.svg);
  background-repeat: no-repeat;
  background-size: auto calc(100% - 10px);
  background-position: left 5px center;
}

.c-button:hover {
  color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.c-link-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-link-outer::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icon_link_outer.png) no-repeat center;
  background-size: contain;
  overflow: hidden;
  margin-left: 0.6rem;
}

.c-icon-circle-allow {
  width: 5rem;
  height: 5rem;
  position: relative;
  border: 1px solid var(--main-color);
  border-radius: 10rem;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-icon-circle-allow .allow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 0.6rem;
  height: 1rem;
  overflow: hidden;
}
.c-icon-circle-allow .allow::before, .c-icon-circle-allow .allow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 0.2s cubic-bezier(0.35, 0.1, 0.2, 1);
  transition: 0.2s cubic-bezier(0.35, 0.1, 0.2, 1);
}
.c-icon-circle-allow .allow::after {
  background-image: url(../img/common/icon_button_allow.svg);
}
.c-icon-circle-allow .allow::before {
  background-image: url(../img/common/icon_button_allow_w.svg);
  left: -100%;
}
.c-icon-circle-allow.white {
  border-color: #fff;
}
.c-icon-circle-allow.white .allow::after {
  background-image: url(../img/common/icon_button_allow_w.svg);
}
.c-icon-circle-allow.white .allow::before {
  background-image: url(../img/common/icon_button_allow.svg);
  left: -100%;
}

.hover .c-icon-circle-allow {
  background-color: var(--main-color);
}
.hover .c-icon-circle-allow .allow::before, .hover .c-icon-circle-allow .allow::after {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.hover .c-icon-circle-allow.white {
  background-color: #fff;
}

.input-text {
  width: 100%;
  padding: 1.4rem;
  font-size: var(--font-size-base-pc);
  line-height: 1.65;
  border: 1px solid #BDBDBD;
  background-color: #f2f2f2;
}

.input-textarea {
  width: 100%;
  padding: 1.4rem;
  border: none;
  font-size: var(--font-size-base-pc);
  border: 1px solid #BDBDBD;
  background-color: #f2f2f2;
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: none;
  vertical-align: middle;
  padding: 1.4rem 2.4rem 1.4rem 1.4rem;
  border: none;
  outline: 0;
  font-size: var(--font-size-base-pc);
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
  background: #f2f2f2 url(../img/common/icon_select_arrow.svg) no-repeat right 12px center;
  background-size: 12px auto;
  border: 1px solid #BDBDBD;
}

@media (max-width: 767px) {
  .input-select,
  .input-textarea,
  .input-text {
    font-size: var(--font-size-base-sp);
  }
}
.c-bread-crumb {
  font-size: 1.2rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.c-bread-crumb ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 2.4rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  border-bottom: 1px solid var(--text-color);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.c-bread-crumb ul li a {
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 2.4rem;
}

.none-visual .c-bread-crumb {
  margin-bottom: 6.4rem;
}
.none-visual .c-bread-crumb .container {
  border-bottom: 1px solid #CDD6DD;
}

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.c-hover-roll:hover .c-hover-roll__text > span {
  -webkit-animation: textRollAnime 0.3s cubic-bezier(0.2, 0.58, 0.3, 1) 0s 1 normal none;
          animation: textRollAnime 0.3s cubic-bezier(0.2, 0.58, 0.3, 1) 0s 1 normal none;
}

.c-hover-roll__text {
  display: block;
  height: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.c-hover-roll__text > span {
  display: block;
  width: 100%;
}
.c-hover-roll__text > span + span {
  left: 0;
  position: absolute;
  top: 100%;
}

@-webkit-keyframes textRollAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes textRollAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.p-header {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-header a {
  text-decoration: none;
}

.p-header__logo {
  margin-left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__logo > a {
  display: block;
  width: 11.2rem;
  height: 4rem;
  line-height: 1;
}
.p-header__logo .tagline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-size: 1.1rem;
  line-height: 1.25;
}

.p-header__cta {
  margin-top: 2rem;
  margin-right: 1%;
}

@media (max-width: 1099px) {
  .p-header__logo {
    gap: 0 0.4rem;
  }
  .p-header__logo > a {
    display: block;
    width: 8rem;
    height: auto;
    line-height: 1;
  }
  .p-header__logo .tagline {
    font-size: 1rem;
  }
  .p-header__cta {
    margin-top: inherit;
    margin-right: 2%;
  }
  .p-header__cta .c-button {
    min-width: initial;
    padding: 0.9rem 1.2rem 1.3rem 4.4rem;
    font-size: 1.1rem;
  }
  .p-header__cta .c-button::after {
    display: none;
  }
}
.p-footer {
  font-size: 1.1rem;
  padding: 4rem 0 2.4rem 0;
  color: var(--main-color);
}

.p-footer__title {
  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;
  margin-bottom: 4rem;
}
.p-footer__title .tagline {
  font-size: 1.3rem;
  font-weight: var(--font-weight-semiBold);
  margin-bottom: 1rem;
}
.p-footer__title .logo {
  width: 20rem;
}

.p-footer__navi {
  margin: 0.8rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 1.4rem;
}
.p-footer__navi a {
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--main-color);
}

.p-footer__copyright {
  margin-top: 3.2rem;
  text-align: center;
}

@media (max-width: 1099px) {
  .p-footer {
    padding: 4rem 0 10rem 0;
  }
}
.p-section {
  margin-top: 7.2rem;
  margin-bottom: 7.2rem;
}

@media (max-width: 1099px) {
  .p-section {
    margin-top: 4.8rem;
    margin-bottom: 4.8rem;
  }
}
.p-first-visual {
  padding: 4rem 0;
}

.p-first-visual__image {
  display: block;
  width: 90%;
  max-width: 1240px;
  margin-bottom: 2rem;
}

.p-first-visual__content {
  max-width: 1200px;
  position: relative;
  background-image: url(../img/lp/bg_cta_content_pc.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  border-radius: 1rem;
  padding: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
}
.p-first-visual__content .banner-group {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.p-first-visual__content .banner-group.bg_white {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 2.4rem;
}
.p-first-visual__content .cta-navi {
  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;
  margin-top: 4rem;
}
.p-first-visual__content .cta-navi.show-mobile {
  display: none;
}
.p-first-visual__content .cta-navi .fukidashi {
  display: block;
  max-width: 36rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.p-first-visual__content .cta-navi .c-button {
  padding: 2rem 7rem 2.4rem 9rem;
}
.p-first-visual__content .cta-navi .attention {
  font-size: 1.1rem;
  margin-top: 1.6rem;
}

@media (max-width: 1099px) {
  .p-first-visual {
    padding: 1rem 0 0 0;
  }
  .p-first-visual__image {
    width: 100%;
    margin-bottom: 0;
  }
  .p-first-visual__content {
    background-image: url(../img/lp/bg_cta_content.svg);
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    padding: 4rem 2rem 4.8rem 2rem;
    width: 100%;
  }
  .p-first-visual__content .banner-group {
    width: 100%;
  }
  .p-first-visual__content .banner-group.bg_white {
    background-color: inherit;
    padding: 0;
  }
  .p-first-visual__content .banner-group.bg_white .hide-mobile {
    display: none;
  }
  .p-first-visual__content .cta-navi {
    margin-top: 2rem;
  }
  .p-first-visual__content .cta-navi .fukidashi {
    max-width: 34rem;
  }
  .p-first-visual__content .cta-navi.show-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-first-visual__content .cta-navi.show-mobile .attention {
    color: #fff;
    font-size: 1rem;
  }
  .p-first-visual__content .cta-navi .c-button {
    padding: 1.6rem 5rem 2rem 7rem;
  }
}
.p-section-head {
  margin-bottom: 4.8rem;
}
.p-section-head .title {
  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;
}
.p-section-head .title .pre {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  padding: 1rem 2.4rem 1.4rem 2.4rem;
  margin-bottom: 1.8rem;
  background: var(--main-color);
  color: #fff;
  border-radius: 4rem;
}
.p-section-head .title .pre::after {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: calc(50% - 1rem);
  border-width: 1rem;
  border-style: solid;
  border-color: var(--main-color) transparent transparent transparent;
}
.p-section-head .title .catch {
  font-size: 5.6rem;
  line-height: 1.25;
  font-weight: var(--font-weight-extraBold);
}
.p-section-head .title .catch strong {
  text-decoration: underline;
  font-weight: var(--font-weight-extraBold);
}
.p-section-head .title .en {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--main-color);
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-medium);
  margin-top: 0.6rem;
}
.p-section-head .intro-text {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 1099px) {
  .p-section-head {
    margin-bottom: 2.4rem;
  }
  .p-section-head .title .pre {
    font-size: 1.4rem;
    padding: 1rem 2rem 1.2rem 2rem;
  }
  .p-section-head .title .en {
    font-size: 1.4rem;
  }
  .p-section-head .title .catch {
    font-size: 3.2rem;
  }
  .p-section-head .intro-text {
    margin-top: 1rem;
  }
}
.p-section-qa__list {
  margin-bottom: 2.4rem;
  border-top: 1px solid #DADADA;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.p-section-qa__list .item {
  border-bottom: 1px solid #DADADA;
}
.p-section-qa__list .item button.question {
  background: #fff;
  color: var(--text-color);
  font-size: var(--font-size-base-pc);
  font-weight: var(--font-weight-bold);
  text-align: inherit;
  width: 100%;
  cursor: pointer;
  padding: 2.6rem 4rem 2.6rem 5.6rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-section-qa__list .item button.question::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_qa_toggle.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  top: 3.2rem;
  right: 0.8rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-section-qa__list .item button.question .icon {
  position: absolute;
  top: 2.4rem;
  left: 0.7rem;
  width: 3.4rem;
  height: 3.4rem;
  line-height: 1;
  background-image: url(../img/common/icon_q.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  text-indent: -999px;
}
.p-section-qa__list .item .answer {
  width: 100%;
  display: none;
  overflow-wrap: anywhere;
  padding: 0 0 2rem 0;
  position: relative;
}
.p-section-qa__list .item:hover button.question {
  color: var(--main-color);
}
.p-section-qa__list .item.active button.question {
  color: var(--main-color);
}
.p-section-qa__list .item.active .question::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (max-width: 1099px) {
  .p-section-qa .item button.question {
    font-size: var(--font-size-base-sp);
    padding: 2rem 4rem 2rem 4rem;
  }
  .p-section-qa .item button.question::after {
    top: 2.2rem;
  }
  .p-section-qa .item button.question .icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.p-section-review {
  overflow: hidden;
}
.p-section-review__slide {
  margin-top: 8rem;
}
.p-section-review__slide .swiper-slide {
  background-color: #F5F5F5;
  padding: 2.4rem;
  height: auto;
}
.p-section-review__slide .swiper-slide .profile {
  margin-top: -7.4rem;
  margin-bottom: 1.6rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-section-review__slide .swiper-slide .profile picture {
  display: block;
  width: 10rem;
  margin-bottom: 0.6rem;
}
.p-section-review__slide .swiper-slide .profile .meta {
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
}
.p-section-review__slide .swiper-slide .text {
  line-height: 1.85;
}
.p-section-review__slide .swiper-slide .text strong {
  font-weight: var(--font-weight-bold);
}

.p-section-flow {
  background-image: linear-gradient(135deg, #0E95EC, #004BB1);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
.p-section-flow .p-section-head .title .pre {
  background-color: #fff;
  color: var(--main-color);
}
.p-section-flow .p-section-head .title .pre::after {
  border-color: #fff transparent transparent transparent;
}
.p-section-flow .p-section-head .title {
  color: #fff;
}
.p-section-flow .p-section-head .title .en {
  color: #fff;
}

.p-section-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.p-section-flow__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.6rem;
  gap: 0 1rem;
  position: relative;
}
.p-section-flow__list .item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -3.2rem;
  left: calc(50% - 2rem);
  border-width: 2rem;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.p-section-flow__list .item .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #004BB1;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1.6rem);
  left: -1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 4rem;
}
.p-section-flow__list .item .image {
  width: 10rem;
}
.p-section-flow__list .item .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-section-flow__list .item .text h3 {
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.4rem;
}
.p-section-flow__list .item .text p {
  line-height: 1.55;
}
.p-section-flow__list .item .text p strong {
  font-weight: var(--font-weight-bold);
}

@media (max-width: 1099px) {
  .p-section-flow {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
}
.p-section-merit {
  background-color: #E2F4FF;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
.p-section-merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.p-section-merit__list .item {
  width: calc((100% - 2.4rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.6rem;
  gap: 1rem 0;
  position: relative;
}
.p-section-merit__list .item .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0 0 1rem 0;
}
.p-section-merit__list .item .image {
  border: 6px solid #F5F5F5;
}
.p-section-merit__list .item .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-section-merit__list .item .text h3 {
  font-size: 2.4rem;
  line-height: 1.45;
  text-align: center;
  color: var(--main-color);
  font-weight: var(--font-weight-extraBold);
  margin-top: 1rem;
  margin-bottom: 1.8rem;
}
.p-section-merit__list .item .text p {
  line-height: 1.75;
}
.p-section-merit__list .item .text p strong {
  font-weight: var(--font-weight-bold);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFF724));
  background: linear-gradient(transparent 50%, #FFF724 50%);
}
.p-section-merit__list .item .text p.attention {
  font-size: 1.2rem;
  color: #919191;
  margin-top: 1rem;
}

@media (max-width: 1099px) {
  .p-section-merit {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
  .p-section-merit__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-section-merit__list .item {
    width: 100%;
  }
  .p-section-merit__list .item .text h3 {
    font-size: 2rem;
    margin-top: 0.8rem;
    margin-bottom: 1.6rem;
  }
}
.p-section-function {
  background-color: #E2F4FF;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
}
.p-section-function__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.p-section-function__list .item {
  width: calc((100% - 2.4rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 2rem 2rem 2.8rem 2rem;
  border-radius: 0.6rem;
  gap: 1rem 0;
}
.p-section-function__list .item .name {
  font-size: 2.4rem;
  font-weight: var(--font-weight-extraBold);
  margin-bottom: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.4rem;
}
.p-section-function__list .item .name .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 0.4rem;
  padding: 0.3rem 1.6rem 0.5rem 1.6rem;
}
.p-section-function__list .item .image {
  margin-bottom: 0.6rem;
  border: 6px solid #F5F5F5;
}
.p-section-function__list .item .text p {
  line-height: 1.75;
}
.p-section-function__list .item .text p strong {
  font-weight: var(--font-weight-bold);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFF724));
  background: linear-gradient(transparent 50%, #FFF724 50%);
}
.p-section-function__list .item .text p.attention {
  font-size: 1.2rem;
  color: #919191;
  margin-top: 1rem;
}

.p-section-function__attention {
  color: var(--main-color);
  font-size: 1.2rem;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1099px) {
  .p-section-function {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
  }
  .p-section-function__list {
    gap: 1.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-section-function__list .item {
    width: 100%;
  }
  .p-section-function__list .item .name .icon {
    padding: 0.3rem 0.8rem 0.5rem 0.8rem;
  }
  .p-section-function__list .item .name {
    font-size: 2rem;
  }
  .p-section-function__attention {
    margin-bottom: 0;
  }
}
.p-section-recommend__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.4rem;
}
.p-section-recommend__list .item {
  width: calc((100% - 6rem) / 4);
  text-align: center;
}
.p-section-recommend__list .item .image {
  display: block;
  margin-bottom: 1rem;
}
.p-section-recommend__list .item .text h3 {
  font-size: 2rem;
  line-height: 1;
  color: var(--main-color);
  font-weight: var(--font-weight-extraBold);
  margin-bottom: 1.2rem;
}

.p-section-recommend__point {
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1099px) {
  .p-section-recommend__list .item {
    width: calc((100% - 2rem) / 2);
  }
  .p-section-recommend__list .item .text h3 {
    font-size: 1.8rem;
  }
}
.p-section-cta {
  position: relative;
  padding: 4.8rem 0;
  background-image: linear-gradient(135deg, #0E95EC, #004BB1);
}
.p-section-cta .p-section-cta__content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.p-section-cta .content {
  width: 36%;
  min-width: 40rem;
}
.p-section-cta .content > img {
  display: block;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.p-section-cta .content .navi {
  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;
  margin-top: 0.5rem;
}
.p-section-cta .content .navi .c-button {
  margin-top: 0.5rem;
}
.p-section-cta .content .navi .attention {
  font-size: 1rem;
  text-align: center;
  color: #fff;
  margin-top: 1.6rem;
}
.p-section-cta .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 1099px) {
  .p-section-cta .p-section-cta__content {
    width: 100% !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .p-section-cta .content {
    width: 100%;
    min-width: initial;
  }
  .p-section-cta .content > img {
    width: 90%;
    max-width: 35rem;
  }
  .p-section-cta .navi {
    position: relative;
    left: inherit;
    bottom: inherit;
  }
}
.p-section-intro {
  margin-bottom: 0;
}
.p-section-intro .p-section-head .catch {
  width: 100%;
}
.p-section-intro .p-section-head .catch img {
  max-width: 36rem;
}

.p-section-intro__worries img {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.p-section-intro__solution {
  background-color: var(--main-color);
  padding-top: 2.4rem;
  padding-bottom: 8rem;
}
.p-section-intro__solution h2 {
  width: 82rem;
  margin-top: -7rem;
  margin-bottom: 4.4rem;
}

.p-section-intro__solution-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
}
.p-section-intro__solution-list.container {
  width: 94%;
  max-width: 1000px;
}
.p-section-intro__solution-list .item {
  width: calc((100% - 2.4rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 2.4rem 4rem 4rem 4rem;
  border-radius: 0.6rem;
  gap: 1rem 0;
}
.p-section-intro__solution-list .item .title {
  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;
  margin-bottom: 1rem;
}
.p-section-intro__solution-list .item .title .pre {
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  padding: 1rem 2rem 1.2rem 2rem;
  margin-bottom: 1.4rem;
  background: #FA3054;
  color: #fff;
  border-radius: 4rem;
}
.p-section-intro__solution-list .item .title .pre::after {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: calc(50% - 1rem);
  border-width: 1rem;
  border-style: solid;
  border-color: #FA3054 transparent transparent transparent;
}
.p-section-intro__solution-list .item .title .catch {
  font-size: 2.8rem;
  font-weight: var(--font-weight-extraBold);
  line-height: 1.25;
}
.p-section-intro__solution-list .item .text {
  margin-top: 0.8rem;
}
.p-section-intro__solution-list .item .text p {
  line-height: 1.75;
}
.p-section-intro__solution-list .item .text p strong {
  font-weight: var(--font-weight-bold);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFF724));
  background: linear-gradient(transparent 50%, #FFF724 50%);
}

@media (max-width: 1099px) {
  .p-section-intro {
    margin-bottom: 0;
  }
  .p-section-intro .p-section-head .catch img {
    max-width: 22rem;
  }
  .p-section-intro__solution {
    padding-bottom: 4.8rem;
  }
  .p-section-intro__solution h2 {
    width: 32rem;
    margin-bottom: 2.4rem;
  }
  .p-section-intro__solution-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.4rem;
  }
  .p-section-intro__solution-list .item {
    width: 100%;
    padding: 2rem 2rem 2.8rem 2rem;
  }
  .p-section-intro__solution-list .item .title .pre {
    font-size: 1.4rem;
  }
  .p-section-intro__solution-list .item .title .catch {
    font-size: 2.2rem;
  }
}
.p-menu-btn {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 100px;
  display: none;
}

.p-menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--main-color);
  position: absolute;
  z-index: 1;
  left: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.p-menu-btn span.l1 {
  top: 16px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.p-menu-btn span.l2 {
  top: 24px;
}

.p-menu-btn span.l3 {
  top: 32px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
  top: 24px;
  left: 10px;
}

.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .p-menu-btn {
    display: block;
    left: calc(50% + 140px);
  }
}
@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
    left: inherit;
    right: 10px;
  }
}
.p-fixed-cta {
  display: none;
  -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;
  padding: 1rem 0;
  position: fixed;
  top: 2rem;
  right: 0;
  z-index: 11;
  width: 400px;
  max-width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-fixed-cta .c-button {
  padding: 1rem 4rem 1.4rem 4rem;
}

@media (max-width: 1099px) {
  .p-fixed-cta {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: fixed;
    top: inherit;
    bottom: -40rem;
  }
  .is_fvScrolled .p-fixed-cta {
    bottom: 0;
    -webkit-box-shadow: 0px -5px 10px -3px rgba(0, 0, 0, 0.2);
            box-shadow: 0px -5px 10px -3px rgba(0, 0, 0, 0.2);
  }
}
.p-swiper-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2.4rem;
  margin-top: 2.4rem;
}
.p-swiper-controls .swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: inherit !important;
  bottom: inherit !important;
  top: inherit !important;
  left: inherit !important;
}
.p-swiper-controls .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--main-color);
  opacity: 0.2;
}
.p-swiper-controls .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--main-color);
  opacity: 1;
}
.p-swiper-controls .swiper-button-prev::after,
.p-swiper-controls .swiper-button-next::after {
  display: none;
}
.p-swiper-controls .swiper-button-prev,
.p-swiper-controls .swiper-button-next {
  margin-top: initial;
  position: static;
  width: 4.8rem;
  height: 4.8rem;
  background-color: var(--main-color);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  cursor: pointer;
}
.p-swiper-controls .swiper-button-prev:hover,
.p-swiper-controls .swiper-button-next:hover {
  opacity: 0.75;
}
.p-swiper-controls .swiper-button-prev {
  background-image: url(../img/lp/btn_swipe_left.svg);
}
.p-swiper-controls .swiper-button-next {
  background-image: url(../img/lp/btn_swipe_right.svg);
}

.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-tablet-inline,
.show-tablet,
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-tablet,
.hide-mobile {
  display: block;
}

.hide-tablet-inline,
.hide-mobile-inline {
  display: inline-block;
}

.t-red {
  color: var(--main-color);
}

.t-bold {
  font-weight: 800;
}

@media (max-width: 1099px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .show-tablet {
    display: block;
  }
  .show-tablet-inline {
    display: inline-block;
  }
  .hide-tablet {
    display: none;
  }
}
@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */