@charset "UTF-8";
/* :rootのCSS変数の宣言 */
:root {
  --base-color: #F6F6F6;
  --cta-base-color: #4D8E5F;
}
/* reset */
*,
*:after,
*:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
sup,
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-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: middle;
}

a,
span {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
}

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

html,
body {
  width: 100%;
  height: 100%;
}

blockquote,
q {
  quotes: none;
}

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

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

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  color: #1d1d1d;
  font-family: Roboto, Noto Sans JP, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  background-color: var(--base-color);
}

a {
  -webkit-transition: .4s;
  transition: .4s;
}

a:link,
a:visited {
  color: #133d82;
  text-decoration: none;
}

a:hover,
a:active {
  color: #225fc2;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* LP */
.lp_base {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  background-color: #fff;
}

.lpStepWrap {
  height: 80dvh;
  position: relative;
  flex-grow: 1;
}
.swiper {
  height: 100%;
  -ms-touch-action: auto;
  touch-action: auto;
  display: flex;
  flex-direction: column;
}
.swiper-backface-hidden .swiper-slide {
  text-align: center;
}
.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}
.lp-cta {
  /* height: 100%; */
  display: flex;
  justify-content: center;
}

.lpStep {
  max-width: 100%;
  max-height: 20dvh;
}

/* lp-cta_custom_btn_set */
.lp-cta_custom {
  background-color: var(--cta-base-color);
  padding: 3%;
  width: 100%;
}
.lp-cta_custom_title {
  text-align: center;
}
.lp-cta_custom_btn_set {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* margin-top: 5px; */
}
.lp-cta_custom_btn_set a {
  display: block;
}
.lp-cta_custom_btn_set a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}
.lp-cta_custom_btn_set a img {
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.5));
  width: 100%;
  height: auto;
}
.lp_btn01 {
  width: 100%;
}
.lp_btn02,
.lp_btn03 {
  width: calc((100% - 10px) / 2);
}

@media (max-width: 768px) {
  .lpStepWrap {
    height: 78dvh;
    position: relative;
    flex-grow: 1;
  }
 .lp-cta_custom {
    /* max-height: 20dvh; */
    padding: 2% 2%;
  }
}