@charset "UTF-8";

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

/* ==========================================================
   DIGITAL WORKS AZ
   Simplicity2 Child
   Complete Style
========================================================== */


/* ==========================================================
   01. 共通設定
========================================================== */

: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;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}


body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
}


/* ==========================================================
   02. AZ TOP 基本設定
========================================================== */

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


.aztop-root {
  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;
}


.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;
}


.aztop-inner {
  position: relative;

  width: min(1200px, calc(100% - 48px));

  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================
   03. Simplicity2 TOPページ制限解除
========================================================== */

.home #body,
.home #body-in,
.home #content,
.home #main,
.home main,
.home .article,
.home .entry-content {
  width: 100% !important;
  max-width: none !important;

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


.home #body {
  background: #fff;
}


.home #main {
  float: none !important;

  border: 0 !important;

  background: transparent !important;

  box-shadow: none !important;
}


.home #sidebar,
.home .sidebar {
  display: none !important;
}


.home .entry-title,
.home .post-meta,
.home .post-date,
.home .post-update,
.home .footer-post-meta,
.home .article-header,
.home #breadcrumb,
.home .breadcrumb {
  display: none !important;
}


.home .entry-content > * {
  max-width: none;
}


/* ==========================================================
   04. AZ TOP ウィジェット
========================================================== */

.home .widget_custom_html,
.home .aztop-widget {
  width: 100% !important;

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

  border: 0 !important;

  background: transparent !important;

  box-shadow: none !important;
}


.home .widget_custom_html .widget-title,
.home .aztop-widget-title {
  display: none !important;
}


.home .widget_custom_html .textwidget,
.home .aztop-widget .textwidget {
  width: 100% !important;

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


/* ==========================================================
   05. 共通セクション見出し
========================================================== */

.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%
    );
}


/* ==========================================================
   06. HERO
========================================================== */

.aztop-hero {
  position: relative;

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

  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      var(--aztop-deep) 0%,
      #061d3d 46%,
      #fff 46.1%,
      #fff 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: "";
}


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

  display: grid;

  grid-template-columns:
    43% 57%;

  min-height: 540px;
}


.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;
}


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

  gap: 14px;

  margin-top: 30px;
}


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

.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);
}


/* ==========================================================
   08. 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;

  background: #e8edf2;

  transform: skewX(-8deg);
}


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

  object-fit: cover;

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


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

.aztop-skills {
  padding: 70px 0;

  background: #fff;
}


.aztop-skills-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 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
    minmax(0, 1fr)
    25px;

  align-items: center;

  min-width: 0;
  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;

  padding: 12px;

  overflow: hidden;
}


.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 img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


.aztop-skill-content {
  min-width: 0;
}


.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;
}


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

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

  background: #fff;
}


.aztop-numbers-panel {
  position: relative;

  display: grid;

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

  overflow: hidden;

  color: #fff;

  background:
    var(--aztop-deep);

  box-shadow:
    0 10px 30px
    rgba(0, 17, 39, 0.12);
}


.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
    minmax(0, 1fr);

  align-items: center;

  min-width: 0;

  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;

  flex-shrink: 0;

  width: 55px;
  height: 55px;
}


.aztop-number-icon img {
  width: 46px;
  height: 46px;

  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;

  letter-spacing: -0.02em;
}


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


.aztop-number-note {
  display: block;

  margin-top: 6px;

  color: #c7d3e0;

  font-size: 9px;

  line-height: 1.5;
}


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

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

  background: #fff;
}


.aztop-voice-grid {
  display: grid;

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

  gap: 24px;
}


.aztop-voice-card {
  position: relative;

  display: grid;

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

  align-items: center;

  min-width: 0;
  min-height: 150px;

  padding: 20px;

  gap: 18px;

  overflow: hidden;

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

  background: #fff;

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

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


.aztop-voice-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 14px 35px
    rgba(4, 30, 70, 0.09);
}


.aztop-voice-photo {
  position: relative;

  width: 92px;
  height: 92px;

  overflow: hidden;

  border-radius: 50%;

  background: #edf2f7;
}


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

  object-fit: cover;
}


.aztop-voice-photo::after {
  position: absolute;

  inset: 0;

  border-radius: 50%;

  box-shadow:
    inset 0 0 0 4px
    rgba(255, 255, 255, 0.7);

  content: "";

  pointer-events: none;
}


.aztop-voice-content {
  position: relative;

  min-width: 0;
}


.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 {
  position: relative;

  display: inline-block;

  margin-top: 10px;

  padding-left: 13px;

  color: var(--aztop-gray);

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


.aztop-voice-content small::before {
  position: absolute;

  top: 50%;
  left: 0;

  width: 6px;
  height: 2px;

  background: var(--aztop-blue);

  content: "";

  transform: translateY(-50%);
}


.aztop-voice-card:nth-child(2)
.aztop-voice-content small::before {
  background: var(--aztop-pink);
}


.aztop-voice-card:nth-child(3)
.aztop-voice-content small::before {
  background: var(--aztop-cyan);
}


.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);
}


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

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

  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);
}


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

  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 {
  display: flex;

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

  width: 38px;
  height: 38px;

  margin: 0 auto 8px;
}


.aztop-flow-icon img {
  width: 34px;
  height: 34px;

  object-fit: contain;
}


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

  color: var(--aztop-text);

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

  white-space: nowrap;
}


.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;
}


/* ==========================================================
   13. 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-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;
}


.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;
}


.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;
}


.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);

  opacity: 0.15;

  transform: rotate(45deg);
}


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

  width: 180px;
  height: 180px;

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

  border-radius: 50%;

  opacity: 0.12;
}


/* ==========================================================
   14. ヘッダー
========================================================== */

#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 {
  position: relative;

  width:
    min(1600px, calc(100% - 32px));

  margin: 0 auto;

  padding: 0;
}


#h-top {
  display: grid;

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

  align-items: center;

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

  margin: 0;
  padding: 0;

  gap: 14px;
}


/* ==========================================================
   15. ヘッダーロゴ
========================================================== */

.azhead-logo-area {
  display: flex;

  align-items: center;

  min-width: 0;

  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: 220px;
  max-height: 58px;

  margin: 0;

  object-fit: contain;
}


/* ==========================================================
   16. PCナビ
========================================================== */

.azhead-navigation-area {
  display: flex;

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

  min-width: 0;
  width: 100%;

  overflow: visible;
}


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

  min-width: 0;
  max-width: none;

  margin: 0;
  padding: 0;
}


.azhead-navigation-area #navi {
  border: 0;

  background: transparent;

  box-shadow: none;
}


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

  flex-wrap: nowrap;

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

  min-width: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}


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

  float: none;

  min-width: 0;

  margin: 0;
  padding: 0;
}


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

  display: flex;

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

  min-width: 0;
  min-height: 86px;

  padding:
    0 clamp(6px, 0.7vw, 14px);

  color: var(--aztop-text);

  background: transparent;

  border: 0;

  font-size:
    clamp(9px, 0.75vw, 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: 12px;
  bottom: 20px;
  left: 12px;

  height: 2px;

  background: var(--aztop-blue);

  content: "";

  transform: scaleX(0);

  transform-origin: center;

  transition:
    transform 0.2s ease;
}


.azhead-navigation-area
#navi ul li a:hover {
  color: var(--aztop-blue);

  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: var(--aztop-blue);
}


.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;
}


/* ==========================================================
   17. PCヘッダーCTA
========================================================== */

.aztop-header-right {
  display: flex;

  align-items: center;

  min-width: 0;
  max-width: 330px;

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


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

  border: 0 !important;

  background: none !important;

  box-shadow: none !important;
}


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


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


.azhead-actions {
  display: grid;

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

  width: 100%;

  gap: 7px;
}


.azhead-action {
  display: inline-flex;

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

  min-width: 0;
  min-height: 44px;

  padding: 0 12px;

  gap: 7px;

  overflow: hidden;

  border-radius: 4px;

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

  line-height: 1;

  white-space: nowrap;

  text-decoration: none !important;

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


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


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

  filter: brightness(1.04);
}


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

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


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

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


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


/* ==========================================================
   18. AZ独自スマホメニュー
========================================================== */

/* PCでは非表示 */

.azmobile-toggle,
.azmobile-menu {
  display: none;
}


/* ==========================================================
   19. フッター
========================================================== */

.azfooter {
  position: relative;

  width: 100%;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #001327 0%,
      #031d3c 55%,
      #052b58 100%
    );
}


.azfooter-decoration {
  position: absolute;

  inset: 0;

  opacity: 0.13;

  background-image:
    linear-gradient(
      rgba(58, 139, 255, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(58, 139, 255, 0.4) 1px,
      transparent 1px
    );

  background-size: 44px 44px;

  pointer-events: none;
}


.azfooter::before {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--aztop-blue),
      #00c7ff 45%,
      var(--aztop-lime)
    );

  content: "";
}


.azfooter-inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(250px, 1.5fr)
    minmax(130px, 0.7fr)
    minmax(150px, 0.8fr)
    minmax(260px, 1.25fr);

  width:
    min(1200px, calc(100% - 48px));

  margin: 0 auto;

  padding: 70px 0 60px;

  gap:
    clamp(30px, 4vw, 60px);
}


.azfooter-logo {
  display: inline-flex;

  flex-direction: column;

  color: #fff !important;

  text-decoration: none !important;
}


.azfooter-logo-small {
  margin-bottom: 5px;

  color: #55caff;

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

  letter-spacing: 0.18em;
}


.azfooter-logo strong {
  color: #fff;

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


.azfooter-description {
  margin: 24px 0 0;

  color: #d2deeb;

  font-size: 13px;

  line-height: 2;
}


.azfooter-support {
  display: inline-block;

  margin-top: 18px;

  padding: 6px 10px;

  color: var(--aztop-lime);

  border:
    1px solid
    rgba(204, 236, 0, 0.35);

  font-size: 10px;
  font-weight: 800;
}


.azfooter-nav h3 {
  position: relative;

  margin: 0 0 22px;

  padding-bottom: 11px;

  color: #fff;

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


.azfooter-nav h3::after {
  position: absolute;

  bottom: 0;
  left: 0;

  width: 30px;
  height: 2px;

  background: var(--aztop-blue);

  content: "";
}


.azfooter-nav ul {
  margin: 0;
  padding: 0;

  list-style: none;
}


.azfooter-nav li {
  margin: 0 0 13px;
}


.azfooter-nav a {
  position: relative;

  display: inline-block;

  padding-left: 12px;

  color: #c9d6e5 !important;

  font-size: 12px;

  line-height: 1.6;

  text-decoration: none !important;

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


.azfooter-nav a::before {
  position: absolute;

  top: 0.7em;
  left: 0;

  width: 4px;
  height: 4px;

  background: #55caff;

  content: "";
}


.azfooter-nav a:hover {
  color: #fff !important;

  transform: translateX(3px);
}


.azfooter-contact {
  padding: 25px;

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

  background:
    rgba(255, 255, 255, 0.055);
}


.azfooter-contact-en {
  color: var(--aztop-lime);

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

  letter-spacing: 0.2em;
}


.azfooter-contact h3 {
  margin: 8px 0 10px;

  color: #fff;

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


.azfooter-contact p {
  margin: 0;

  color: #c9d6e5;

  font-size: 11px;

  line-height: 1.8;
}


.azfooter-contact-main {
  display: flex;

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

  min-height: 50px;

  margin-top: 20px;

  padding: 0 16px;

  color: #fff !important;

  background: var(--aztop-blue);

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

  text-decoration: none !important;

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


.azfooter-contact-main:hover {
  background: #1769ff;

  transform: translateY(-2px);
}


.azfooter-contact-sub {
  display: inline-block;

  margin-top: 14px;

  color: var(--aztop-lime) !important;

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

  text-decoration: none !important;
}


.azfooter-bottom {
  position: relative;
  z-index: 2;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.12);

  background:
    rgba(0, 0, 0, 0.12);
}


.azfooter-bottom-inner {
  display: flex;

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

  width:
    min(1200px, calc(100% - 48px));

  min-height: 64px;

  margin: 0 auto;

  gap: 20px;
}


.azfooter-bottom p {
  margin: 0;

  color: #8fa2b8;

  font-size: 9px;

  letter-spacing: 0.08em;
}


.azfooter-bottom-links {
  display: flex;

  align-items: center;

  gap: 25px;
}


.azfooter-bottom-links a {
  color: #aab9c9 !important;

  font-size: 9px;

  text-decoration: none !important;
}


.azfooter-page-top {
  display: inline-flex;

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

  min-width: 58px;
  height: 30px;

  border:
    1px solid
    rgba(255, 255, 255, 0.18);
}


/* ==========================================================
   20. PC 1350px以下
========================================================== */

@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;
  }

}


/* ==========================================================
   21. タブレット / スマホヘッダー
   1100px以下
========================================================== */

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

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


  #h-top {
    display: flex !important;

    position: relative;

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

    min-height: 68px;

    gap: 12px;
  }


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


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

    min-width: 0;

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


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


  /* ------------------------------------------
     AZハンバーガー
  ------------------------------------------ */

  .azmobile-toggle {
    display: flex !important;

    flex-direction: column;

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

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    margin: 0;
    padding: 0;

    gap: 6px;

    border: 0;

    background: transparent;

    cursor: pointer;

    position: relative;

    z-index: 10002;
  }


  .azmobile-toggle span {
    display: block !important;

    width: 28px;
    height: 3px;

    margin: 0;

    border: 0;
    border-radius: 2px;

    background:
      var(--aztop-text) !important;

    opacity: 1;

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


  .azmobile-toggle.is-open
  span:nth-child(1) {
    transform:
      translateY(9px)
      rotate(45deg);
  }


  .azmobile-toggle.is-open
  span:nth-child(2) {
    opacity: 0;
  }


  .azmobile-toggle.is-open
  span:nth-child(3) {
    transform:
      translateY(-9px)
      rotate(-45deg);
  }


  /* ------------------------------------------
     AZスマホメニュー
  ------------------------------------------ */

  .azmobile-menu {
    display: none !important;

    position: absolute;

    z-index: 10000;

    top: 100%;
    left: 0;

    width: 100%;

    margin: 0;
    padding: 0;

    border-top:
      1px solid #e5eaf0;

    background: #fff;

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


  .azmobile-menu.is-open {
    display: block !important;
  }


  .azmobile-menu-inner {
    display: block;

    width:
      min(100%, 600px);

    margin: 0 auto;

    padding:
      10px 20px 22px;

    background: #fff;
  }


  .azmobile-menu-list {
    display: block !important;

    width: 100% !important;

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

    list-style: none !important;

    background: #fff;
  }


  .azmobile-menu-list > li {
    display: block !important;

    float: none !important;

    width: 100% !important;

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

    border-bottom:
      1px solid #edf1f5;
  }


  .azmobile-menu-list > li:last-child {
    border-bottom: 0;
  }


  .azmobile-menu-list > li > a {
    display: flex !important;

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

    width: 100% !important;

    min-height: 54px;

    margin: 0 !important;

    padding:
      0 8px !important;

    color:
      var(--aztop-text) !important;

    background: #fff !important;

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

    line-height: 1.5;

    text-decoration: none !important;
  }


  .azmobile-menu-list > li > a::after {
    display: inline-block;

    color: var(--aztop-blue);

    content: "›";

    font-size: 22px;

    line-height: 1;
  }


  .azmobile-cta {
    display: grid;

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

    gap: 8px;

    width: 100%;

    margin-top: 18px;
  }


  .azmobile-cta a {
    display: flex;

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

    min-width: 0;
    min-height: 48px;

    padding: 8px;

    border-radius: 4px;

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

    text-align: center;

    text-decoration: none !important;
  }


  .azmobile-cta-visit {
    color: #fff !important;

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


  .azmobile-cta-contact {
    color: #172300 !important;

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


  /* ------------------------------------------
     TOP 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, minmax(0, 1fr));

    margin-top: 7px;
  }


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

    border-width: 4px;
  }


  /* ------------------------------------------
     できること
  ------------------------------------------ */

  .aztop-skills-grid {
    grid-template-columns:
      repeat(2, minmax(0, 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, minmax(0, 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);
  }


  /* ------------------------------------------
     フッター
  ------------------------------------------ */

  .azfooter-inner {
    grid-template-columns:
      1.4fr
      1fr
      1fr;
  }


  .azfooter-contact {
    grid-column:
      1 / -1;
  }

}


/* ==========================================================
   22. スマホ 767px以下
========================================================== */

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

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


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


  #h-top {
    min-height: 64px;

    gap: 10px;
  }


  .azhead-logo-area {
    max-width:
      calc(100% - 58px);
  }


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


  .azmobile-toggle {
    flex:
      0 0 44px;

    width: 44px;
    height: 44px;
  }


  .azmobile-toggle span {
    width: 26px;
  }


  .azmobile-menu-inner {
    width: 100%;

    padding:
      8px 16px 20px;
  }


  .azmobile-menu-list > li > a {
    min-height: 52px;

    padding:
      0 6px !important;

    font-size:
      13px !important;
  }


  .azmobile-cta {
    gap: 7px;

    margin-top: 15px;
  }


  .azmobile-cta a {
    min-height: 46px;

    padding: 7px 5px;

    font-size: 11px;
  }


  /* ------------------------------------------
     HERO
  ------------------------------------------ */

  .aztop-hero-title {
    font-size:
      clamp(30px, 9vw, 40px);

    line-height: 1.35;
  }


  .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-heading {
    margin-bottom: 23px;
  }


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


  /* ------------------------------------------
     できること
     参考デザインに合わせて2列
  ------------------------------------------ */

  .aztop-skills {
    padding:
      55px 0;
  }


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

    gap: 8px;

    border: 0;

    box-shadow: none;
  }


  .aztop-skill-card {
    display: flex;

    flex-direction: column;

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

    min-width: 0;
    min-height: 155px;

    padding: 16px 10px;

    gap: 8px;

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

    border-radius: 5px;

    text-align: center;

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


  .aztop-skill-icon {
    width: 52px;
    height: 52px;

    padding: 10px;
  }


  .aztop-skill-content {
    width: 100%;
  }


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

    font-size: 14px;

    line-height: 1.4;
  }


  .aztop-skill-content p {
    display: none;
  }


  .aztop-skill-arrow {
    position: absolute;

    right: 9px;
    bottom: 9px;

    width: 19px;
    height: 19px;

    font-size: 14px;
  }


  /* ------------------------------------------
     数字で見るAZ
  ------------------------------------------ */

  .aztop-numbers {
    padding:
      45px 0;
  }


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


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

    padding: 19px;

    font-size: 21px;
  }


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

    justify-items: center;

    min-height: 150px;

    padding: 20px 10px;

    gap: 8px;

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


  /* ------------------------------------------
     利用者の声
  ------------------------------------------ */

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


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

    gap: 14px;
  }


  .aztop-voice-card {
    grid-template-columns:
      78px
      minmax(0, 1fr);

    min-height: 135px;

    padding: 18px 15px;

    gap: 14px;
  }


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


  .aztop-voice-quote {
    top: -21px;

    font-size: 40px;
  }


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

    line-height: 1.75;
  }


  /* ------------------------------------------
     FLOW
  ------------------------------------------ */

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


  .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);
  }


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

  .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;
  }


  /* ------------------------------------------
     FOOTER
  ------------------------------------------ */

  .azfooter-inner {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    width:
      calc(100% - 32px);

    padding:
      50px 0 40px;

    gap:
      40px 24px;
  }


  .azfooter-brand {
    grid-column:
      1 / -1;
  }


  .azfooter-logo strong {
    font-size: 20px;
  }


  .azfooter-description {
    margin-top: 18px;

    font-size: 12px;
  }


  .azfooter-contact {
    grid-column:
      1 / -1;

    width: 100%;

    padding: 20px;
  }


  .azfooter-nav {
    min-width: 0;
  }


  .azfooter-nav a {
    font-size: 11px;
  }


  .azfooter-contact-main {
    width: 100%;
  }


  .azfooter-bottom-inner {
    flex-direction: column;

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

    width:
      calc(100% - 32px);

    min-height: 90px;

    padding:
      15px 0;

    gap: 10px;
  }


  .azfooter-bottom-links {
    width: 100%;

    justify-content:
      space-between;
  }


  /* ------------------------------------------
     長文対策
  ------------------------------------------ */

  .aztop-skills,
  .aztop-voices,
  .aztop-flow,
  .aztop-numbers,
  .azfooter {
    overflow-wrap: anywhere;

    word-break: normal;
  }

}


/* ==========================================================
   23. 小型スマホ 374px以下
========================================================== */

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

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


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


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


  .azmobile-menu-inner {
    padding:
      8px 14px 18px;
  }


  .azmobile-cta {
    grid-template-columns:
      1fr;
  }


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


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


  .azfooter-inner {
    grid-template-columns:
      1fr;

    width:
      calc(100% - 28px);
  }


  .azfooter-brand,
  .azfooter-contact {
    grid-column: auto;
  }


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


  .azfooter-bottom-links {
    flex-wrap: wrap;
  }

}


/* ==========================================================
   24. アンカー位置
========================================================== */

#az-home,
#az-service,
#az-data,
#az-voice,
#az-flow,
#az-contact {
  scroll-margin-top: 100px;
}


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

  #az-home,
  #az-service,
  #az-data,
  #az-voice,
  #az-flow,
  #az-contact {
    scroll-margin-top: 75px;
  }

}

/* ==========================================================
   DIGITAL WORKS AZ
   HEADER LOGO
========================================================== */

.azhead-logo-link {
  display: flex;

  align-items: center;

  width: auto;

  margin: 0;
  padding: 0;

  text-decoration: none !important;
}


.azhead-logo-image {
  display: block;

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

  max-width: 220px !important;
  max-height: 64px !important;

  margin: 0;
  padding: 0;

  object-fit: contain;
}


/* タブレット */

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

  .azhead-logo-image {
    max-width: 200px !important;
    max-height: 52px !important;
  }

}


/* スマホ */

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

  .azhead-logo-image {
    max-width: 175px !important;
    max-height: 46px !important;
  }

}


/* 小型スマホ */

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

  .azhead-logo-image {
    max-width: 150px !important;
    max-height: 42px !important;
  }

}