@charset "utf-8";

/* ---------------------------------------------
 共通
---------------------------------------------- */
/* タグ、タイトル、日付
---------------------------------------------- */
.cloud-navi .item-tag {
  font-size: 0.75rem;
  color: #ffff;
  width: 88px;
  border-radius: 100vh;
  padding: 3px 0 2px;
  text-align: center;
  margin: 0 10px;
}
.cloud-navi .item-tag.matome {
  background: #db0084;
}
.cloud-navi .item-tag.beginner {
  background: #2400b0;
}
.cloud-navi .item-tag.tech {
  background: #008224;
}
.cloud-navi .item-tag.words {
  background: #000000;
}
.cloud-navi .item-tag.fjcloud {
  background: #ff8000;
}
.cloud-navi .item-title {
  font-size: clamp(1.125rem, 1.005rem + 0.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 10px;
}
.cloud-navi .item-date-wrap {
  display: none;
}
.cloud-navi .item-date-wrap::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #ccc;
  top: 0;
  left: 0;
}
.cloud-navi .item-date-wrap .svg-icon {
  width: 1.5em;
  height: 1.5em;
}

/* ページ間ナビゲーション
---------------------------------------------- */
.cloud-navi .section.page-index-nav {
  position: relative;
}
.cloud-navi .section.page-index-nav .section-inner {
  padding: 0;
  display: flex;
  height: 56px;
  align-items: center;
  margin-top: 0 !important;
  padding-top: inherit !important;
}
.cloud-navi .section.page-index-nav .page-index {
  min-width: max-content;
  margin: 0 auto;
}
.cloud-navi .section.page-index-nav .page-index > li a {
  font-size: 1rem;
  transition: 0.3s;
}
.cloud-navi .section.page-index-nav .page-index > li.active a,
.cloud-navi .page-index > li a:hover {
  text-decoration: none;
  background: linear-gradient(transparent 64%, rgba(255, 255, 0, 0.8) 36%);
  color: #000;
  font-weight: 700;
}

/* ---------------------------------------------
 インデックスページ
---------------------------------------------- */
/* タイトル
----------------------------------------------- */
.cloud-navi .headline {
  position: relative;
  background: url(/image/7935-14-FJ_SB_H4_T3_RGB-4000px) no-repeat 50% 63% / cover;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 180px;
}
.cloud-navi .headline .title {
  font-size: 2rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
}

/* 記事一覧
----------------------------------------------------------- */
.cloud-navi .article-list .item-group {
  margin: 0 auto 36px;
  display: grid;
  max-width: 980px;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1000px) {
  .cloud-navi .article-list .item-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .cloud-navi .article-list .item-group {
    grid-template-columns: 1fr;
  }
}
.cloud-navi .article-list .item-group > .item {
  position: relative;
  padding-bottom: 10px;
  background: #fff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  row-gap: 10px;
  text-decoration: none;
  transition: 0.4s;
  transition-property: transform, box-shadow;
}
.cloud-navi .article-list .item-group > .item:hover {
  color: #000;
  box-shadow: 0px 6px 8px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
/* まとめ記事一覧
----------------------------------------------------------- */
.cloud-navi .article-list.matome-list {
}

/* 無料相談への導線
---------------------------------------------- */
.cloud-navi .section.consultation {
  background: url(/image/campaign-fjcloud-v-consultation-bg) no-repeat top left / cover;
}
.cloud-navi .section.consultation .lay2col .text {
  width: 73%;
}
.cloud-navi .section.consultation .lay2col .visual {
  width: 25%;
}

/* 関連リンク
---------------------------------------------- */
.cloud-navi .section.related-links .section-inner {
  padding-bottom: 0;
}
.cloud-navi .section.related-links .panel-group {
  max-width: 892px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .cloud-navi .section.related-links .panel-group {
    flex-direction: column;
  }
}
.cloud-navi .section.related-links .panel-group > * {
  width: 48.09%;
}
@media only screen and (max-width: 767px) {
  .cloud-navi .section.related-links .panel-group {
    flex-direction: column;
    align-items: center;
  }
  .cloud-navi .section.related-links .panel-group > * {
    width: 100%;
    max-width: 400px;
  }
  .cloud-navi .section.related-links .panel-group > * + * {
    margin-top: 20px;
  }
}
.cloud-navi .section.related-links .panel-group > * .item {
  position: relative;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
}
.cloud-navi .section.related-links .panel-group > * .item .img {
  width: 100%;
}
.cloud-navi .section.related-links .panel-group h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}
.cloud-navi .section.related-links .panel-group h3 small {
  font-size: 1.5rem;
  font-weight: 700;
}
.cloud-navi .section.related-links .panel-group h3.color-gl {
  color: #49ae3c;
}
@media only screen and (max-width: 1000px) {
  .cloud-navi .section.related-links .panel-group h3 {
    font-size: calc(36vw * 100 / 1000);
  }
  .cloud-navi .section.related-links .panel-group h3 small {
    font-size: calc(30vw * 100 / 1000);
  }
}
@media only screen and (max-width: 767px) {
  .cloud-navi .section.related-links .panel-group h3 {
    font-size: 1.75rem;
  }
  .corporation-top .section.related-links .panel-group h3 small {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 480px) {
  .cloud-navi .section.related-links .panel-group h3 {
    font-size: calc(22vw * 100 / 320);
  }
  .cloud-navi .section.related-links .panel-group h3 small {
    font-size: calc(18vw * 100 / 320);
  }
}

/* ---------------------------------------------
 記事ページ
---------------------------------------------- */
/* FujitsuInfinityProを使用しない (記号の文字化け対策)
---------------------------------------------- */
.cloud-navi .section.article .no-f-font {
  font-family: Arial, Verdana, Lucida Grande, sans-serif;
}

/* 基本レイアウト
---------------------------------------------- */
.cloud-navi .section.article .article-layout {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.cloud-navi .section.article .article-layout > .main {
  width: 70%;
}
.cloud-navi .section.article .article-layout > .side {
  width: 25%;
}
@media only screen and (max-width: 769px) {
  .cloud-navi .section.article .article-layout > .main {
    width: 100%;
  }
  .cloud-navi .section.article .article-layout > .side {
    display: none;
  }
}

/* 記事コンテンツ
---------------------------------------------- */
.cloud-navi .section.article a {
  color: #039;
  font-weight: 700;
}
.cloud-navi .section.article a:hover {
  color: #c30;
  text-decoration: underline;
}
.cloud-navi .section.article p {
  margin-top: 1rem;
  line-height: 1.6;
}
.cloud-navi .section.article .strong {
  font-weight: 700;
}

.cloud-navi .section.article .item-tag {
  margin: 0;
}
.cloud-navi .section.article .item-date-wrap {
  padding: 0;
}
.cloud-navi .section.article .item-date-wrap::before {
  display: none;
}
.cloud-navi .section.article .title-area .title {
  padding-bottom: 0;
  margin: 16px 0 14px;
  font-size: clamp(1.5rem, 0.923rem + 1.92vw, 2.125rem);
  line-height: 1.4;
}
.cloud-navi .section.article .title-area .item-date-wrap {
  padding: 0 0 15px 0;
}
.cloud-navi .section.article .title-area .item-date-wrap::before {
  display: block;
  width: 54px;
  height: 6px;
  background: #ffe700;
  top: auto;
  bottom: 0;
}
.cloud-navi .section.article .title-area .item-img {
  margin: 30px 0 24px;
}
.cloud-navi .section.article .main .list-order-a {
  counter-reset: num;
  padding-left: 20px;
  margin-top: 28px;
}
.cloud-navi .section.article .main .list-order-a > li {
  display: flex;
  counter-increment: num;
  font-size: 1.125rem;
}
.cloud-navi .section.article .main .list-order-a > li + li {
  margin-top: 12px;
}
.cloud-navi .section.article .main .list-order-a > li > .item {
  flex-grow: 1;
  width: auto;
  padding-left: 7px;
  overflow-x: auto;
}
.cloud-navi .section.article .main .list-order-a > li::before {
  flex-shrink: 0;
  content: counter(num, decimal) ".";
}
.cloud-navi .section.article .main .contents {
  padding: 20px;
  margin: 15px 0 30px;
  border: solid 3px #eaeaea;
}
.cloud-navi .section.article .main .contents h3 {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.cloud-navi .section.article .main .contents h3::before {
  content: "";
  background-color: #2400b0;
  width: 5px;
  height: 1em;
  margin-right: 6px;
}
.cloud-navi .section.article .main .contents .list-a {
  padding-left: 0;
}
.cloud-navi .section.article .main .contents .list-a li {
  padding-left: 17px;
}
.cloud-navi .section.article .main .contents .list-a li::before {
  top: 0.5em;
  background: #2400b0;
}
.cloud-navi .section.article .main .contents .list-a li + li {
  margin-top: 4px;
}
.cloud-navi .section.article .main h2.hdg-b {
  flex-direction: column;
  font-size: clamp(1.25rem, 0.788rem + 1.54vw, 1.75rem);
  padding: 0;
  margin: 60px 0 0;
}
.cloud-navi .section.article .main h2.hdg-b::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  margin-top: 6px;
}
.cloud-navi .section.article .main h3.hdg-b {
  flex-direction: column;
  font-size: clamp(1.125rem, 0.779rem + 1.15vw, 1.5rem);
  padding: 0;
  margin-top: 36px;
}
.cloud-navi .section.article .main h3.hdg-b::after {
  content: "";
  width: 54px;
  height: 2px;
  background: #ffe700;
  margin-top: 8px;
}

.cloud-navi .section.article .main h4.hdg-c {
  display: flex;
  font-size: 1.25rem;
  line-height: 1.4;
  gap: 0.5rem;
  margin: 36px 0 26px;
}
.cloud-navi .section.article .main h4.hdg-c::before {
  content: "";
  width: 6px;
  background: #008224;
}
.cloud-navi .section.article .main h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 36px 0 26px;
}

.cloud-navi .section.article .main .tbl-scroll-a {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cloud-navi .section.article .main .tbl-a {
  table-layout: auto;
}
.cloud-navi .section.article .main .tbl-a thead th,
.cloud-navi .section.article .main .tbl-a thead td {
  background: #2400b0;
  color: #fff;
  border: 1px solid #efefef;
  text-align: center;
}
.cloud-navi .section.article .main .tbl-a tbody th,
.cloud-navi .section.article .main .tbl-a tbody .th {
  background: #2400b0;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
}
.cloud-navi .section.article .main .tbl-a th,
.cloud-navi .section.article .main .tbl-a td {
  border: 1px solid #efefef;
}

/* ソースコードブロック
---------------------------------------- */
.cloud-navi .section.article .main pre {
  white-space: pre;
  overflow-x: auto;
  max-width: 100%;
}

/* 引用ブロック
---------------------------------------- */
.cloud-navi .section.article .main blockquote {
  width: 100%;
  padding: 1em 1.5em;
  margin: 30px 0;
  border-left: 6px solid #dcdcdc;
  background: #efefef;
}

.cloud-navi .section.article .main blockquote:has(cite) {
  padding-bottom: 0.5em;
}

.cloud-navi .section.article .main blockquote p {
  margin-top: 0;
}

.cloud-navi .section.article .main blockquote cite {
  display: block;
  color: #3c3c3c;
  font-size: 0.8125rem;
  text-align: right;
}
.cloud-navi .section.article .main blockquote cite a {
  position: relative;
  color: #000;
  font-weight: 400;
}

.cloud-navi .section.article .main blockquote cite a:hover {
  text-decoration: underline;
  background: linear-gradient(transparent 64%, rgba(255, 255, 0, 0.8) 36%);
}

/* おすすめの記事
---------------------------------------------- */
.cloud-navi .section.article .main .recommended-article {
  display: flex;
  border: solid 2px #eaeaea;
  margin: 16px 0 80px;
}
.cloud-navi .section.article .main .recommended-article a {
  text-decoration: none;
  color: #000;
  display: flex;
  padding: 16px;
  gap: 30px;
}
.cloud-navi .section.article .main .recommended-article .item-img {
  width: 30%;
  flex-shrink: 0;
}
.cloud-navi .section.article .main .recommended-article .item-text {
  width: 70%;
  flex-grow: 1;
}
.cloud-navi .section.article .main .recommended-article h3 {
  font-size: 1.125rem;
  margin: 10px 0 10px;
  line-height: 1.5;
}
@media only screen and (max-width: 480px) {
  .cloud-navi .section.article .main .recommended-article a {
    flex-direction: column;
    gap: 20px;
  }
  .cloud-navi .section.article .main .recommended-article .item-img {
    width: 100%;
  }
  .cloud-navi .section.article .main .recommended-article .item-text {
    width: 100%;
  }
}

/* バナー Type-A/B
---------------------------------------------- */
.cloud-navi .section.article .banner.type-b {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.cloud-navi .section.article .banner a {
  text-decoration: none;
  transition: 0.3s;
}
.cloud-navi .section.article .banner a:hover {
  opacity: 0.7;
}

/* 関連記事、テーマに沿った記事を一気見
---------------------------------------------- */
.cloud-navi .section.article .related-articles {
}
.cloud-navi .section.article .related-articles .hdg-c {
  position: relative;
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  margin: 50px 0 0;
}
.cloud-navi .section.article .related-articles .hdg-c::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #dcdcdc;
  margin-top: 6px;
}
.cloud-navi .section.article .related-articles .hdg-c::before {
  position: absolute;
  content: "";
  width: 94px;
  height: 2px;
  background: #ffe700;
  left: 0;
  bottom: 0;
}
.cloud-navi .section.article .related-articles .item-group {
  display: flex;
  flex-direction: column;
}
.cloud-navi .section.article .related-articles .item-group a {
  color: #000;
  text-decoration: none;
  display: flex;
  padding: 16px;
  gap: 40px;
  border-bottom: solid 1px #efefef;
  transition: 0.3s;
}
@media only screen and (max-width: 480px) {
  .cloud-navi .section.article .related-articles .item-group a {
    padding: 16px 0;
    gap: 20px;
  }
}
.cloud-navi .section.article .related-articles .item-group a:hover {
  background: #efefef;
}
.cloud-navi .section.article .related-articles .item-group .item-img {
  width: 100px;
  flex-shrink: 0;
}
.cloud-navi .section.article .related-articles .item-group .item-text {
  width: 100%;
  flex-grow: 1;
}
.cloud-navi .section.article .related-articles .item-group .item-title {
  font-size: 1rem;
  margin: 10px 0 0; /* 日付なし。日付ありの場合 10px 0 10px */
  line-height: 1.5;
}
@media only screen and (max-width: 480px) {
  .cloud-navi .section.article .related-articles .item-group .item-title {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

/* サイドバー
---------------------------------------------- */
.cloud-navi .section.article .side .related-articles .hdg-c {
  font-size: 1rem;
  margin: 40px 0 0;
}
.cloud-navi .section.article .side .related-articles .item-group a {
  padding: 14px 0;
  gap: 16px;
}
.cloud-navi .section.article .side .related-articles .item-group .item-img {
  width: 35%;
}
.cloud-navi .section.article .side .related-articles .item-group .item-title {
  font-size: 0.875rem;
  line-height: 1.4;
}
.cloud-navi .section.article .side .banner-group {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cloud-navi .section.article .side .banner-group a {
  text-decoration: none;
  transition: 0.3s;
}
.cloud-navi .section.article .side .banner-group a:hover {
  opacity: 0.7;
}

/* 記事一覧（検索用ページ）
---------------------------------------------- */
.cloud-navi .section.article-list .category-title {
  padding: 0.625rem;
  font-size: 1.25rem;
  color: #fff;
  background: #3cb63c;
}
.cloud-navi .section.article-list .article-list-items + .category-title {
  margin-top: 4rem;
}
.cloud-navi .section.article-list .article-list-items {
  padding: 0 0.5rem;
}
.cloud-navi .section.article-list .article-list-items li {
  position: relative;
  font-size: 1.125rem;
  padding-left: 0.7em;
  margin-top: 0.5em;
}
.cloud-navi .section.article-list .article-list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: #00e7ef;
  border-radius: 50%;
}
.cloud-navi .section.article-list .article-list-items li a {
  position: relative;
  text-decoration: none;
  color: #0070c0;
}
.cloud-navi .section.article-list .article-list-items li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cloud-navi .section.article-list .article-list-items li a:hover::after {
  opacity: 1;
}


/* YouTube
---------------------------------------------- */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 32px 0;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
