/*
Theme Name: kbsad
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: kbsad
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

kbsad is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ============================================================
   Root variables / base
   ============================================================ */
:root {
  --leading-trim: calc((1em - 1lh) / 2);
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);

  --color-background: #fff;
  --color-text-screen: #464646;
  --color-text-screen-rgb: 70, 70, 70;

  --color-link: #464646;
  --color-link-rgb: 70, 70, 70;

  --color-link-visited: #008ccf;
  --color-link-visited-rgb: 0, 140, 207;

  --color-link-hover: #008ccf;
  --color-link-hover-rgb: 0, 140, 207;

  --color-gray-light: #a2a2a2;
  --color-gray-light-rgb: 162, 162, 162;

  --color-tag-bg: #e6f0fa;
  --color-tag-bg-rgb: 230, 240, 250;

  --color-btn-bg: #d9e8f7;
  --color-btn-bg-rgb: 217, 232, 247;

  --font-main: YakuHanJP, 'Noto Sans JP', 'Hiragino Sans',
    'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  --font-serif: 'Shippori Mincho', serif;
  --font-line-height-body: 1.8;
  --font-line-height-pre: 2.2;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-prefered-value: calc(var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi));
  --clamp: clamp(calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
      var(--clamp-prefered-value),
      calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size))));
  font-size: var(--clamp);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.updated:not(.published) {
  display: none;
}

@supports selector(:has(*)) {
  html:has(dialog[open]) {
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  height: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  min-height: 100%;
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
html {
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body,
button,
input,
select,
optgroup,
textarea {
  color: var(--color-text-screen);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: var(--font-line-height-body);
}

body {
  background: #fff;
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1260;
  --clamp-min: 14;
  --clamp-max: 16;
}

#page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

#content {
  flex: 1 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

li>ul,
li>ol {
  margin: 0;
  padding: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 1em 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: 'Courier 10 Pitch', courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

li>ul,
li>ol {
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  color: #4169e1;
}

a:visited {
  ccolor: var(--color-text-screen);
}

a:hover,
a:focus,
a:active {
  color: #4169e1;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type='button']:active,
input[type='button']:focus,
input[type='reset']:active,
input[type='reset']:focus,
input[type='submit']:active,
input[type='submit']:focus {
  border-color: #aaa #bbb #bbb;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site-header {
  .site-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 81px;
    padding: 0 0 0 30px;
    border-bottom: 1px solid var(--color-text-screen);

    @media (width <=600px) {
      padding: 0 0 0 3%;
    }

    @media (width <=768px) {
      flex-wrap: wrap;
      width: 100%;
      height: auto;
      padding: 0;
      border-bottom: none;
    }

    .site-title {
      display: flex;
      align-items: center;
      height: 81px;
      line-height: 1;

      @media (width <=900px) {
        width: 80%;
        padding: 0 30px 0 0;
      }

      @media (width <=768px) {
        width: 60%;
        height: 80px;
        padding: 0 0 0 3%;
      }
    }

    .main-navigation {
      display: flex;
      justify-content: center;
      align-items: center;

      @media (width <=768px) {
        flex-wrap: wrap;
        width: 100%;
      }

      a {
        display: grid;
        place-items: center;
        grid-auto-flow: column;
        height: 80px;
        padding: 0 2em;
        color: var(--color-link);
        font-weight: 700;
        text-decoration: none;
        transition: filter 0.2s ease;
        font-size: clamp(0.813rem, -3.875rem + 5.56vw, 1.125rem);
        z-index: 1;

        @media (width <=1440px) {
          padding: 0 1em;
        }

        @media (width <=768px) {
          height: 40px;
        }

        svg {
          flex: 0 0 auto;
          width: 12px;
          height: 12px;
          transform: translateY(1px);
        }
      }

      .main-nav {
        display: flex;
        justify-content: center;
        align-items: center;

        @media (width <=1160px) {
          display: none;
        }

        li {
          &.has-child {
            position: relative;
            display: inline-block;

            /* 子メニュー（初期状態：透明度0、少し上にずらしておく） */
            .child {
              display: block;
              /* display:noneを使わずopacityで制御するとアニメーションが効きます */
              visibility: hidden;
              opacity: 0;
              position: absolute;
              top: 90%;
              left: 0;
              min-width: 160px;
              margin: 0;
              padding: 0;
              background-color: #fff;
              box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
              transform: translateY(-10px);
              transition: all 0.3s ease;
              z-index: 100;
            }

            /* 表示状態（JSでこのクラスを付与する） */
            .child.is-visible {
              visibility: visible;
              opacity: 1;
              transform: translateY(0);
            }

            /* 子メニュー内のリンク */
            .child li {
              border-right: none;
            }

            .child li a {
              display: block;
              padding: 16px;
              white-space: nowrap;
              height: inherit;
              padding: 0.5em 1em;
              color: var(--color-link);
              font-weight: 700;
              text-decoration: none;
              transition: filter 0.2s ease;
              z-index: 1;

              &:hover {
                background: rgba(180, 210, 240, 1);
              }
            }
          }
        }
      }

      .sub-nav {
        display: flex;
        justify-content: center;
        align-items: center;

        @media (width <=1160px) {
          margin-right: 80px;
        }

        @media (width <=768px) {
          width: 100%;
          margin-right: 0;
        }

        li {

          &.contact {
            width: 200px;
            border-left: 1px solid var(--color-text-screen);
            background: rgba(180, 210, 240, 1);

            &:hover {
              filter: brightness(0.75);
            }

            @media (width <=768px) {
              width: 50%;
              border-left: none;
            }
          }

          &.materials-list {
            width: 170px;
            border-left: 1px solid var(--color-text-screen);
            background: rgba(230, 240, 250, 1);

            @media (width <=768px) {
              width: 50%;
              border-left: none;
            }

            &:hover {
              filter: brightness(0.75);
            }
          }
        }
      }
    }
  }
}

.site-main {}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;

  @media (width <=1260px) {
    padding: 0 16px;
  }
}

.site-footer {
  padding: 90px 0 60px;
  background-image: linear-gradient(113deg, #d2f0ff 0%, #b4c8f5 100%);

  a {
    color: var(--color-link);
    text-decoration: none;
  }

  .container-inner {
    display: flex;
    justify-content: space-between;

    @media (width <=1024px) {
      flex-direction: column;
    }

    .site-info {
      width: 70%;

      @media (width <=1024px) {
        width: 100%;
      }

      p {
        width: 100%;
      }

      .foot-nav {
        display: flex;
        gap: 0 10%;

        ul {
          padding: 60px 0 0 0;

          &.child {
            margin: 16px 0 0 0;
            padding: 0;

            li {
              margin: 0 0 8px;

              &:before {
                content: '-';
              }
            }
          }

          &.sub {
            font-size: 0.875rem;
          }

          li {
            margin: 0 0 16px;
          }
        }

        @media (width <=600px) {
          flex-wrap: wrap;

          ul {
            &.sub {
              width: 100%;
              padding: 32px 0 0;
            }
          }
        }

      }
    }

    .foot-corp {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30%;
      text-align: right;

      .foot-corp-logo {
        margin: 0 0 10%;
      }

      .foot-corp-name {
        --clamp-min: 18;
        --clamp-max: 20;
        font-weight: 700;
      }

      .copyright {
        margin-top: auto;
      }

      @media (width <=1024px) {
        width: 100%;
      }

      @media (width <=600px) {
        margin: 48px 0 0;
        padding: 48px 0 0;
        border-top: 1px solid #fff;

        .foot-corp-logo {
          order: 3;
          margin: 32px 0 0;
          text-align: center;
        }

        .foot-corp-name {
          order: 1;
          text-align: center;
        }

        .foot-corp-address {
          order: 2;
          text-align: center;
        }

        .copyright {
          order: 4;
          text-align: center;
        }
      }

      .copyright {
        font-size: 0.875rem;
      }
    }
  }
}

.widget-area {
  padding: 2em 4em;
}

#breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 32px;
  margin: 28px 48px;
  --clamp-min: 13;
  --clamp-max: 14;

  @media (width <=768px) {
    height: auto;
    padding: 0.5em 0;
  }
}

.section-title01 {
  display: grid;
  place-items: center;
  gap: 10px;
  margin: 0 0 90px;
  --clamp-min: 16;
  --clamp-max: 18;
  font-weight: 600;

  &::before {
    content: attr(data-en);
    --clamp-min: 26;
    --clamp-max: 32;
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1;
  }
}



/*--------------------------------------------------------------
# home 
--------------------------------------------------------------*/
#info {
  width: 100%;
  max-width: 1000px;
  margin: 150px auto 100px;

  @media (width <=1000px) {
    padding: 0 16px;
  }

  h1,
  h2 {
    /* font-size: 20px; */
    --clamp-min: 18;
    --clamp-max: 20;
    font-weight: bold;
    text-align: center;

    &::before,
    &::after {
      display: inline-block;
      font-size: 20px;
    }

    &::before {
      margin-right: 8px;
      content: '〈';
    }

    &::after {
      margin-left: 8px;
      content: '〉';
    }
  }

  .info-list {
    margin: 48px 0;
    border-top: 1px dashed var(--color-text-screen);

    li {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 16px 48px;
      padding: 24px 0;
      border-bottom: 1px dashed var(--color-text-screen);

      @media (width <=640px) {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .kb-info-item__date {
        color: var(--color-gray-light);
        --clamp-min: 14;
        --clamp-max: 16;
      }

      .kb-info-item__body {
        display: grid;
        gap: 8px;
        min-width: 0;
      }

      .kb-info-item__media-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }

      .kb-info-item__media {
        width: fit-content;
        grid-template-columns: none;
        padding: 8px 12px;
        border-radius: 4px;
        border-bottom: none;
        background: #e8f1fb;
        color: var(--color-text-screen);
        --clamp-min: 11;
        --clamp-max: 12;
        font-weight: 600;
        line-height: 1.5;
      }

      .kb-info-item__title {
        --clamp-min: 14;
        --clamp-max: 16;
        font-weight: 700;
      }

      .kb-info-item__content {
        --clamp-min: 13;
        --clamp-max: 15;
        line-height: 1.8;

        p+p {
          margin-top: 0.5em;
        }
      }
    }
  }
}

.kb-information-archive {
  #info {
    max-width: 1000px;
    margin-top: 90px;

    .kb-page-title {
      margin-bottom: 100px;
      --clamp-min: 18;
      --clamp-max: 24;

      &::before,
      &::after {
        content: none;
      }
    }
  }
}

.capsule {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;

  &.wide {
    max-width: 80%;

    @media (width <=768px) {
      max-width: 90%;

      a {
        align-content: center;
        height: 80px;
        border-radius: 80px;
      }
    }

    @media (width <=480px) {
      max-width: 98%;
    }
  }

  a {
    display: grid;
    place-items: center;
    height: 60px;
    border-radius: 60px;
    background: var(--color-text-screen);
    background-image: url(assets/images/arrow_right.svg);
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 24px 23px;
    color: #fff;
    text-decoration: none;

    &:hover {
      filter: brightness(0.9);
    }
  }
}

#whatsnew {
  padding: 60px 0;
  background: url(assets/images/bg_whatsnew.jpg) no-repeat center center/cover;
}

.kb-latest-info-page #latest-info {
  min-height: 70vh;
  padding: 90px 0 110px;
  background: url(assets/images/bg_whatsnew.jpg) no-repeat center center/cover;
}

.kb-latest-info-page .section-title01 {
  margin-bottom: 70px;
}

#home-media {
  padding: 60px 0;

  .home-media-list {
    --media-item-width: 305px;
    --media-column-gap: 13px;
    --media-list-width-4: 1259px;
    /* 305 * 4 + 13 * 3 */
    --media-list-width-3: 941px;
    /* 305 * 3 + 13 * 2 */
    --media-list-width-2: 623px;
    /* 305 * 2 + 13 */
    --media-list-width-1: 305px;

    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--media-column-gap);

    width: var(--media-list-width-4);
    max-width: 100%;
    margin-inline: auto;

    li {
      flex: 0 0 var(--media-item-width);
      max-width: 100%;

      a {
        display: grid;
        place-items: center;
        width: 100%;
        height: 106px;
        border: 1px solid var(--color-text-screen);
      }
    }
  }

  @media (max-width: 1273px) {
    .home-media-list {
      width: var(--media-list-width-3);
    }
  }

  @media (max-width: 960px) {
    .home-media-list {
      width: var(--media-list-width-2);
    }
  }

  @media (max-width: 655px) {
    .home-media-list {
      width: var(--media-list-width-1);
    }
  }
}

.kb-ad-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 30px;
  list-style: none;
  margin: 0 0 80px;
  padding: 0;
}

@media (max-width: 1024px) {
  .kb-ad-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kb-ad-card-list {
    grid-template-columns: 1fr;
  }
}

.kb-ad-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 450px;
  background: #fff;
}

.kb-ad-card__link {
  display: grid;
  grid-template-rows: auto auto 1fr;
  color: var(--color-text-screen);
  text-decoration: none;

  &:visited {
    color: inherit;
  }
}

.kb-ad-card__body {
  display: grid;
  grid-template-rows: auto auto auto;
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
}

.kb-ad-card__media {
  margin: 0;

  img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.kb-ad-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.kb-ad-card__badge {
  display: inline-grid;
  place-items: center;
  width: 130px;
  height: 25px;
  background: var(--color-tag-bg);
  --clamp-min: 15;
  --clamp-max: 18;
  font-weight: 600;
  line-height: 1;
}

.kb-ad-card__date {
  font-size: 12px;
  opacity: .7;
}

.kb-ad-card__title {
  display: -webkit-box;
  min-height: 4.65em;
  max-height: 4.65em;
  margin: 0;
  overflow: hidden;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  --clamp-min: 16;
  --clamp-max: 18;
}

.kb-ad-card__dl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;

  @media (width <=768px) {
    flex-direction: column;
  }
}

.kb-ad-card__dl-label {
  --clamp-min: 13;
  --clamp-max: 14;
  margin-right: auto;
}

.kb-ad-card__dl-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kb-ad-card__dl-item {
  margin: 0;
}

.kb-ad-card__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  min-width: 100px;
  padding: 0 12px;
  border: 1px solid var(--color-text-screen);
  border-radius: 4px;
  background: var(--color-text-screen);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  --clamp-min: 14;
  --clamp-max: 15;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;

  &::before {
    display: block;
    flex: 0 0 auto;
    width: 11px;
    height: 13px;
    margin-right: 8px;
    background: currentColor;
    content: '';
    -webkit-mask: url(assets/images/icon_dl_white.svg) center / contain no-repeat;
    mask: url(assets/images/icon_dl_white.svg) center / contain no-repeat;
  }
}

.kb-ad-card__btn:visited {
  color: #fff;
}

.kb-ad-card__btn:hover,
.kb-ad-card__btn:focus,
.kb-ad-card__btn:active {
  border-color: var(--color-text-screen);
  background: #fff;
  color: var(--color-text-screen);
}

.kb-ad-card__btn:hover::before,
.kb-ad-card__btn:focus::before,
.kb-ad-card__btn:active::before {
  background: currentColor;
}

.kb-ad-card__btn.is-disabled {
  background: #cfcfcf;
  color: #fff;
  cursor: not-allowed;
}

.kb-ad-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 40 / 21;
  overflow: hidden;
}

.kb-ad-card__media.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kb-ad-card__media.no-image {
  height: 100%;
  max-height: 210px;
  background: #e9edf3;
  /* ベース背景（媒体別に変えるなら後述） */
  display: grid;
  place-items: center;

  @media (width <=1024px) {
    max-height: 248px;
  }

  @media (width <=768px) {
    max-height: 181px;
  }

  @media (width <=640px) {
    max-height: 311px;
  }
}

.kb-ad-card__fallback {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 18px;
  color: rgba(0, 0, 0, .55);
  padding: 0 12px;
  text-align: center;
  line-height: 1.3;
}

.kb-ad-card__media.no-image.is-media-classy {
  background: #eef2ff;
}

.kb-ad-card__media.no-image.is-media-very {
  background: #fff3e8;
}

.kb-ad-card__media.no-image.is-media-story {
  background: #eaf7f1;
}

.kb-ad-card__media.no-image.is-media-flash {
  background: #f2f2f2;
}

.kb-ads-pagination {
  margin-top: 32px;
}

.kb-ads-pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kb-ads-pagination .page-numbers a,
.kb-ads-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text-screen);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.kb-ads-pagination .page-numbers .current {
  background: #a6a6a6;
  color: var(--color-background);
}

.kb-ads-pagination .page-numbers .prev,
.kb-ads-pagination .page-numbers .next {
  padding: 0 12px;
  background: transparent;
  font-weight: 400;
}

.kb-latest-info-page__empty {
  text-align: center;
}


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* ============================================================
   MicroModal / Hamburger
   ============================================================ */
.gnav-button {
  display: none;

  @media (width <=1160px) {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 0;
    background: var(--color-text-screen);
    z-index: 2000;
    cursor: pointer;
    transition: top 0.2s ease, background-color 0.2s ease;
  }

  &.is-open {
    top: 0;

    .button-line {
      background-color: transparent;

      &::before {
        background: #fff;
        transform: rotate(45deg);
        top: 0;
      }

      &::after {
        background: #fff;
        transform: rotate(-45deg);
        top: 0;
      }
    }
  }

  &.is-pinned {
    top: 0 !important;
  }
}

.button-line {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  background: #fff;
  transition: 0.2s;

  &::before,
  &::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.5s;
    content: '';
  }

  &::before {
    transform: translateY(-9px);
  }

  &::after {
    transform: translateY(9px);
  }
}

/* Modal panel */
body.is-scroll-locked {
  position: fixed !important;
  left: 0;
  right: 0;
  overflow: hidden !important;
  width: 100%;
}

.modal-container {
  #modal-1-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100dvh;
    height: 100svh;
    height: 100vh;
    padding: 0;
    /* background: var(--color-); */
    color: var(--color-text-screen);
    transition: right 0.3s ease;
    overflow-y: auto !important;
    z-index: 1000;
    will-change: right;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    @media (768px <=width <=1024px) {
      width: 75%;
      /* padding: 0 40px; */
    }

    @media (width <=768px) {
      width: 100%;
      /* height: 100svh; */
      /* padding: 0 20px; */
      /* border-bottom-left-radius: 0; */
    }

    /* @media (width <=600px) {
      padding: 0 16px;
    } */

    a {
      color: var(--color-text-screen);
      text-decoration: none;
      outline: none;
    }

    .nav-title {
      display: flex;
      align-items: center;
      height: 81px;
      padding: 0 0 0 30px;
      background: #fff;
      line-height: 1;

      @media (width <=900px) {
        width: 100%;
        padding: 0 30px 0 0;

        img {
          max-height: 35px;
        }
      }

      @media (width <=768px) {
        height: 80px;
        padding: 0 0 0 3%;

        img {
          width: 60%;
        }
      }
    }

    .nav-container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 0 0 40px;
      background-image: linear-gradient(113deg, #d2f0ff 0%, #b4c8f5 100%);

      @media (width <=600px) {
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
      }

      ul {
        width: 375px;

        @media (width <=375px) {
          width: 96%;
        }
      }

      .nav {
        margin: 16px 0 0;

        li {
          padding: 12px 0;
          border-bottom: 1px solid #fff;
          --clamp-min: 16;
          --clamp-max: 20;
          font-weight: 700;
        }

        .child {
          display: flex;
          flex-wrap: wrap;
          flex-direction: column;
          height: 190px;
          margin: 8px 0 0 8px;
          --clamp-min: 15;
          --clamp-max: 19;

          li {
            padding: 6px 0;
            border-bottom: none;

            &:before {
              content: '-';
            }
          }
        }
      }

      .sub-nav {
        --clamp-min: 15;
        --clamp-max: 19;
        font-weight: 400;

        li {
          padding: 8px 0;
        }
      }

      .nav-corp-logo {
        width: 100%;
        padding: 0 3% 0 0;
        text-align: right;

        img {
          width: 150px;
        }
      }
    }
  }

  &.is-open {
    #modal-1-content {
      right: 0;
      z-index: 2500;
    }

    .overlay {
      position: fixed;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 24, 100, 0.5);
      z-index: 1100;
      opacity: 1;
      transition: opacity 0.2s ease;
      touch-action: none;
    }

    /* Prevent overlay scroll */
    .overlay {
      touch-action: none;
    }
  }

  /* 閉じ際 */
  &.is-open.is-closing {
    #modal-1-content {
      right: -100%;
    }

    .overlay {
      opacity: 0;
    }
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

.kb-deadline-row.is-highlight {
  background: #fff7f7;
}

.kb-deadline-row.is-highlight .kb-deadline-col-1,
.kb-deadline-col-1.is-highlight,
.kb-deadline-release.is-highlight,
.kb-deadline-table-note strong {
  color: #d94841;
  font-weight: 700;
}

.kb-deadline-table-note {
  ul {
    list-style: disc;
    margin-left: 24px;
  }
}

/* media-list
--------------------------------------------- */
.kb-media-page {
  margin: 100px 0;
}

.kb-media-hero {
  display: flex;
  justify-content: space-between;
  gap: 150px;

  @media (width <=1024px) {
    flex-direction: column;
  }

  .kb-media-hero__left {
    margin: 0;
    width: 350px;
    height: fit-content;
    box-shadow: 6px 8px 16px rgba(0, 0, 0, 0.18);

    .kb-media-cover {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .kb-media-hero__right {
    width: 100%;
    max-width: 760px;

    .kb-media-title {
      margin: 0 0 68px;

      img {
        display: block;
        width: auto;
        height: auto;
      }
    }

    .kb-media-lead {
      --clamp-min: 18;
      --clamp-max: 24;
      font-weight: 700;
    }

    .kb-media-block {
      .kb-media-block__head {
        display: grid;
        place-items: center;
        width: fit-content;
        height: 30px;
        margin: 0 0 20px;
        padding: 0 8px;
        background-color: var(--color-text-screen);
        color: #fff;
        font-weight: normal;
      }

      .kb-media-block__body {
        margin: 0 0 75px;

        .kb-media-list {
          margin: 0 0 24px;
        }
      }
    }

    .kb-media-spec {
      border-top: 1px dashed var(--color-text-screen);
      border-bottom: 1px dashed var(--color-text-screen);
      border-collapse: collapse;

      th,
      td {
        padding: 16px 0;
        border-bottom: 1px dashed var(--color-text-screen);
        font-weight: normal;
        text-align: left;
      }

      th {
        padding: 16px 24px 16px 0;
      }
    }
  }
}

.kb-media-actions {
  margin-top: 120px;

  .kb-media-actions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 130px 100px;

    @media (width <=1024px) {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }

  .kb-media-actions__card {
    h2 {
      margin: 0 0 28px;
      padding: 12px 0 12px;
      border-top: 1px solid var(--color-text-screen);
      border-bottom: 1px solid var(--color-text-screen);
      color: var(--color-text-screen);
      --clamp-min: 20;
      --clamp-max: 24;
      font-weight: 700;
      text-align: center;
    }
  }

  .kb-media-actions__desc {
    margin: 0 0 34px;
    color: var(--color-text-screen);
    text-align: center;
  }

  .kb-media-actions__dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    @media (width <=600px) {
      flex-direction: column;
      gap: 8px;
    }
  }

  .kb-media-actions__heading {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin: 0 0 12px;

    @media (width <=600px) {
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
  }

  .kb-media-actions__date {
    display: block;
    margin: 0;
    color: var(--color-gray);
    font-size: 14px;
  }

  .kb-media-actions__dl-label {
    width: 7em;
    margin: 0;
    color: var(--color-text-screen);

    @media (width <=600px) {
      width: 100%;
      text-align: center;
    }
  }

  .kb-media-actions__dl-list {
    display: flex;
    gap: 20px;
    width: calc(100% - 7em);
    margin: 0;
    padding: 0;

    @media (width <=600px) {
      width: 100%;
    }

    .kb-media-actions__dl-item {
      width: 100%;
      margin: 0;
    }
  }

  .kb-media-actions__all {
    margin-top: 130px;
    --clamp-min: 15;
    --clamp-max: 18;
  }
}

.kb-media-actions .kb-media-actions__card--media {
  grid-column: 1;
  grid-row: 1;
}

.kb-media-actions .kb-media-actions__card--ad {
  grid-column: 2;
  grid-row: 1;
}

.kb-media-actions .kb-media-actions__card--schedule {
  grid-column: 1;
  grid-row: 2;
}

.kb-media-actions .kb-media-actions__card--plan {
  grid-column: 2;
  grid-row: 2;
}

@media (width <=1024px) {

  .kb-media-actions .kb-media-actions__card--media,
  .kb-media-actions .kb-media-actions__card--ad,
  .kb-media-actions .kb-media-actions__card--schedule,
  .kb-media-actions .kb-media-actions__card--plan {
    grid-column: auto;
    grid-row: auto;
  }
}

.kb-btn {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 220px;
  height: 70px;
  border: 0;
  border-radius: 8px;
  background: var(--color-btn-bg);
  color: var(--color-text-screen);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;

  &::before {
    display: block;
    /* width: 13px;
    height: 17px; */
    margin-right: 8px;
    content: url(assets/images/icon_dl_black.svg);
  }

  &:hover {
    opacity: 0.92;
  }

  @media (width <=600px) {
    min-width: 100%;
  }

  /* @media (width <=425px) {
    min-width: 140px;
  } */
}

.kb-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.kb-btn--ghost,
.kb-btn--wide {
  position: relative;
  width: 100%;
  justify-content: center;
  background-image: url(assets/images/arrow_right_black.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 24px 23px;
}

.kb-media-tables {
  padding: 120px 0;

  h2 {
    --clamp-min: 20;
    --clamp-max: 24;
    font-weight: 700;
    text-align: center;

    &.kb-rate {
      margin: 0 0 48px;
    }
  }

  .kb-table-scroll {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .kb-table-scroll-note {
    display: none;
    width: 100%;
    max-width: 800px;
    margin: 12px auto 0;
    color: var(--color-gray);
    font-size: 13px;
    text-align: right;

    @media (width <=800px) {
      display: block;
    }
  }

  .kb-rate-table,
  .kb-deadline-table {
    width: 800px;
    margin: 0;
    border-collapse: collapse;

    th,
    td {
      height: 50px;
      padding: 16px 0;
      font-weight: normal;
      text-align: center;
    }

    th {
      background-color: var(--color-tag-bg);

      &:not(:first-child) {
        border-left: 1px dashed var(--color-gray-light);
      }
    }

    td {
      border-bottom: 1px solid var(--color-gray-light);

      &:not(:first-child) {
        border-left: 1px dashed var(--color-gray-light);
        border-right: 1px dashed var(--color-gray-light);
      }

      &:last-child {
        border-right: none;
      }
    }
  }

  .kb-section-deadline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 148px auto 48px;

    h2 {
      grid-column: 2;
      text-align: center;
    }

    .kb-deadline-note {
      grid-column: 3;
      justify-self: end;
      width: auto;
    }

    @media (width <=600px) {
      grid-template-columns: 1fr;
      gap: 16px;

      h2 {
        grid-column: 1;
      }

      .kb-deadline-note {
        grid-column: 1;
        justify-self: center;
      }
    }
  }

  .kb-rate-note,
  .kb-deadline-table-note {
    width: 100%;
    max-width: 800px;
    margin: 32px auto 0;
  }
}

.single-media-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 80px 0;

  @media (width <=1024px) {
    flex-wrap: wrap;
  }
}

.kb-materials-page,
.kb-magazines-page,
.kb-marketing-solutions {
  margin: 100px 0;
}

.kb-page-title {
  margin: 0 0 100px;
  padding: 10px 0;
  border-top: 1px solid var(--color-text-screen);
  border-bottom: 1px solid var(--color-text-screen);
  --clamp-min: 18;
  --clamp-max: 24;
  font-weight: 700;
  text-align: center;
}

.kb-page-lead {
  margin: 48px auto;
  --clamp-min: 18;
  --clamp-max: 20;
  text-align: center;
}

.kb-materials-downloads {
  margin: 144px 0 200px;
}

.kb-section-title {
  margin: 0 0 48px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color-text-screen);
  --clamp-min: 20;
  --clamp-max: 24;
  font-weight: 700;
  text-align: center;
}

.positioning-map {
  padding: 100px 0;
  background: url(assets/images/bg_whatsnew.jpg) no-repeat center center/cover;
}

.section-title02 {
  margin: 0;
  --clamp-min: 50;
  --clamp-max: 60;
  font-family: var(--font-serif);
  font-weight: 500;
  text-align: center;

  +p {
    --clamp-min: 16;
    --clamp-max: 18;
    font-weight: 700;
  }
}

.magazines__text {
  text-align: center;
}

.magazines__content {
  width: 100%;
  max-width: 1260px;
  margin: 100px auto 0;
  --clamp-min: 16;
  --clamp-max: 18;
  text-align: center;

  span {
    display: inline-block;
  }
}

.kb-magazine-timeline {
  --kb-magazine-line-x: 50%;

  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 96px auto 150px;
  padding: 10px 0 94px;

  &::before {
    position: absolute;
    top: 0;
    bottom: 12px;
    left: var(--kb-magazine-line-x);
    width: 2px;
    background: var(--color-link);
    content: '';
    transform: translateX(-50%);
  }

  &::after {
    position: absolute;
    bottom: 20px;
    left: var(--kb-magazine-line-x);
    width: 40px;
    height: 40px;
    border-left: 2px solid var(--color-link);
    border-bottom: 2px solid var(--color-link);
    content: '';
    transform: translateX(-50%) rotate(-45deg);
  }

  @media (width <=1080px) {
    --kb-magazine-rail-width: 34px;
    --kb-magazine-line-x: calc(100% - (var(--kb-magazine-rail-width) / 2));

    max-width: 760px;
    margin-top: 72px;
    padding: 0 0 72px 0;

    &::before {
      left: var(--kb-magazine-line-x);
      right: auto;
      transform: translateX(-50%);
    }
  }
}

.kb-magazine-timeline__item {
  --kb-magazine-point-top: 14px;
  --kb-magazine-point-left: 50%;

  display: grid;
  position: relative;
  grid-template-columns: minmax(0, calc(50% - 64px)) 128px minmax(0, calc(50% - 64px));
  align-items: start;
  font-weight: 500;

  &+& {
    margin-top: -118px;
  }

  &.is-left {
    .kb-magazine-timeline__content {
      grid-column: 1;
      margin-left: auto;
      padding: 0 22px 0 0;
    }

    .kb-magazine-timeline__date {
      margin-right: -72px;
      justify-content: flex-start;

      &::after {
        display: block;
        flex: 1;
        height: 0;
        margin: 21px 0 0 12px;
        border-top: 1px dotted var(--color-link);
        content: '';
      }
    }

    .kb-magazine-timeline__panel {
      margin-right: auto;
    }
  }

  &.is-right {
    --kb-magazine-point-top: 10px;

    .kb-magazine-timeline__content {
      grid-column: 3;
      padding: 0 0 0 22px;
    }

    .kb-magazine-timeline__date {
      margin-left: -72px;
      justify-content: flex-end;

      &::before {
        display: block;
        flex: 1;
        height: 0;
        margin: 17px 12px 0 0;
        border-top: 1px dotted var(--color-link);
        content: '';
      }
    }

    .kb-magazine-timeline__date-meta {
      text-align: right;
      align-items: flex-end;
    }

    .kb-magazine-timeline__panel {
      margin-left: auto;
    }
  }

  @media (width <=1080px) {
    --kb-magazine-point-top: 10px;
    --kb-magazine-point-left: var(--kb-magazine-line-x);

    grid-template-columns: minmax(0, 1fr) var(--kb-magazine-rail-width);

    &+& {
      margin-top: 64px;
    }

    &.is-left,
    &.is-right {
      .kb-magazine-timeline__content {
        grid-column: 1;
        max-width: none;
        padding: 0 18px 0 0;
      }

      .kb-magazine-timeline__date {
        margin-right: -18px;
        margin-left: 0;
        justify-content: flex-start;

        &::before {
          display: none;
        }

        &::after {
          display: block;
          flex: 1;
          height: 0;
          margin: 17px 0 0 10px;
          border-top: 1px dotted var(--color-link);
          content: '';
        }
      }

      .kb-magazine-timeline__date-meta {
        text-align: left;
        align-items: flex-start;
      }

      .kb-magazine-timeline__panel {
        margin-left: 0;
        margin-right: auto;
      }
    }
  }
}

.kb-magazine-timeline__content {
  width: 100%;
  max-width: none;
}

.kb-magazine-timeline__panel {
  /* width: min(100%, 370px); */
  width: min(100%, 420px);
}

.kb-magazine-timeline__point {
  position: absolute;
  top: var(--kb-magazine-point-top);
  left: var(--kb-magazine-point-left);
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  z-index: 2;

  &::before {
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-link);
    border-radius: 50%;
    background: var(--color-background);
    content: '';
    box-sizing: border-box;
  }

}

.kb-magazine-timeline__date {
  display: flex;
  margin: 0 0 22px;
}

.kb-magazine-timeline__date-meta {
  display: flex;
  min-width: 118px;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-serif);
  /* font-weight: 600; */
  line-height: 1;
}

.kb-magazine-timeline__year {
  --clamp-min: 50;
  --clamp-max: 60;
  letter-spacing: -0.02em;

  span {
    margin-left: 3px;
    --clamp-min: 20;
    --clamp-max: 30;
  }
}

.kb-magazine-timeline__month {
  margin: 6px 0 0;
  --clamp-min: 24;
  --clamp-max: 30;
  line-height: 1;

  span {
    margin-left: 2px;
    --clamp-min: 20;
    --clamp-max: 22;
  }
}

.kb-magazine-timeline__covers {
  display: grid;
  width: 100%;
  /* max-width: 328px; */
  margin: 0 0 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;

  &.count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  &.is-single {
    max-width: 318px;
    grid-template-columns: minmax(0, 1fr);
  }

  &.count-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  &.count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kb-magazine-timeline__cover-image {
  display: block;
  width: 100%;
  background: #fff;
  box-shadow: none;

  .kb-magazine-timeline__covers:not(.is-single) & {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    max-width: 100%;
    justify-self: start;
    object-fit: contain;
    object-position: center;
  }
}

.kb-magazine-timeline__title {
  max-width: 340px;
  margin: 0 0 14px;
  --clamp-min: 20;
  --clamp-max: 22;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.kb-magazine-timeline__description {
  max-width: 334px;
  margin: 0;
  --clamp-min: 13;
  --clamp-max: 15;
  line-height: 1.9;
  color: var(--color-text-screen);
}

@media (width <=1080px) {
  .kb-magazine-timeline {
    margin-top: 72px;
    padding-bottom: 72px;
  }

  .kb-magazine-timeline__panel {
    /* width: min(100%, 340px); */
    width: min(100%, 420px);
  }

  .kb-magazine-timeline__date-meta {
    min-width: 90px;
  }

  .kb-magazine-timeline__covers {
    /* max-width: 296px; */
    margin-bottom: 22px;
    gap: 12px;
  }

  .kb-magazine-timeline__description {
    max-width: 100%;
  }
}

.insight {
  padding: 150px 0;

  .insight__content {
    width: 100%;
    max-width: 1260px;
    margin: 150px auto;
    --clamp-min: 16;
    --clamp-max: 18;
    font-weight: 500;

    text-align: center;

    p {
      margin-block-end: 1em;
    }

    .highlight {
      display: inline-block;
      margin: 0 20px;
      --clamp-min: 20;
      --clamp-max: 24;
      background: linear-gradient(transparent 70%, var(--color-tag-bg) 70%);
      font-weight: 700;
    }
  }

  .insight__dokucho {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 90px;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto 200px;

    li {
      width: 100%;
      max-width: 360px;

      dl {
        display: flex;
        flex-direction: column;
        gap: 24px;

        dt {
          display: flex;
          align-items: center;
          justify-content: center;
          min-height: 138px;
          border: 3px solid var(--color-tag-bg);
          border-radius: 32px;
          --clamp-min: 14;
          --clamp-max: 15;
          text-align: center;
          font-weight: 500;
        }

        dd {
          display: flex;
          align-items: flex-end;
          justify-content: center;
          height: 265px;
        }
      }
    }
  }

  .dokucho-casestudies {
    h4 {
      margin: 0 0 100px;
      --clamp-min: 22;
      --clamp-max: 24;
      font-weight: 700;
      text-align: center;

      span {
        --clamp-min: 16;
        --clamp-max: 18;
      }
    }
  }

  .dokucho-casestudies__content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;

    ul,
    div {
      width: 100%;
      max-width: 580px;
    }

    ul {
      display: flex;
      flex-direction: column;
      gap: 50px;
    }

    div {
      font-weight: 500;
      line-height: 2;

      p {
        margin-block-end: 1em;

        &:last-child {
          margin-top: 3em;
        }
      }
    }
  }
}

.section-title03 {
  margin: 0 0 50px;
  border-bottom: 1px solid;
  --clamp-min: 16;
  --clamp-max: 18;
  font-weight: 700;
  text-align: center;
}

.marketing-solutions {
  .marketing-solutions__text {
    margin: 0 0 150px;
    text-align: center;
  }

  .dokucho-title01 {
    margin: 0 0 100px;
    --clamp-min: 20;
    --clamp-max: 24;
    font-weight: 700;
    text-align: center;
  }


}

.dokucho {
  padding: 100px 0;
  background: url(assets/images/bg_whatsnew.jpg) no-repeat center center/cover;

  .dokucho-title02 {
    width: 100%;
    margin: 0 auto 80px;
    --clamp-min: 18;
    --clamp-max: 20;
    text-align: center;
    line-height: 1.9;

    span {
      display: inline-block;

      @media (width <=768px) {
        display: inline;
      }
    }
  }

  .dokucho__text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 72px;
    --clamp-min: 15;
    --clamp-max: 16;
    font-weight: 500;
    line-height: 2;
  }

  .dokucho-direcor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 152px;

    figure {
      width: 100%;
      max-width: 200px;
      margin: 0;

      @media (width <=800px) {
        margin: 0 auto;
      }
    }

    div {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 32px;
      width: 100%;
      max-width: 560px;
      --clamp-min: 13;
      --clamp-max: 14;
      line-height: 1.8;

      @media (width <=800px) {
        gap: 16px;
        min-width: 100%;
      }

      .director {
        font-weight: 500;

        @media (width <=800px) {
          text-align: center;
        }

        span {
          --clamp-min: 18;
          --clamp-max: 20;
        }
      }
    }
  }

  .multiple {
    display: flex;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 100px;
    background: url(assets/images/mark_x.png) no-repeat center center;
    background-size: 55px;

    +p {
      margin: 32px 0 0 0;
      --clamp-min: 15;
      --clamp-max: 16;
      font-weight: 500;
      text-align: center;
    }

    @media (width <=1275px) {
      justify-content: center;
    }

    @media (width <=768px) {
      flex-direction: column;
      gap: 0;
      background: none;
    }

    >li {
      width: 100%;
      max-width: 580px;

      @media (width <=768px) {
        max-width: none;
      }

      &+li {
        @media (width <=768px) {
          position: relative;
          margin-top: 110px;
        }

        &::before {
          @media (width <=768px) {
            position: absolute;
            top: -82px;
            left: 50%;
            width: 55px;
            height: 55px;
            background: url(assets/images/mark_x.png) no-repeat center center/contain;
            content: '';
            transform: translateX(-50%);
          }
        }
      }

      &.count-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px 0;
      }

      div {
        padding: 30px;
        background-color: #fff;

        @media (width <=620px) {
          padding: 20px;
        }

        ul {
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 40px 0;

          @media (width <=620px) {
            justify-content: center;
            gap: 20px;
          }

          &.count-list {
            gap: 16px 8px;
          }

          li {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 245px;

            &.item {
              gap: 0;
              justify-content: space-between;
              height: 80px;
            }

            .team {
              --clamp-min: 16;
              --clamp-max: 18;
              font-weight: 700;
              text-align: center;

              &.classy {
                img {
                  height: 28px;
                }
              }

              &.very {
                img {
                  height: 28px;
                }
              }

              &.story {
                img {
                  height: 28px;
                }
              }

              &.be-story {
                img {
                  height: 32px;
                }
              }
            }

            .count {
              text-align: center;

              &.classy {
                img {
                  height: 17px;
                }
              }

              &.very {
                img {
                  height: 17px;
                }
              }

              &.story {
                img {
                  height: 17px;
                }
              }

              &.be-story {
                img {
                  height: 24px;
                }
              }
            }
          }
        }

        .multiple-title {
          margin: 0 0 16px;
          --clamp-min: 18;
          --clamp-max: 20;
          font-weight: 700;
          text-align: center;

          span {
            margin-left: 8px;
            --clamp-min: 13;
            --clamp-max: 14;
            font-weight: 400;
          }
        }

        .capsule-count {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 45px;
          border-radius: 45px;
          background-color: var(--color-btn-bg);
          --clamp-min: 24;
          --clamp-max: 25;
          font-weight: 700;
        }
      }
    }
  }
}

.case-study {
  padding: 150px 0;

  .case-study__title {
    text-align: center;
  }

  .case-study__text {
    margin: 0 0 150px;
    text-align: center;
  }

  .case-study__lead {
    margin: 0 auto 100px;
    padding: 0 0 100px;
    border-bottom: 1px solid;
    --clamp-min: 18;
    --clamp-max: 20;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;

    span {
      --clamp-min: 16;
      --clamp-max: 18;
    }
  }

  .step {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 0 100px;

    >li {
      width: 100%;
      max-width: 380px;

      dl {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;

        dt {
          display: grid;
          place-items: center;
          width: 100%;
          height: 60px;
          margin: 0 0 48px;
          background-color: var(--color-tag-bg);
          --clamp-min: 22;
          --clamp-max: 24;
          font-weight: 700;
          letter-spacing: 1em;
        }

        dd {
          --clamp-min: 15;
          --clamp-max: 16;
          font-weight: 500;

          ul {
            margin: 0;
            padding-left: 1em;
            line-height: 1.8;
          }

          li::marker {
            content: '●';
            color: var(--color-btn-bg);
          }
        }
      }
    }
  }

  .result {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
    margin: 0 auto 100px;
    padding: 0;

    >li {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;

      &:not(:last-child)::after {
        display: block;
        width: 0;
        height: 0;
        margin-top: 8px;
        border-top: 30px solid var(--color-text-screen);
        border-right: 20px solid transparent;
        border-left: 20px solid transparent;
        content: '';
      }

      h3 {
        margin: 0;
        --clamp-min: 20;
        --clamp-max: 22;
        font-weight: 700;
        text-align: center;
      }

      ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 22px;
        margin: 0;
        padding: 0;

        &.survey {
          li {
            width: 338px;
          }
        }

        &.distribution {
          li {
            width: 162px;
          }
        }

        &.pressrelease {
          li {
            width: 324px;
          }
        }
      }



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

  .case-study__comment {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 150px;
    padding: 50px;
    border: 2px solid var(--color-btn-bg);
    border-radius: 16px;
    background: #fff;

    &::before,
    &::after {
      position: absolute;
      display: block;
      width: 70px;
      height: 59px;
      background-size: contain;
      background-repeat: no-repeat;
      content: '';
      opacity: 0.7;
    }

    &::before {
      top: -30px;
      left: 16px;
      background-image: url(assets/images/quotation01.png);
    }

    &::after {
      right: 16px;
      bottom: -30px;
      background-image: url(assets/images/quotation02.png);
    }
  }

  .case-study__comment-body {
    flex: 1;

    p {
      margin: 0;
      --clamp-min: 14;
      --clamp-max: 16;
      font-weight: 500;
      line-height: 2;
    }
  }

  .case-study__comment-image {
    width: 100%;
    max-width: 150px;
    margin: 0;

    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .case-study__actions {
    display: flex;
    flex-direction: column;
    gap: 70px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  .case-study__btn {
    min-width: 0;
    height: 64px;
    border-radius: 32px;
    padding: 0 72px 0 40px;
    --clamp-min: 15;
    --clamp-max: 18;
    background-position: right 28px center;
    background-size: 24px 23px;

    &::before {
      display: none;
    }
  }

  .case-study__btn--dark {
    background-color: var(--color-text-screen);
    color: #fff;
    background-image: url(assets/images/arrow_right.svg);
  }

  @media (width <=1024px) {
    padding: 120px 0;

    .case-study__text {
      margin-bottom: 100px;
    }

    .case-study__lead {
      margin-bottom: 72px;
      padding-bottom: 72px;
    }

    .step {
      justify-content: center;
      gap: 24px;
      margin-bottom: 72px;

      >li {
        max-width: 680px;
      }
    }

    .result {
      gap: 40px;
      margin-bottom: 56px;

      >li {
        gap: 22px;

        h3 {
          --clamp-min: 18;
          --clamp-max: 22;
        }

        ul {
          gap: 16px;
        }
      }
    }

    .case-study__comment {
      flex-direction: column-reverse;
      align-items: center;
      padding: 28px 24px;
    }

    .case-study__comment-body {
      p {
        --clamp-min: 13;
        --clamp-max: 14;
      }
    }

    .case-study__comment-image {
      max-width: 120px;
    }

    .case-study__actions {
      gap: 20px;
    }

    .case-study__btn {
      height: 58px;
      padding: 0 56px 0 24px;
      background-position: right 20px center;
    }
  }
}

/* data-guide
--------------------------------------------- */
.data-guide {
  ul {
    list-style: disc inside;
    margin-bottom: 100px;
    padding: 0 1em;
    --clamp-min: 14;
    --clamp-max: 16;
  }
}

/* password-gate
--------------------------------------------- */
.password-auth-wrapper {
  margin: 100px 0 0;
  text-align: center;

  p {
    margin: 1em 0;
  }

  form {
    margin: 0 0 40px;

    input,
    button {
      padding: 0.5em 1em;

    }
  }
}

/* Download auth modal
--------------------------------------------- */
.kbsad-download-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.56);
}

.kbsad-download-auth-modal.is-open {
  display: flex;
}

.kbsad-download-auth-modal__dialog {
  position: relative;
  width: min(100%, 550px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  padding: 28px;
  color: #1f2933;
}

.kbsad-download-auth-modal__title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.kbsad-download-auth-modal__lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
}

.kbsad-download-auth-modal__field {
  display: block;
  margin: 0 0 16px;
}

.kbsad-download-auth-modal__label {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.kbsad-download-auth-modal__input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c8ced8;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 16px;
  box-sizing: border-box;
}

.kbsad-download-auth-modal__error {
  min-height: 1.5em;
  margin: 0 0 12px;
  color: #b42318;
  font-size: 14px;
  line-height: 1.5;
}

.kbsad-download-auth-modal__contact {
  margin: 0 0 18px;
  line-height: 1.6;
}

.kbsad-download-auth-modal__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.kbsad-download-auth-modal__submit,
.kbsad-download-auth-modal__cancel {
  min-height: 42px;
  border-radius: 4px;
  padding: 8px 18px;
  border: 1px solid #1f2933;
  cursor: pointer;
  font: inherit;
}

.kbsad-download-auth-modal__submit {
  background: #1f2933;
  color: #fff;
}

.kbsad-download-auth-modal__cancel {
  background: #fff;
  color: #1f2933;
}

.kbsad-download-auth-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: #475467;
}

.kbsad-download-auth-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* Contact
--------------------------------------------- */
#password-form {
  margin: 100px 0 0;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-summary {
  margin: 0;
}

.entry-content {
  margin: 3em 0;
}

.page-links {
  clear: both;
  margin: 0;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*='wp-image-'] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

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

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex='-1']:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Parts
--------------------------------------------- */

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1050;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

#pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

#pagetop a,
#pagetop img {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  #pagetop {
    transition: none;
    transform: none;
  }
}

.spbr {
  display: contents;

  @media (width <=768px) {
    display: block;
  }
}