@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Rubik&display=swap);

/* reset.css */

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%
}

/* style.css */

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(110deg, #057AB9, #0B6C74);
  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_azure-support/img/bg-white.png) no-repeat center top / contain;
  width: 100%;
  top: 0;
  left: 0;
  height: 110px;
}
.bg-white-down {
  position: relative;
}
.bg-white-down::before{
  position: absolute;
  z-index: 1;
  content: "";
  background: url(../img/lp_azure-support/img/bg-white-down.png) no-repeat center bottom / contain;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 110px;
}
.sec-bg {
  background: linear-gradient(#057AB9, #0B6C74);
}
.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: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 23px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@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_azure-support/img/arw.svg) no-repeat;
    background-size: contain;
    width: 18px;
    height: 12px;
    transform: translateY(-50%);
  }
}
/* mv ---------------*/
.lp .mv__wrapper {
  position: relative;
}
.lp .mv__container {
  position: relative;
  padding-top: 160px;
  padding-bottom: 140px;
  z-index: 1;
}
.lp .mv__ttl {
  margin-bottom: 17px;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.7;
  text-align: center;
}
.lp .mv__txt {
  margin-bottom: 60px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.385;
  word-break: keep-all;
  text-align: center;
}
.lp .mv__btn{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 364px;
  height: 60px;
  border-radius: 999px;
  margin: 0 auto;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background-color .3s, color .3s, border .3s;
  border: 2px solid transparent;
}
.lp .mv__btn:hover {
  background: none;
  background-color: #fff;
  color: #086176;
  border: 2px solid #086176;
}
.lp .mv__bg{
  position: relative;
  max-width: 830px;
  right: -39px;
  bottom: 0;
}
.lp .mv__bg img{
  width: 100%;
}
.lp .mv-bg-01{
  position: absolute;
  max-width: 365px;
  width: 100%;
  top: 0;
  left: 0;
}
.lp .mv-bg-01 img{
  width: 100%;
}
.lp .mv-bg-02{
  position: absolute;
  max-width: 495px;
  width: 100%;
  top: 0;
  right: 0;
}
.lp .mv-bg-02 img{
  width: 100%;
}
.lp .mv-bg-03{
  position: absolute;
  max-width: 470px;
  width: 100%;
  bottom: 0;
  left: 0;
}
.lp .mv-bg-03 img{
  width: 100%;
}
.lp .mv-bg-04{
  position: absolute;
  max-width: 640px;
  width: 100%;
  bottom: 0;
  right: 0;
}
.lp .mv-bg-04 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;
}
@media screen and (max-width:767px) {
  .lp .mv__wrapper {
    display: block;
    text-align: center;
  }
  .lp .mv__container {
    position: relative;
    padding: 156px 20px 110px;
    z-index: 1;
  }
  .lp .mv__ttl {
    margin-bottom: 12px;
    font-size: 3.6rem;
    letter-spacing: .05em;
    line-height: 1.36;
    text-align: center;
  }
  .lp .mv__txt {
    font-size: 1.4rem;
    margin-bottom: 37px;
    letter-spacing: .05em;
    line-height: 1.571;
  }
  .lp .mv__btn{
    margin: 0 auto;
    max-width: 315px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    font-size: 2rem;
  }
  .lp .mv__btn::after{
    /* right: 36px;
    width: 23px;
    height: 14px; */
  }
  .lp .mv-bg-01{
    max-width: 115px;
  }
  .lp .mv-bg-02{
    max-width: 155px;
  }
  .lp .mv-bg-03{
    max-width: 175px;
  }
  .lp .mv-bg-04{
    max-width: 160px;
  }
  .lp .mv__bnr{
    right: 20px;
    bottom: 0;
    max-width: 335px;
    width: 100%;
    z-index: 5;
  }
}
@media screen and (max-width:374px) {
  .lp .mv__bnr{
    max-width: 280px;
  }
}

/* issue ---------------*/
.lp .issue__wrapper{
  position: relative;
  padding-top: 76px;
  padding-bottom: 83px;
  background: linear-gradient(#057AB9, #0B6C74);
}
.lp .issue-bg-01{
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  max-width: 720px;
}
.lp .issue-bg-01 img {
  width: 100%;
}
.lp .issue-bg-02{
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  max-width: 720px;
}
.lp .issue-bg-02 img {
  width: 100%;
}
.lp .issue-bg-03{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  max-width: 720px;
}
.lp .issue-bg-03 img {
  width: 100%;
}
.lp .issue-bg-04{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 720px;
}
.lp .issue-bg-04 img {
  width: 100%;
}
.lp .issue__period span:nth-child(1),
.lp .issue__period span:nth-child(2),
.lp .issue__period span:nth-child(3),
.lp .issue__period span:nth-child(4){
  background: #fff;
}
.lp .issue__content {
  position: relative;
  z-index: 1;
}
.lp .issue__ttl {
  margin-bottom: 56px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.467;
  text-align: center;
  color: #fff;
}
.lp .issue__list{
  display: flex;
  justify-content: space-between;
}
.lp .issue__item{
  max-width: 314px;
  width: 31.4%;
}
.lp .issue__item:nth-child(odd){
  margin-bottom: 50px;
}
.lp .issue__item:nth-child(even){
  margin-top: 50px;
}
.lp .issue__item:nth-child(2){
  transition-delay: 0.1s;
}
.lp .issue__item:nth-child(3){
  transition-delay: 0.2s;
}
.lp .issue__speech {
  width: 100%;
  margin-bottom: 3px;
}
.lp .issue__speech img{
  width: 100%;
}
.lp .issue__icon {
  width: 120px;
  margin-left: 20px;
  margin-right: auto;
}
.lp .issue__icon img{
  width: 100%;
}
@media screen and (max-width:767px) {
  .lp .issue__wrapper{
    padding: 76px 20px 80px;
  }
  .lp .issue-bg-01{
    max-width: 188px;
  }
  .lp .issue-bg-02{
    max-width: 187px;
  }
  .lp .issue-bg-03{
    max-width: 188px;
  }
  .lp .issue-bg-04{
    max-width: 187px;
  }
  .lp .issue__period {
    margin-bottom: 18px;
  }
  .lp .issue__ttl {
    margin-bottom: 38px;
    font-size: 2.4rem;
    line-height: 1.375;
  }
  .lp .issue__content {
    display: block;
  }
  .lp .issue__list{
    display: block;
    max-width: 315px;
    margin: 0 auto;
  }
  .lp .issue__item{
    width: 100%;
  }
  .lp .issue__item:not(:first-child){
    margin-top: 20px;
  }
  .lp .issue__item:nth-child(odd) {
    margin-bottom: 0;
  }
  .lp .issue__item:nth-child(odd) .issue__icon{
    margin-left: 20px;
    margin-right: auto;
  }
  .lp .issue__item:nth-child(even) .issue__icon{
    margin-left: auto;
    margin-right: 20px;
  }
  .lp .issue__item:nth-child(2){
    transition-delay: inherit;
  }
  .lp .issue__item:nth-child(3){
    transition-delay: inherit;
  }
}

/* support ---------------*/
.lp .support__sec{
  position: relative;
  z-index: 1;
}
.lp .support__wrapper{
  position: relative;
}
.lp .support-bg-01{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  max-width: 720px;
  width: 50%;
}
.lp .support-bg-01 img {
  width: 100%;
}
.lp .support-bg-02{
  position: absolute;
  top: calc(50% - 16px);
  right: 0;
  transform: translateY(-50%);
  max-width: 720px;
  width: 50%;
}
.lp .support-bg-02 img {
  width: 100%;
}
.lp .support__content {
  position: relative;
  z-index: 1;
  padding-top: 164px;
  padding-bottom: 75px;
}
.lp .support__before {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 122px;
}
.lp .support__lead {
  margin-bottom: 30px;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.36;
  text-align: center;
  color: #086176;
}
.lp .support__block {
  display: flex;
  align-items: center;
  width: 520px;
  margin: 0 auto;
  padding: 4px 11px;
  border: 1px solid #086176;
  border-radius: 10px;
  background-color: #fff;
}
.lp .support__fig {
  width: 227px;
}
.lp .support__fig img{
  width: 100%;
}
.lp .support__txt {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 600;
  margin-left: 12px;
  color: #086176;
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
@media screen and (max-width:767px) {
  .lp .support-bg-01{
    max-width: 70px;
    width: 100%;
    top: 0;
    transform: inherit;
  }
  .lp .support-bg-02{
    top: 0;
    max-width: 140px;
    width: 100%;
    transform: inherit;
  }
  .lp .support-bg-03{
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 210px;
  }
  .lp .support-bg-03 img{
    width: 100%;
  }
  .lp .support-bg-04{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 55px;
  }
  .lp .support-bg-04 img{
    width: 100%;
  }
  .lp .support__content {
    position: relative;
    z-index: 1;
    padding: 159px 30px 76px;
  }
  .lp .support__before {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 122px;
  }
  .lp .support__lead {
    margin-bottom: 20px;
    font-size: 2.8rem;
    line-height: 1.357;
  }
  .lp .support__block {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 3px 0 26px;
    border: 1px solid #086176;
    border-radius: 10px;
    background-color: #fff;
  }
  .lp .support__fig {
    margin: 0 auto;
  }
  .lp .support__txt {
    font-size: 1.6rem;
    line-height: 1.375;
    font-weight: 600;
    margin-left: 0;
    margin-top: 3px;
    color: #086176;
    text-align: center;
  }
}

/* available---------------*/
.lp .available__wrapper {
  padding: 81px 0 128px;
}
.lp .available__period {
  margin-bottom: 28px;
}
.lp .available__period span:nth-child(1),
.lp .available__period span:nth-child(2),
.lp .available__period span:nth-child(3),
.lp .available__period span:nth-child(4){
  background: #086176;
}
.lp .available__ttl {
  margin-bottom: 59px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
  color: #086176;
}
.lp .available__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lp .available__item:nth-of-type(n+3) {
  margin-top: 20px;
}
.lp .available__item:nth-child(even) {
  transition-delay: .2s;
}
.lp .available__item {
  width: 48.5%;
  padding: 39px 30px 38px;
  background: #fff;
  border: 1px solid #086176;
  border-radius: 10px;
}
.lp .available__item-head {
  text-align: center;
}
.lp .available__item-thumb {
  width: 100px;
  margin: 0 auto;
}
.lp .available__item-thumb img {
  width: 100%;
}
.lp .available__item-ttl {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #086176;
}
.lp .available__item-txt {
  text-align: left;
  margin-top: 16px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.429;
  min-height: 40px;
}
@media screen and (max-width:767px) {
  .lp .available__wrapper{
    padding: 100px 0 81px;
  }
  .lp .available__period {
    margin-bottom: 20px;
  }
  .lp .available__ttl {
    margin-bottom: 40px;
    font-size: 2.4rem;
    line-height: 1.375;
  }
  .lp .available__list {
    display: block;
  }
  .lp .available__box {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 18px;
  }
  .lp .available__item {
    width: auto;
    margin: 0 30px;
    padding: 19px 0 27px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #DFE1E5;
  }
  .lp .available__item:nth-of-type(n+3) {
    margin-top: 0;
  }
  .lp .available__item:first-child {
    border-top: 1px solid #DFE1E5;
  }
  .lp .available__item:nth-child(even) {
    transition-delay: inherit;
  }
  .lp .available__item-head {
    display: block;
  }
  .lp .available__item-thumb {
    width: 60px;
  }
  .lp .available__item-ttl {
    flex: 1;
    margin-bottom: 0px;
    margin-left: 10px;
    font-size: 1.7rem;
    line-height: 1.294;
    text-align: left;
  }
  .lp .available__item-txt {
    font-size: 1.1rem;
    line-height: 1.545;
    min-height: inherit;
  }
}

/* point ---------------*/
.lp .point__wrapper{
  position: relative;
  padding: 77px 0 160px;
  background: linear-gradient(#057AB9, #0B6C74);
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
.lp .point-bg{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lp .point-bg img{
  position: absolute;
}
.lp .point-bg-01{
  top: 0;
  left: 0;
  /* width: 450px; */
  width: 50%;
  max-width: 720px;
}
.lp .point-bg-02{
  top: 0;
  right: 0;
  /* width: 500px; */
  width: 50%;
  max-width: 720px;
}
.lp .point-bg-03{
  bottom: 0;
  right: 0;
  max-width: 1380px;
  width: 100%;
}
.lp .point__period span:nth-child(1),
.lp .point__period span:nth-child(2),
.lp .point__period span:nth-child(3),
.lp .point__period span:nth-child(4){
  background: #fff;
}
.lp .point__ttl {
  margin-bottom: 53px;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
}
.lp .point__container {
  overflow: hidden;
}
.lp .point__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 .point__box:not(:first-of-type) {
  margin-top: 60px;
}
.lp .point__box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

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

}
.lp .point__thumb-01 {
  margin-bottom: 60px;
  margin-right: 32px;
}
.lp .point__thumb-03 {
  margin-right: -25px;
}
@media screen and (max-width:767px) {
  .lp .point-bg-01{
    max-width: 188px;
  }
  .lp .point-bg-02{
    max-width: 187px;
  }
  .lp .point-bg-03{
    right: 0;
    left: auto;
    width: 100%;
    max-width: 375px;
  }
  .lp .point__wrapper{
    padding: 65px 0 123px;
    /* background: url(../img/lp_azure-support/img/sp/point-bg.jpg)no-repeat center top / cover; */
  }
  .lp .point__container{
    padding: 0 20px;
  }
  .lp .point__ttl {
    margin-bottom: 34px;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .point__box {
    position: relative;
    display: block;
    height: auto;
    border-radius: 15px;
    padding: 35px 30px;
  }
  .lp .point__box:not(:first-of-type) {
    margin-top: 30px;
  }
  .lp .point__box::before,
  .lp .point__box::after{
    display: none;
  }
  .lp .point__txtarea {
    padding-top: 0;
  }
  /* .lp .point__box:nth-of-type(1) .point__txtarea { */
  .lp .point__txtarea {
    width: 100%;
  }
  .lp .point__box:nth-of-type(1) .point__txtarea,
  .lp .point__box:nth-of-type(2) .point__txtarea,
  .lp .point__box:nth-of-type(3) .point__txtarea {
    margin: 0;
  }
  .lp .point__subttl {
    margin: 0;
  }
  .lp .point__num {
    margin-right: 16px;
    width: 38px;
  }
  .lp .point__num img{
    width: 100%;
  }
  .lp .point__subttl em{
    margin-top: -4px;
    font-size: 1.8em;
    line-height: 1.444;
  }
  .lp .point__subttl em span{
    color: #086176;
  }
  .lp .point__txt{
    margin-top: -4px;
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .lp .point__thumb-01 {
    margin-top: -4px;
    margin-bottom: 0;
    margin-right: 0;
  }
  .lp .point__thumb-02 {
    margin-top: -4px;
  }
  .lp .point__thumb-03 {
    margin-top: -4px;
    margin-right: 0;
  }
}
/* company ---------------*/
.lp .company__wrapper {
  padding: 116px 0 0;
  max-width: 1180px;
  margin: 0 auto;
}
.lp .company__period span:nth-child(1),
.lp .company__period span:nth-child(2),
.lp .company__period span:nth-child(3),
.lp .company__period span:nth-child(4){
  background: #086176;
}
.lp .company__ttl {
  margin-bottom: 53px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
  color: #086176;
}
.lp .company__pic {
  width: 100%;
}
.lp .company__pic img{
  width: 100%;
}
@media screen and (max-width:767px) {
  .lp .company__wrapper{
    padding: 76px 0 0;
  }
  .lp .company__ttl {
    margin-bottom: 36px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .company__pic {
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
  }
}
/* request ---------------*/
.lp .request__wrapper {
  padding: 116px 0 80px;
}
.lp .request__period span:nth-child(1),
.lp .request__period span:nth-child(2),
.lp .request__period span:nth-child(3),
.lp .request__period span:nth-child(4){
  background: #086176;
}
.lp .request__ttl {
  margin-bottom: 53px;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
  color: #086176;
}
.lp .request__content {
  padding: 0 30px;
}
.lp .request__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 20px 0;
}
.lp .request__item:nth-child(even){
  transition-delay: .2s;
}
.lp .request__item-01{
  width: 65.2001%;
}
.lp .request__item-02{
  width: 30.8%;
}
.lp .request__item-03{
  width: 30.8%;
}
.lp .request__item-04{
  width: 65.2001%;
}
.lp .request__item-05{
  width: 65.2001%;
}
.lp .request__item-06{
  width: 30.8%;
}
.lp .request__item-07{
  width: 51%;
}
.lp .request__item-08{
  width: 45%;
}
.lp .request__fig{
  width: 100%;
  filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.16));
}
.lp .request__fig img{
  width: 100%;
}
@media screen and (max-width:767px) {
  .lp .request__wrapper{
    padding: 76px 0 40px;
  }
  .lp .request__period{
    margin-bottom: 21px;
  }
  .lp .request__ttl {
    margin-bottom: 36px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .request__list {
    display: block;
  }
  .lp .request__item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.571;
    font-weight: 600;
    padding-left: 38px;
    min-height: 30px;
  }
  .lp .request__item:nth-child(even){
    transition-delay: inherit;
  }
  .lp .request__item:not(:first-child) {
    margin-top: 18px;
  }
  .lp .request__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background: url(../img/lp_azure-support/img/sp/request-icn01.svg) no-repeat;
  }

  .lp .request__txt {
    margin-top: -4px;
    margin-bottom: -4px;
  }
}
/* form---------------*/

.lp .btm-bg {
  position: relative;
  /* background: url(../img/lp_azure-support/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: 120px 20px 117px;
}
.lp .form__sec {
  position: relative;
  z-index: 1;
}
.lp .form__bg {
  padding-top: 96px!important;
  background: #fff;
  border-radius: 10px;
  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: #086176;
}
.lp .form__ttl {
  margin-bottom: 54px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.466;
  text-align: center;
  color: #086176;
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
.lp .form__inner {
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 100px;
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
.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: #086176;
}

.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 #92C6E2;
    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 .input__textarea {
  width: 100%;
  height: 160px;
  padding: 10px 13px;
}

.lp .form__unit--select {
  margin-bottom: 80px;
}
.lp .form__selectBox {
  position: relative;
  border: 1px solid #92C6E2;
  width: 262px;
}
.lp .form__selectBox::after {
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4px 0;
  border-color: #222a33 transparent transparent;
  pointer-events: none;
  content: "";
}
.lp .form__select {
  margin-left: auto;
  margin-right: 0;
  height: 40px;
  width: 100%;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0 0 0 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  background-color: #fff;
}

.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 .label__text a:hover{
  text-decoration: none;
}
.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 #92C6E2;
}
.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 #086176;
  border-right: solid 3px #086176;
  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(110deg, #057AB9, #0B6C74);
  color: #fff;
  border-radius: 25px;
  border: 0;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background-color .3s, color .3s, border .3s;
  border: 2px solid transparent;
}
.lp #button_confirm:hover {
  background: none;
  background-color: #fff;
  color: #086176;
  border: 2px solid #086176;
}
@media screen and (max-width:767px) {
  .lp .btm-bg {
    /* background: url(../img/lp_azure-support/img/sp/btm-bg.jpg) no-repeat center top / cover; */
  }
  .lp .btm-bg-bg img{
    max-width: 375px;
    width: 100%;
  }

  .lp .form__wrapper{
    padding: 65px 30px 62px;
  }
  .lp .form__bg {
    border-radius: 5px;
  }
  .lp .form__ttl {
    margin-bottom: 12px;
    font-size: 2.2rem;
    line-height: 1.363;
  }
  .lp .form__inner {
    padding: 0 20px 50px;
  }
  .lp .form__note {
    margin-bottom: 33px;
    font-size: 1.4rem;
    line-height: 1.571;
    text-align: center;
  }
  .lp .form__red {
    margin-bottom: 40px;
  }
  .lp .form__subttl {
    margin-bottom: 23px;
  }
  .lp .form__unit {
    margin-bottom: 21px;
  }
  .lp .form__unit--select {
    margin-bottom: 60px;
  }
  .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 .form__selectBox {
    width: 100%;
  }
  .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: 59px;
  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_azure-support/img/arw.svg) no-repeat;
    background-size: contain;
    width: 23px;
    height: 14px;
    transform: translateY(-50%);
}
@media screen and (max-width:767px) {
  .thanks .thanks__wrapper {
    padding: 121px 0 100px;
  }
  .thanks__txt {
    margin-bottom: 36px;
    font-size: 1.4rem;
    line-height: 1.571;
  }
  .thanks__btn {
    width: 275px;
    height: 55px;
    border-radius: 27px;
    font-size: 1.6rem;
  }
}
/* footer---------------*/
.footer {
    position: relative;
    z-index: 0;
}
.thanks .footer {
  /* background: url(../img/lp_azure-support/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{
  top: 0;
  right: 0;
}
.thanks .footer .thanks-bg-03{
  bottom: 0;
  left: 0;
}
.thanks .footer .thanks-bg-04{
  bottom: 0;
  right: 0;
}

.footer .footer__wrapper {
  position: relative;
    z-index: 1;
    padding-bottom: 56px;
}
/* .lp .form__bg {
  padding-top: 47px;
} */
.footer .footer__contact {
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
.footer .footer__contact-title {
  margin-bottom: 37px;
  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: 345px;
  height: 62px;
}
.footer .footer__contact-item:nth-child(2) {
  width: 335px;
}
.footer .footer__contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #183575;
  box-sizing: border-box;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background-color .3s, color .3s;
}
.footer .footer__contact-link:hover {
  background-color: #fff;
  color: #086176;
}
.footer .footer__contact-company {
  display: flex;
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}
.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: 17px;
}
.footer .footer__contact-tel-number {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 4.5rem;
  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;
  transition: opacity .3s;
}
.footer .footer__bottom-item a:hover {
  opacity: .8;
}
.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;
  font-family: "ヒラギノ角ゴシック", "Noto Sans JP", sans-serif;
}

@media screen and (max-width:767px) {
  .footer {
    position: relative;
    z-index: 0;
}
.thanks .footer {
  /* background: url(../img/lp_azure-support/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 37px;
}
.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 34px;
  padding: 0 10px;
}
.footer .footer__contact-item {
  /* width: 32%; */
  width: 100%;
  height: 60px;
}
.footer .footer__contact-item:nth-child(2) {
  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: 11px;
}
.footer .footer__company-item:first-child {
    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: 3.2rem;
}
.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;
}
