@charset "UTF-8";

/*!
Theme Name: Simplicity2 child
Template:   simplicity2
Version:    20161002
*/

/* Simplicity子テーマ用のスタイルを書く */

/* ==========================================================
   DIGITAL WORKS AZ TOP PAGE
   Simplicity2 Child
   prefix : aztop-
========================================================== */


/* ==========================================================
   01. 基本設定
========================================================== */

.aztop-root,
.aztop-root * {
  box-sizing: border-box;
}

.aztop-root {
  --aztop-navy: #03172f;
  --aztop-deep: #001227;
  --aztop-blue: #075cff;
  --aztop-cyan: #00b8df;
  --aztop-pink: #ff3e7e;
  --aztop-lime: #ccec00;
  --aztop-yellow: #ffd500;

  --aztop-text: #07172f;
  --aztop-gray: #617086;
  --aztop-line: #dce5ef;
  --aztop-light: #f6f9fc;
  --aztop-white: #ffffff;

  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;

  color: var(--aztop-text);
  background: #fff;

  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
}


/* 画像 */

.aztop-root img {
  display: block;
  width: 100%;
  height: auto;
}


/* リンク */

.aztop-root a {
  color: inherit;
  text-decoration: none;
}


/* Simplicity2側の見出し装飾を解除 */

.aztop-root h1,
.aztop-root h2,
.aztop-root h3,
.aztop-root h4 {
  margin-top: 0;
  padding: 0;

  border: 0;
  background: none;
  box-shadow: none;
}

.aztop-root p {
  margin-top: 0;
}


/* ==========================================================
   02. 共通中央幅
========================================================== */

.aztop-inner {
  width: min(1400px, calc(100% - 80px));
  margin-inline: auto;
}


/* ==========================================================
   03. Simplicity2 ウィジェット余白調整
========================================================== */

.home .widget_custom_html {
  margin: 0;
}

.home .widget_custom_html .widget-title {
  display: none;
}

.home .widget_custom_html .textwidget {
  margin: 0;
  padding: 0;
}


/* ==========================================================
   04. HERO
========================================================== */

.aztop-hero {
  position: relative;

  width: 100%;
  min-height: 540px;

  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      var(--aztop-deep) 0%,
      #061d3d 46%,
      #ffffff 46.1%,
      #ffffff 100%
    );
}


/* デジタルグリッド */

.aztop-hero::before {
  position: absolute;
  inset: 0 auto 0 0;

  width: 47%;

  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(21, 108, 255, 0.22) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(21, 108, 255, 0.22) 1px,
      transparent 1px
    );

  background-size: 36px 36px;

  content: "";
  pointer-events: none;
}


/* 青いドット装飾 */

.aztop-hero::after {
  position: absolute;
  right: 18px;
  bottom: 22px;

  width: 120px;
  height: 65px;

  opacity: 0.8;

  background-image:
    radial-gradient(
      var(--aztop-blue) 2px,
      transparent 2px
    );

  background-size: 13px 13px;

  content: "";
}


/* HERO本体 */

.aztop-hero-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 43% 57%;

  min-height: 540px;
}


/* HERO左 */

.aztop-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 65px 55px 65px 0;

  color: #fff;
}


/* 小さなラベル */

.aztop-hero-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;

  min-height: 31px;

  margin-bottom: 20px;
  padding: 0 15px;

  border: 1px solid rgba(255,255,255,0.35);

  background: rgba(255,255,255,0.06);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}


/* メインキャッチ */

.aztop-hero-title {
  margin: 0 0 22px !important;

  color: #fff !important;

  font-size: clamp(40px, 3.65vw, 61px);
  font-weight: 900;

  line-height: 1.42;
  letter-spacing: 0.02em;
}

.aztop-hero-title span {
  color: var(--aztop-lime);
}


/* 説明 */

.aztop-hero-copy p {
  margin-bottom: 0;

  color: #fff;

  font-size: 16px;
  font-weight: 600;

  line-height: 2;
}


/* HEROボタン */

.aztop-hero-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}


/* ==========================================================
   05. 共通ボタン
========================================================== */

.aztop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 225px;
  min-height: 55px;

  padding: 0 25px;

  gap: 10px;

  border: 1px solid transparent;
  border-radius: 5px;

  font-size: 14px;
  font-weight: 900;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.aztop-btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 12px 30px rgba(0, 66, 255, 0.22);

  filter: brightness(1.04);
}


/* 青 */

.aztop-btn-primary {
  color: #fff !important;
  background: var(--aztop-blue);
}


/* 白 */

.aztop-btn-secondary {
  color: var(--aztop-text) !important;

  border-color: #d1dae6;

  background: #fff;
}


/* 黄緑 */

.aztop-btn-lime {
  color: #172100 !important;

  background: var(--aztop-lime);
}


/* ==========================================================
   06. HERO画像エリア
========================================================== */

.aztop-hero-media {
  position: relative;

  min-width: 0;

  padding-left: 25px;
}


/* 大画像 */

.aztop-hero-mainpic {
  position: relative;

  height: 370px;

  overflow: hidden;

  background: #dfe7ee;
}

.aztop-hero-mainpic img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* 黄緑の角 */

.aztop-hero-mainpic::before {
  position: absolute;
  z-index: 3;

  top: 0;
  left: 0;

  border-top: 80px solid var(--aztop-lime);
  border-right: 80px solid transparent;

  content: "";
}


/* 小画像群 */

.aztop-hero-thumbs {
  position: absolute;

  right: 30px;
  bottom: 15px;
  left: 15px;

  display: grid;

  grid-template-columns:
    1fr
    1.25fr
    0.8fr;

  gap: 7px;
}

.aztop-hero-thumb {
  height: 150px;

  overflow: hidden;

  border: 6px solid #fff;

  transform: skewX(-8deg);

  background: #e8edf2;
}

.aztop-hero-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: skewX(8deg) scale(1.12);
}


/* ==========================================================
   07. セクション基本
========================================================== */

.aztop-section {
  width: 100%;

  padding: 48px 0;

  background: #fff;
}


/* セクション見出し */

.aztop-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-bottom: 30px;
}

.aztop-section-heading h2 {
  margin: 0;

  color: var(--aztop-text);

  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 900;
}


/* デジタル装飾 */

.aztop-section-mark {
  width: 46px;
  height: 7px;

  background:
    linear-gradient(
      90deg,

      var(--aztop-blue) 0 20%,

      transparent 20% 37%,

      var(--aztop-cyan) 37% 60%,

      transparent 60% 77%,

      var(--aztop-lime) 77% 100%
    );
}


/* ==========================================================
   08. できること
========================================================== */

.aztop-skills {
  padding: 34px 0 26px;

  background: #fff;
}

.aztop-skills-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border: 1px solid var(--aztop-line);

  background: #fff;

  box-shadow:
    0 10px 30px rgba(3, 27, 66, 0.06);
}


/* カード */

.aztop-skill-card {
  position: relative;

  display: grid;

  grid-template-columns:
    68px
    1fr
    25px;

  align-items: center;

  min-height: 130px;

  padding: 20px;

  gap: 15px;

  border-right:
    1px solid var(--aztop-line);

  background: #fff;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.aztop-skill-card:last-child {
  border-right: 0;
}

.aztop-skill-card:hover {
  z-index: 2;

  background: #f7fbff;

  transform: translateY(-5px);
}


/* アイコン */

.aztop-skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  overflow: hidden;
}

.aztop-skill-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* テキスト */

.aztop-skill-content h3 {
  margin: 0 0 7px;

  color: var(--aztop-text);

  font-size: 18px;
  font-weight: 900;
}

.aztop-skill-content p {
  margin: 0;

  color: var(--aztop-gray);

  font-size: 12px;

  line-height: 1.8;
}


/* 矢印 */

.aztop-skill-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 23px;
  height: 23px;

  border:
    2px solid var(--aztop-blue);

  border-radius: 50%;

  color: var(--aztop-blue);

  font-size: 17px;
  font-weight: 900;
}


/* ==========================================================
   09. 数字で見るAZ
========================================================== */

.aztop-numbers {
  padding: 0 0 35px;

  background: #fff;
}

.aztop-numbers-panel {
  position: relative;

  display: grid;

  grid-template-columns:
    210px
    repeat(4, 1fr);

  overflow: hidden;

  background:
    var(--aztop-deep);

  color: #fff;
}


/* 左側装飾 */

.aztop-numbers-panel::before {
  position: absolute;

  top: 0;
  left: 0;

  width: 210px;
  height: 100%;

  opacity: 0.55;

  background:
    linear-gradient(
      135deg,

      transparent 35%,

      var(--aztop-blue) 36% 44%,

      transparent 45%
    ),

    radial-gradient(
      var(--aztop-cyan) 2px,
      transparent 2px
    );

  background-size:
    auto,
    14px 14px;

  content: "";
}


/* 見出し */

.aztop-numbers-title {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 30px 32px;

  color: #fff;

  font-size: 24px;
  font-weight: 900;

  line-height: 1.35;
}


/* 数字 */

.aztop-number-item {
  display: grid;

  grid-template-columns:
    58px
    1fr;

  align-items: center;

  padding: 24px 20px;

  gap: 15px;

  border-left:
    1px solid rgba(255,255,255,0.22);
}

.aztop-number-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 55px;
  height: 55px;

  font-size: 28px;
}

.aztop-number-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.aztop-number-label {
  margin: 0 0 2px !important;

  color: #fff !important;

  font-size: 11px !important;
  font-weight: 700;
}

.aztop-number-value {
  display: block;

  color: #fff;

  font-size: 35px;
  font-weight: 900;

  line-height: 1.15;
}

.aztop-number-value small {
  font-size: 15px;
}

.aztop-number-note {
  display: block;

  margin-top: 6px;

  color: #c7d3e0;

  font-size: 9px;
}


/* ==========================================================
   10. 利用者の声
========================================================== */

.aztop-voices {
  padding: 20px 0 46px;

  background: #fff;
}

.aztop-voice-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.aztop-voice-card {
  position: relative;

  display: grid;

  grid-template-columns:
    96px
    1fr;

  align-items: center;

  min-height: 150px;

  padding: 20px;

  gap: 18px;

  border:
    1px solid var(--aztop-line);

  background: #fff;

  box-shadow:
    0 7px 22px rgba(4, 30, 70, 0.05);
}


/* 利用者画像 */

.aztop-voice-photo {
  width: 92px;
  height: 92px;

  overflow: hidden;

  border-radius: 50%;

  background: #edf2f7;
}

.aztop-voice-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* コメント */

.aztop-voice-content {
  position: relative;
}

.aztop-voice-quote {
  position: absolute;

  top: -27px;
  left: -4px;

  color: var(--aztop-blue);

  font-size: 48px;
  font-weight: 900;

  line-height: 1;
}

.aztop-voice-card:nth-child(2)
.aztop-voice-quote {
  color: var(--aztop-pink);
}

.aztop-voice-card:nth-child(3)
.aztop-voice-quote {
  color: var(--aztop-cyan);
}

.aztop-voice-content p {
  margin: 0;

  color: var(--aztop-text);

  font-size: 13px;
  font-weight: 600;

  line-height: 1.9;
}

.aztop-voice-content small {
  display: block;

  margin-top: 8px;

  color: var(--aztop-gray);

  font-size: 11px;
  font-weight: 700;
}


/* スライダードット */

.aztop-slider-dots {
  display: flex;
  justify-content: center;

  gap: 8px;

  margin-top: 18px;
}

.aztop-slider-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ccd5df;
}

.aztop-slider-dots span:first-child {
  background: var(--aztop-blue);
}


/* ==========================================================
   11. ご利用までの流れ
========================================================== */

.aztop-flow {
  padding: 15px 0 55px;

  background: #fff;
}

.aztop-flow-panel {
  position: relative;

  display: grid;

  grid-template-columns:
    1fr
    36px
    1fr
    36px
    1fr
    36px
    1fr;

  align-items: center;

  min-height: 150px;

  padding: 27px 32px;

  border:
    1px solid #9cc4ff;

  background: #fff;
}


/* 角の線 */

.aztop-flow-panel::before,
.aztop-flow-panel::after {
  position: absolute;

  width: 95px;
  height: 4px;

  content: "";
}

.aztop-flow-panel::before {
  top: -2px;
  left: 0;

  background: var(--aztop-blue);
}

.aztop-flow-panel::after {
  right: 0;
  bottom: -2px;

  background: var(--aztop-lime);
}


/* STEP */

.aztop-flow-step {
  text-align: center;
}

.aztop-flow-number {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  margin:
    0 auto 11px;

  color: #fff;

  font-size: 17px;
  font-weight: 900;
}

.aztop-flow-blue {
  background: var(--aztop-blue);
}

.aztop-flow-pink {
  background: var(--aztop-pink);
}

.aztop-flow-cyan {
  background: var(--aztop-cyan);
}

.aztop-flow-lime {
  color: #233000;

  background: var(--aztop-lime);
}

.aztop-flow-icon {
  width: 38px;
  height: 38px;

  margin:
    0 auto 8px;
}

.aztop-flow-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.aztop-flow-step h3 {
  margin: 0 0 6px;

  color: var(--aztop-text);

  font-size: 14px;
  font-weight: 900;
}

.aztop-flow-step p {
  margin: 0;

  color: var(--aztop-gray);

  font-size: 10px;

  line-height: 1.65;
}

.aztop-flow-next {
  color: var(--aztop-text);

  font-size: 28px;

  text-align: center;
}


/* ==========================================================
   12. PC 1200px以下
========================================================== */

@media screen and (max-width: 1200px) {

  .aztop-inner {
    width:
      min(1100px, calc(100% - 50px));
  }

  .aztop-hero-layout {
    grid-template-columns:
      45% 55%;
  }

  .aztop-skill-card {
    grid-template-columns:
      55px 1fr 22px;

    padding: 16px;

    gap: 11px;
  }

  .aztop-skill-icon {
    width: 50px;
    height: 50px;
  }

  .aztop-numbers-panel {
    grid-template-columns:
      170px repeat(4, 1fr);
  }

  .aztop-number-item {
    padding-inline: 14px;
  }

}


/* ==========================================================
   13. タブレット
========================================================== */

@media screen and (max-width: 1000px) {

  .aztop-inner {
    width: calc(100% - 40px);
  }


  /* HERO */

  .aztop-hero {
    background:
      var(--aztop-deep);
  }

  .aztop-hero::before {
    width: 100%;
  }

  .aztop-hero-layout {
    display: flex;
    flex-direction: column;

    min-height: auto;
  }

  .aztop-hero-copy {
    padding:
      55px 0 35px;
  }

  .aztop-hero-media {
    padding: 0 0 32px;
  }

  .aztop-hero-mainpic {
    height: 360px;

    border-radius: 5px;
  }

  .aztop-hero-thumbs {
    position: static;

    grid-template-columns:
      repeat(3, 1fr);

    margin-top: 7px;
  }

  .aztop-hero-thumb {
    height: 115px;

    border-width: 4px;
  }


  /* できること */

  .aztop-skills-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .aztop-skill-card:nth-child(2) {
    border-right: 0;
  }

  .aztop-skill-card:nth-child(-n+2) {
    border-bottom:
      1px solid var(--aztop-line);
  }


  /* 数字 */

  .aztop-numbers-panel {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .aztop-numbers-title {
    grid-column: 1 / -1;

    text-align: center;
  }


  /* 声 */

  .aztop-voice-grid {
    grid-template-columns: 1fr;
  }


  /* フロー */

  .aztop-flow-panel {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .aztop-flow-next {
    transform: rotate(90deg);
  }

}


/* ==========================================================
   14. スマホ
========================================================== */

@media screen and (max-width: 767px) {

  .aztop-inner {
    width: calc(100% - 28px);
  }


  /* HERO */

  .aztop-hero-title {
    font-size: 34px;

    line-height: 1.45;
  }

  .aztop-hero-copy p {
    font-size: 13px;

    line-height: 1.9;
  }

  .aztop-hero-buttons {
    flex-direction: column;

    gap: 10px;
  }

  .aztop-btn {
    width: 100%;

    min-height: 52px;
  }

  .aztop-hero-mainpic {
    height: 245px;
  }

  .aztop-hero-thumb {
    height: 83px;
  }


  /* セクション */

  .aztop-section {
    padding:
      38px 0;
  }

  .aztop-section-heading {
    margin-bottom: 23px;
  }

  .aztop-section-heading h2 {
    font-size: 25px;
  }


  /* できること */

  .aztop-skills {
    padding:
      25px 0 35px;
  }

  .aztop-skills-grid {
    grid-template-columns: 1fr;

    gap: 10px;

    border: 0;

    box-shadow: none;
  }

  .aztop-skill-card {
    min-height: 105px;

    border:
      1px solid var(--aztop-line) !important;

    border-radius: 5px;

    box-shadow:
      0 5px 18px rgba(3, 27, 65, 0.05);
  }


  /* 数字 */

  .aztop-numbers-panel {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .aztop-numbers-title {
    grid-column: 1 / -1;

    padding:
      19px;

    font-size: 21px;
  }

  .aztop-number-item {
    grid-template-columns:
      42px 1fr;

    padding:
      18px 12px;

    gap: 9px;
  }

  .aztop-number-icon {
    width: 40px;
    height: 40px;
  }

  .aztop-number-value {
    font-size: 26px;
  }


  /* 声 */

  .aztop-voices {
    padding:
      35px 0;
  }

  .aztop-voice-card {
    grid-template-columns:
      75px 1fr;

    padding:
      18px 13px;
  }

  .aztop-voice-photo {
    width: 72px;
    height: 72px;
  }

  .aztop-voice-content p {
    font-size: 12px;
  }


  /* フロー */

  .aztop-flow {
    padding:
      30px 0 45px;
  }

  .aztop-flow-panel {
    padding:
      25px 17px;

    gap: 19px;
  }

}


/* ==========================================================
   15. 小型スマホ
========================================================== */

@media screen and (max-width: 480px) {

  .aztop-hero-title {
    font-size: 30px;
  }

  .aztop-hero-mainpic {
    height: 215px;
  }

  .aztop-numbers-panel {
    grid-template-columns: 1fr;
  }

  .aztop-numbers-title {
    grid-column: auto;
  }

  .aztop-number-item {
    border-top:
      1px solid rgba(255,255,255,0.2);

    border-left: 0;
  }

}

/* ==========================================================
   AZ TOPページ
   Simplicity2 幅制限解除
========================================================== */

.home #body-in,
.home #content,
.home #main,
.home .article {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home #main {
  float: none;
}

.home #sidebar {
  display: none;
}

.home .article {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home .aztop-widget-zone {
  width: 100%;
  margin: 0;
  padding: 0;
}

.home .aztop-widget {
  width: 100%;
  margin: 0;
  padding: 0;
}

.home .aztop-widget-title {
  display: none;
}

/* ==========================================================
   AZ TOP できること アイコンカラー
========================================================== */

.aztop-skill-card:nth-child(1) .aztop-skill-icon {
  background: var(--aztop-blue);
}

.aztop-skill-card:nth-child(2) .aztop-skill-icon {
  background: var(--aztop-pink);
}

.aztop-skill-card:nth-child(3) .aztop-skill-icon {
  background: var(--aztop-cyan);
}

.aztop-skill-card:nth-child(4) .aztop-skill-icon {
  background: var(--aztop-yellow);
}

.aztop-skill-icon {
  padding: 12px;
}

.aztop-skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ==========================================================
   AZ TOP 数字で見るAZ 微調整
========================================================== */

.aztop-numbers-panel {
  border-radius: 0;
  box-shadow:
    0 10px 30px rgba(0, 17, 39, 0.12);
}

.aztop-number-item {
  min-width: 0;
}

.aztop-number-icon {
  flex-shrink: 0;
}

.aztop-number-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.aztop-number-value {
  letter-spacing: -0.02em;
}

.aztop-number-note {
  line-height: 1.5;
}

@media screen and (max-width: 767px) {

  .aztop-numbers-panel {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .aztop-numbers-title {
    grid-column: 1 / -1;
  }

  .aztop-number-item {
    grid-template-columns: 1fr;
    justify-items: center;

    min-height: 150px;

    padding: 20px 10px;

    text-align: center;
  }

  .aztop-number-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 7px;
  }

  .aztop-number-value {
    font-size: 27px;
  }

  .aztop-number-note {
    font-size: 8px;
  }

}

@media screen and (max-width: 480px) {

  .aztop-numbers-panel {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .aztop-numbers-title {
    grid-column: 1 / -1;
  }

  .aztop-number-item {
    border-left:
      1px solid rgba(255,255,255,0.16);
  }

  .aztop-number-item:nth-of-type(2n) {
    border-left: 0;
  }

}


/* ==========================================================
   AZ TOP ご利用までの流れ 微調整
========================================================== */

.aztop-flow-step {
  min-width: 0;
}

.aztop-flow-step h3 {
  white-space: nowrap;
}

.aztop-flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aztop-flow-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}


/* スマホ */

@media screen and (max-width: 767px) {

  .aztop-flow-panel {
    grid-template-columns: 1fr;
    gap: 10px;

    padding: 24px 16px;
  }

  .aztop-flow-step {
    display: grid;

    grid-template-columns:
      46px
      48px
      minmax(0, 1fr);

    grid-template-rows:
      auto auto;

    align-items: center;

    min-height: 90px;

    padding: 12px 8px;

    text-align: left;
  }

  .aztop-flow-number {
    grid-row: 1 / 3;

    margin: 0;

    align-self: center;
  }

  .aztop-flow-icon {
    grid-row: 1 / 3;

    margin: 0;
  }

  .aztop-flow-step h3 {
    margin: 0 0 4px;

    font-size: 14px;
  }

  .aztop-flow-step p {
    font-size: 10px;

    line-height: 1.6;
  }

  .aztop-flow-next {
    margin: -2px 0;

    font-size: 22px;

    transform: rotate(90deg);
  }

}


/* ==========================================================
   AZ TOP
   見学・体験 CTA
========================================================== */

.aztop-cta {
  position: relative;

  width: 100%;

  padding: 78px 0 82px;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      120deg,
      #001227 0%,
      #041b3a 50%,
      #06336b 100%
    );
}


/* デジタルグリッド */

.aztop-cta::before {
  position: absolute;

  inset: 0;

  opacity: 0.22;

  background-image:
    linear-gradient(
      rgba(26, 113, 255, 0.28) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(26, 113, 255, 0.28) 1px,
      transparent 1px
    );

  background-size: 38px 38px;

  content: "";

  pointer-events: none;
}


/* 上部ブルーライン */

.aztop-cta::after {
  position: absolute;

  top: 0;
  left: 50%;

  width: min(700px, 70%);
  height: 4px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--aztop-blue),
      var(--aztop-cyan),
      var(--aztop-lime),
      transparent
    );

  content: "";

  transform: translateX(-50%);
}


/* 中身 */

.aztop-cta-inner {
  position: relative;
  z-index: 5;

  text-align: center;
}


/* 英字 */

.aztop-cta-label {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 7px 15px;

  border:
    1px solid rgba(255,255,255,0.25);

  color: var(--aztop-cyan);

  background:
    rgba(255,255,255,0.05);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.18em;
}


/* 見出し */

.aztop-cta-title {
  margin:
    0 0 18px !important;

  color:
    #fff !important;

  font-size:
    clamp(30px, 3.2vw, 45px);

  font-weight: 900;

  line-height: 1.5;

  letter-spacing: 0.02em;
}

.aztop-cta-title span {
  position: relative;

  color: var(--aztop-lime);
}


/* 見出し下のアクセント */

.aztop-cta-title span::after {
  position: absolute;

  right: 0;
  bottom: -5px;
  left: 0;

  height: 3px;

  background:
    var(--aztop-lime);

  content: "";
}


/* 説明 */

.aztop-cta-text {
  margin: 0;

  color: #d6e2ef;

  font-size: 14px;

  line-height: 2;
}


/* ==========================================================
   CTAボタン
========================================================== */

.aztop-cta-actions {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 330px));

  justify-content: center;

  gap: 14px;

  margin-top: 32px;
}


.aztop-cta-button {
  position: relative;

  display: grid;

  grid-template-columns:
    42px
    minmax(0, 1fr)
    25px;

  align-items: center;

  min-height: 75px;

  padding:
    10px 18px;

  gap: 12px;

  border-radius: 5px;

  text-align: left;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}


.aztop-cta-button:hover {
  transform:
    translateY(-4px);

  filter:
    brightness(1.04);
}


/* メインボタン */

.aztop-cta-button-main {
  color:
    #fff !important;

  background:
    var(--aztop-blue);

  box-shadow:
    0 12px 30px rgba(0, 81, 255, 0.28);
}


.aztop-cta-button-main:hover {
  box-shadow:
    0 16px 38px rgba(0, 81, 255, 0.38);
}


/* サブボタン */

.aztop-cta-button-sub {
  color:
    var(--aztop-text) !important;

  background:
    #fff;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.13);
}


.aztop-cta-button-sub:hover {
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.18);
}


/* アイコン */

.aztop-cta-button-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  font-size: 17px;
  font-weight: 900;
}


.aztop-cta-button-main
.aztop-cta-button-icon {
  color:
    var(--aztop-blue);

  background:
    #fff;
}


.aztop-cta-button-sub
.aztop-cta-button-icon {
  color:
    #fff;

  background:
    var(--aztop-pink);
}


/* ボタン文字 */

.aztop-cta-button-copy {
  display: flex;

  flex-direction: column;

  min-width: 0;
}


.aztop-cta-button-copy small {
  margin-bottom: 2px;

  opacity: 0.75;

  font-size: 9px;

  font-weight: 700;
}


.aztop-cta-button-copy strong {
  font-size: 15px;

  font-weight: 900;

  line-height: 1.4;
}


/* 矢印 */

.aztop-cta-button-arrow {
  font-size: 20px;

  font-weight: 900;
}


/* ==========================================================
   CTA装飾
========================================================== */

.aztop-cta-deco {
  position: absolute;

  z-index: 2;

  pointer-events: none;
}


/* 左側 */

.aztop-cta-deco-left {
  top: 30px;
  left: -55px;

  width: 150px;
  height: 150px;

  border:
    22px solid var(--aztop-blue);

  transform:
    rotate(45deg);

  opacity: 0.15;
}


/* 右側 */

.aztop-cta-deco-right {
  right: -40px;
  bottom: -60px;

  width: 180px;
  height: 180px;

  border:
    26px solid var(--aztop-lime);

  border-radius: 50%;

  opacity: 0.12;
}


/* ドット追加 */

.aztop-cta-inner::before {
  position: absolute;

  top: 10px;
  right: 0;

  width: 100px;
  height: 55px;

  opacity: 0.45;

  background-image:
    radial-gradient(
      var(--aztop-cyan) 2px,
      transparent 2px
    );

  background-size:
    13px 13px;

  content: "";

  pointer-events: none;
}


/* ==========================================================
   CTA スマホ
========================================================== */

@media screen and (max-width: 767px) {

  .aztop-cta {
    padding:
      55px 0 60px;
  }


  .aztop-cta-label {
    margin-bottom:
      14px;

    font-size:
      9px;
  }


  .aztop-cta-title {
    font-size:
      28px;

    line-height:
      1.55;
  }


  .aztop-cta-text {
    font-size:
      12px;

    line-height:
      1.9;
  }


  .aztop-cta-text br {
    display:
      none;
  }


  .aztop-cta-actions {
    grid-template-columns:
      1fr;

    gap:
      10px;

    margin-top:
      25px;
  }


  .aztop-cta-button {
    width:
      100%;

    min-height:
      70px;

    padding:
      10px 15px;
  }


  .aztop-cta-button-copy strong {
    font-size:
      14px;
  }


  .aztop-cta-inner::before {
    display:
      none;
  }


  .aztop-cta-deco-left {
    width:
      100px;

    height:
      100px;
  }


  .aztop-cta-deco-right {
    width:
      130px;

    height:
      130px;
  }

}

/* ==========================================================
   AZ HEADER RIGHT
========================================================== */

#h-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 82px;

  margin: 0;
  padding: 0;
}


/* ロゴ側 */

#h-top .top-title-catchphrase {
  float: none !important;

  display: flex;
  align-items: center;

  margin: 0 !important;
}


/* 右ウィジェット */

.aztop-header-right {
  float: none !important;

  display: flex;
  align-items: center;

  margin-left: auto !important;
}


/* widgetのデフォルト余白を削除 */

.aztop-header-right .widget {
  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
}


.aztop-header-right .widget-title {
  display: none !important;
}


.aztop-header-right .textwidget {
  margin: 0 !important;
  padding: 0 !important;
}


/* ==========================================================
   AZ HEADER BUTTON
========================================================== */

.azhead-actions {
  display: flex;
  align-items: center;

  gap: 10px;
}


.azhead-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 18px;

  gap: 8px;

  border-radius: 5px;

  font-size: 12px;
  font-weight: 900;

  line-height: 1;

  white-space: nowrap;

  text-decoration: none !important;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}


.azhead-action:hover {
  transform: translateY(-2px);

  filter: brightness(1.04);
}


/* 見学・体験 */

.azhead-action-visit {
  color: #ffffff !important;

  background: #075cff;

  box-shadow:
    0 7px 18px rgba(7, 92, 255, 0.18);
}


/* お問い合わせ */

.azhead-action-contact {
  color: #172300 !important;

  background: #ccec00;
}


/* アイコン */

.azhead-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 900;
}


/* ==========================================================
   スマホ
========================================================== */

@media screen and (max-width: 767px) {

  #h-top {
    min-height: 66px;
  }


  .aztop-header-right {
    display: none !important;
  }

}


/* ==========================================================
   DIGITAL WORKS AZ
   1段ヘッダー
========================================================== */


/* ヘッダー */

#header {
  position: relative;
  z-index: 1000;

  width: 100%;

  margin: 0;
  padding: 0;

  background: #fff;

  border-bottom: 1px solid #e4ebf3;

  box-shadow:
    0 3px 15px rgba(3, 23, 47, 0.05);
}


/* 中央幅 */

#header-in {
  width: min(1500px, calc(100% - 48px));

  margin: 0 auto;
  padding: 0;
}


/* ==========================================================
   1段構成
========================================================== */

#h-top {
  display: flex;
  align-items: center;

  width: 100%;

  min-height: 86px;

  margin: 0;
  padding: 0;

  gap: 25px;
}


/* ==========================================================
   ロゴ
========================================================== */

.azhead-logo-area {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  min-width: 230px;

  margin: 0;
  padding: 0;
}


.azhead-logo-area #site-title,
.azhead-logo-area .site-title {
  margin: 0 !important;
  padding: 0 !important;
}


.azhead-logo-area img {
  display: block;

  width: auto;

  max-width: 250px;
  max-height: 60px;

  margin: 0;
}


/* ==========================================================
   ナビゲーションエリア
========================================================== */

.azhead-navigation-area {
  flex: 1 1 auto;

  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}


/* navi.phpの外側 */

.azhead-navigation-area nav {
  width: 100%;

  margin: 0;
  padding: 0;
}


/* Simplicity2のナビ */

.azhead-navigation-area #navi {
  width: 100%;

  margin: 0;
  padding: 0;

  border: 0;

  background: transparent;

  box-shadow: none;
}


.azhead-navigation-area #navi-in {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}


/* メニュー */

.azhead-navigation-area #navi ul {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 0;

  gap: 0;

  list-style: none;
}


.azhead-navigation-area #navi ul li {
  position: relative;

  float: none;

  margin: 0;
  padding: 0;
}


/* メニュー文字 */

.azhead-navigation-area #navi ul li a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 86px;

  padding: 0 clamp(10px, 1vw, 18px);

  color: #07172f;

  background: transparent;

  border: 0;

  font-size: 12px;
  font-weight: 800;

  line-height: 1.2;

  white-space: nowrap;

  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}


/* 青いアンダーライン */

.azhead-navigation-area #navi ul li a::after {
  position: absolute;

  right: 14px;
  bottom: 20px;
  left: 14px;

  height: 2px;

  background: #075cff;

  content: "";

  transform: scaleX(0);

  transform-origin: center;

  transition: transform 0.2s ease;
}


.azhead-navigation-area #navi ul li a:hover {
  color: #075cff;

  background: #f8faff;
}


.azhead-navigation-area #navi ul li a:hover::after {
  transform: scaleX(1);
}


/* 現在のページ */

.azhead-navigation-area #navi
.current-menu-item > a,
.azhead-navigation-area #navi
.current_page_item > a {
  color: #075cff;
}


.azhead-navigation-area #navi
.current-menu-item > a::after,
.azhead-navigation-area #navi
.current_page_item > a::after {
  transform: scaleX(1);
}


/* ==========================================================
   ドロップダウン
========================================================== */

.azhead-navigation-area #navi ul ul {
  position: absolute;

  z-index: 1500;

  top: 100%;
  left: 0;

  display: none;

  min-width: 210px;

  padding: 8px 0;

  background: #fff;

  border: 1px solid #dfe7f0;

  box-shadow:
    0 15px 35px rgba(3, 23, 47, 0.13);
}


.azhead-navigation-area #navi li:hover > ul {
  display: block;
}


.azhead-navigation-area #navi ul ul li {
  width: 100%;
}


.azhead-navigation-area #navi ul ul li a {
  justify-content: flex-start;

  min-height: 45px;

  padding: 0 17px;

  font-size: 12px;
}


.azhead-navigation-area #navi ul ul li a::after {
  display: none;
}


/* ==========================================================
   右CTA
========================================================== */

.aztop-header-right {
  flex: 0 0 auto;

  display: flex;
  align-items: center;

  margin: 0 !important;
  padding: 0 !important;
}


.aztop-header-right .widget {
  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  background: none !important;

  box-shadow: none !important;
}


.aztop-header-right .widget-title {
  display: none !important;
}


.aztop-header-right .textwidget {
  margin: 0 !important;
  padding: 0 !important;
}


.azhead-actions {
  display: flex;
  align-items: center;

  gap: 8px;
}


.azhead-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 16px;

  gap: 7px;

  border-radius: 4px;

  font-size: 11px;
  font-weight: 900;

  line-height: 1;

  white-space: nowrap;

  text-decoration: none !important;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}


.azhead-action:hover {
  transform: translateY(-2px);

  filter: brightness(1.04);
}


.azhead-action-visit {
  color: #fff !important;

  background: #075cff;
}


.azhead-action-contact {
  color: #162300 !important;

  background: #ccec00;
}


.azhead-action-icon {
  font-size: 13px;
}


/* ==========================================================
   1200px付近
========================================================== */

@media screen and (max-width: 1250px) {

  #header-in {
    width: calc(100% - 30px);
  }


  #h-top {
    gap: 15px;
  }


  .azhead-logo-area {
    min-width: 190px;
  }


  .azhead-logo-area img {
    max-width: 210px;
  }


  .azhead-navigation-area #navi ul li a {
    padding: 0 9px;

    font-size: 10px;
  }


  .azhead-action {
    padding: 0 11px;

    font-size: 10px;
  }

}


/* ==========================================================
   スマホ
========================================================== */

@media screen and (max-width: 767px) {

  #header-in {
    width: calc(100% - 26px);
  }


  #h-top {
    position: relative;

    min-height: 66px;

    gap: 0;
  }


  .azhead-logo-area {
    min-width: 0;

    max-width: calc(100% - 60px);
  }


  .azhead-logo-area img {
    max-width: 190px;
    max-height: 45px;
  }


  /*
   PCナビを非表示
   Simplicity2のモバイルメニューボタンを利用
  */

  .azhead-navigation-area {
    display: none;
  }


  /* CTAもスマホでは非表示 */

  .aztop-header-right {
    display: none !important;
  }

}

/* ==========================================================
   AZ HEADER FIX
   CTAはみ出し + スマホメニュー表示修正
========================================================== */


/* ----------------------------------------------------------
   PCヘッダー全体
---------------------------------------------------------- */

#header-in {
  width: min(1600px, calc(100% - 32px));
}

#h-top {
  display: grid;

  grid-template-columns:
    minmax(190px, 250px)
    minmax(0, 1fr)
    auto;

  align-items: center;

  min-height: 86px;

  gap: 18px;
}


/* ----------------------------------------------------------
   ロゴ
---------------------------------------------------------- */

.azhead-logo-area {
  min-width: 0;
  width: auto;
}

.azhead-logo-area img {
  max-width: 230px;
  max-height: 58px;
}


/* ----------------------------------------------------------
   ナビ
---------------------------------------------------------- */

.azhead-navigation-area {
  min-width: 0;
  width: 100%;
  overflow: visible;
}

.azhead-navigation-area nav,
.azhead-navigation-area #navi,
.azhead-navigation-area #navi-in {
  min-width: 0;
  width: 100%;
}

.azhead-navigation-area #navi ul {
  display: flex;
  flex-wrap: nowrap;

  align-items: center;
  justify-content: center;

  min-width: 0;
}

.azhead-navigation-area #navi ul li {
  min-width: 0;
}

.azhead-navigation-area #navi ul li a {
  min-width: 0;

  padding-left: clamp(6px, 0.7vw, 14px);
  padding-right: clamp(6px, 0.7vw, 14px);

  font-size: clamp(9px, 0.75vw, 12px);
}


/* ----------------------------------------------------------
   CTA
---------------------------------------------------------- */

.aztop-header-right {
  min-width: 0;
  max-width: 330px;
}

.azhead-actions {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  width: 100%;

  gap: 7px;
}

.azhead-action {
  min-width: 0;
  min-height: 44px;

  padding: 0 12px;

  font-size: 10px;

  overflow: hidden;
}

.azhead-action span {
  white-space: nowrap;
}


/* ----------------------------------------------------------
   1350px以下
   CTAを少し小さく
---------------------------------------------------------- */

@media screen and (max-width: 1350px) {

  #h-top {
    grid-template-columns:
      190px
      minmax(0, 1fr)
      250px;

    gap: 10px;
  }

  .azhead-logo-area img {
    max-width: 190px;
  }

  .azhead-navigation-area #navi ul li a {
    padding-left: 6px;
    padding-right: 6px;

    font-size: 9px;
  }

  .azhead-action {
    padding: 0 8px;

    font-size: 9px;
  }

}


/* ----------------------------------------------------------
   1100px以下
   ナビとCTAを消してモバイル寄りに切り替え
---------------------------------------------------------- */

@media screen and (max-width: 1100px) {

  #h-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 72px;
  }

  .azhead-navigation-area {
    display: none !important;
  }

  .aztop-header-right {
    display: none !important;
  }

}


/* ==========================================================
   Simplicity2 モバイルメニューボタン復活
========================================================== */

@media screen and (max-width: 1100px) {

  /* button-menu.php側で生成される要素を広めに拾う */

  #h-top #mobile-menu,
  #h-top .mobile-menu,
  #h-top #menu-button,
  #h-top .menu-button,
  #h-top .mobile-menu-button,
  #h-top .menu-trigger {
    display: block !important;

    position: relative !important;

    visibility: visible !important;

    opacity: 1 !important;

    z-index: 9999 !important;
  }

}


/* ==========================================================
   スマホ
========================================================== */

@media screen and (max-width: 767px) {

  #header-in {
    width: calc(100% - 24px);
  }

  #h-top {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 64px;

    padding: 0;
  }

  .azhead-logo-area {
    flex: 0 1 auto;

    max-width: calc(100% - 60px);
  }

  .azhead-logo-area img {
    max-width: 180px;
    max-height: 44px;
  }


  /* ナビ・CTA非表示 */

  .azhead-navigation-area,
  .aztop-header-right {
    display: none !important;
  }


  /* Simplicity2のメニューボタン領域 */

  #h-top > *:first-child {
    z-index: 9999;
  }

}

/* ==========================================================
   Simplicity2 モバイルメニューボタン修正
========================================================== */

@media screen and (max-width: 1100px) {

  #mobile-menu {
    display: flex !important;
    align-items: center;
    justify-content: center;

    position: relative !important;
    z-index: 9999 !important;

    width: 46px;
    height: 46px;

    margin-left: auto;

    visibility: visible !important;
    opacity: 1 !important;
  }

  #mobile-menu a {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0 !important;
    margin: 0 !important;

    color: #07172f !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    text-decoration: none !important;
  }

  #mobile-menu a:hover {
    color: #075cff !important;
    background: transparent !important;
  }

  #mobile-menu .fa {
    display: inline-block !important;

    color: inherit !important;

    font-size: 26px !important;
    line-height: 1 !important;

    visibility: visible !important;
    opacity: 1 !important;
  }

}

/* ==========================================================
   AZ MOBILE NAVIGATION
========================================================== */

@media screen and (max-width: 1100px) {

  #h-top {
    position: relative;

    display: flex !important;
    align-items: center;
    justify-content: space-between;

    min-height: 68px;
  }


  /* ロゴ */

  .azhead-logo-area {
    flex: 0 1 auto;

    min-width: 0;
    max-width: calc(100% - 60px);
  }


  /* CTAはスマホ非表示 */

  .aztop-header-right {
    display: none !important;
  }


  /* ナビの親は消さない */

  .azhead-navigation-area {
    display: block !important;

    position: absolute;

    z-index: 9000;

    top: 100%;
    right: 0;
    left: 0;

    width: 100%;

    visibility: hidden;
    opacity: 0;

    transform: translateY(-10px);

    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }


  /* 開いた状態 */

  #h-top.az-menu-open .azhead-navigation-area {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
  }


  /* メニュー本体 */

  .azhead-navigation-area nav,
  .azhead-navigation-area #navi,
  .azhead-navigation-area #navi-in {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
  }


  .azhead-navigation-area #navi {
    border-top: 1px solid #e3eaf3;

    box-shadow:
      0 16px 30px rgba(3, 23, 47, 0.13);
  }


  /* PC横並びを解除 */

  .azhead-navigation-area #navi ul {
    display: block !important;

    width: 100%;

    margin: 0 !important;
    padding: 8px 18px !important;

    background: #ffffff;
  }


  .azhead-navigation-area #navi ul li {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    border-bottom: 1px solid #edf1f6;
  }


  .azhead-navigation-area #navi ul li:last-child {
    border-bottom: 0;
  }


  .azhead-navigation-area #navi ul li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    width: 100% !important;

    min-height: 52px !important;

    padding: 0 8px !important;

    color: #07172f !important;

    background: transparent !important;

    font-size: 13px !important;
    font-weight: 800;

    text-align: left;
  }


  .azhead-navigation-area #navi ul li a::after {
    display: none !important;
  }


  /* ハンバーガー */

  #mobile-menu {
    display: flex !important;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    margin: 0 0 0 auto !important;

    visibility: visible !important;
    opacity: 1 !important;
  }


  #mobile-menu > a {
    position: relative;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;
  }


  /* Font Awesomeは使わずCSSで描画 */

  #mobile-menu > a > .fa {
    display: none !important;
  }


  #mobile-menu > a::before,
  #mobile-menu > a::after {
    position: absolute;

    left: 9px;

    width: 28px;
    height: 3px;

    background: #07172f;

    content: "";

    transition:
      transform 0.25s ease,
      top 0.25s ease,
      box-shadow 0.25s ease;
  }


  #mobile-menu > a::before {
    top: 13px;

    box-shadow:
      0 8px 0 #07172f;
  }


  #mobile-menu > a::after {
    top: 29px;
  }


  /* 開いたら× */

  #h-top.az-menu-open #mobile-menu > a::before {
    top: 21px;

    box-shadow: none;

    transform: rotate(45deg);
  }


  #h-top.az-menu-open #mobile-menu > a::after {
    top: 21px;

    transform: rotate(-45deg);
  }

}


/* PCではモバイルボタン非表示 */

@media screen and (min-width: 1101px) {

  #mobile-menu {
    display: none !important;
  }

}

/* ==========================================================
   AZ MOBILE MENU
   Simplicity2 非表示設定を完全上書き
========================================================== */

@media screen and (max-width: 1100px) {

  /* --------------------------------
     ナビを格納しているAZエリア
  -------------------------------- */

  #h-top .azhead-navigation-area {
    display: block !important;

    position: absolute !important;
    z-index: 999999 !important;

    top: 100% !important;
    left: 0 !important;
    right: auto !important;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;
    max-height: 0;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    visibility: hidden !important;
    opacity: 0 !important;

    background: #ffffff !important;

    transform: none !important;

    pointer-events: none !important;

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease !important;
  }


  /* --------------------------------
     開いた状態
  -------------------------------- */

  #h-top.az-menu-open .azhead-navigation-area {
    display: block !important;

    max-height: 700px !important;

    overflow: visible !important;

    visibility: visible !important;
    opacity: 1 !important;

    pointer-events: auto !important;
  }


  /* --------------------------------
     navタグ
  -------------------------------- */

  #h-top .azhead-navigation-area nav {
    display: block !important;

    position: static !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;

    background: #ffffff !important;
  }


  /* --------------------------------
     #navi
  -------------------------------- */

  #h-top .azhead-navigation-area #navi {
    display: block !important;

    position: static !important;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    visibility: visible !important;
    opacity: 1 !important;

    background: #ffffff !important;

    border-top: 1px solid #e4eaf1 !important;
    border-bottom: 1px solid #e4eaf1 !important;

    box-shadow:
      0 15px 30px rgba(3, 23, 47, 0.15) !important;
  }


  /* --------------------------------
     #navi-in
  -------------------------------- */

  #h-top .azhead-navigation-area #navi-in {
    display: block !important;

    position: static !important;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;
    padding: 8px 18px !important;

    overflow: visible !important;

    visibility: visible !important;
    opacity: 1 !important;

    background: #ffffff !important;
  }


  /* --------------------------------
     WordPressメニュー
  -------------------------------- */

  #h-top .azhead-navigation-area #navi-in > div {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;
  }


  #h-top .azhead-navigation-area #navi ul,
  #h-top .azhead-navigation-area #navi .menu {
    display: block !important;

    position: static !important;

    width: 100% !important;
    max-width: none !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;

    background: #ffffff !important;
  }


  /* --------------------------------
     メニュー項目
  -------------------------------- */

  #h-top .azhead-navigation-area #navi ul li {
    display: block !important;
    float: none !important;

    position: relative !important;

    width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    visibility: visible !important;
    opacity: 1 !important;

    border-bottom: 1px solid #edf1f5 !important;

    background: #ffffff !important;
  }


  #h-top .azhead-navigation-area #navi ul li:last-child {
    border-bottom: 0 !important;
  }


  /* --------------------------------
     メニューリンク
  -------------------------------- */

  #h-top .azhead-navigation-area #navi ul li > a {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    position: relative !important;

    width: 100% !important;
    min-height: 55px !important;

    margin: 0 !important;
    padding: 0 12px !important;

    visibility: visible !important;
    opacity: 1 !important;

    color: #07172f !important;
    background: #ffffff !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    line-height: 1.5 !important;

    text-align: left !important;
    text-indent: 0 !important;

    white-space: normal !important;

    border: 0 !important;

    transform: none !important;
  }


  /* 右側矢印 */

  #h-top .azhead-navigation-area #navi ul li > a::after {
    display: block !important;

    position: static !important;

    width: auto !important;
    height: auto !important;

    margin-left: 15px !important;

    color: #075cff !important;
    background: none !important;

    content: "›" !important;

    font-size: 22px !important;
    font-weight: 400 !important;

    transform: none !important;
  }


  /* --------------------------------
     hover
  -------------------------------- */

  #h-top .azhead-navigation-area #navi ul li > a:hover {
    color: #075cff !important;

    background: #f6f9ff !important;
  }

}