@charset "utf-8";

/* start main */
@media screen and (max-width: 767px) {
  .main {
    margin-top: 105px;
  }
}
/* end main */

/* start bottom menu */
.bottom-menu {
  background-color: #1d4493;
}

.bottom-menu__list {
  display: flex;
  justify-content: center;
  height: 60px;
}

.bottom-menu__item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.bottom-menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  display: block;
  width: 1px;
  height: 80%;
}

.bottom-menu__item:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, .2);
  display: block;
  width: 1px;
  height: 80%;
}

.bottom-menu__item.current {
  background-color: rgba(255, 255, 255, 0.2);
}

.bottom-menu__link {
  color: #fff;
  padding: 0 55px;
  display: flex;
  align-items: center;
  transition: all .4s cubic-bezier(.455,.03,.515,.955);
}

.bottom-menu__link:hover {
  background-color: rgba(255, 255, 255, .2);
}

.bottom-menu__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.42;
  letter-spacing: 0.05em;
}

@media screen and (max-width:1024px) {
  .bottom-menu__text {
    font-size: 12px;
  }

  .bottom-menu__link {
    padding: 0 45px;
  }
}

@media screen and (max-width: 767px) {
  .bottom-menu {
    width: 100%;
    position: fixed;
    top: 55px;
    z-index: 3;
    box-shadow: 12px 0 18px 14px rgba(0, 0, 0, 0.17);
  }

  .bottom-menu__list {
    height: 50px;
  }

  .bottom-menu__item {
    width: 20%;
  }

  .bottom-menu__item:first-of-type:before {
    content: none;
  }

  .bottom-menu__item:last-of-type::after {
    content: none;
  }

  .bottom-menu__link {
    padding: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .bottom-menu__text {
    font-size: 1vw;
    padding: 0 10px;
    letter-spacing: 0.06em;
  }
}
/* end bottom menu */

/* start main visual */
.main-visual {
  background-image: url(../images/cloud_monitoring_frontline/bg-main-visual.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.main-visual__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
  overflow: hidden;
}

.main-visual__media {
  position: relative;
  top: 15px;
  left: 60px;
}

.main-visual__ttl {
  font-weight: bold;
  font-size: 42px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.main-visual__ttl-catch {
  color: #6cedda;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.2em;
}

.main-visual__read {
  text-align: center;
  line-height: 1.88;
  font-size: 18px;
  margin-top: 20px;
  letter-spacing: 0.08em;
}

.main-visual__body {
  white-space: nowrap;
}

.main-visual__btn {
  text-align: center;
}

.main-visual__btn-link {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  padding: 23px 60px 23px 34px;
  color: #fff;
  border-radius: 31px;
  background-image: -moz-linear-gradient( 29deg, rgb(31,147,208) 0%, rgb(37,209,184) 100%);
  background-image: -webkit-linear-gradient( 29deg, rgb(31,147,208) 0%, rgb(37,209,184) 100%);
  background-image: -ms-linear-gradient( 29deg, rgb(31,147,208) 0%, rgb(37,209,184) 100%);
  background-image: linear-gradient( 29deg, rgb(31,147,208) 0%, rgb(37,209,184) 100%);
  margin-top: 30px;
  transition: all .6s cubic-bezier(.455,.03,.515,.955);
}

.main-visual__btn-link:hover {
  opacity: 0.7;
}

.main-visual__btn-link::before {
    position: absolute;
    content: '';
}

.main-visual__btn-link::before {
  top: 50%;
  right: 30px;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  transform: rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff
}

@media screen and (max-width: 1400px) {
  .main-visual__inner {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width:1024px) {
  .main-visual__inner {
    padding-top: 10px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .main-visual {
    background-image: url(../images/cloud_monitoring_frontline/bg-mobile-main-visual.png);
  }

  .main-visual__media {
    left: 0;
    top: 0;
  }

  .main-visual__inner {
    position: relative;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .main-visual__ttl {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .main-visual__ttl-catch {
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .main-visual__read {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
  }

  .main-visual__btn-link {
    font-size: 13px;
    margin-top: 15px;
    padding: 16px 28px;
  }

  .main-visual__btn-link::before {
    right: 18px;
    width: 6.5px;
    height: 6.5px;
    margin-top: -3.5px;
  }

  .main-visual__media {
    padding-top: 20px;
  }
}
/* end main visual */


/* start intro */
.intro {
  background-color: #f5f6fd;
}

.intro__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.43;
  letter-spacing: 0.06em;
  text-align: center;
  color: #062d60;
}

.intro__heading {
  font-size: 28px;
}

.intro__info {
  margin-top: 40px;
  padding: 0 45px;
}

.intro__read {
  font-size: 17px;
  letter-spacing: 0.07em;
  line-height: 2;
}

.intro__read + .intro__read {
  margin-top: 5px;
}

.intro__read span {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .intro__title {
    font-size: 20px;
    line-height: 1.42;
  }

  .intro__info {
    margin-top: 20px;
    padding: 0;
  }

  .intro__heading {
    font-size: 16.5px;
  }

  .intro__read {
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-top: 20px;
  }

  .intro__read + .intro__read {
    margin-top: 10px;
  }
}

/* end intro */

/* start problem */
.problem {
  margin-top: 60px;
}

.problem__list {
  padding: 0 25px;
}

.problem__item {
  background-color: #fff;
  box-shadow: 0px 0px 8.6px 1.4px rgba(100, 104, 135, 0.16);
  padding: 60px 55px;
  display: flex;
  justify-content: space-between;
}

.problem__item:nth-of-type(n + 2) {
  margin-top: 30px;
}

.problem__icon {
  font-family: "Montserrat";
  font-size: 15px;
  color: #fff;
  background-color: #44609a;
  width: 140px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.9);
}

.problem__number {
  font-size: 23px;
  margin-left: 3px;
}

.problem__text {
  width: 48%;
}

.problem__title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 18px;
  color: #151229;
}

.problem__read {
  font-size: 15px;
  line-height: 1.93;
  letter-spacing: 0.08em;
  color: #555;
  margin-top: 15px;
}

.problem__image {
  width: 48%;
}

.problem__info {
  margin-top: 60px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .problem__list {
    padding: 0;
  }

  .problem__icon {
    margin: 0 auto;
    font-size: 10px;
    width: 95px;
    height: 20px;
    border-radius: 5px;
  }

  .problem__item:nth-of-type(n + 2) {
    margin-top: 20px;
  }

  .problem__number {
    font-size: 15px;
  }

  .problem__title {
    font-size: 19px;
    letter-spacing: 0.08em;
    line-height: 1.52;
    margin-top: 15px;
    text-align: center;
  }

  .problem__item {
    padding: 20px;
    flex-wrap: wrap;
  }

  .problem__text {
    width: 100%;
  }

  .problem__read {
    font-size: 11px;
    line-height: 1.8;
  }

  .problem__image {
    width: 100%;
    margin-top: 20px;
  }

  .problem__info {
    margin-top: 25px;
    padding: 0;
  }
}
/* end problem */

/* start monitored */
.monitored__heading {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: #062d60;
}

.monitored__intro {
  margin-top: 40px;
  padding: 0 40px;
  font-size: 15px;
  line-height: 1.93;
  letter-spacing: 0.08em;
  color: #555;
}

@media screen and (max-width: 767px) {
  .monitored .l-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .monitored__intro {
    padding: 0 15px;
    font-size: 12px;
    line-height: 2;
  }

  .monitored__heading {
    padding: 0 15px;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1.42;
  }
}
/* end monitored */

/* start check */
.check {
  margin-top: 50px;
}

.check__heading {
  text-align: center;
  letter-spacing: 0.06em;
  color: #666;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.875;
  position: relative;
  border-bottom: 1px dashed #23bbc3;
  margin: 0 auto;
  display: inline-block;
}

.check__heading::before {
  content: '';
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  left: 0;
  right: 0;
  bottom: -7px;
  margin: 0 auto;
  border-top: 1px dashed #23bbc3;
  border-right: 1px dashed #23bbc3;
  background-color: #fff;
  transform: rotate(135deg);
}

.check__heading-top {
  font-family: "Montserrat";
  font-size: 14px;
  color: #23bbc3;
}

.check-slide__item {
  background-color: #d4f1f5;
  border-radius: 10px;
  height: auto !important;
  margin-top: 70px;
}

.check-slide__inner {
  position: relative;
  padding: 70px 44px;
}

.check-slide__icon {
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  background-color: #d4f1f5;
  border-radius: 50%;
  padding: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.check-slide__heading {
  text-align: center;
}

.check-slide__title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 8px;
  text-underline-offset: -2px;
}

.check-slide__read {
  margin-top: 40px;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.93;
}

.check + .check .check__heading-top {
  color: #2f6dcb;
}

.check + .check .check__heading {
  border-bottom: 1px dashed #2f6dcb;
}

.check + .check .check__heading::before {
  border-top: 1px dashed #2f6dcb;
  border-right: 1px dashed #2f6dcb;
}

.check + .check .check-slide__item,
.check + .check .check-slide__icon {
  background-color: #d5e2f5;
}

@media screen and (min-width: 768px) {
  .check-slide__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .check-slide__item {
    flex-shrink: initial !important;
    width: 49% !important;
  }
}

@media screen and (max-width: 767px) {
  .check {
    margin-top: 25px;
  }
  .check__heading {
    font-size: 14.5px;
  }
  .check-slide__icon {
    width: 62px;
    height: 62px;
  }

  .check-slide__image {
    width: 39px;
    height: auto;
  }

  .check-slide__read {
    margin-top: 20px;
    font-size: 11px;
  }

  .check-slide__inner {
    width: initial !important;
    padding: 40px 20px 30px;
  }

  .check-slide__title {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-decoration-thickness: 5px;
  }

  .check-slide__pagination {
    position: relative !important;
    bottom: 0 !important;
    margin: 17px 0;
  }

  .swiper-pagination-bullet-active {
    background-color: #5a5967 !important;
  }
}
/* end check */

/* stat new-update */
.new-update {
  background-color: #f5f6fd;
}

.new-update-slide__list {
  margin-top: 40px;
  display: flex;
}

.new-update-slide__image {
  width: 100%;
}

.new-update-slide__text {
  padding: 0 8px;
}

.new-update-slide__title {
  margin-top: 20px;
  color: #151229;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.new-update-slide__tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
}

.new-update-slide__tag-item {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #151229;
  border: 2px solid rgba(55, 59, 83, 0.5);
  padding: 4px 6px;
  margin: 8px 0 0 8px;
  text-align: center;
}

.new-update-slide__date {
  font-size: 16px;
  margin-top: 14px;
  opacity: 0.9;
  letter-spacing: 0.04em;
  color: #151229;
  font-family: "Montserrat";
}

.new-update__slide-link {
  transition: opacity .3s cubic-bezier(.455,.03,.515,.955);
}

.new-update__slide-link:hover {
  opacity: 0.7;
}

.new-update .c-button {
  text-align: center;
  margin-top: 50px;
}

.new-update .c-button__link {
  font-family: "Montserrat";
  letter-spacing: 0.06em;
}

@media screen and (min-width: 768px) {
  .new-update-slide__list {
    display: flex;
    justify-content: space-between;
  }

  .new-update-slide__item {
    flex-shrink: initial !important;
    width: 32.11% !important;
  }
}

@media screen and (max-width: 767px) {
  .new-update .l-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .new-update .c-button {
    margin-top: 10px;
  }

  .new-update-slide__title {
    font-size: 16px;
    line-height: 1.6;
  }

  .new-update-slide__date {
    font-size: 13px;
    margin-top: 10px
  }

  .new-update-slide__list {
    margin-top: 25px;
    padding-bottom: 30px;
  }

  .new-update-slide__item {
    font-size: 11px;
  }

  .new-update-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin: 17px 0;
  }

  .new-update-pagination .swiper-pagination-bullet-active {
    background-color: #5a5967;
  }
}
/* end new-update */

/* start learn-more */
.learn-more {
  background-image: url(../images/cloud_monitoring_frontline/bg-learn-more.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.learn-more__banner-list {
  display: grid;
  grid-gap: 0 6px;
  grid-template-columns: repeat(3, auto);
  margin-top: 40px;
  padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .learn-more {
    background-image: url(../images/cloud_monitoring_frontline/bg-learn-more-mobile.png);
  }

  .learn-more__banner-list {
    grid-template-columns: repeat(1, auto);
    grid-gap: 13px 0;
  }

  .learn-more__banner-item {
    text-align: center;
  }
}
/* end learn-more */

