@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,600,700&display=swap&subset=japanese");
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* =========================================================
display - ブレイクポイントごとに表示切替
========================================================= */
.ut_none {
  display: none !important;
}

.ut_inline {
  display: inline !important;
}

.ut_inline_block {
  display: inline-block !important;
}

.ut_block {
  display: block !important;
}

.ut_table {
  display: table !important;
}

.ut_table_row {
  display: table-row !important;
}

.ut_table_cell {
  display: table-cell !important;
}

.ut_flex {
  display: flex !important;
}

.ut_inline_flex {
  display: inline-flex !important;
}

@media screen and (min-width: 576px) {
  .ut_sm_none {
    display: none !important;
  }
  .ut_sm_inline {
    display: inline !important;
  }
  .ut_sm_inline_block {
    display: inline-block !important;
  }
  .ut_sm_block {
    display: block !important;
  }
  .ut_sm_table {
    display: table !important;
  }
  .ut_sm_table_row {
    display: table-row !important;
  }
  .ut_sm_table_cell {
    display: table-cell !important;
  }
  .ut_sm_flex {
    display: flex !important;
  }
  .ut_sm_inline_flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 767px) {
  .ut_md_none {
    display: none !important;
  }
  .ut_md_inline {
    display: inline !important;
  }
  .ut_md_inline_block {
    display: inline-block !important;
  }
  .ut_md_block {
    display: block !important;
  }
  .ut_md_table {
    display: table !important;
  }
  .ut_md_table_row {
    display: table-row !important;
  }
  .ut_md_table_cell {
    display: table-cell !important;
  }
  .ut_md_flex {
    display: flex !important;
  }
  .ut_md_inline_flex {
    display: inline-flex !important;
  }
}
.ut_ta_l {
  text-align: left;
}
@media screen and (min-width: 767px) {
  .ut_ta_l--md {
    text-align: left !important;
  }
}
@media screen and (min-width: 992px) {
  .ut_ta_l--lg {
    text-align: left !important;
  }
}

.ut_ta_c {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .ut_ta_c--md {
    text-align: center !important;
  }
}
@media screen and (min-width: 992px) {
  .ut_ta_c--lg {
    text-align: center !important;
  }
}

.ut_ta_r {
  text-align: right;
}
@media screen and (min-width: 576px) {
  .ut_ta_r--sm {
    text-align: right !important;
  }
}
@media screen and (min-width: 767px) {
  .ut_ta_r--md {
    text-align: right !important;
  }
}
@media screen and (min-width: 992px) {
  .ut_ta_r--lg {
    text-align: right !important;
  }
}

.ut_ff_en {
  font-family: "Lato", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

.ut_fw_l {
  font-weight: 400;
}

.ut_fw_m {
  font-weight: 500;
}

.ut_fw_b {
  font-weight: bold;
}

.ut_lh_1_2 {
  line-height: 1.2;
}

.ut_lh_1_3 {
  line-height: 1.3;
}

.ut_lh_1_8 {
  line-height: 1.8;
}

.ut_lh_2 {
  line-height: 2;
}

.ut_ls_0 {
  letter-spacing: 0;
}

.ut_ls_01 {
  letter-spacing: 0.1em;
}

.ut_fc_white {
  color: #fff;
}

.ut_bg_white {
  background-color: #fff;
}

.ut_bg_blue {
  background-color: #008fe8;
}

.ut_ul_yellow {
  background: linear-gradient(transparent 65%, #fff844 65%);
}

.ut_in_shadow {
  box-shadow: inset 10px 15px 15px rgba(75, 75, 75, 0.2);
}

.ut_slash {
  position: relative;
  display: inline-block;
}
.ut_slash::before, .ut_slash::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 25px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 766px) {
  .ut_slash::before, .ut_slash::after {
    bottom: 8px;
    margin: 0 5px;
    width: 18px;
  }
}
.ut_slash::before {
  left: -25px;
  transform: rotate(55deg);
}
.ut_slash::after {
  right: -25px;
  transform: rotate(-55deg);
}
.ut_slash--black::before, .ut_slash--black::after {
  background-color: #000;
}

@media screen and (min-width: 992px) {
  .ut_hover {
    transition: 0.3s;
  }
}
@media screen and (min-width: 992px) {
  .ut_hover:hover {
    opacity: 0.7;
  }
}

#floatingBtn {
  position: fixed;
  display: inline-flex;
  flex-direction: column;
  top: 50%;
  right: 0;
  align-items: flex-end;
  transform: translateY(-50%);
  gap: 5px;
  z-index: 1000;
}
@media screen and (max-width: 766px) {
  #floatingBtn {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  #floatingBtn {
    display: none;
  }
}
#floatingBtn a {
  display: inline-block;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.4));
}
#floatingBtn a.seminar-btn {
  margin-top: 50px;
}

#floatingBtnSP {
  position: fixed;
  bottom: 0;
  left: 50%;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  width: 100%;
  z-index: 1000;
  transform: translateX(-50%);
}
@media screen and (min-width: 576px) {
  #floatingBtnSP {
    display: none;
  }
}
#floatingBtnSP .btn-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}
#floatingBtnSP .btn-wrapper .upper-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#floatingBtnSP .btn-wrapper .upper-btn a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 15px 0 0;
  text-align: center;
  width: 100%;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background-color: #041a54;
  border: 2px solid #fff;
  text-decoration: none;
}
#floatingBtnSP .btn-wrapper .upper-btn a::after {
  content: "";
  position: absolute;
  top: 42%;
  transform: rotate(45deg);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
#floatingBtnSP .btn-wrapper .upper-btn a p {
  margin: 0;
}
#floatingBtnSP .btn-wrapper .upper-btn a p.sub-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 50px;
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #015eea;
}
#floatingBtnSP .btn-wrapper .upper-btn a p.main-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  font-size: 16px;
  font-size: 1rem;
}
#floatingBtnSP .btn-wrapper .bottom-btn {
  display: flex;
  width: 100%;
  height: 60px;
}
#floatingBtnSP .btn-wrapper .bottom-btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid #fff;
  text-decoration: none;
}
#floatingBtnSP .btn-wrapper .bottom-btn a::after {
  content: "";
  position: absolute;
  top: 42%;
  transform: rotate(45deg);
}
#floatingBtnSP .btn-wrapper .bottom-btn a.diagnosis {
  color: #000;
  background-color: #ffec15;
}
#floatingBtnSP .btn-wrapper .bottom-btn a.diagnosis::after {
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
#floatingBtnSP .btn-wrapper .bottom-btn a.download {
  color: #fff;
  background-color: #008fe8;
}
#floatingBtnSP .btn-wrapper .bottom-btn a.download::after {
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

#azure-lp {
  position: relative;
  margin: auto;
  max-width: 1100px;
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #000;
}
@media screen and (min-width: 767px) {
  #azure-lp {
    font-size: 16px;
    font-size: 1rem;
  }
}
#azure-lp,
#azure-lp * {
  box-sizing: border-box;
}
#azure-lp h1,
#azure-lp h2,
#azure-lp h3,
#azure-lp h4,
#azure-lp h5,
#azure-lp h6 {
  margin: 0;
}
#azure-lp p {
  margin: 0;
}
#azure-lp a {
  color: inherit;
  text-decoration: none;
}
#azure-lp ul,
#azure-lp ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#azure-lp dl,
#azure-lp dt,
#azure-lp dd {
  margin: 0;
  padding: 0;
}
#azure-lp img {
  display: block;
  height: auto;
  max-width: 100%;
}
#azure-lp .pc-only {
  display: block;
}
@media screen and (max-width: 766px) {
  #azure-lp .pc-only {
    display: none;
  }
}
#azure-lp .sp-only {
  display: none;
}
@media screen and (max-width: 766px) {
  #azure-lp .sp-only {
    display: block;
  }
}
#azure-lp .fv-pc {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  #azure-lp .fv-pc {
    display: none;
  }
}
#azure-lp .fv-pc .txt-wrapper {
  position: absolute;
  top: 12.2%;
  left: 5.4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#azure-lp .fv-pc .txt-wrapper__phrase {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  #azure-lp .fv-pc .txt-wrapper__phrase {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#azure-lp .fv-pc .txt-wrapper__main {
  margin-top: 0px;
  padding: 0 5px;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  #azure-lp .fv-pc .txt-wrapper__main {
    margin-top: 0;
    font-size: 36px;
    font-size: 2.25rem;
  }
}
#azure-lp .fv-pc .txt-wrapper__main .en {
  font-size: 79px;
  font-size: 4.9375rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  #azure-lp .fv-pc .txt-wrapper__main .en {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
#azure-lp .fv-pc .txt-wrapper__sub {
  margin-top: 19px;
  margin-left: 6px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  #azure-lp .fv-pc .txt-wrapper__sub {
    margin-left: 0;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
#azure-lp .fv-pc .txt-wrapper__img {
  margin-top: 25px;
}
@media screen and (max-width: 991px) {
  #azure-lp .fv-pc .txt-wrapper__img {
    width: 75%;
  }
}
#azure-lp .fv-sp {
  display: none;
}
@media screen and (max-width: 766px) {
  #azure-lp .fv-sp {
    display: block;
    margin-top: 25px;
    padding: 0 20px;
  }
}
#azure-lp .fv-sp .txt-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
#azure-lp .fv-sp .txt-wrapper__phrase {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
}
#azure-lp .fv-sp .txt-wrapper__main {
  margin-top: 0px;
  padding: 0 5px;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}
#azure-lp .fv-sp .txt-wrapper__main .en {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
#azure-lp .fv-sp .txt-wrapper__sub {
  margin-top: 19px;
  margin-left: 6px;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}
#azure-lp .fv-sp .txt-wrapper__fv-sp {
  margin: 25px auto 0;
  max-width: 645px;
}
#azure-lp .fv-sp .txt-wrapper__img {
  margin-top: 25px;
}
#azure-lp .cta {
  padding: 33px 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta {
    padding: 30px 15px;
  }
}
#azure-lp .cta_ttl {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .cta_ttl .num {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_ttl .num {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
#azure-lp .cta_btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper {
    flex-direction: column;
  }
}
#azure-lp .cta_btn-wrapper a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
  padding: 15px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  font-weight: 600;
  line-height: 1;
  border: 4px solid #fff;
  border-radius: 50px;
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper a {
    flex-direction: column;
    padding: 10px;
  }
}
#azure-lp .cta_btn-wrapper a::after {
  content: "";
  position: absolute;
  top: 42%;
  transform: rotate(45deg);
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper a::after {
    top: 35%;
  }
}
#azure-lp .cta_btn-wrapper a.diagnosis {
  height: 60px;
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #ffec15;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper a.diagnosis {
    height: 55px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .cta_btn-wrapper a.diagnosis::after {
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper a.diagnosis::after {
    width: 12px;
    height: 12px;
  }
}
#azure-lp .cta_btn-wrapper a.download {
  height: 60px;
  font-size: 18px;
  font-size: 1.125rem;
  background-color: #f1f1f1;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper a.download {
    margin-top: 20px;
    max-width: 250px;
    height: 45px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
#azure-lp .cta_btn-wrapper a.download::after {
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_btn-wrapper a.download::after {
    width: 8.5px;
    height: 8.5px;
  }
}
#azure-lp .cta_02 {
  margin-top: 75px;
  padding: 37px 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_02 {
    margin-top: 35px;
    padding: 30px 15px;
  }
}
#azure-lp .cta_02_subttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_02_subttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .cta_02_ttl {
  margin-top: 10px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_02_ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .cta_02_ttl .num {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .cta_02_ttl .num {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
#azure-lp .problem {
  position: relative;
  padding: 35px 20px 20px;
  background: linear-gradient(to bottom, #ced5d6, #e9e9e9);
}
@media screen and (max-width: 766px) {
  #azure-lp .problem {
    padding: 35px 15px;
  }
}
#azure-lp .problem_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#azure-lp .problem_ttl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_ttl {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#azure-lp .problem_list {
  position: relative;
  margin-top: 15px;
  padding: 3px 30px;
  max-width: 420px;
  width: 100%;
  background-color: #323a3c;
  border-radius: 10px;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_list {
    padding: 5px 15px;
  }
}
#azure-lp .problem_list::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: -226px;
  width: 216px;
  height: 168px;
  background-image: url(../images/img_problem_left.png);
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  #azure-lp .problem_list::before {
    bottom: 30px;
    left: -150px;
    width: 140px;
    height: 109px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_list::before {
    display: none;
  }
}
#azure-lp .problem_list::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 20px;
  right: -138px;
  width: 108px;
  height: 134px;
  background-image: url(../images/img_problem_right.png);
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  #azure-lp .problem_list::after {
    right: -122px;
    width: 92px;
    height: 114px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_list::after {
    display: none;
  }
}
#azure-lp .problem_list li {
  padding: 12px 0 12px 30px;
  background-image: linear-gradient(to right, #fff 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#azure-lp .problem_list li:nth-last-child(1) {
  background: none;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_list li {
    padding-left: 25px;
  }
}
#azure-lp .problem_list li p {
  position: relative;
  padding-left: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  color: #fff;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_list li p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
#azure-lp .problem_list li p::before {
  content: "";
  position: absolute;
  left: -25px;
  width: 17px;
  height: 17px;
  background-color: #fff;
}
#azure-lp .problem_list li p::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -22px;
  width: 15px;
  height: 8px;
  border-left: 2px solid #0390e8;
  border-bottom: 2px solid #0390e8;
  transform: rotate(-45deg);
}
#azure-lp .problem_possibility {
  max-width: 840px;
  width: 100%;
}
#azure-lp .problem_possibility_wrapper {
  margin: 30px auto 0;
  padding: 15px 20px 20px;
  text-align: center;
  max-width: 840px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_wrapper {
    padding: 15px;
  }
}
#azure-lp .problem_possibility_ttl {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .problem_possibility_txt {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 991px) {
  #azure-lp .problem_possibility_txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_txt {
    margin-top: 10px;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: normal;
  }
}
#azure-lp .problem_possibility_txt sup {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_txt sup {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_txt .ut_ul_yellow {
    display: inline-block;
    margin-top: -10px;
  }
}
#azure-lp .problem_possibility_num {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 991px) {
  #azure-lp .problem_possibility_num {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_num {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1;
  }
}
#azure-lp .problem_possibility_annotation {
  margin-top: 5px;
  margin-right: 10px;
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_possibility_annotation {
    margin-right: 5px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#azure-lp .problem_shadow {
  position: absolute;
  bottom: -40px;
  right: 0;
  left: 0;
  margin: auto;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_shadow {
    bottom: -35px;
  }
}
#azure-lp .problem_arrow {
  margin: auto;
  height: 63px;
  width: 227px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .problem_arrow {
    height: 55px;
    width: 200px;
  }
}
#azure-lp .record {
  padding: 50px 20px 55px;
  background-color: #e0f2ff;
}
#azure-lp .record_ttl {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#azure-lp .record_ttl_emphasis {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: bold;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_ttl_emphasis {
    display: inline-block;
    margin-top: 15px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
#azure-lp .record_circle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 0;
  max-width: 820px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle {
    flex-direction: column;
  }
}
#azure-lp .record_circle_first, #azure-lp .record_circle_second, #azure-lp .record_circle_third {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  background-color: #fff;
  border-radius: 50%;
  border-left: 4px solid #fff;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 991px) {
  #azure-lp .record_circle_first, #azure-lp .record_circle_second, #azure-lp .record_circle_third {
    width: 230px;
    height: 230px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first, #azure-lp .record_circle_second, #azure-lp .record_circle_third {
    width: 225px;
    height: 225px;
  }
}
#azure-lp .record_circle_first p, #azure-lp .record_circle_second p, #azure-lp .record_circle_third p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
#azure-lp .record_circle_first .fs12, #azure-lp .record_circle_second .fs12, #azure-lp .record_circle_third .fs12 {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs12, #azure-lp .record_circle_second .fs12, #azure-lp .record_circle_third .fs12 {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
#azure-lp .record_circle_first .fs20, #azure-lp .record_circle_second .fs20, #azure-lp .record_circle_third .fs20 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs20, #azure-lp .record_circle_second .fs20, #azure-lp .record_circle_third .fs20 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .record_circle_first .fs30, #azure-lp .record_circle_second .fs30, #azure-lp .record_circle_third .fs30 {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs30, #azure-lp .record_circle_second .fs30, #azure-lp .record_circle_third .fs30 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
#azure-lp .record_circle_first .fs34, #azure-lp .record_circle_second .fs34, #azure-lp .record_circle_third .fs34 {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs34, #azure-lp .record_circle_second .fs34, #azure-lp .record_circle_third .fs34 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
#azure-lp .record_circle_first .fs44, #azure-lp .record_circle_second .fs44, #azure-lp .record_circle_third .fs44 {
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs44, #azure-lp .record_circle_second .fs44, #azure-lp .record_circle_third .fs44 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
#azure-lp .record_circle_first .fs50, #azure-lp .record_circle_second .fs50, #azure-lp .record_circle_third .fs50 {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs50, #azure-lp .record_circle_second .fs50, #azure-lp .record_circle_third .fs50 {
    font-size: 46px;
    font-size: 2.875rem;
  }
}
#azure-lp .record_circle_first .fs60, #azure-lp .record_circle_second .fs60, #azure-lp .record_circle_third .fs60 {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_first .fs60, #azure-lp .record_circle_second .fs60, #azure-lp .record_circle_third .fs60 {
    font-size: 56px;
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_second {
    margin-top: 20px;
  }
}
#azure-lp .record_circle_second p {
  margin-top: 25px;
}
#azure-lp .record_circle_second .fs12 {
  padding-top: 5px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_second .fs12 {
    padding-top: 10px;
  }
}
#azure-lp .record_circle_second .fs30 {
  line-height: 1.2;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_third {
    margin-top: 20px;
  }
}
#azure-lp .record_circle_third p {
  margin-top: 30px;
}
#azure-lp .record_circle_third .fs20 {
  margin-top: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 766px) {
  #azure-lp .record_circle_third .fs20 {
    margin-top: 10px;
  }
}
#azure-lp .record_circle_third .fs44 {
  line-height: 1.2;
}
#azure-lp .report {
  margin-top: 60px;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 766px) {
  #azure-lp .report {
    margin-top: 40px;
  }
}
#azure-lp .report a {
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  #azure-lp .report a {
    max-width: 400px;
  }
}
#azure-lp .report a img {
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.2));
}
#azure-lp .award {
  padding: 70px 20px 62px;
}
@media screen and (max-width: 766px) {
  #azure-lp .award {
    padding: 40px 20px;
  }
}
#azure-lp .award_ttl {
  text-align: center;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_ttl {
    margin-bottom: 40px;
  }
}
#azure-lp .award_ttl_en {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_ttl_en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .award_ttl_jp {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_ttl_jp {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
#azure-lp .award_upper {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: auto;
}
#azure-lp .award_upper::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 10px;
  left: -125px;
  width: 117px;
  height: 227px;
  background-image: url(../images/img_award_left.png);
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_upper::before {
    display: none;
  }
}
#azure-lp .award_upper_sub {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_upper_sub {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
#azure-lp .award_upper_main {
  padding-bottom: 25px;
  font-size: 55px;
  font-size: 3.4375rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_upper_main {
    padding-bottom: 15px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
#azure-lp .award_upper_main .num {
  font-size: 66px;
  font-size: 4.125rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_upper_main .num {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
#azure-lp .award_bottom {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 65px auto 0;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_bottom {
    margin-top: 35px;
  }
}
#azure-lp .award_bottom::before {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -49px;
  right: -122px;
  width: 139px;
  height: 212px;
  background-image: url(../images/img_award_right.png);
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_bottom::before {
    display: none;
  }
}
#azure-lp .award_bottom_sub {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_bottom_sub {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#azure-lp .award_bottom_main {
  margin-top: 10px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_bottom_main {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
#azure-lp .award_laurel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_laurel {
    margin-top: 0;
  }
}
#azure-lp .award_laurel_txt {
  text-align: center;
  max-width: 365px;
  width: 100%;
}
#azure-lp .award_detail_history {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_detail_history {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#azure-lp .award_detail_txt {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_detail_txt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#azure-lp .award_phrase {
  margin-top: 47px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  #azure-lp .award_phrase {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .award_phrase {
    text-align: center;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
#azure-lp .award_phrase_emphasis {
  color: #008fe8;
}
#azure-lp .award_seminar {
  margin-top: 80px;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar {
    margin-top: 50px;
  }
}
#azure-lp .award_seminar_cta {
  position: relative;
  text-align: center;
}
#azure-lp .award_seminar_cta img {
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.2));
}
#azure-lp .award_seminar_cta_btn {
  position: absolute;
  bottom: 6%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar_cta_btn {
    bottom: 4%;
  }
}
#azure-lp .award_seminar_cta_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 20px 15px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15rem;
  border: 4px solid #fff;
  border-radius: 50px;
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 991px) {
  #azure-lp .award_seminar_cta_btn a {
    padding: 10px 15px;
    max-width: 250px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar_cta_btn a {
    padding: 10px;
  }
}
#azure-lp .award_seminar_cta_btn a::after {
  content: "";
  position: absolute;
  top: 42%;
  transform: rotate(45deg);
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar_cta_btn a::after {
    top: 35%;
  }
}
#azure-lp .award_seminar_cta_btn a.diagnosis {
  padding-right: 25px;
  height: 60px;
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #ffec15;
}
@media screen and (max-width: 991px) {
  #azure-lp .award_seminar_cta_btn a.diagnosis {
    height: 50px;
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar_cta_btn a.diagnosis {
    height: 50px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
#azure-lp .award_seminar_cta_btn a.diagnosis::after {
  right: 57px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar_cta_btn a.diagnosis::after {
    width: 12px;
    height: 12px;
  }
}
#azure-lp .award_seminar_cta .optimization {
  display: inline-block;
  margin: auto;
}
@media screen and (max-width: 766px) {
  #azure-lp .award_seminar_cta .optimization {
    max-width: 400px;
  }
}
#azure-lp .important {
  margin-top: 0;
}
#azure-lp .important_ttl {
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
#azure-lp .important_emphasis {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_emphasis {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
#azure-lp .important_anxiety {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 43px auto 0;
  padding: 0 15px;
  max-width: 960px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety {
    flex-direction: column;
    padding: 0 15px;
  }
}
#azure-lp .important_anxiety_wrapper {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #azure-lp .important_anxiety_wrapper {
    max-width: 240px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 360px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_wrapper:nth-child(n+2) {
    margin-top: 20px;
  }
}
#azure-lp .important_anxiety_top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #fff;
  background-color: #008fe8;
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  #azure-lp .important_anxiety_top {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_top {
    padding: 0 15px;
    text-align: left;
    height: 110px;
    max-width: 160px;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
}
#azure-lp .important_anxiety_center {
  position: relative;
  height: 41px;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_center {
    max-width: 24px;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
}
#azure-lp .important_anxiety_center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 19px;
  height: 16px;
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_center::before {
    top: 18%;
    left: -10px;
    height: 19px;
    width: 17px;
  }
}
#azure-lp .important_anxiety_center::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin: auto;
  height: 16px;
  width: 39px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_center::after {
    top: 25%;
    left: 0px;
    height: 12px;
    width: 38px;
    transform: rotate(-90deg);
  }
}
#azure-lp .important_anxiety_bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #000;
  border: 4px solid #008fe8;
  border-radius: 50px;
}
@media screen and (max-width: 991px) {
  #azure-lp .important_anxiety_bottom {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .important_anxiety_bottom {
    padding: 0 12px;
    text-align: left;
    height: 110px;
    max-width: 160px;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
    border-radius: 10px;
  }
}
#azure-lp .important_img img {
  margin: 70px auto 0;
}
@media screen and (max-width: 766px) {
  #azure-lp .important_img img {
    margin-top: 40px;
  }
}
#azure-lp .optimization {
  margin-top: 80px;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization {
    margin-top: 60px;
  }
}
#azure-lp .optimization_ttl {
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_ttl {
    padding-left: 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
#azure-lp .optimization_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 51px auto 0;
  padding-left: 20px;
  max-width: 895px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_wrapper {
    padding: 0;
    max-width: 768px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
}
#azure-lp .optimization_box {
  position: relative;
  width: 100%;
}
#azure-lp .optimization_box-step1 {
  min-width: 308px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_box-step1 {
    min-width: 250px;
  }
}
#azure-lp .optimization_box-step2 {
  min-width: 308px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_box-step2 {
    min-width: 250px;
  }
}
#azure-lp .optimization_box-step3 {
  min-width: 308px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_box-step3 {
    min-width: 250px;
  }
}
#azure-lp .optimization_container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  height: 302px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container {
    flex-direction: row;
    padding-right: 0;
    height: 200px;
  }
}
#azure-lp .optimization_container_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container_left {
    min-width: 150px;
  }
}
#azure-lp .optimization_container_step {
  margin-top: 5px;
  padding-left: 20px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_container_step {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container_step {
    padding-left: 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#azure-lp .optimization_container_ttl {
  margin-top: 15px;
  padding-left: 10px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_container_ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container_ttl {
    margin-top: 0px;
    padding-left: 0;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}
#azure-lp .optimization_container_txt {
  margin-top: 20px;
  padding-left: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_container_txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container_txt {
    text-align: left;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
#azure-lp .optimization_container-step1 {
  position: relative;
  padding-bottom: 30px;
  padding-right: 10px;
  min-width: 308px;
  background-color: #f1f9ff;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 0 50%);
          clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 0 50%);
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_container-step1 {
    min-width: 260px;
    max-width: 260px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container-step1 {
    margin: -20px auto 0;
    padding-bottom: 0;
    min-width: auto;
    max-width: none;
    -webkit-clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
            clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  }
}
#azure-lp .optimization_container-step1 .optimization_container_step {
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container-step1 .optimization_container_step {
    margin-top: 20px;
  }
}
#azure-lp .optimization_container-step1 .optimization_container_txt {
  padding-left: 0;
}
#azure-lp .optimization_container-step2 {
  position: relative;
  margin-left: -10px;
  padding-bottom: 10px;
  min-width: 308px;
  background-color: #e0f2ff;
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
          clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_container-step2 {
    margin-left: -1%;
    min-width: 260px;
    max-width: 260px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container-step2 {
    margin: -15px auto 0;
    padding-bottom: 0;
    min-width: auto;
    max-width: none;
    -webkit-clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%);
            clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%);
  }
}
#azure-lp .optimization_container-step2 .optimization_container_img {
  padding-bottom: 0;
  padding-left: 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container-step2 .optimization_container_img {
    padding-left: 0;
  }
}
#azure-lp .optimization_container-step2 .optimization_container_step {
  margin-top: 10px;
}
#azure-lp .optimization_container-step2 .optimization_container_ttl {
  margin-top: 15px;
  padding-left: 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container-step2 .optimization_container_ttl {
    margin-top: 0;
    padding-left: 0;
  }
}
#azure-lp .optimization_container-step3 {
  position: relative;
  margin-left: -20px;
  padding-right: 8px;
  padding-bottom: 10px;
  min-width: 302px;
  max-width: 302px;
  background-color: #a8dbff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 5% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 5% 50%);
}
@media screen and (max-width: 991px) {
  #azure-lp .optimization_container-step3 {
    margin-left: -2%;
    min-width: 260px;
    max-width: 260px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .optimization_container-step3 {
    margin: -15px auto 0;
    padding-bottom: 0;
    min-width: auto;
    max-width: none;
    -webkit-clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 50% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 10%, 100% 0, 100% 100%, 50% 100%, 0 100%);
  }
}
#azure-lp .optimization_container-step3 .optimization_container_step {
  margin-top: 10px;
}
#azure-lp .reason {
  margin-top: 87px;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason {
    margin-top: 60px;
  }
}
#azure-lp .reason_subttl {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_subttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .reason_ttl {
  margin-top: 13px;
  padding-left: 6px;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_ttl {
    padding-left: 0;
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.1rem;
  }
}
#azure-lp .reason_slider {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto 20px;
  padding: 75px 0 80px 50px;
  max-width: 900px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  filter: drop-shadow(0 5px 5px rgba(100, 100, 100, 0.4));
}
@media screen and (max-width: 991px) {
  #azure-lp .reason_slider {
    margin: 40px;
    width: auto;
    height: 530px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_slider {
    flex-direction: column;
    padding: 60px 15px 40px;
  }
}
#azure-lp .reason_slider_left {
  width: 47%;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_slider_left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-grow: 1;
    width: 100%;
  }
}
#azure-lp .reason_slider_right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_slider_right {
    width: 35%;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .reason_slider_right {
    width: 50%;
  }
}
#azure-lp .reason_slider_num {
  position: absolute;
  top: 0;
  font-size: 100px;
  font-size: 6.25rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #e0f2ff;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_slider_num {
    font-size: 80px;
    font-size: 5rem;
  }
}
#azure-lp .reason_slider_ttl {
  position: relative;
  margin-top: 10px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_slider_ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#azure-lp .reason_slider_txt {
  margin-top: 25px;
  text-align: justify;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (max-width: 766px) {
  #azure-lp .reason_slider_txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .reason_swiper-button-next, #azure-lp .reason_swiper-button-prev {
  top: 48%;
  color: #9c9c9c;
}
#azure-lp .reason_swiper-button-next {
  right: 35px;
}
@media screen and (max-width: 991px) {
  #azure-lp .reason_swiper-button-next {
    right: 5px;
  }
}
#azure-lp .reason_swiper-button-prev {
  left: 37px;
}
@media screen and (max-width: 991px) {
  #azure-lp .reason_swiper-button-prev {
    left: 5px;
  }
}
#azure-lp .case {
  margin: auto;
  padding: 70px 15px 0;
  max-width: 840px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  #azure-lp .case {
    padding: 40px 15px 0;
  }
}
#azure-lp .case_ttl {
  text-align: center;
}
#azure-lp .case_ttl_en {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_ttl_en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .case_ttl_jp {
  padding-left: 6px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_ttl_jp {
    padding-right: 0;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
#azure-lp .case_company {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_company {
    flex-direction: column;
    margin-top: 25px;
    margin-left: 0;
  }
}
#azure-lp .case_company_name {
  margin: 0 30px;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_company_name {
    margin: 20px 0 0;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#azure-lp .case_company img {
  margin-top: 5px;
}
#azure-lp .case_table {
  margin-top: 25px;
}
#azure-lp .case_table table {
  border-spacing: 5px 6px;
  height: 100%;
}
#azure-lp .case_table table tr {
  margin-top: 10px;
  border: none;
}
#azure-lp .case_table table tr th {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 190px;
  height: 43px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_table table tr th {
    height: 100%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .case_table table tr th {
    min-width: 120px;
  }
}
#azure-lp .case_table table tr td {
  padding-left: 30px;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  background-color: #cee7fa;
  border: none;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_table table tr td {
    padding: 10px 20px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .case_table table tr td {
    padding: 10px;
  }
}
#azure-lp .case_graph {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 42px;
  margin-right: 11px;
}
#azure-lp .case_txt {
  margin-top: 45px;
  padding: 0 8px;
  text-align: justify;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_txt {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
#azure-lp .case_txt_emphasis {
  font-weight: 600;
  color: #008fe8;
}
#azure-lp .case_sub_ttl {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_sub_ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .case_sub_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background-color: #f1f9ff;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_sub_contents {
    flex-direction: column;
  }
}
#azure-lp .case_sub_contents_left {
  padding-right: 20px;
  max-width: 360px;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  border-right: 1px solid #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_sub_contents_left {
    padding-bottom: 20px;
    padding-right: 0;
    font-size: 14px;
    font-size: 0.875rem;
    border-bottom: 1px solid #008fe8;
    border-right: none;
  }
}
#azure-lp .case_sub_contents_left_blue {
  display: flex;
  margin-top: 10px;
  font-weight: 600;
  color: #008fe8;
}
#azure-lp .case_sub_contents_left_blue::before {
  content: "〇";
}
#azure-lp .case_sub_contents_right {
  padding-left: 20px;
}
@media screen and (max-width: 766px) {
  #azure-lp .case_sub_contents_right {
    padding-top: 20px;
    padding-left: 0;
  }
}
#azure-lp .campaign {
  margin-top: 77px;
  padding: 50px 20px 38px;
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign {
    margin-top: 40px;
    padding: 40px 10px 30px;
  }
}
#azure-lp .campaign_subttl {
  text-align: center;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01rem;
  color: #fff;
}
@media screen and (max-width: 991px) {
  #azure-lp .campaign_subttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_subttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .campaign_subttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .campaign_ttl {
  text-align: center;
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
  color: #fff;
  background-color: #008fe8;
}
@media screen and (max-width: 991px) {
  #azure-lp .campaign_ttl {
    font-size: 46px;
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .campaign_ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
#azure-lp .campaign_ttl span {
  margin-left: 9px;
  padding-left: 20px;
  background: linear-gradient(transparent 65%, #0075be 65%);
}
@media screen and (max-width: 575px) {
  #azure-lp .campaign_ttl span {
    margin-left: 10px;
    padding-left: 0;
  }
}
#azure-lp .campaign_img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 23px;
  margin-right: 35px;
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_img {
    margin-right: 0;
  }
}
#azure-lp .campaign_txt {
  margin-top: 25px;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.07rem;
  color: #fff;
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .campaign_txt {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.02rem;
  }
}
#azure-lp .campaign_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_btn {
    flex-direction: column;
    padding: 0 15px;
  }
}
#azure-lp .campaign_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 32px 15px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15rem;
  border: 4px solid #fff;
  border-radius: 50px;
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_btn a {
    padding: 10px;
  }
}
#azure-lp .campaign_btn a::after {
  content: "";
  position: absolute;
  top: 42%;
  transform: rotate(45deg);
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_btn a::after {
    top: 35%;
  }
}
#azure-lp .campaign_btn a.diagnosis {
  padding-right: 25px;
  height: 60px;
  font-size: 24px;
  font-size: 1.5rem;
  background-color: #ffec15;
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_btn a.diagnosis {
    height: 55px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .campaign_btn a.diagnosis::after {
  right: 57px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .campaign_btn a.diagnosis::after {
    width: 12px;
    height: 12px;
  }
}
#azure-lp .flow {
  margin-top: 70px;
  padding: 75px 20px 50px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow {
    margin-top: 40px;
    padding: 40px 20px 20px;
  }
}
#azure-lp .flow_ttl {
  text-align: center;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_ttl {
    margin-bottom: 40px;
  }
}
#azure-lp .flow_ttl_en {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_ttl_en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .flow_ttl_jp {
  margin-top: 1px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.3;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_ttl_jp {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
#azure-lp .flow_step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 44px;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step {
    margin-top: 25px;
  }
}
#azure-lp .flow_step_container {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
  margin-bottom: 22px;
  padding: 0 40px 0 42px;
  height: 80px;
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step_container {
    padding: 0 20px;
    height: 70px;
  }
}
#azure-lp .flow_step_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#azure-lp .flow_step_en {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step_en {
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
  }
}
#azure-lp .flow_step_num {
  margin-top: 3px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step_num {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
#azure-lp .flow_step_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
  margin-left: 34px;
  min-width: 62px;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step_icon {
    margin-left: 20px;
    min-width: 48px;
    max-width: 48px;
  }
}
#azure-lp .flow_step_txt {
  margin-left: 25px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step_txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .flow_step_arrow {
  position: absolute;
  bottom: -21px;
  left: 50px;
  width: 18px;
  height: 22px;
  -webkit-clip-path: polygon(50% 30%, 50% 0, 100% 50%, 50% 100%, 50% 70%, 0 70%, 0 30%);
          clip-path: polygon(50% 30%, 50% 0, 100% 50%, 50% 100%, 50% 70%, 0 70%, 0 30%);
  background-color: #969696;
  transform: rotate(90deg);
}
@media screen and (max-width: 766px) {
  #azure-lp .flow_step_arrow {
    left: 27px;
  }
}
#azure-lp .faq {
  padding: 0 20px 100px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq {
    padding: 0 20px 40px;
  }
}
#azure-lp .faq_ttl {
  text-align: center;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_ttl {
    margin-bottom: 40px;
  }
}
#azure-lp .faq_ttl_en {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  color: #008fe8;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_ttl_en {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .faq_ttl_jp {
  margin-top: 1px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.3;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_ttl_jp {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
#azure-lp .faq_list {
  margin: 60px auto 0;
  max-width: 800px;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list {
    margin-top: 30px;
  }
}
#azure-lp .faq_list_wrapper {
  margin-top: 20px;
}
#azure-lp .faq_list_wrapper:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_wrapper {
    margin-top: 15px;
  }
}
#azure-lp .faq_list_question {
  position: relative;
  display: flex;
  align-items: center;
  padding: 22px 18px 20px 26px;
  color: #000;
  background: #cee7fa;
  cursor: pointer;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_question {
    padding: 10px 15px;
  }
}
#azure-lp .faq_list_answer {
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
#azure-lp .faq_list_answer_txt {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 25px 40px 25px 25px;
  text-align: justify;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_answer_txt {
    padding: 15px 20px;
  }
}
#azure-lp .faq_list_plus {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
  min-width: 36px;
  height: 36px;
  width: 36px;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_plus {
    min-height: 20px;
    min-width: 20px;
    height: 20px;
    width: 20px;
  }
}
#azure-lp .faq_list_plus::before, #azure-lp .faq_list_plus::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  width: 21px;
  height: 4px;
  background-color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_plus::before, #azure-lp .faq_list_plus::after {
    right: 0;
    width: 16px;
    height: 2px;
  }
}
#azure-lp .faq_list_plus::before {
  transform: rotate(90deg);
}
#azure-lp .faq_list_plus.is-opened::before {
  transform: rotate(45deg);
}
#azure-lp .faq_list_plus.is-opened::after {
  transform: rotate(-225deg);
}
#azure-lp .faq_list_en {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
  color: #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_en {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 600;
  }
}
#azure-lp .faq_list_jp {
  padding: 0 10px 0 30px;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .faq_list_jp {
    padding: 0 0 0 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .simulator {
  margin-top: 100px;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  background-color: #a8dbff;
  background-image: linear-gradient(-90deg, #b7e1ff 10%, transparent 10%), linear-gradient(#b7e1ff 10%, transparent 10%);
  background-size: 16px 16px;
  overflow: hidden;
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator {
    margin-top: 60px;
    padding: 30px 20px;
    overflow: visible;
  }
}
#azure-lp .simulator_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_wrapper {
    justify-content: center;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_wrapper {
    flex-direction: column;
  }
}
#azure-lp .simulator_right {
  position: relative;
  margin: 0 20px;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_right {
    margin: 0 0 20px 50px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_right {
    margin: 20px 0 0 0;
  }
}
#azure-lp .simulator_right::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -60px;
  right: 0;
  width: 108px;
  height: 133px;
  background-image: url(../images/img_simulator_decoration.png);
  background-size: contain;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_right::after {
    bottom: -100px;
    right: -10%;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_right::after {
    display: none;
  }
}
#azure-lp .simulator_ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#azure-lp .simulator_ttl_slash {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_ttl_slash {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_ttl_slash {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
#azure-lp .simulator_ttl_slash::before, #azure-lp .simulator_ttl_slash::after {
  content: "";
  position: absolute;
  bottom: 10px;
  height: 2px;
  width: 35px;
  background-color: #000;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_ttl_slash::before, #azure-lp .simulator_ttl_slash::after {
    width: 30px;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .simulator_ttl_slash::before, #azure-lp .simulator_ttl_slash::after {
    bottom: 15px;
    width: 40px;
  }
}
#azure-lp .simulator_ttl_slash::before {
  left: -35px;
  transform: rotate(45deg);
}
#azure-lp .simulator_ttl_slash::after {
  right: -35px;
  transform: rotate(-45deg);
}
#azure-lp .simulator_txt {
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_txt {
    margin-top: 15px;
  }
}
#azure-lp .simulator_txt p {
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  background: linear-gradient(transparent 70%, #eee 70%);
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_txt p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
}
#azure-lp .simulator_box {
  margin: 20px auto 0;
  padding: 15px;
  max-width: 500px;
  width: 100%;
  background-color: #323a3c;
  border-radius: 10px;
}
#azure-lp .simulator_box p {
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  color: #fff;
}
@media screen and (max-width: 991px) {
  #azure-lp .simulator_box p {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_box p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .simulator_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  z-index: 1000;
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_btn {
    flex-direction: column;
  }
}
#azure-lp .simulator_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
  padding: 15px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  font-weight: 600;
  line-height: 1;
  border: 4px solid #fff;
  border-radius: 50px;
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_btn a {
    flex-direction: column;
    padding: 10px;
  }
}
#azure-lp .simulator_btn a::after {
  content: "";
  position: absolute;
  top: 42%;
  transform: rotate(45deg);
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_btn a::after {
    top: 35%;
  }
}
#azure-lp .simulator_btn a.simulator {
  height: 60px;
  font-size: 20px;
  font-size: 1.25rem;
  background: #ffec15;
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_btn a.simulator {
    height: 55px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#azure-lp .simulator_btn a.simulator::after {
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}
@media screen and (max-width: 766px) {
  #azure-lp .simulator_btn a.simulator::after {
    width: 12px;
    height: 12px;
  }
}
#azure-lp .engineering {
  position: relative;
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering {
    padding: 0 15px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .engineering {
    margin-top: 60px;
  }
}
#azure-lp .engineering_chara {
  position: absolute;
  bottom: -30px;
  right: 25px;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering_chara {
    right: 15px;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .engineering_chara {
    max-width: 120px;
  }
}
#azure-lp .engineering_link {
  position: relative;
  display: inline-block;
  padding: 40px;
  width: 100%;
  background-color: #c2eccb;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering_link {
    padding: 40px 25px;
  }
}
@media screen and (max-width: 991px) {
  #azure-lp .engineering_link {
    padding: 30px 20px;
  }
}
#azure-lp .engineering_upper {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 991px) {
  #azure-lp .engineering_upper {
    flex-direction: column;
    justify-content: center;
  }
}
#azure-lp .engineering_upper_main {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering_upper_main {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .engineering_upper_main {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
#azure-lp .engineering_upper_list {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
#azure-lp .engineering_upper_list .normal,
#azure-lp .engineering_upper_list .irregular {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering_upper_list .normal,
#azure-lp .engineering_upper_list .irregular {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .engineering_upper_list .normal,
#azure-lp .engineering_upper_list .irregular {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .engineering_upper_list .normal {
  padding: 5px 10px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 15px;
}
#azure-lp .engineering_bottom {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  #azure-lp .engineering_bottom {
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
  }
}
#azure-lp .engineering_bottom_main {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering_bottom_main {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .engineering_bottom_main {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 575px) {
  #azure-lp .engineering_bottom_main {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#azure-lp .engineering_bottom_sub {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  padding-left: 25px;
  padding-bottom: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1199px) {
  #azure-lp .engineering_bottom_sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 991px) {
  #azure-lp .engineering_bottom_sub {
    margin-top: 15px;
  }
}
@media screen and (max-width: 766px) {
  #azure-lp .engineering_bottom_sub {
    margin-left: 0;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
#azure-lp .engineering_bottom_sub::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

#headerAzureLP {
  position: relative;
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  #headerAzureLP {
    margin-top: 10px;
  }
}
@media screen and (max-width: 766px) {
  #headerAzureLP {
    display: flex;
    margin-top: 0;
  }
}
#headerAzureLP .header-hamburger {
  max-width: 65px;
  width: 100%;
}
@media screen and (min-width: 767px) {
  #headerAzureLP .header-hamburger {
    display: none;
  }
}
#headerAzureLP .header-hamburger #hamburgerOpenBtn {
  max-width: 65px;
  cursor: pointer;
  z-index: 1001;
}
#headerAzureLP .header-hamburger #hamburgerCloseBtn {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 65px;
  cursor: pointer;
  z-index: 1002;
}
#headerAzureLP .header-hamburger #hamburgerMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 1000;
}
#headerAzureLP .header-hamburger #hamburgerMenu.active {
  opacity: 1;
  visibility: visible;
}
#headerAzureLP .header-hamburger .menu-content {
  margin-top: 72px;
  width: 100%;
}
#headerAzureLP .header-hamburger .menu-content ul li {
  width: 100%;
  border-bottom: 1px solid #fff;
}
#headerAzureLP .header-hamburger .menu-content ul li a {
  position: relative;
  display: inline-block;
  padding: 20px;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  background-color: #008fe8;
}
#headerAzureLP .header-hamburger .menu-content ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-hamburger .menu-content ul li a::after {
    width: 12px;
    height: 12px;
  }
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-hamburger .hamburger-btn-wrapper {
    flex-direction: column;
  }
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px;
  padding: 15px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  font-weight: 600;
  line-height: 1;
  border: 2px solid #fff;
  border-radius: 50px;
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-hamburger .hamburger-btn-wrapper a {
    flex-direction: column;
    padding: 10px;
  }
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.diagnosis, #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download {
  height: 60px;
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #ffec15;
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.diagnosis, #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download {
    height: 55px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.diagnosis::before, #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  vertical-align: middle;
  background-size: contain;
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.diagnosis::after, #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.diagnosis::after, #headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download::after {
    width: 12px;
    height: 12px;
  }
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.diagnosis::before {
  background: url(../images/ico_hamburger_contact.png) no-repeat;
  width: 19px;
  height: 14px;
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download {
  margin-top: 20px;
  color: #fff;
  background-color: #008fe8;
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download::before {
  background: url(../images/ico_hamburger_download.png) no-repeat;
  width: 16px;
  height: 19px;
}
#headerAzureLP .header-hamburger .hamburger-btn-wrapper a.download::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
#headerAzureLP .header-upper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1010;
}
@media screen and (max-width: 991px) {
  #headerAzureLP .header-upper {
    padding-top: 13px;
    padding-bottom: 3px;
    padding-left: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-upper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    border-bottom: 2px solid #989898;
  }
}
#headerAzureLP .header-upper.no-border {
  position: fixed;
  left: 65px;
  border: none;
  overflow: hidden;
}
#headerAzureLP .header-upper img {
  padding-right: 30px;
  border-right: 1px solid #434343;
}
@media screen and (max-width: 991px) {
  #headerAzureLP .header-upper img {
    padding-right: 20px;
  }
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-upper img {
    padding-right: 0;
    max-width: 200px;
    width: 100%;
    border: none;
  }
}
#headerAzureLP .header-upper p {
  display: inline-block;
  margin-left: 30px;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 991px) {
  #headerAzureLP .header-upper p {
    margin-left: 20px;
  }
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-upper p {
    margin-top: 5px;
    margin-left: 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 575px) {
  #headerAzureLP .header-upper p {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#headerAzureLP .header-bottom {
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  #headerAzureLP .header-bottom {
    display: none;
  }
}
#headerAzureLP .header-bottom__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  color: #fff;
  background-color: #008fe8;
}
#headerAzureLP .header-bottom__link li {
  padding: 0 45px;
}
@media screen and (max-width: 1199px) {
  #headerAzureLP .header-bottom__link li {
    padding: 0 25px;
  }
}
@media screen and (max-width: 991px) {
  #headerAzureLP .header-bottom__link li {
    padding: 0 15px;
  }
}
#headerAzureLP .header-bottom__link li:first-child {
  padding-left: 0;
}
#headerAzureLP .header-bottom__link li:last-child {
  padding-right: 0;
}
#headerAzureLP .header-bottom__link li:nth-child(n+2) {
  border-left: 1px solid #fff;
}
#headerAzureLP .header-bottom__link li a {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 991px) {
  #headerAzureLP .header-bottom__link li a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

#footerAzureLP {
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 575px) {
  #footerAzureLP {
    padding-bottom: 70px;
  }
}
#footerAzureLP .footer-inner {
  padding: 30px 0 0;
  width: 100%;
  background-color: #f5f5f5;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner {
    background-color: #fff;
  }
}
#footerAzureLP .footer-inner__container {
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container {
    flex-direction: column;
  }
}
#footerAzureLP .footer-inner__container .widget-area {
  padding: 0 20px;
  width: 33%;
  border-right: 1px solid #ccc;
}
#footerAzureLP .footer-inner__container .widget-area:last-child {
  border-right: none;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area {
    padding: 0;
    width: 100%;
  }
}
#footerAzureLP .footer-inner__container .widget-area .widget-ttl {
  margin: 0 0 20px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-ttl {
    margin-bottom: 0;
    padding: 10px 0 10px 30px;
    font-size: 14px;
    font-size: 0.875rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu {
  margin: 5px auto 0;
  padding: 0;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu {
    margin-top: 0;
  }
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__arrow li {
    margin-top: 0;
    padding: 0 30px;
    border-bottom: 1px dotted #000;
  }
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__arrow li:last-child {
    border-bottom: none;
  }
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__arrow li a {
  padding: 5px 0;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__arrow li a {
    padding: 15px 0;
  }
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__arrow li a::before {
  content: "";
  background: url("https://cloudsteady.jp/wp-content/themes/fsv-basic-corporate-blue/images/widget_lst_icon_main.png");
  position: relative;
  display: inline-block;
  margin-top: 4px;
  margin-right: 8px;
  min-width: 12px;
  min-height: 13px;
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__no-arrow {
  text-align: right;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__no-arrow {
    padding: 20px 30px 30px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #888;
  }
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu__no-arrow li a {
    margin-top: 10px;
  }
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu li {
  margin-top: 5px;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu li {
    margin-top: 0;
  }
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu li::marker {
  content: none;
}
#footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu li a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #0e67a3;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu li a {
    transition: 0.3s;
  }
}
@media screen and (min-width: 992px) {
  #footerAzureLP .footer-inner__container .widget-area .widget-list .widget-menu li a:hover {
    opacity: 0.7;
  }
}
#footerAzureLP .footer-inner__container .widget-area .logo-wrapper {
  margin: 40px auto 20px;
  text-align: right;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .footer-inner__container .widget-area .logo-wrapper {
    text-align: center;
  }
}
#footerAzureLP .copyright {
  margin: 0;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  background-color: #008fe8;
}
@media screen and (max-width: 766px) {
  #footerAzureLP .copyright {
    font-size: 12px;
    font-size: 0.75rem;
  }
}