@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
  line-height: 1
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline
}

caption,
td,
th {
  text-align: left;
  font-weight: 400;
  vertical-align: middle
}

ol,
ul {
  list-style: none
}

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

blockquote,
q {
  quotes: none
}

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

a img,
button,
html {
  border: 0
}

.home.home-azure .form__lead .for-sp,
.sp,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

button {
  background-color: transparent;
  cursor: pointer;
  outline: 0;
  padding: 0
}

* {
  -webkit-text-size-adjust: none;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  outline: 0
}

body,
html {
  -webkit-font-smoothing: antialiased
}

html {
  font-size: 62.5%
}

/* body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale
} */

/* body.is_fixed {
  overflow: hidden
} */

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

/* .pc {
  display: none
} */

svg {
  fill: currentColor;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);

body {
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
  font-style: normal;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
.sp {
  display: none
}

.btn-gra {
  background: linear-gradient(90deg, #680EF7, #0098D0);
  color: #fff;
  transition: .3s;
}
.btn-gra:hover {
  opacity: .8;
}

.outer {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.period {
  text-align: center;
  margin-bottom: 22px;
}
.period span{
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.period span + span{
  margin-left: 8px
}
.bg-white {
  position: relative;
}
.bg-white::before{
  position: absolute;
  z-index: 1;
  content: "";
  background: url(../img/lp_aws02/img/bg-white.png) no-repeat center top / contain;
  width: 100%;
  top: 0;
  left: 0;
  height: 110px;
}
.sec-bg {
  background: linear-gradient(#0A85CA, #630DEB);
}
.js-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: .5s;
}
.js-scroll.is-view {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width:767px) {
  .outer {
    max-width: 1080px;
    padding: 0;
  }
  .inner {
    max-width: 1000px;
    padding: 0;
  }
  .bg-white::before{
    height: 50px;
  }
}

/* header ---------------*/
.lp .header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 23px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width:767px) {
  .lp .header__logo {
    width: 95px;
  }
  .lp .header__logo img {
    width: 100%;
  }
}
@media screen and (max-width:950px) {
  .lp .header {
    display: block;
    padding: 21px 20px;
    background: none;
  }
  .lp .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .lp .header__btn{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 18px;
  }
  .lp .header__btn span{
    position: absolute;
    display: block;
    height: 2px;
    width: 20px;
    background: linear-gradient(90deg, #680EF7, #0098D0);
    transition: .2s;
  }
  .lp .header__btn span:nth-of-type(1){
    transform: translateY(-7px);
  }
  .lp .header__btn span:nth-of-type(3){
    transform: translateY(7px);
  }
  .header.js-open .header__btn span:nth-of-type(1) {
    background: #DFE1E5;
    transform: rotate(-45deg);
  }
  .header.js-open .header__btn span:nth-of-type(2){
    opacity: 0;
  }
  .header.js-open .header__btn span:nth-of-type(3) {
    background: #DFE1E5;
    transform: rotate(45deg);
  }
}
/* nav ---------------*/
.lp .nav__item:not(:first-of-type) {
  margin-left: 45px;
}
.lp .nav__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 694px;
}
.lp .nav__list {
  display: flex;
  align-items: center;
}
.lp .nav__link {
  position: relative;
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.lp .nav__link::before {
  content:"";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0098D0;
  opacity: 0;
  transition: .3s;
}
.lp .nav__link:hover::before{
  opacity: 1;
}

.lp .nav__contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 46px;
  border-radius: 23px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
}
@media screen and (max-width:950px) {
  .lp .nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .lp .nav__wrapper {
    display: block;
    height: 100vh;
    width: 100%;
    background: #fff;
  }
  .lp .nav__list {
    justify-content: space-between;
    flex-direction: column;
    padding-top: 125px;
    margin-bottom: 40px;
  }
  .lp .nav__item:not(:first-of-type) {
    margin: 44px 0 0;
  }
  .lp .nav__contact-link {
    position: relative;
    width: 252px;
    height: 54px;
    margin: 0 auto;
    border-radius: 27px;
    font-weight: 600;
  }
  .lp .nav__contact-link::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    background: url(../img/lp_aws02/img/arw.svg) no-repeat;
    background-size: contain;
    width: 18px;
    height: 12px;
    transform: translateY(-50%);
  }
}
/* mv ---------------*/
.lp .mv__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
}
.lp .mv__lead {
  margin-bottom: 15px;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.522;
  word-break: keep-all;
}
.lp .mv__txt {
  margin-bottom: 25px;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.607;
  word-break: keep-all;
}
@media screen and (min-width:951px) {
  .lp .mv .outer{
    max-width: 1480px;
    padding: 0 100px;
  }
}
@media screen and (max-width:1275px) {
  .lp .mv__lead {
    font-size: 4rem;
  }
  .lp .mv__txt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width:1175px) {
  .lp .mv__lead {
    font-size: 3.4rem;
  }
  .lp .mv__txt {
    font-size: 1.8rem;
  }
}
.lp .mv__item {
  max-width: 427px;
  margin-bottom: 34px;
}
.lp .mv__item img{
  width: 100%;
}
.lp .mv__btn{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 334px;
  height: 74px;
  border-radius: 37px;
}
.lp .mv__btn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  background: url(../img/lp_aws02/img/arw.svg) no-repeat;
  background-size: contain;
  width: 23px;
  height: 14px;
  transform: translateY(-50%);
}
.lp .mv__btn span{
  margin-top: -7px;
  margin-bottom: 5px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .05em;
}
.lp .mv__btn em{
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.lp .mv__note{
  position: absolute;
  left: 100px;
  bottom: 30px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: #959595;
}
.lp .mv__bg{
  position: relative;
  max-width: 830px;
  right: -39px;
  bottom: 0;
}
.lp .mv__bg img{
  width: 100%;
}
.lp .mv__bnr{
  position: fixed;
  z-index: 4;
  right: 40px;
  bottom: 0;
  width: 335px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.16); */
}
.lp .mv__bnr img{
  width: 100%;
}
.lp .mv__bnr-link {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  cursor: pointer!important;
  transition: .3s;
}
.lp .mv__bnr-link:hover {
  opacity: .8;
}
.lp .mv__bnr-pop{
  position: fixed;
  z-index: 4;
  right: 40px;
  bottom: 0;
  width: 250px;
  aspect-ratio: 1/1;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.16));
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.16); */
}
.lp .mv__bnr-pop img{
  width: 100%;
}
.lp .mv__bnr-pop-link {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  cursor: pointer!important;
  transition: .3s;
}
.lp .mv__bnr-pop-link:hover {
  opacity: .8;
}
.lp .mv__bnr-pop-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 29px;
  height: 29px;
  cursor: pointer!important;
  z-index: 1;
}
@media screen and (max-width:767px) {
  .lp .mv__lead {
    font-size: 2.7rem;
  }
  .lp .mv__txt {
    font-size: 1.4rem;
  }

}
@media screen and (max-width:951px) {
  .lp .mv__bg.pc {
    display: none;
  }
  .lp .mv__bg.sp {
    display: block;
  }
  .lp .mv__wrapper {
    display: block;
    min-height: 660px;
    max-height: none;
    height: auto;
    text-align: center;
    padding-top: 65px;
  }
  .lp .mv__lead {
    margin-bottom: 5px;
    letter-spacing: .05em;
    line-height: 1.444;
  }
  .lp .mv__txt {
    margin-bottom: 6px;
    letter-spacing: .05em;
    line-height: 1.571;
  }
  .lp .mv__item {
    margin: 0 auto 3px;
    padding: 0 50px;
  }
  .lp .mv__btn{
    margin: 0 auto 12px;
    max-width: 315px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
  }
  .lp .mv__btn::after{
    /* right: 36px;
    width: 23px;
    height: 14px; */
  }
  .lp .mv__btn span{
    margin-top: -7px;
    margin-bottom: 5px;
    font-size: 1.2rem;
    letter-spacing: .06em;
  }
  .lp .mv__btn em{
    font-size: 1.5rem;
  }
  .lp .mv__note{
    position: static;
    font-size: 1rem;
    letter-spacing: .06em;
    line-height: 1.5;
  }
  .lp .mv__bg{
    position: static;
    width: 100%;
    padding: 0 50px;
    margin: 0 0 15px;
  }
  .lp .mv__bnr{
    right: 20px;
    bottom: 0;
    max-width: 335px;
    width: 100%;
    z-index: 5;
  }
  .lp .mv__bnr-pop{
    right: 20px;
    bottom: 0;
    max-width: 250px;
    width: 100%;
    z-index: 5;
  }
}
@media screen and (max-width:374px) {
  .lp .mv__bnr{
    max-width: 280px;
  }
}

/* about ---------------*/
.lp .about__wrapper{
  padding-top: 125px;
  margin-bottom: 180px;
}
.lp .about__period span:nth-child(1),
.lp .about__period span:nth-child(2),
.lp .about__period span:nth-child(3),
.lp .about__period span:nth-child(4){
  background: #0098D0;
}
.lp .about__ttl {
  margin-bottom: 58px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .about__before,
.lp .about__after{
  display: flex;
  justify-content: space-between;
}
.lp .about__list{
  position: relative;
  padding-top: 35px;
  text-align: center;
}
.lp .about__list:nth-of-type(2){
  margin: 0 10px;
}
.lp .about__after .about__list:nth-of-type(2){
  margin: 3px 10px!important;
}
.lp .about__before .about__list{
  width: 300px;
  height: 318px;
  border: 1px solid #DFE1E5;
  border-radius: 5px;
}
.lp .about__after .about__list{
  width: calc(300px - 6px);
  height: calc(324px - 6px);
  margin: 3px;
  background: #fff;
  border-radius: 3px;
}
@media screen and (max-width:860px) {
  .lp .about__after .about__list{
    height: calc(360px - 6px);
  }
}
.lp .about__after .about__list::before{
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  left: -3px;
  bottom: -3px;
  z-index: -1;
  background: linear-gradient(135deg, #680EF7, #0098D0);
  border-radius: 5px;
}
.lp .about__before .about__list::after{
  display: block;
  content: "";
  background: url(../img/lp_aws02/img/about-arw.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: -137px;
  z-index: -1;
  height: 137px;
  width: 19px;
  transform: translateX(-50%);
}
.lp .about__subttl{
  margin-bottom: 5px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.3;
}
.lp .about__after .about__list:last-of-type .about__subttl{
  margin-bottom: 1px;
}
.lp .about__subttl span{
  color: #194BA9;
}
.lp .about__before .about__thumb {
  width: 140px;
  margin: 0 auto 10px;
}
.lp .about__after .about__thumb {
  width: 140px;
  margin: 0 auto 13px;
}
.lp .about__after .about__list:last-of-type .about__thumb{
  margin-bottom: 0;
}
.lp .about__txt{
font-size: 1.4rem;
font-weight: 400;
letter-spacing: .05em;
line-height: 1.571;
}
.lp .about__lead {
  margin: 30px 0 38px;
  text-align: center;
}
.lp .about__lead span{
  display: inline-block;
  padding: 8px;
  color: #194BA9;
  background: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: center;
}
.lp .about__content {
  display: contents;
}
@media screen and (max-width:767px) {
  .lp .about__wrapper{
    padding: 65px 20px 0;
    padding: 54px 20px 0;
    margin-bottom: 103px;
  }
  .lp .about__ttl {
    margin-bottom: 33px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .about__content {
    display: block;
    flex: 1;
    margin-left: 10px;
  }
  .lp .about__before,
  .lp .about__after{
    position: relative;
    display: block;
  }
  .lp .about__list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding-top: 35px; */
    text-align: left;
    border:none;
    margin: 0!important;
  }
  .lp .about__after .about__list{
    margin: 0 10px!important;
  }
  .lp .about__before {
    border: 1px solid #DFE1E5;
    border-radius: 5px;
    padding: 10px;
  }
  .lp .about__after {
    background: #fff;
    border-radius: 3px;
  }
  .lp .about__after::after{
    content: "";
    position: absolute;
    right: -2px;
    top: -2px;
    left: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(135deg, #680EF7, #0098D0);
    border-radius: 5px;
  }
  .lp .about__before .about__list{
    width: 100%;
    height: auto;
    border: none!important;
    border-radius: 0;
    padding: 18px 0;
  }
  .lp .about__after .about__list{
    width: calc(100% - 20px);
    height: auto;
    margin: 0;
    background: none;
    padding: 18px 0;
    margin: 10px;
  }
  .lp .about__list:not(:first-of-type){
    border-top: 1px solid #DFE1E5!important;
  }
  .lp .about__after .about__list::before,
  .lp .about__before .about__list::after{
    display: none;
  }
  .lp .about__before::after{
    display: block;
    content: "";
    background: url(../img/lp_aws02/img/about-arw.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    bottom: -126px;
    z-index: -1;
    height: 126px;
    width: 16px;
    transform: translateX(-50%);
  }
  .lp .about__subttl{
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
  .lp .about__before .about__subttl{
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .lp .about__after .about__list:last-of-type .about__subttl{
    margin-bottom: 1px;
  }
  .lp .about__before .about__thumb,
  .lp .about__after .about__thumb{
    width: 90px;
    margin: 0;
  }
  .lp .about__thumb img{
    width: 100%;
  }
  .lp .about__txt{
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .lp .about__lead {
    margin: 30px 0 38px;
    text-align: center;
  }
  .lp .about__lead span{
    padding: 5px;
    font-size: 1.6rem;
    line-height: 1.375;
  }
}

/* reason ---------------*/
.lp .reason__wrapper{
  position: relative;
  padding: 98px 0 207px;
  /* background: url(../img/lp_aws02/img/reason-bg.jpg)no-repeat center top / cover; */
  /* background: linear-gradient(#098BD4, #680EF7); */
}
.lp .reason-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lp .reason-bg img{
  position: absolute;
}
.lp .reason-bg-01{
  top: 0;
  left: 0;
  /* width: 450px; */
  width: 50%;
  max-width: 720px;
}
.lp .reason-bg-02{
  top: 0;
  right: 0;
  /* width: 500px; */
  width: 50%;
  max-width: 720px;
}
.lp .reason-bg-03{
  bottom: 0;
  right: 0;
  max-width: 1170px;
}
.lp .reason__period span:nth-child(1),
.lp .reason__period span:nth-child(2),
.lp .reason__period span:nth-child(3),
.lp .reason__period span:nth-child(4){
  background: #fff;
}
.lp .reason__ttl {
  margin-bottom: 58px;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .reason__container {
  overflow: hidden;
}
.lp .reason__box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 500px;
  background: #fff;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.16));
}
.lp .reason__box:not(:first-of-type) {
  margin-top: 60px;
}
.lp .reason__box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.lp .reason__box::before,
.lp .reason__box::after{
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  content: "";
  height: 100%;
  background: #fff;
}
.lp .reason__box::before {
  width: 100vw;
}
.lp .reason__box::after{
  width: 70px;
}
.lp .reason__box:nth-of-type(2n)::before {
  left: 100%;
}
.lp .reason__box:not(:nth-of-type(2n))::before {
  right: 100%;
}
.lp .reason__box:nth-of-type(2n)::after {
  right: 100%;
  border-radius: 10px 0 0 10px;
}
.lp .reason__box:not(:nth-of-type(2n))::after {
  left: 100%;
  border-radius: 0 10px 10px 0;
}
.lp .reason__txtarea {
  padding-top: 8px;
}
.lp .reason__txtarea {
  width: 445px;
}
.lp .reason__box:nth-of-type(2) .reason__txtarea {
  margin-left: 20px;
}
.lp .reason__box:nth-of-type(1) .reason__txtarea,
.lp .reason__box:nth-of-type(3) .reason__txtarea {
  margin-right: 20px;
}
.lp .reason__subttl {
  display: flex;
  margin-bottom: 22px;
  margin-right: -10px;
}
.lp .reason__num {
  margin-right: 22px;
}
.lp .reason__subttl em{
  margin-top: -8px;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.545;
}
.lp .reason__subttl em span{
  color: #194BA9;
}
.lp .reason__txt{
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.75;
}
.lp .reason__thumb-01 img,
.lp .reason__thumb-02 img,
.lp .reason__thumb-03 img{
  width: 100%;

}
.lp .reason__thumb-01 {
  margin-bottom: 60px;
}
.lp .reason__thumb-03 {
  margin-right: -25px;
}
@media screen and (max-width:767px) {
  .lp .reason-bg-01{
    max-width: 188px;
  }
  .lp .reason-bg-02{
    max-width: 188px;
  }
  .lp .reason-bg-03{
    right: auto;
    left: 0;
    width: 100%;
    max-width: 375px;
  }
  .lp .reason__wrapper{
    padding: 65px 0 100px;
    /* background: url(../img/lp_aws02/img/sp/reason-bg.jpg)no-repeat center top / cover; */
  }
  .lp .reason__container{
    padding: 0 20px;
  }
  .lp .reason__ttl {
    margin-bottom: 34px;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .reason__box {
    position: relative;
    display: block;
    height: auto;
    border-radius: 15px;
    padding: 30px;
  }
  .lp .reason__box:not(:first-of-type) {
    margin-top: 30px;
  }
  .lp .reason__box::before,
  .lp .reason__box::after{
    display: none;
  }
  .lp .reason__txtarea {
    padding-top: 0;
  }
  /* .lp .reason__box:nth-of-type(1) .reason__txtarea { */
  .lp .reason__txtarea {
    width: 100%;
  }
  .lp .reason__box:nth-of-type(1) .reason__txtarea,
  .lp .reason__box:nth-of-type(2) .reason__txtarea,
  .lp .reason__box:nth-of-type(3) .reason__txtarea {
    margin: 0;
  }
  .lp .reason__subttl {
    margin: 0;
  }
  .lp .reason__num {
    margin-right: 17px;
    width: 44px;
  }
  .lp .reason__num img{
    width: 100%;
  }
  .lp .reason__subttl em{
    margin-top: -4px;
    font-size: 1.8em;
    line-height: 1.444;
  }
  .lp .reason__subttl em span{
    color: #194BA9;
  }
  .lp .reason__txt{
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .lp .reason__thumb-01 {
    margin-bottom: 0;
  }
  .lp .reason__thumb-03 {
    margin-right: 0;
  }
}
/* what ---------------*/
.lp .what__wrapper {
  padding: 121px 0 175px;
}
.lp .what__period span:nth-child(1),
.lp .what__period span:nth-child(2),
.lp .what__period span:nth-child(3),
.lp .what__period span:nth-child(4){
  background: #0098D0;
}
.lp .what__ttl {
  margin-bottom: 52px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .what__pic {
  margin-bottom: 52px;
}
.lp .what__pic img{
  width: 100%;
}
.lp .what__txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.75;
}
.lp .what__txt span {
  color: #194BA9;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .lp .what__wrapper{
    padding: 65px 0 100px;
  }
  .lp .what__ttl {
    margin-bottom: 35px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .what__pic {
    max-width: 315px;
    width: 100%;
    margin: 0 auto 28px;
  }
  .lp .what__txt {
    padding: 0 30px;
    font-size: 1.4rem;
    line-height: 1.571;
  }
}
/* option---------------*/
.lp .option__wrapper {
  padding: 115px 0 180px;
  background: #F7F7F7;
}
.lp .option__wrapper.service__wrapper {
  padding: 122px 0 136px;
}
.lp .option__period span:nth-child(1),
.lp .option__period span:nth-child(2),
.lp .option__period span:nth-child(3),
.lp .option__period span:nth-child(4){
  background: #0098D0;
}
.lp .option__ttl {
  margin-bottom: 14px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .option__lead {
  margin-bottom: 64px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-align: center;
}
.lp .option__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lp .option__item:nth-of-type(n+3) {
  margin-top: 25px;
}
.lp .option__item {
  width: 49.5%;
  padding: 32px 30px 50px;
  background: #fff;
  border: 1px solid #dfe1e5;
  border-radius: 10px;
}
.lp .option__item-head {
  display: flex;
  margin-bottom: 18px;
}
.lp .option__item-thumb {
  width: 100px;
}
.lp .option__item-thumb img {
  width: 100%;
}
.lp .option__item-description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 20px;
}
.lp .option__item-ttl {
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.3;
}
.lp .option__item-txt {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.571;
}
.lp .option-item-list {
  padding-top: 20px;
  border-top: 1px solid #dfe1e5;
}
.lp .option__item-item {
  display: flex;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.571;
}
.lp .option__item-item + .option__item-item {
  margin-top: 5px;
}
.lp .option__item-item::before {
  content: "";
  display: table;
  width: 6px;
  height: 6px;
  background: #0098D0;
  border-radius: 50%;
  margin-right: 10px;
  transform: translateY(7px);
}
.lp .option__btnarea {
  margin-top: 64px;
  margin-top: 58px;
}
.lp .option__btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 60px;
  margin: 40px auto 45px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: .3s;
}
.lp .option__btn:hover {
  opacity: .8;
}
.lp .option__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  background: url(../img/lp_aws02/img/arw.svg) no-repeat;
  background-size: contain;
  width: 23px;
  height: 14px;
  transform: translateY(-50%);
}
.lp .option__btnarea-txt,
.lp .option__tel {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-align: center;
}
.lp .option__tel em {
  margin-right: 10px;
  color: #194BA9;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.05em;
}

.lp .price-flow__sec .option__tel em {
  color: #F8F24E;
}
.lp .option__tel-num {
  margin: 0 12px;
}
@media screen and (max-width:767px) {
  .lp .option__wrapper{
    padding: 65px 0 100px;
  }
  .lp .option__wrapper.service__wrapper {
    padding: 65px 0;
  }
  .lp .option__ttl {
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .option__lead {
    margin-bottom: 40px;
    font-size: 1.4rem;
    line-height: 1.571;
    text-align: center;
  }
  .lp .option__list {
    display: block
  }
  .lp .option__item:nth-of-type(n+2) {
    margin-top: 10px!important;
  }
  .lp .option__box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .lp .option__item {
    width: auto;
    margin: 0 30px;
    padding: 20px;
  }
  .lp .option__item-head {
    display: block;
    margin-bottom: 18px;
  }
  .lp .option__item-thumb {
    width: 60px;
  }
  .lp .option__item-description {
    display: block;
    margin-left: 0;
  }
  .lp .option__item-ttl {
    margin-bottom: 0px;
    margin-left: 7px;
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .lp .option__item-txt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .lp .option-item-list {
    padding-top: 20px;
  }
  .lp .option__item-item {
    font-size: 1.2rem;
    line-height: 1.333;
  }
  .lp .option__item-item + .option__item-item {
    margin-top: 8px;
  }
  .lp .option__item-item::before {
    width: 4px;
    height: 4px;
    margin-right: 5px;
    transform: translateY(5px);
  }
  .lp .option__btnarea {
    margin-top: 50px;
    margin-top: 45px;
  }
  .lp .option__btn {
    max-width: 315px;
    width: 100%;
    margin: 22px auto 20px;
  }
  .lp .option__btn::after {
    right: 30px;
    width: 23px;
    height: 14px;
  }
  .lp .option__btnarea-txt,
  .lp .option__tel {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
  .lp .option__tel em {
    margin-top: 10px;
    font-size: 2.4rem;
    margin-right: 4px;
  }
  .lp .option__tel-num {
    margin: 0 4px 0 0;
    width: 23px;
  }
}

/* case ---------------*/
.lp .case__wrapper {
  padding: 123px 0 180px;
}
.lp .case__period span:nth-child(1),
.lp .case__period span:nth-child(2),
.lp .case__period span:nth-child(3),
.lp .case__period span:nth-child(4){
  background: #0098D0;
}
.lp .case__ttl {
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .case__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp .case__list:not(:first-of-type) {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #DFE1E5;
}
.lp .case__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: #000;
  transition: .3s;
}
.lp .case__link:hover {
opacity: .8;
}
.lp .case__thumb {
  max-width: 325px;
  margin-right: 20px;
}
.lp .case__thumb img{
  width: 100%;
}
.lp .case__txtarea {
  max-width: 622px;
  flex:1;
}
.lp .case__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}
.lp .case__case {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 114px;
  height: 20px;
  margin-bottom: 18px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  background: linear-gradient(90deg, #680EF7, #0098D0);
  color: #fff;
}
.lp .case__name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.lp .case__company {
  width: 160px;
}
.lp .case__company img {
  width: 100%;
}
.lp .case__txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.75;
}
.lp .case__txt span{
  color: #194BA9;
  font-weight: 600;
}
@media screen and (max-width:767px) {
  .lp .case__wrapper{
    padding: 65px 30px 100px;
  }
  .lp .case__ttl {
    margin-bottom: 31px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .case__list {
    display: block;
  }
  .lp .case__list:not(:first-of-type) {
    margin-top: 25px;
    padding-top: 45px;
  }
  .lp .case__link {
    display: block;
  }
  .lp .case__link:hover {
  opacity: 1;
  }
  .lp .case__thumb {
    /* max-width: 650px; */
    max-width: none;
    margin: 0 auto 24px;
  }
  .lp .case__txtarea {
    max-width: 622px;
    flex:1;
  }
  .lp .case__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .lp .case__case {
    width: 94px;
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 600;
  }
  .lp .case__name {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.375;
  }
  .lp .case__company {
    width: 90px;
  }
  .lp .case__txt {
    font-size: 1.4rem;
    line-height: 1.571;
  }
}
/* price-flow ---------------*/
.lp .price-flow__wrapper {
  position: relative;
  padding: 125px 0 130px;
  /* background: url(../img/lp_aws02/img/flow-bg.jpg)no-repeat center top / cover; */
}
.lp .price-flow-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lp .price-flow-bg img{
  position: absolute;
  max-width: 720px;
  width: 50%;
}
.lp .price-flow-bg-01{
  top: 0;
  left: 0;
}
.lp .price-flow-bg-02{
  top: 0;
  right: 0;
}
.lp .price-flow-bg-03{
  bottom: 0;
  left: 0;
}
.lp .price-flow-bg-04{
  bottom: 0;
  right: 0;
}
.lp .price-flow__inner + .price-flow__inner {
  margin-top: 60px;
  padding-top: 62px;
  border-top: 1px solid #dfe1e55c;
}
.lp .price-flow__period span:nth-child(1),
.lp .price-flow__period span:nth-child(2),
.lp .price-flow__period span:nth-child(3),
.lp .price-flow__period span:nth-child(4){
  background: #fff;
}
.lp .price-flow__ttl {
  margin-bottom: 14px;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .price-flow__txt {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.lp .price-flow__scroll {
  margin: 56px auto 34px;
}
@media screen and (max-width:999px) {
  .lp .price-flow__scroll {
    overflow-x: scroll;
  }
}
.lp .price-flow__table {
  width: 1000px;
  border-bottom: #DEDDDE;
  border-collapse: separate;
  overflow: hidden;
  padding-top: 11px;
  border-spacing: 0;
  border-radius: 5px;
}
.lp .price-flow__table thead th,
.lp .price-flow__table tbody tr:not(:first-of-type) th,
.lp .price-flow__table tbody td {
  text-align: center;
}
.lp .price-flow__table thead th:last-of-type::after {
  content:"おすすめ";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 22px;
  color: #194BA9;
  background: #F8F24E;
  border-radius: 11px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .05em;

}
.lp .price-flow__table thead th {
  height: 76px;
  padding-top: 11px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
}
.lp .price-flow__table thead th span{
  margin-top: 1px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.571;
  display: block;
}
.lp .price-flow__table thead th:not(:first-of-type) {
  position: relative;
  z-index: 2;
  width: 212px;
  padding-left: 9px;
}
.lp .price-flow__table thead th:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: calc(212px - 9px);
  height: 100%;
  border-radius: 5px 5px 0 0;
  background: #194BA9;
}
.lp .price-flow__table tbody {
  position: relative;
  z-index: 2;
  border-radius: 5px;
  /* border: 1px solid #194BA9; */
}
.lp .price-flow__table tbody::before {
  position: absolute;
  left: 0;
  /* z-index: -1; */
  width: 1000px;
  height: 79px;
  content: "";
  background: #fff;
  border-radius: 5px 0 0 0;
  border-bottom: 1px solid #DEDDDE;
}
.lp .price-flow__table tbody th{
  font-size: 1.4em;
  letter-spacing: .05em;
  line-height: 1.571;
}
.lp .price-flow__table tbody td {
  font-size: 1.6rem;
  letter-spacing: .05em;
}
.lp .price-flow__table tbody tr:not(:first-of-type){
  background: #fff;
}
.lp .price-flow__table tbody tr:not(:first-of-type) th{
  width: 150px;
}
.lp .price-flow__table tbody tr:nth-of-type(2n) {
  background: #F2F2F2;
}
.lp .price-flow__table tbody tr:first-of-type {
  position: relative;
  z-index: 2;
  height: 80px;
}
.lp .price-flow__table tbody tr:first-of-type th{
  padding-left: 8px;
}
.lp .price-flow__table tbody tr:not(:first-of-type) {
  height: 64px;
}
.lp .price-flow__table tbody tr:first-of-type th:not(:first-of-type),
.lp .price-flow__table tbody td {
  border-left: 9px #fff solid;
}
.lp .price-flow__flow,
.lp .price-flow__flow img{
  width: 100%;
}
.lp .price-flow__flow {
  margin-top: 55px;
}
.lp .price-flow__btnarea{
  color: #fff;
}
.lp .price-flow__btn{
  color: #194BA9;
  background: #F8F24E;
}
.lp .price-flow__btnarea .option__btn::after{
  background: url(../img/lp_aws02/img/arw-blue.svg) no-repeat;
}
@media screen and (max-width:767px) {
  .lp .price-flow-bg img{
    max-width: 188px;
  }
  .lp .price-flow-bg-03{
    left: auto;
    right: 0;
  }

  .lp .price-flow__wrapper{
    padding: 65px 20px;
    /* background: url(../img/lp_aws02/img/sp/flow-bg.jpg)no-repeat center top / cover; */
  }
  .lp .price-flow__inner + .price-flow__inner {
    margin-top: 45px;
    padding: 45px 10px 0;
  }
  .lp .price-flow__ttl {
    margin-bottom: 20px;
    margin-bottom: 12px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .price-flow__txt {
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .lp .price-flow__scroll {
    margin: 40px -20px 34px 0;
    padding-right: 20px;
  }

  .lp .price-flow__table thead th {
    height: 76px;
    padding-top: 11px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #fff;
  }
  .lp .price-flow__table thead th span{
    margin-top: 1px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.571;
    display: block;
  }
  .lp .price-flow__table thead th:not(:first-of-type) {
    position: relative;
    z-index: 2;
    width: 212px;
    padding-left: 9px;
  }
  .lp .price-flow__table thead th:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: calc(212px - 9px);
    height: 100%;
    border-radius: 5px 5px 0 0;
    background: #194BA9;
  }
  .lp .price-flow__table tbody {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    /* border: 1px solid #194BA9; */
  }

  .lp .price-flow__table tbody th{
    font-size: 1.4em;
    letter-spacing: .05em;
    line-height: 1.571;
  }
  .lp .price-flow__table tbody td {
    font-size: 1.6rem;
    letter-spacing: .05em;
  }
  /* .lp .price-flow__table tbody tr:not(:first-of-type){
    background: #fff;
  }
  .lp .price-flow__table tbody tr:not(:first-of-type) th{
    width: 150px;
  }
  .lp .price-flow__table tbody tr:nth-of-type(2n) {
    background: #F2F2F2;
  }
  .lp .price-flow__table tbody tr:first-of-type {
    height: 80px;
  }
  .lp .price-flow__table tbody tr:first-of-type th{
    padding-left: 8px;
  }
  .lp .price-flow__table tbody tr:not(:first-of-type) {
    height: 64px;
  }
  .lp .price-flow__table tbody tr:first-of-type th:not(:first-of-type),
  .lp .price-flow__table tbody td {
    border-left: 9px #fff solid;
  } */
  .lp .price-flow__flow {
    max-width: 316px;
    margin: 36px auto 0;
  }
}

/* faq---------------*/
.lp .faq__wrapper {
  padding-top: 122px;
  padding-bottom: 180px;
}
.lp .faq__period span:nth-child(1),
.lp .faq__period span:nth-child(2),
.lp .faq__period span:nth-child(3),
.lp .faq__period span:nth-child(4){
  background: #0098D0;
}
.lp .faq__ttl {
  margin-bottom: 27px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}

.lp .faq__item {
  border-bottom: 1px solid #dfe1e5;
  padding-top: 35px
}
.lp .faq__answer,
.lp .faq__question {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 53px
}
.lp .faq__question {
  padding-bottom: 18px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.3;
}
.lp .faq__answer {
  padding-bottom: 23px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.75;
}

.lp .faq__answer::before,
.lp .faq__question::before {
  content: "";
  position: absolute;
  left: 0;
  display: table;
  background-image: url(../img/lp_aws02/img/faq-q.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.lp .faq__question::before {
  width: 27px;
  height: 23px;
}
.lp .faq__answer::before {
  width: 28px;
  height: 21px;
  background-image: url(../img/lp_aws02/img/faq-a.svg);
}
@media screen and (max-width:767px) {
  .lp .faq__wrapper{
    padding: 65px 30px 100px;
  }
  .lp .faq__ttl {
    margin-bottom: 8px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .faq__item {
    padding-top: 30px
  }
  .lp .faq__answer,
  .lp .faq__question {
    align-items: flex-start;
    padding-left: 39px
  }
  .lp .faq__question {
    padding-bottom: 18px;
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .lp .faq__answer {
    padding-bottom: 23px;
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .lp .faq__question::before {
    top: 2px;
    height: 16px;
    width: 19px;
  }
  .lp .faq__answer::before {
    top: 3px;
    height: 14px;
    width: 19px;
  }
}
/* form---------------*/

.lp .btm-bg {
  position: relative;
  /* background: url(../img/lp_aws02/img/btm-bg.jpg) no-repeat center top / cover; */
}

.lp .btm-bg-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lp .btm-bg-bg img{
  position: absolute;
  max-width: 720px;
  width: 50%;
}
.lp .btm-bg-bg-01{
  top: 0;
  left: 0;
}
.lp .btm-bg-bg-02{
  top: 0;
  right: 0;
}
.lp .btm-bg-bg-03{
  bottom: 0;
  left: 0;
}
.lp .btm-bg-bg-04{
  bottom: 0;
  right: 0;
}

.lp .form__wrapper {
  padding: 125px 20px 123px;
}
.lp .form__sec {
  position: relative;
  z-index: 1;
}
.lp .form__bg {
  padding-top: 97px!important;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.lp .form__period span:nth-child(1),
.lp .form__period span:nth-child(2),
.lp .form__period span:nth-child(3),
.lp .form__period span:nth-child(4){
  background: #0098D0;
}
.lp .form__ttl {
  margin-bottom: 17px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .form__inner {
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.lp .form__lead {
  margin-bottom: 64px;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-align: center;
}
.lp .form__note {
  margin-bottom: 23px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .05em;
}
.lp .form__red {
  margin-bottom: 55px;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: #EA4335;
}
.lp .form__subttl {
  position: relative;
  margin-bottom: 26px;
  padding-left: 11px;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-bottom: 1px solid #DFE1E5;
}
.lp .form__subttl::before {
  position: absolute;
  content:"";
  left: 0;
  width: 5px;
  height: 16px;
  background: #0098D0;
}

.lp .form__unit {
  margin-bottom: 28px;
}
.lp .form__unit-head {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.428;
}
.lp .form__unit-body_name {
  display: flex;
  align-items: center;
}
.lp .form__group-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.lp .form__unit-body_name .form__group-name:nth-of-type(2) {
  margin-left: 24px;
}
.lp .label {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.571;
}
.lp .form__mark--must {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ea4335;
  margin-left: 4px;
  font-weight: 300;
  letter-spacing: .05em;
}
.lp .input__group_margin {
  margin-left: 14px;
}
.lp .form__group-name:nth-last-of-type(1) .input__group,
.lp .form__group-zip:nth-last-of-type(1) .input__group {
  width: 100%;
}
.lp .form__input,
.lp .input__textarea {
  border: 0;
  border: 1px solid #50C8EB;
    box-sizing: border-box;
    padding: 0 13px;
    font-weight: 300;
  font-size: 1.4rem;
  letter-spacing: .05em;
}
.lp .form__unit-body_name .form__input {
  width: 170px;
  height: 40px;
}
.lp  .form__unit-body_wide .form__input {
  width: 100%;
  height: 40px;
}

.lp .form__unit--textarea {
  margin-bottom: 55px;
}
.lp .input__textarea {
  width: 100%;
  height: 160px;
  padding: 10px 13px;
}

.lp .input__checkbox {
  position: relative;
  display: block;
  width: 375px;
    margin: 0 auto;
}
.lp input[type=checkbox], .home input[type=radio] {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: 0 0;
  appearance: none;
}
.lp.input__checkbox input {
  display: none!important;
}
.lp .label__text {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.571;
}
.lp .label__text a{
  font-weight: 600;
  color: #000;
  text-decoration: underline;
}
.lp .input__radio .label__text::before,
.lp .label__text::before {
  width: 24px;
  height: 24px;
}

.lp .label__text::before {
  margin-right: 12px;
  box-sizing: border-box;
  display: block;
    background: #fff;
    content: "";
    border: 1px solid #50C8EB;
}
.lp .input__checkbox input:checked+.label__text::after {
  top: 2px;
  left: 9px;
  width: 4px;
  height: 14px;
  position: absolute;
  display: block;
  transform: rotate(45deg);
  border-bottom: solid 3px #194BA9;
  border-right: solid 3px #194BA9;
  content: "";
}
.lp .form__submitBtn {
  width: 250px;
  margin: 55px auto 0;
  cursor: pointer;
}
.lp #button_confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, #0098D0, #680EF7);
  color: #fff;
  border-radius: 25px;
  border: 0;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: .3s;
}
.lp #button_confirm:hover {
  opacity: .8;
}
@media screen and (max-width:767px) {
  .lp .btm-bg {
    /* background: url(../img/lp_aws02/img/sp/btm-bg.jpg) no-repeat center top / cover; */
  }
  .lp .btm-bg-bg img{
    max-width: 375px;
    width: 100%;
  }
  .lp .btm-bg-bg-03{
    left: auto;
    right: 0;
  }

  .lp .form__wrapper{
    padding: 65px 20px 62px;
  }
  .lp .form__ttl {
    margin-bottom: 8px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .form__inner {
    padding: 0 30px 50px;
  }
  .lp .form__lead {
    margin-bottom: 34px;
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .lp .form__note {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .lp .form__red {
    margin-bottom: 40px;
  }
  .lp .form__subttl {
    margin-bottom: 23px;
  }
  .lp .form__unit {
    margin-bottom: 25px;
  }
  .lp .form__unit-head {
    margin-bottom: 5px;
    font-size: 1.3rem;
  }
  .lp .form__unit-body_name {
    display: block;
  }
  .lp .form__unit-body_name .form__group-name:nth-of-type(2) {
    margin: 8px 0 0;
  }
  .lp .label {
    font-weight: 300;
    font-size: 1.2rem;
  }
  .lp .form__mark--must {
    vertical-align: text-bottom;
    font-size: 1rem;
    margin-left: 4px;
  }
  .lp .input__group_margin {
    margin-left: 14px;
    width: 100%;
  }
  .lp .form__group-name:nth-last-of-type(1) .input__group,
  .lp .form__group-zip:nth-last-of-type(1) .input__group {
    width: 100%;
  }
  .lp .form__input,
  .lp .input__textarea {
    /* padding: 0 13px; */
    font-size: 1.2rem;
  }
  .lp .form__unit-body_name .form__input {
    width: 100%;
    height: 40px;
  }
  .lp  .form__unit-body_wide .form__input {
    width: 100%;
    height: 40px;
  }
  .lp .form__unit--textarea {
    margin-bottom: 36px;
  }
  .lp .input__checkbox {
    width: auto;
    margin-bottom: 40px;
  }
  .lp .label__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .lp .input__radio .label__text::before,
  .lp .label__text::before {
    width: 30px;
    height: 30px;
  }
  .lp .input__checkbox input:checked+.label__text::after {
    top: 8px;
    left: 11px;
    width: 4px;
    height: 14px;
  }
  .lp .form__submitBtn {
    width: auto;
    max-width: 275px;
    margin: 40px auto 0;
  }
}

/* thanks---------------*/
.thanks {
  position: relative;
  z-index: 0;
}
.thanks .thanks__wrapper {
  padding: 210px 0 125px;
}
.thanks__txt {
  margin-bottom: 57px;
  text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.75;
}
.thanks__btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 60px;
    margin: 0 auto;
    border-radius: 30px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .05em;
  }
  .thanks__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    background: url(../img/lp_aws02/img/arw.svg) no-repeat;
    background-size: contain;
    width: 23px;
    height: 14px;
    transform: translateY(-50%);
}
@media screen and (max-width:767px) {
  .thanks__wrapper {
    padding: 125px 0 100px;
  }
  .thanks__txt {
    margin-bottom: 35px;
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .thanks__btn {
    width: 275px;
    height: 54px;
    border-radius: 27px;
    font-size: 1.6rem;
  }
}
/* footer---------------*/
.footer {
    position: relative;
    z-index: 0;
}
.thanks .footer {
  /* background: url(../img/lp_aws02/img/footer-bg.jpg)no-repeat center top / cover; */
  padding-top: 115px;
}

.thanks .footer .thanks-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.thanks .footer .thanks-bg img{
  position: absolute;
  width: 50%;
  max-width: 720px;
}
.thanks .footer .thanks-bg-01{
  top: 0;
  left: 0;
}
.thanks .footer .thanks-bg-02{
  right: 0;
  bottom: 0;
}

.footer .footer__wrapper {
  position: relative;
    z-index: 1;
    padding-bottom: 65px;
}
/* .lp .form__bg {
  padding-top: 47px;
} */
.footer .footer__contact-title {
  margin-bottom: 40px;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.3;
  text-align: center;
}
.footer .footer__contact-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 730px;
  margin: 0 auto 48px;
}
.footer .footer__contact-item {
  /* width: 32%; */
  width: 333px;
  height: 62px;
}
.footer .footer__contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #183575;
  box-sizing: border-box;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: .3s;
}
.footer .footer__contact-link:hover {
  background-color: #000;
  color: #fff;
}
.footer .footer__contact-company {
  display: flex;
}
.footer .footer__contact-logo img {
  width: 249px;
  height: 44px;
}
.footer .footer__contact-detail {
  padding-left: 76px;
}
.footer .footer__company-name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: #fff;
}
.footer .footer__company-list {
  margin-bottom: 50px;
}
.footer .footer__company-item {
  font-size: 1.4rem;
  font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.538;
    color: #fff;
    margin-top: 14px;
}
.footer .footer__contact-tel-number img {
  margin-right: 15px;
}
.footer .footer__contact-tel-number {
  font-weight: 700;
  font-size: 3.8rem;
  letter-spacing: .05em;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.footer .footer__contact-tel-time {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: 60px;
  padding-bottom: 54px;
  border-bottom: 1px solid #dfe1e55c;
  letter-spacing: .05em;
    color: #fff;
    text-align: center;
}
.footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer__bottom-list {
  display: flex;
}
.footer .footer__bottom-item+.footer__bottom-item {
  padding-left: 14px;
  position: relative;
}
.footer .footer__bottom-item a {
  text-decoration: none;
}
.footer .footer__bottom-item img {
  margin: 0 11px 0 5px;
}
.footer .footer__bottom-item+.footer__bottom-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 14px;
  background-color: #fff;
}
.footer .copyright {
  display: inline-block;
}
.footer .copyright,
.footer .footer__bottom-item a {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: .05em;
  line-height: 1.571;
  color: #fff;
}

@media screen and (max-width:767px) {
  .footer {
    position: relative;
    z-index: 0;
}
.thanks .footer {
  /* background: url(../img/lp_aws02/img/sp/footer-bg.jpg)no-repeat center top / cover; */
  padding-top: 65px;
}
.thanks .footer .thanks-bg img{
  width: 100%;
  max-width: 375px;
}
.footer .footer__wrapper {
  /* margin: 0 auto;
  width: 69.444%;
  max-width: 1000px; */
    padding: 0 20px 40px;
}
.lp .form__bg {
  padding-top: 47px!important;
}
.footer .footer__contact-title {
  margin-bottom: 26px;
  font-size: 1.6rem;
  line-height: 1.375;
}
.footer .footer__contact-list {
  display: block;
  width: auto;
  margin: 0 auto 27px;
  padding: 0 10px;
}
.footer .footer__contact-item {
  /* width: 32%; */
  width: 100%;
}
.footer .footer__contact-item:nth-of-type(n+2) {
  margin-top: 27px;
}
.footer .footer__contact-company {
  display: block;
}
.footer .footer__contact-logo img {
  width: 186px;
  height: auto;
}
.footer .footer__contact-logo {
  margin-bottom: 23px;
}
.footer .footer__contact-detail {
  padding-left: 0;
}
.footer .footer__company-name {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: #fff;
}
.footer .footer__company-list {
  margin-bottom: 43px;
}
.footer .footer__company-item {
    line-height: 1.571;
    margin-top: 15px;
}
.footer .footer__contact-tel-number img {
  margin-right: 5px;
  width: 23px;
}
.footer .footer__contact-tel-number {
  margin: 0 auto 4px;
  font-size: 2.8rem;
}
.footer .footer__contact-tel-time {
  font-size: 1.4rem;
  margin-bottom: 50px;
  padding-bottom: 45px;
}
.footer .footer__bottom {
  display: block;
}
.footer .footer__bottom-list {
  display: flex;
}
.footer .footer__bottom-item+.footer__bottom-item {
  padding-left: 14px;
  position: relative;
}
.footer .footer__bottom-item a {
  text-decoration: none;
}
.footer .footer__bottom-item img {
  margin: 0 11px 0 5px;
}
.footer .footer__bottom-item+.footer__bottom-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 14px;
  background-color: #fff;
}
.footer .copyright {
  display: inline-block;
  margin-top: 4px;
}

  .pc {
    display: none
  }

  .sp {
    display: block
  }
}
#google_recaptcha > div {
  margin: 40px auto 0;
}
