@charset "UTF-8";
/*!
Theme Name: assista2025
Author: SIIP
Version: 1.0.0
*/

/* ============================================================
   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: #404040;
  --color-link: #008ccf;
  --color-link-rgb: 0, 140, 207;

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

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

  --color-assista-pink: #e95377;
  --color-assista-pink-rgb: 233, 83, 119;

  --color-assista-green: #abcd03;
  --color-assista-green-rgb: 171, 205, 3;

  --color-assista-blue: #008ccf;
  --color-assista-blue-rgb: 0, 140, 207;

  --color-assista-orange: #e99314;
  --color-assista-orange-rgb: 233, 147, 20;

  --color-assista-gray: #909593;
  --color-assista-gray-rgb: 144, 149, 147;

  --color-tag-all: #004ea2;
  --color-tag-all-rgb: 0, 78, 162;

  --color-tag-food-drink: #e99314;
  --color-tag-food-drink-rgb: 233, 147, 20;

  --color-tag-retail: #2cafac;
  --color-tag-retail-rgb: 44, 175, 172;

  --color-tag-beauty: #da5172;
  --color-tag-beauty-rgb: 218, 81, 114;

  --color-tag-service: #94b936;
  --color-tag-service-rgb: 148, 185, 54;

  --color-tag-medical-welfare: #2484c0;
  --color-tag-medical-welfare-rgb: 36, 132, 192;

  --color-tag-other: #a175a2;
  --color-tag-other-rgb: 161, 117, 162;

  --color-tag-seminar: #13b8d3;
  --color-tag-seminar-rgb: 19, 184, 211;

  --color-tag-networking: #f1961b;
  --color-tag-networking-rgb: 241, 150, 27;

  --font-main: YakuHanJP, 'Noto Sans JP', 'Hiragino Sans',
    'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  --font-din: DINMittelschriftLTPro, sans-serif;
  --font-line-height-body: 1.6;
  --font-line-height-pre: 2.2;

  --header-block-size: 120px;
  --scroll-margin: var(--header-block-size);

  --pie-size: 360px;
}

*,
::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;
  }
}
/* アンカーのスクロール余白（使う場合） */
[id] {
  scroll-margin-top: var(--header-block-size);
}

/* ============================================================
   Normalize
   ============================================================ */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
  &:active,
  &:hover {
    outline: 0;
  }
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
  &::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
}
button,
select {
  text-transform: none;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input {
  line-height: normal;
  &::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  &[type='checkbox'],
  &[type='radio'] {
    box-sizing: border-box;
    padding: 0;
  }
  &[type='number'] {
    &::-webkit-inner-spin-button,
    &::-webkit-outer-spin-button {
      height: auto;
    }
  }
  &[type='search'] {
    &::-webkit-search-cancel-button,
    &::-webkit-search-decoration {
      -webkit-appearance: none;
    }
  }
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}

/* ============================================================
   Typography / Elements
   ============================================================ */
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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0 0 1em;
  padding: 0;
}

hr {
  background: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
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;
}
table {
  width: 100%;
  margin: 0 0 1.5em;
}

/* ============================================================
   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);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s,
    transform 0.2s;

  &:hover {
    border-color: #ccc #bbb #aaa;
  }
  &:active,
  &: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;
  transition: border-color 0.2s, color 0.2s;

  &:focus {
    color: #111;
    outline: none;
  }
}

select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}

/* ============================================================
   Navigation
   ============================================================ */
a {
  color: var(--color-link);
  text-decoration: underline;
  word-wrap: break-word;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;

  &:visited {
    color: var(--color-link);
  }
  &:hover,
  &:focus,
  &:active {
    color: var(--color-link-hover);
  }
  &:focus {
    outline: thin dotted;
  }
  &:active {
    outline: 0;
  }
}

.main-navigation {
  margin: 32px 0;
  padding: 0 40px;

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

  #global {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;

    li {
      background-repeat: no-repeat;
      background-position: bottom right;
      background-size: 0 4px;
      transition: background-size 0.3s;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      &:nth-child(3n + 1) {
        border-bottom-color: var(--color-assista-pink);
        background-image: linear-gradient(
          var(--color-assista-pink),
          var(--color-assista-pink)
        );
      }
      &:nth-child(3n + 2) {
        border-bottom-color: var(--color-assista-green);
        background-image: linear-gradient(
          var(--color-assista-green),
          var(--color-assista-green)
        );
      }
      &:nth-child(3n) {
        border-bottom-color: var(--color-assista-blue);
        background-image: linear-gradient(
          var(--color-assista-blue),
          var(--color-assista-blue)
        );
      }

      &:hover {
        background-position: bottom left;
        background-size: 100% 4px;
      }

      a {
        display: flex;
        justify-content: center;
        padding: 12px 24px;
        color: var(--color-text-screen);
        font-weight: 700;
        text-decoration: none;
        &:hover,
        &:visited {
          color: var(--color-text-screen);
        }
        span {
          display: inline-block;
        }
      }
    }
  }
}

.hidden {
  display: none;
}

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

  &:focus {
    background: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    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;
  }
}
#content[tabindex='-1']:focus {
  outline: 0;
}

/* ============================================================
   Alignments
   ============================================================ */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-inline: auto;
}
.rbr {
  display: inline-block;
}
.tcenter {
  text-align: center;
}
.floatleft {
  float: left;
}
.floatright {
  float: right;
}
.clear {
  clear: both;
}

/* ============================================================
   Widgets
   ============================================================ */
.widget {
  margin: 0 0 1.5em;
  select {
    max-width: 100%;
  }
}

/* ============================================================
   Containers / Sections
   ============================================================ */
.container {
  width: 1080px;
  margin: 0 auto;

  @media (width <= 1080px) {
    width: 100%;
    padding: 0 32px;
  }
  @media (width <= 768px) {
    width: 100%;
    padding: 0 16px;
  }
}

.site-header {
  .site-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 28px 124px 0 40px;
    @media (width <=1024px) {
      padding: 16px;
    }

    .site-title {
      width: 210px;
      height: 43px;
    }

    .help {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;

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

      li {
        a {
          display: inline-block;
          padding: 16px;
          border-radius: 4px;
          text-decoration: none;
          transition: filter 0.2s ease;

          &.overview {
            background: rgba(171, 205, 3, 0.3);
            border: 1px solid var(--color-assista-green);
            color: var(--color-text-screen);
          }
          &.access {
            background: rgba(0, 140, 207, 0.3);
            border: 1px solid var(--color-assista-blue);
            color: var(--color-text-screen);
          }
          &.assista-salon {
            background: rgba(233, 83, 119, 0.3);
            border: 1px solid var(--color-assista-pink);
            color: var(--color-text-screen);
          }
          &.contact {
            background: rgba(0, 140, 207, 0.9);
            border: 1px solid var(--color-assista-blue);
            color: #fff;
          }
          &:hover {
            filter: brightness(0.75);
          }
        }

        .sns {
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 24px;

          a {
            padding: 0;
            color: var(--color-text-screen);
            font-size: 24px;
          }
        }
      }
    }
  }
}

#breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 32px;
  background: #e5e5e5;
  font-size: 0.875rem;

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

/* Upcoming list */
.upcoming-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 24px;
  width: 100%;
  margin-bottom: 48px;
  @media (width <=768px) {
    flex-direction: column;
    margin-top: 1em;
  }

  li {
    display: flex;
    width: 47%;
    min-height: 8em;

    @media (width <=768px) {
      width: 100%;
      padding-bottom: 1em;
      margin-bottom: 1em;
      border-bottom: 1px dashed rgba(64, 64, 64, 0.75);

      &:last-child {
        padding-bottom: 0;
        border-bottom: none;
      }
    }

    .event-detail {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      gap: 12px;
      width: 100%;

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

      .event-image {
        position: relative;
        order: 1;
        width: 252px;
        margin: 0;

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

        figcaption {
          position: absolute;
          bottom: 6px;

          &.event-cat {
            width: 100%;
            height: 1.5em;
          }
        }
      }

      .event-text {
        order: 2;
        width: 252px;

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

        .event-tag {
          float: right;

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

    a {
      width: 100%;
      text-decoration: none;

      h2 {
        margin: 0;
        font-size: 1rem;
        line-height: 1.2;

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

.date {
  margin: 0 0 8px;
  color: var(--color-text-screen);
  font-size: 0.875rem;
  @media (width <=768px) {
    margin: 0 auto;
  }
}

/* Event categories tags */
.event-cat {
  margin: 0;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;

  &.seminar {
    background: rgba(19, 184, 211, 0.75);
  }
  &.networking {
    background: rgba(241, 150, 27, 0.75);
  }
  &.soudanday {
    background: rgba(51, 51, 51, 0.75);
  }
  &.keirijuku {
    background: rgba(7, 98, 143, 0.75);
  }
}
.seminar {
  background: #13b8d3;
}
.networking {
  background: #f1961b;
}
.soudanday {
  background: #333;
}
.keirijuku {
  background: #07628f;
}
.event-tag {
  display: inline-flex;
  flex-direction: column;
  /* justify-content: flex-end;
  align-items: flex-end; */
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  /* margin: 0.5em 0; */
  margin: 0;
  padding: 4px 20px;
  border-radius: 32px;
  color: #fff;
  --clamp-min: 13;
  --clamp-max: 14;
  text-align: center;

  /* @media (width <=768px) {
    margin: 0.5em auto;
  } */

  &.accepting {
    /* width: 5em; */
    background: var(--color-assista-pink);
  }
  &.now {
    /* width: 5em; */
    background: #f1961b;
  }
  &.notice {
    /* width: 4em; */
    background: var(--color-assista-green);
  }
  &.filled {
    /* width: 10em; */
    background: #07628f;
  }
  &.closed {
    /* width: 6em; */
    background: #a0d000;
  }
}
.accepting {
  background: var(--color-assista-pink);
}
.now {
  background: #f1961b;
}
.notice {
  background: #5e9f33;
}
.filled {
  background: #07628f;
}
.closed {
  background: #a0d000;
}

.status {
  width: 100%;
  padding: 0.5em 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;

  a {
    display: block;
    width: 100%;
    padding: 16px 0;
    color: #fff;
    text-decoration: none;
  }

  &.status-notice {
    background: #5e9f33;
  }
  &.status-accepting {
    background: transparent;

    a {
      background: var(--color-assista-pink);
      border-radius: 0.5em;
      &:hover {
        background: rgb(186 26 65);
      }
    }
  }
  &.status-closed {
    background: var(--color-assista-green);
  }
}

.section {
  margin: 0 0 80px;
}

.section-title {
  position: relative;
  margin: 32px 0;
  h2 {
    display: flex;
    align-items: center;
    gap: 20px;
    --clamp-min: 16;
    --clamp-max: 18;
    font-weight: 400;
    &::before {
      content: attr(data-en);
      --clamp-min: 26;
      --clamp-max: 32;
      font-weight: 700;
      line-height: 1;
    }
    @media (width <=768px) {
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }
    &.pink {
      &:before {
        color: var(--color-assista-pink);
      }
    }
    &.green {
      &:before {
        color: var(--color-assista-green);
      }
    }
    &.blue {
      &:before {
        color: var(--color-assista-blue);
      }
    }
  }
  > p {
    margin: 8px 0 0;
    --clamp-min: 16;
    --clamp-max: 18;
    @media (width <=768px) {
      text-align: center;
    }
  }
}
.section-title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  color: var(--color-assista-blue);
  --clamp-min: 18;
  --clamp-max: 24;
  font-weight: 700;
  @media (width <=600px) {
    justify-content: space-between;
  }
  @media (width <=400px) {
    justify-content: flex-start;
  }
  &::before,
  &::after {
    display: inline-block;
    content: '';
    width: 42px;
    height: 40px;
    background: url(images/assistar.svg) no-repeat left top;
    background-size: cover;
    @media (width <=600px) {
      width: 32px;
      height: 30px;
    }
    @media (width <=400px) {
      width: 28px;
      height: 22px;
    }
  }
  &::after {
    @media (width <=400px) {
      display: none;
    }
  }
}

.section-title2 {
  padding: 2em 0 1em;
  color: #004ea2;
  font-size: 1.875rem;
  text-align: left;

  @media (width <=768px) {
    line-height: 1.4;
    padding: 1em 0 0;
  }

  svg {
    margin-right: 0.25em;
  }
  img {
    width: 16px;
    height: 31px;
    margin: 0 0.5em;
    vertical-align: middle;
  }

  + p {
    width: 32em;
    margin: 0 auto 1em;
    color: #004ea2;
    font-size: 1.125rem;
    text-align: center;

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

.entry-title {
  margin: 0 0 1em;
  padding: 1em 0;
  font-size: 1.125rem;
}
.entry-title2 {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
}
@media (width <=768px) {
  .entry-title,
  .entry-title2 {
    line-height: 1.4;
  }
}

.page-title {
  position: relative;
  margin: 60px 0 24px;
  padding: 0 12px;
  --clamp-min: 20;
  --clamp-max: 32;
  font-weight: 700;
  text-align: center;
  @media (width <=768px) {
    margin: 24px 0;
  }
  &::before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
  }
  span {
    position: relative;
    padding: 0 1em;
    background-color: #fff;
    span {
      padding: 0;
    }
  }
  &.green {
    &::before {
      background: var(--color-assista-green);
    }
  }
  &.pink {
    &::before {
      background: var(--color-assista-pink);
    }
  }
  &.blue {
    &::before {
      background: var(--color-assista-blue);
    }
  }
  &.orange {
    &::before {
      background: var(--color-assista-orange);
    }
  }
}

.site-main {
}

/* Tabs */
.tab-list {
  clear: both;
  display: flex;
  justify-content: flex-start;
  margin: 3em 0 0;

  li {
    width: 20%;
    background: #e6e6e6;
    border-top: 1px solid #daddd9;
    border-inline: 1px solid #daddd9;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    font-weight: 700;

    @media (width <=768px) {
      width: 49%;
    }
    &:first-child {
      margin-right: 0.5em;
    }
    &.active {
      position: relative;
      top: 1px;
      background: #fff;
    }

    a {
      display: block;
      padding: 1em;
      color: #fff;
      font-size: 0.875rem;
      text-decoration: none;
      text-align: center;
      outline: none;
    }
    &.tab-event {
      background: #07628f;
    }
    &.tab-salon {
      background: var(--color-assista-pink);
    }
  }
}

.tab-panel {
  display: none;
  padding: 1em;
  border: 1px solid #daddd9;
  overflow: auto;

  &.active {
    display: block;
  }

  .panel-inside {
    padding: 1em;
    border: 1px solid #daddd9;
    border-radius: 0.5em;
    background: #fff;
  }
  .page-title {
    margin: 0;
    padding: 1em 0;
    background: #fff;
    font-size: 1.125rem;
  }
}

.wpfc-calendar-wrapper,
.wpsbc-container.wpsbc-theme-assista {
  padding: 1em 0 0 0;
}
#event-tab.tab-panel {
  background: rgb(203.52 236.28 252.48);
}
#salon-tab.tab-panel {
  background: rgb(249.7347 217.2653 225.1633);
}

/* ============================================================
   Consultation slide (別スライダー)
   ============================================================ */
/* .consultation-slide {
  width: 100%;

  .splide {
    position: relative;
    --slide-w: 650px;
    --arrow-gap: 12px;
    margin: 0 0 3em;
    height: max-content;

    .splide__list {
      max-height: 349px;
    }
    .splide__slide {
      position: relative;
      width: 100%;
      max-width: 650px;
      opacity: 1;
      transition: opacity 0.3s ease;

      img {
        width: 100%;
        max-width: 1260px;
        height: auto;
        object-fit: cover;
      }
    }

    .splide__arrows {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 3;

      .splide__arrow {
        pointer-events: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2em;
        height: 2em;
        padding: 0;
        background: none;
        border: 0;
        cursor: pointer;
        opacity: 1;
        z-index: 4;

        svg {
          width: 28px;
          height: 50px;
          fill: #004ea2;
        }
        &.splide__arrow--prev {
          left: calc((100% - var(--slide-w)) / 2.2 - var(--arrow-gap));
        }
        &.splide__arrow--next {
          right: calc((100% - var(--slide-w)) / 2.2 - var(--arrow-gap));
        }
      }
    }
  }
} */

body.home #latest {
  padding: 32px 0;
  background: color-mix(in srgb, var(--color-assista-blue) 10%, white);
}

.latest-list {
  li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 28px;
    .meta {
      width: 100%;
      margin: 0;
      .cat-tag {
        display: inline-block;
      }
    }
    .title {
      margin: 0;
      @media (width <=768px) {
        width: 100%;
      }
    }
    a {
      width: 100%;
    }
  }
}

#information-cat {
  .information-list {
    li {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 24px;
      margin: 16px 0;
      @media (width <=768px) {
        flex-direction: column;
      }
      .meta {
        width: 172px;
        @media (width <=768px) {
          width: 100%;
          margin: 0 0 8px;
          .cat-tag {
            display: inline-block;
          }
        }
      }
      a {
        width: calc(100% - 172px);
        @media (width <=768px) {
          width: 100%;
        }
      }
    }
  }
}

.post-tag,
.cat-tag {
  margin: 0 0 0 12px;
  padding: 4px;
  color: #fff;
  --clamp-min: 12;
  --clamp-max: 14;
}

.post-info,
.cat-information {
  background-color: var(--color-assista-orange);
  color: var(--color-text-screen);
}
.post-event {
  background-color: #e0e0e0;
  color: var(--color-text-screen);
}
.cat-report {
  background-color: #e0e0e0;
  color: var(--color-text-screen);
}
.post-interview,
.cat-interview {
  background-color: var(--color-assista-pink);
}
.cat-networking {
  background-color: var(--color-assista-orange);
  color: var(--color-text-screen);
}
.cat-seminar {
  background-color: #13b8d3;
}

#regular-event {
  p {
    margin: 0;
    text-align: center;
  }
  .regular {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 2.5em auto;
    @media (width <=600px) {
      flex-wrap: wrap;
      justify-content: center;
    }
    li {
      --clamp-min: 14;
      --clamp-max: 18;
      font-weight: 700;
      text-align: center;
      @media (width <=768px) {
        width: 50%;
      }
      @media (width <=600px) {
        width: 75%;
      }
      a {
        position: relative;
        display: block;
        overflow: hidden;
        img {
          display: block;
        }
        &::after {
          content: '';
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0);
          transition: background 0.3s ease;
          pointer-events: none;
        }
        &:hover {
          &::after {
            background: rgba(0, 0, 0, 0.3);
          }
        }
      }
      p {
        margin: 8px 0 0;
      }
    }
  }
  .participate {
    display: flex;
    justify-content: center;
    gap: 24px;
    @media (width <=768px) {
      flex-direction: column;
    }
    li {
      /* width: 49.8%; */
      width: 252px;
      @media (width <=768px) {
        width: 100%;
      }
      a {
        display: block;
        width: 100%;
        color: #fff;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
      }
    }
  }
}

#events {
  .upcoming-list {
    margin-bottom: 3em;
  }
  section {
    > h2 {
      display: grid;
      place-items: center;
      height: 140px;
      color: #fff;
      --clamp-min: 16;
      --clamp-max: 48;
      @media (width <=768px) {
        height: 100px;
      }
      &.green {
        background: var(--color-assista-green);
      }
      &.pink {
        background: var(--color-assista-pink);
      }
      &.blue {
        background: var(--color-assista-blue);
      }
      &.orange {
        background: var(--color-assista-orange);
      }
    }
    .detail {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      max-width: 804px;
      margin: 32px auto;
      p {
        margin: 0;
      }
      @media (width <=768px) {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        margin: 16px auto;
      }
    }
  }
}
.events-lead {
  width: 100%;
  max-width: 804px;
  margin: 0 auto 48px;
  .text {
    margin: 0 auto;
    letter-spacing: -1px;
  }
}
.more {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  align-content: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: gray;
  border-radius: 12px;
  color: #fff;
  --clamp-min: 13;
  --clamp-max: 14;
  font-weight: 700;
  text-decoration: none;
  &:hover,
  &:visited {
    color: #fff;
  }
  span {
    --clamp-min: 18;
    --clamp-max: 20;
  }
  svg {
    margin: 0 0 0 12px;
  }
  &.pink {
    background: var(--color-assista-pink);
    &:hover {
      background: color-mix(in srgb, var(--color-assista-pink) 80%, black);
    }
  }
  &.green {
    background: var(--color-assista-green);
    &:hover {
      background: color-mix(in srgb, var(--color-assista-green) 80%, black);
    }
  }
  &.blue {
    background: var(--color-assista-blue);
    &:hover {
      background: color-mix(in srgb, var(--color-assista-blue) 80%, black);
    }
  }
  &.gray {
    background: var(--color-assista-gray);
    &:hover {
      background: color-mix(in srgb, var(--color-assista-gray) 80%, black);
    }
  }
}

.show-detail {
  align-self: flex-end;
  width: 7em;
  margin: -3em 0 0 0;
  @media (width <=768px) {
    margin: 0;
  }
  a {
    display: flex;
    align-items: center;
    padding: 0.5em;
    border-radius: 6px;
    background-color: #a0d000;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 0 rgb(96, 183, 81);
    svg {
      margin-left: 0.5em;
    }
  }
}

.no-event {
  margin: 96px 0;
  text-align: center;
}

#future-list {
  ul {
    margin: 0 0 48px;
    li {
      margin: 0 0 16px;
      p {
        &:last-child {
          margin: 8px 0 0;
        }
      }
    }
  }
}
#events-page {
  margin-top: 3em;
  padding-top: 3em;
  /* background: url(images/borderline01.png) no-repeat top center; */
  #soon {
    /* > h2 {
      margin-bottom: 1em;
      padding-bottom: 1em;
      color: #004ea2;
      border-bottom: 1px dashed #7ba9c0;
      font-size: 1.125rem;
      svg {
        margin-right: 0.25em;
      }
    } */
  }
  #events-report {
    /* h3 {
      margin-bottom: 1em;
      padding-bottom: 1em;
      color: #a0d000;
      border-bottom: 1px dashed #a0d000;
      svg {
        margin-right: 0.25em;
      }
    } */
  }
}

#events-single,
#post-single {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 6em;
  @media (width <=768px) {
    flex-direction: column;
  }
}

#events-detail {
  width: 100%;
  max-width: 804px;
  @media (width <=768px) {
    width: 100%;
  }
  .input-field {
    @media (width <=768px) {
      margin-bottom: 3em;
    }
    > li {
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px dashed;
      &:last-child {
        border-bottom: none;
      }
      dl {
        display: flex;
        margin: 0;
        padding: 0 1em;
        @media (width <=768px) {
          flex-wrap: wrap;
        }
        dt {
          display: flex;
          align-items: center;
          width: 114px;
          margin-right: 24px;
          color: var(--color-assista-blue);
          @media (width <=768px) {
            width: 100%;
          }
        }
        dd {
          width: 100%;
          max-width: 666px;
          @media (width <=768px) {
            width: 100%;
          }
          strong {
            color: #ec1c24;
            &.normal {
              color: #404040;
            }
          }
        }
      }
    }
  }
}

.facilitator {
  display: flex;
  margin-top: 16px;
  @media (width <=768px) {
    flex-wrap: wrap;
  }
  .fac-img {
    width: 146px;
    margin-right: 16px;
    @media (width <=768px) {
      margin: 0 auto 1em;
    }
  }
  .fac-text {
    width: 100%;
    max-width: 488px;
    margin: 0;
    @media (width <=768px) {
      width: 100%;
    }
  }
}

.only-img {
  display: flex;
  justify-content: space-between;
  @media (width <=768px) {
    flex-direction: column;
  }
  li {
    width: 360px;
  }
}

#information {
  width: 748px;
  @media (width <=768px) {
    width: 100%;
    padding-bottom: 5em;
  }
  .input-field {
    margin-bottom: 6em;
    @media (width <=768px) {
      margin-bottom: 3em;
    }
    > li {
      margin-bottom: 1em;
      padding-bottom: 1em;
      border-bottom: 1px dashed #b2b2b2;
      &:last-child {
        border-bottom: none;
      }
      dl {
        display: flex;
        margin: 0;
        padding: 0 1em;
        @media (width <=768px) {
          flex-wrap: wrap;
        }
        dt {
          display: flex;
          width: 4em;
          margin-right: 2em;
          color: #004ea2;
          align-items: center;
          @media (width <=768px) {
            width: 100%;
          }
        }
        dd {
          width: 608px;
          @media (width <=768px) {
            width: 100%;
          }
          strong {
            color: #ec1c24;
            &.normal {
              color: #404040;
            }
          }
        }
      }
    }
  }
}

#interview {
  width: 100%;
  margin: 0 0 1em;
  .mv {
    width: 100%;
    max-width: 390px;
    margin: 0;
  }
  #post-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 48px 0;
    @media (width <=768px) {
      flex-direction: column;
    }
    .title-box3 {
      order: 2;
      display: flex;
      flex-direction: column;
      width: 58%;
      @media (width <=768px) {
        width: 100%;
        align-items: center;
      }
      h1 {
        order: 2;
        margin: 0.5em 0;
      }
      .tag {
        order: 1;
        margin: 0;
        .interview-tag {
          margin: 0;
        }
      }
      .explain {
        order: 3;
      }
      .update {
        order: 4;
        margin: 0;
        color: #21759b;
        font-size: 0.875rem;
        text-align: right;
        @media (width <=768px) {
          width: 100%;
          margin-top: 0.5em;
        }
      }
    }
    figure {
      order: 1;
    }
  }
  .interview-column {
    width: 100%;
    max-width: 804px;
    margin: 0 auto 32px;
    h2 {
      margin-bottom: 0.5em;
      color: var(--color-assista-blue);
      font-size: 1.125rem;
    }
    .section-text {
      display: flex;
      @media (width <=768px) {
        flex-direction: column;
      }
      figure {
        width: 100%;
        /* max-width: 300px; */
        margin: 0;
        &.pos-left {
          order: 0;
          margin-right: 1em;
        }
        &.pos-right {
          order: 2;
          margin-left: 1em;
        }
        &.pos-center {
          order: 0;
          width: 100%;
          margin: 1em auto;
          img {
            width: 100%;
          }
        }
        @media (width <=768px) {
          &.pos-left,
          &.pos-right {
            order: 0;
            margin: 0 auto 0.5em;
          }
        }
      }
      p {
        order: 1;
        min-width: 452px;
        margin: 0;
        @media (width <=768px) {
          min-width: 100%;
        }
      }
      &.pos-center {
        flex-wrap: wrap;
        p {
          width: 100%;
          margin: 0;
        }
      }
    }
  }
  #practiceer {
    width: 100%;
    max-width: 576px;
    margin: 0 auto;
    padding: 24px;
    background: rgba(var(--color-assista-blue-rgb), 0.2);
    h3 {
      padding-bottom: 36px;
      color: var(--color-assista-blue);
      --clamp-min: 16;
      --clamp-max: 18;
      font-weight: 700;
      text-align: center;
    }
  }
}

#report {
  width: 100%;
  margin: 0 0 1em;
  /* padding: 0 6.625em 1.5em; */
  padding: 0 0 20px;
  /* background: url(images/borderline01.png) no-repeat top center; */
  /* figure {
    width: 300px;
  } */
  #post-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 804px;
    margin: 0 auto;
    padding: 2em 0 1em;
    @media (width <=768px) {
      max-width: 100%;
      flex-direction: column;
    }
    .title-box3 {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding: 36px;
      background-color: rgba(var(--color-assista-blue-rgb), 0.1);
      @media (width <=768px) {
        padding: 1em;
      }
      h1 {
        order: 2;
        margin: 0.5em 0;
      }
      .tag {
        order: 1;
        margin: 0;
        .report-tag {
          margin: 0;
        }
      }
      .time {
        order: 3;
      }
      .explain {
        order: 4;
      }
      .update {
        order: 5;
        margin: 0;
        color: var(--color-assista-blue);
        font-size: 0.875rem;
        text-align: right;
        @media (width <=768px) {
          width: 100%;
          margin-top: 0.5em;
        }
      }
    }
  }
  .report-column {
    margin: 24px 0;
    h2 {
      margin-bottom: 8px;
      color: var(--color-assista-blue);
      --clamp-min: 18;
      --clamp-max: 20;
      font-weight: 700;
    }
    .section-text {
      display: flex;
      justify-content: space-between;
      @media (width <=768px) {
        flex-direction: column;
      }
      figure {
        width: 100%;
        max-width: 300px;
        margin: 0;
        &.pos-left {
          order: 0;
          margin-right: 16px;
        }
        &.pos-right {
          order: 2;
          margin-left: 16px;
        }
        @media (width <=768px) {
          &.pos-left,
          &.pos-right {
            order: 0;
            margin: 0 auto 16px;
          }
        }
      }
      p {
        order: 1;
        max-width: 644px;
        @media (width <=768px) {
          max-width: 100%;
        }
      }
    }
    .img-repeat {
      display: flex;
      justify-content: space-between;
      @media (width <=768px) {
        flex-direction: column;
      }
      li {
        width: 32%;
      }
    }
  }
  .past-event {
    margin: 1em 0;
    text-align: right;
  }
}

.pager,
.nav-links {
  display: flex;
  justify-content: space-between;
  padding: 4em 0 0;
  li {
    width: 49%;
    @media (width <=768px) {
      width: 100%;
      margin: 0 auto 0.5em;
    }
    &.post-previous {
    }
    &.post-next {
      margin-left: auto;
      text-align: right;
    }
  }
}

.title-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 24px;
  @media (width <=768px) {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .event-title {
    /* --clamp-min: 16;
    --clamp-max: 18; */
    font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
    font-weight: 700;
  }
  .entry-title2 {
    --clamp-min: 16;
    --clamp-max: 18;
    font-weight: 700;
  }
  .event-tag {
    height: fit-content;
    margin: 0;
    white-space: nowrap;
  }
  .meta-single {
    display: flex;
    align-items: center;
    @media (width <=768px) {
      flex-wrap: wrap;
    }
    .event-cat {
      margin-right: 1em;
      padding: 0.25em;
      &.seminar,
      &.networking,
      &.soudanday,
      &.keirijuku {
        width: 10em;
      }
    }
    .update {
      color: var(--color-assista-blue);
      font-size: 0.875rem;
      @media (width <=768px) {
        width: 100%;
        margin-top: 0.5em;
      }
    }
  }
}

.title-box2 {
  margin: 0 0 24px;
  .info-title {
    font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
  }
  .update {
    margin: 0;
    font-size: 0.875rem;
    @media (width <=768px) {
      width: 100%;
      margin-top: 0.5em;
    }
  }
}

.event-img {
  margin: 0 0 24px;
}
.eventnote {
  margin: 0 0 24px;
}

#single-aside {
  width: 252px;
  height: 100%;
  @media (width <=768px) {
    width: 100%;
    margin-bottom: 3em;
  }
  h2 {
    position: relative;
    margin: 16px 0;
    padding: 0 12px;
    --clamp-min: 14;
    --clamp-max: 14;
    font-weight: 700;
    text-align: center;
    @media (width <=768px) {
      margin: 16px 0;
    }
    &::before {
      position: absolute;
      top: calc(50% - 1px);
      left: 0;
      width: 100%;
      height: 2px;
      content: '';
    }
    span {
      position: relative;
      padding: 0 1em;
      background-color: #fff;
    }
    &.green {
      &::before {
        background: var(--color-assista-green);
      }
    }
    &.pink {
      &::before {
        background: var(--color-assista-pink);
      }
    }
    &.blue {
      &::before {
        background: var(--color-assista-blue);
      }
    }
  }
  ul {
    li {
      margin-bottom: 16px;
      --clamp-min: 14;
      --clamp-max: 14;
      &:last-child {
        padding-bottom: 0;
      }
      h3 {
        color: rgb(102.25, 102.25, 102.25);
        font-size: 0.875rem;
      }
      p {
        &:last-child {
          margin: 8px 0 16px;
        }
      }
      &.event-tag {
        font-size: 0.8125rem;
      }
    }
  }
  &.latest-aside span {
    display: inline-block;
  }
}

.about-lead,
.consultation-lead,
.lead {
  width: 100%;
  margin: 0 auto 48px;
  @media (width <=768px) {
    br {
      display: none;
    }
  }
  h2 {
    margin: 48px 0 24px;
    --clamp-min: 20;
    --clamp-max: 24;
    text-align: center;
    &.pink {
      color: var(--color-assista-pink);
    }
  }
  p {
    width: 800px;
    margin: 0 auto;
    --clamp-min: 16;
    --clamp-max: 18;
    @media (width <=768px) {
      width: 90%;
    }
  }
  .inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    width: 70%;
    margin: 32px auto;
    @media (width <=400px) {
      width: 100%;
    }
  }
}

#salon {
  padding-top: 64px;
  background: url(images/borderline01.png) no-repeat top center;
  /* background-size: auto 10px; */
  .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (width <=768px) {
      flex-direction: column;
    }
    figure {
      width: 390px;
      margin: 0;
      @media (width <=768px) {
        width: 100%;
      }
    }
    p {
      width: 100%;
      max-width: 666px;
      margin: 0;
      @media (width <=768px) {
        width: 100%;
        margin: 24px 0;
      }
    }
  }
}

#spec {
  width: 100%;
  max-width: 852px;
  margin: 40px auto;
  padding: 24px;
  background-color: rgba(var(--color-assista-blue-rgb), 0.2);
  @media (width <=768px) {
    padding: 1em;
  }
}

#time {
  padding: 2em 0;
  > div {
    padding: 1em;
    border: 1px solid #daddd9;
    background-color: #fff;
  }
}

.description-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  dt {
    width: 18%;
    color: var(--color-assista-blue);
    @media (width <=768px) {
      width: 100%;
      br {
        display: none;
      }
    }
  }
  dd {
    width: 82%;
    margin: 0 0 24px;
    @media (width <=768px) {
      width: 100%;
      padding: 0;
    }
    &.contact {
      @media (width <=768px) {
        a {
          margin: 0 0 8px;
        }
      }
    }
    iframe {
      margin: 0.5em 0 0;
    }
    .gmap {
      margin: 0;
      text-align: right;
    }
  }
}

#consultation {
  .detail {
    width: 100%;
    margin: 24px auto;
  }
  #consultation-desk {
    margin: 64px 0 0;
    /* .consultation-desk-box {
      width: 770px;
      margin: 0 auto;
      @media (width <=768px) {
        width: 100%;
      }
    } */
    .supplement {
      width: 100%;
      max-width: 852px;
      margin: 0 auto;
      padding: 0 24px;
    }
    #holiday-night {
      width: 100%;
      max-width: 852px;
      margin: 0 auto;
      padding: 0 24px;
      h3 {
        position: relative;
        margin: 40px 0 24px;
        padding: 0 0 0 16px;
        color: var(--color-assista-blue);
        --clamp-min: 16;
        --clamp-max: 18;
        &::before {
          position: absolute;
          left: 0;
          top: 50%;
          width: 8px;
          margin-right: 8px;
          content: url(images/circle_blue.svg);
          transform: translateY(-50%);
        }
      }
      strong {
        color: var(--color-assista-blue);
      }
    }
  }
  .desk-system {
    display: flex;
    justify-content: space-between;
    margin-top: 3em;
    @media (width <=768px) {
      flex-direction: column;
    }
    section {
      width: 48%;
      text-align: center;
      @media (width <=768px) {
        width: 100%;
        text-align: left;
        br {
          display: none;
        }
      }
      h3 {
        color: #004ea2;
      }
      .btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5em;
        width: 70%;
        margin: 0 auto;
        padding: 0.5em;
        border-radius: 8px;
        background-color: #909593;
        color: #fff;
        text-decoration: none;
        &:hover {
          background-color: rgb(93.2995391705, 97.7004608295, 95.9400921659);
        }
        svg {
          margin-left: 0.5em;
        }
      }
    }
  }
  .event-list {
    margin: 3em 0;
  }
}

#about-counselor {
  margin: 64px 0;
  text-align: center;
}
.consultant {
  width: 100%;
  max-width: 804px;
  margin: 0 auto;
  @media (width <=768px) {
    max-width: 100%;
  }
  li {
    margin: 60px 0;
    .message-box {
      display: flex;
      justify-content: space-between;
      margin-top: 24px;
      color: var(--color-assista-blue);
      @media (width <=768px) {
        flex-direction: column;
        margin-top: 0;
      }
      dl {
        margin: 0;
        @media (width <=768px) {
          margin-bottom: 1em;
        }
      }
      .specialty-title {
        display: inline-grid;
        place-items: center;
        width: 100px;
        margin-bottom: 0.5em;
        padding: 8px 0;
        border-radius: 2em;
        background-color: var(--color-assista-blue);
        color: #fff;
        text-align: center;
        @media (width <=768px) {
          margin: 0 auto 0.5em;
        }
      }
      .specialty {
        margin-right: 16px;
        color: var(--color-text-screen);
        @media (width <=768px) {
          margin: 0;
        }
        li {
          list-style: disc inside;
          margin: 0;
        }
      }
      .message {
        order: 2;
        width: 480px;
        padding: 24px;
        background-color: rgba(var(--color-assista-blue-rgb), 0.1);
        @media (width <=768px) {
          width: 100%;
        }
        h4 {
          margin-bottom: 16px;
        }
        p {
          margin: 0;
          color: var(--color-text-screen);
        }
      }
    }
  }
}

.profile-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  @media (width <=768px) {
    flex-direction: column;
  }
  .profile {
    order: 2;
    width: 100%;
    max-width: 630px;
    @media (width <=768px) {
      max-width: 100%;
      margin-bottom: 0;
    }
    h3 {
      color: var(--color-assista-blue);
      font-size: 1.125rem;
      @media (width <=768px) {
        text-align: center;
      }
    }
    .position {
      margin: 0;
      color: var(--color-assista-blue);
      @media (width <=768px) {
        text-align: center;
      }
    }
    .text {
      margin: 1em 0 0;
    }
  }
  figure {
    order: 1;
    width: 150px;
    margin: 0;
    text-align: center;
    @media (width <=768px) {
      margin: 0 auto;
    }
  }
}

#mentor {
  .mentor-desctiption {
    width: 780px;
    margin: 0 auto 3em;
    @media (width <=768px) {
      width: 100%;
    }
    dl {
      padding: 2em;
      border: 1px dashed #7ba5bc;
      background-color: rgb(238.5, 246.4444444444, 255);
      color: var(--color-assista-blue);
      @media (width <=768px) {
        padding: 1em;
      }
    }
    li {
      list-style: disc inside;
    }
  }
  .mentor-introduction {
    width: 780px;
    margin: 0 auto;
    @media (width <=768px) {
      width: 100%;
    }
    li {
      width: 100%;
      margin-bottom: 3em;
      @media (width <=768px) {
        h3 {
          font-size: 1rem;
          span {
            display: inline-block;
          }
        }
      }
      .message {
        width: 100%;
        padding: 1em;
        border: 1px dashed #7ba5bc;
        background-color: rgb(238.5, 246.4444444444, 255);
        @media (width <=768px) {
          width: 100%;
          margin-top: 1em;
        }
        h4 {
          margin-bottom: 0.5em;
          &:before {
            content: '- ';
          }
        }
        p {
          margin: 0;
        }
      }
    }
  }
}

#interview-tag-list,
#report-cat-list {
  display: flex;
  justify-content: center;
  margin: 3em 0;
  @media (width <=768px) {
    flex-wrap: wrap;
    margin: 2em 0;
    li {
      margin-bottom: 1em;
    }
  }
}

.interview-tag,
.report-tag {
  display: block;
  width: fit-content;
  margin: 0 0.5em;
  padding: 0.25em 0.5em;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

a.interview-tag,
a.report-tag {
  &:hover,
  &:visited {
    filter: brightness(0.85);
    color: #fff;
  }
}

.interview-tag-all,
.report-tag-all {
  background-color: var(--color-tag-all);
}

.interview-tag-food-drink {
  background-color: var(--color-tag-food-drink);
}

.interview-tag-retail {
  background-color: var(--color-tag-retail);
}

.interview-tag-beauty {
  background-color: var(--color-tag-beauty);
}

.interview-tag-service {
  background-color: var(--color-tag-service);
}

.interview-tag-medical-welfare {
  background-color: var(--color-tag-medical-welfare);
}

.interview-tag-other {
  background-color: var(--color-tag-other);
}

.report-tag-seminar {
  background-color: var(--color-tag-seminar);
}

.report-tag-networking {
  background-color: var(--color-tag-networking);
}

#interview-cat,
#report-cat {
  padding: 3em 0;
  background: url(images/borderline01.png) no-repeat top center;
}

.interview-list,
.report-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(344px, 1fr));
  justify-items: center;
  gap: 24px;
  width: 100%;
  @media (width <=400px) {
    grid-template-columns: 1fr;
  }
  li {
    width: 100%;
    @media (width <=400px) {
      max-width: 100%;
    }
    a {
      display: flex;
      flex-direction: column;
      color: #404040;
      text-decoration: none;
      &:hover {
        opacity: 0.7;
      }
      h2 {
        order: 3;
        margin: 0.5em 0 0;
        font-size: 1.125rem;
      }
      figure {
        order: 1;
        width: 100%;
        margin: 0 0 0.5em;
      }
      .tag {
        order: 2;
        margin: 0;
        .interview-tag,
        .report-tag {
          margin: 0;
        }
      }
      .excerpt {
        order: 4;
        margin: 0;
      }
    }
  }
}

.report-cat-seminar {
  width: 8em;
  background-color: #13b8d3;
  &:hover {
    background-color: rgb(14.7869565217, 143.2, 164.2130434783);
  }
}

.report-cat-networking {
  width: 10em;
  background-color: #f1961b;
  &:hover {
    background-color: rgb(204.4462809917, 122.847107438, 12.5537190083);
  }
}

/* ============================================================
   Links page
   ============================================================ */
#links {
  .startup-support-org {
    padding: 48px 0;
    background: url(images/borderline01.png) no-repeat top center;
  }
  .box {
    width: 100%;
    max-width: 804px;
    margin: 48px auto;
    @media (width <=768px) {
      max-width: 100%;
    }

    h3 {
      margin: 0 0 8px;
      color: var(--color-assista-pink);
      --clamp-min: 18;
      --clamp-max: 20;
      font-weight: 700;
    }

    ul {
      margin-bottom: 16px;
      li {
        list-style: disc inside;
        &::marker {
          color: var(--color-assista-blue);
        }
      }
    }
  }
}

.sitemap {
  margin-bottom: 16px;
  --clamp-min: 16;
  --clamp-max: 20;
  li {
    list-style: disc inside;
    margin: 0 0 16px;
    &::marker {
      color: var(--color-assista-blue);
    }
    ul {
      margin: 8px 0 0 32px;
      li {
        margin: 0 0 8px;
      }
    }
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin: 100px 0 0;
  .footer-info {
    padding: 100px 0 0;

    svg {
      margin-right: 0.5em;
    }

    .footer-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 0.875rem;

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

        ul {
          width: 96%;
        }
        span {
          display: inline-block;
        }
      }

      p {
        align-items: center;
        margin: 0 1em 0 0;

        @media (width <=768px) {
          margin: 0 0 1em;
        }
      }
    }

    .reception-time {
      width: 30em;
      margin: 36px auto;
      text-align: center;

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

      .phone {
        margin: 0;
        font-size: 2rem;
        font-weight: 700;
      }
      dl {
        margin: 0;
        --clamp-min: 20;
        --clamp-max: 24;
        dd {
          span {
            --clamp-min: 16;
            --clamp-max: 18;
          }
        }
      }
    }

    .footer-nav {
      display: flex;
      justify-content: space-between;

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

      > li {
        width: 33%;
        padding: 0 1.5em;
        @media (width <=768px) {
          width: 100%;
          border-right: none;
        }

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

        ul li {
          margin-bottom: 1em;

          ul li {
            margin: 0 0 0 1em;
          }
        }
      }
    }
  }

  #copyright {
    margin: 0;
    padding: 32px 0;
    --clamp-min: 12;
    --clamp-max: 14;
    text-align: center;
  }
}

/* ============================================================
   Utilities
   ============================================================ */
#btn-pagetop {
  position: fixed;
  right: 20px;
  bottom: -100px;
  transition: bottom 0.2s;
  z-index: 1500;

  &.is-show {
    bottom: 20px;
  }

  a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--color-assista-blue);
    background: #fff;
    border: 1px solid var(--color-assista-blue);
    border-radius: 40px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-decoration: none;

    &:hover {
      opacity: 0.7;
    }
  }
}

.search-result {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #cbcbcb;
}
a[href^='tel:'] {
  cursor: default;
}
.external-link {
  svg {
    margin: 0 0 0 8px;
  }
  /* &::after {
    margin: 0 0.5em;
    font-size: 0.875rem;
    font-family: FontAwesome;
    vertical-align: middle;
    content: '\f08e';
  } */
}

/* ============================================================
   Media
   ============================================================ */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin: 0;
  padding: 0;
}
embed,
iframe,
object {
  max-width: 100%;
}
.custom-logo-link {
  display: inline-block;
}
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  img[class*='wp-image-'] {
    display: block;
    margin-inline: auto;
  }
  .wp-caption-text {
    margin: 0.8075em 0;
    text-align: center;
  }
}

/* ============================================================
   MicroModal / Hamburger
   ============================================================ */
.gnav-button {
  position: fixed;
  /* top: 50px; */
  top: 70px;
  right: 0;
  display: grid;
  place-items: center;
  /* width: 100px;
  height: 101px; */
  width: 80px;
  height: 80px;
  background: #fff;
  z-index: 2000;
  cursor: pointer;
  transition: top 0.2s ease, background-color 0.2s ease;

  @media (width <= 1024px) {
    top: 0;
  }
  @media (width <= 600px) {
    width: 60px;
    height: 60px;
  }

  &.is-open {
    top: 0;
    .button-line {
      background-color: transparent;
      &::before {
        background: var(--color-text-screen);
        transform: rotate(45deg);
        top: 0;
      }
      &::after {
        background: var(--color-text-screen);
        transform: rotate(-45deg);
        top: 0;
      }
    }
  }
  &.is-pinned {
    top: 0 !important;
  }
}

.button-line {
  position: relative;
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-text-screen);
  transition: 0.2s;

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

  &::before,
  &::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-text-screen);
    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: 80px 28px;
    background: #fff;
    color: var(--color-text-screen);
    transition: right 0.3s ease;
    overflow-y: auto !important;
    z-index: 2400;
    will-change: right;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    @media (768px <= width <= 1024px) {
      width: 75%;
      padding: 80px 40px;
    }
    @media (width <= 768px) {
      width: 100%;
      /* height: 100svh; */
      padding: 40px 20px;
      /* border-bottom-left-radius: 0; */
    }
    @media (width <= 600px) {
      padding: 16px;
    }

    a {
      text-decoration: none;
      outline: none;
    }
    .nav-title {
      width: 65%;
      margin: 0 auto 32px;
      text-align: center;
      @media (600px <= width <= 1024px) {
        width: 50%;
      }
      @media (width <= 600px) {
        width: 40%;
        margin: 0 auto 8px;
      }
    }
    .nav-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      @media (width <= 600px) {
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
      }
      .nav {
        width: 240px;
        text-align: center;
        @media (width <= 600px) {
          margin: 16px 0 0;
        }
        li {
          padding: 8px 0;
          --clamp-min: 16;
          --clamp-max: 20;
          font-weight: 700;
        }
      }
      .help-box {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 16px;
        width: 40%;
        @media (width <= 600px) {
          width: 100%;
          gap: 4px;
        }
        .reception-time {
          margin: 0;
          text-align: center;
          @media (width <= 600px) {
            margin: 0 0 8px;
          }
          .phone {
            margin: 0;
            --clamp-min: 20;
            --clamp-max: 24;
            font-weight: 700;
            svg {
              margin: 0 8px 0;
            }
          }
          dl {
            margin: 0;
            --clamp-min: 16;
            --clamp-max: 20;
            dd {
              span {
                --clamp-min: 13;
                --clamp-max: 16;
              }
            }
          }
        }
        .help {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          gap: 24px;
          @media (width <= 600px) {
            justify-content: center;
            align-items: center;
            gap: 8px 24px;
            width: 82%;
          }
          li {
            margin: 0;
            @media (width <= 600px) {
              margin: 0 0 4px;
            }
            a {
              display: inline-block;
              padding: 16px;
              border-radius: 4px;
              text-decoration: none;
              transition: filter 0.2s ease;
              @media (width <= 600px) {
                padding: 8px;
              }
              &.overview {
                background: rgba(171, 205, 3, 0.3);
                border: 1px solid var(--color-assista-green);
                color: var(--color-text-screen);
              }
              &.access {
                background: rgba(0, 140, 207, 0.3);
                border: 1px solid var(--color-assista-blue);
                color: var(--color-text-screen);
              }
              &.assista-salon {
                background: rgba(233, 83, 119, 0.3);
                border: 1px solid var(--color-assista-pink);
                color: var(--color-text-screen);
              }
              &.contact {
                background: rgba(0, 140, 207, 0.9);
                border: 1px solid var(--color-assista-blue);
                color: #fff;
              }
              &:hover {
                filter: brightness(0.75);
              }
            }
          }
        }
        .sns {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 24px;
          @media (width <= 600px) {
            justify-content: center;
          }
          a {
            padding: 0;
            color: var(--color-text-screen);
            font-size: 24px;
          }
        }
      }
    }
  }

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

    .overlay {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 24, 100, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      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;
    }
  }
}

/* ============================================================
   SIIP header
   ============================================================ */
.siip-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.siip-site {
  --clamp-min: 11;
  --clamp-max: 13;

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

  ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 2em;
    height: 50px;

    @media (width <= 1080px) {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1em;
      height: auto;
      padding: 1em;
    }
  }

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

/* ============================================================
   Lazy images
   ============================================================ */
img.lazy {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  &.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
 Overview
 ============================================================ */
.consultation-achievements {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 30px;
  @media (width <=768px) {
    flex-wrap: wrap;
    gap: 20px;
  }
  p {
    margin: 0;
  }
  .count {
    color: var(--color-assista-pink);
    --clamp-min: 20;
    --clamp-max: 40;
    font-weight: 500;
    line-height: 1;
    span {
      font-family: var(--font-din);
      --clamp-min: 80;
      --clamp-max: 180;
      font-weight: 700;
      line-height: 1;
    }
  }
}
.empowering-title01 {
  display: flex;
  align-items: center;
  h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 255px;
    --clamp-min: 18;
    --clamp-max: 24;
    font-weight: 700;
    @media (width <=768px) {
      width: 100%;
    }
  }
  p {
    margin-left: 63px;
  }
}
.empowering-title02 {
  display: flex;
  align-items: center;
  gap: 12px;
  --clamp-min: 20;
  --clamp-max: 24;
  font-weight: 700;
  @media (width <=768px) {
    justify-content: center;
  }
}
#empowering {
  ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto;
    @media (width <=768px) {
      width: 100%;
    }
    li {
      width: calc(50% - 20px);
      @media (width <=768px) {
        width: 100%;
      }
    }
  }
}
.chart {
  display: grid;
  place-items: center;
  padding: 48px;
  @media (width <=768px) {
    padding: 18px 0;
  }
  @media (width <=400px) {
    padding: 24px 0;
  }
}
.conic-pie-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.conic-pie {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.svg-pie-chart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 360px;
  height: 360px;
  @media (width <=375px) {
    width: 300px;
    height: 300px;
  }
}
.pie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.pie-label {
  position: absolute;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  transform: translate(-50%, -50%);
  filter: drop-shadow(1px 1px 3px #231815);
}
.pie-label .label {
  margin: 0 0 4px;
  --clamp-min: 16;
  --clamp-max: 20;
}
.pie-label .value {
  font-family: var(--font-din);
  /* font-size: 30px; */
  --clamp-min: 22;
  --clamp-max: 40;
}
.pie-label .value span {
  margin: 0 0 0 4px;
  --clamp-min: 16;
  --clamp-max: 20;
}
.pie-label.female {
  top: 50%;
  left: 25%;
}
.pie-label.male {
  top: 50%;
  left: 75%;
}
.pie-label.age20s {
  top: 15%;
  right: 15%;
}
.pie-label.age30s {
  top: 50%;
  right: 0%;
}
.pie-label.age40s {
  top: 80%;
  left: 50%;
}
.pie-label.age50s {
  top: 55%;
  left: 20%;
}
.pie-label.age60s {
  top: 34%;
  left: 19%;
}
.pie-label.not-clear {
  top: 18%;
  left: 35%;
}
/* 各ラベルの位置は仮配置（必要に応じて調整） */
.pie-label.general {
  top: 28%;
  left: 72%;
}
.pie-label.plan {
  top: 65%;
  left: 77%;
  @media (width <=400px) {
    top: 58%;
    left: 62%;
  }
}
.pie-label.incorporation {
  top: 80%;
  left: 45%;
}
.pie-label.monetize {
  top: 63%;
  left: 17%;
}
.pie-label.marketing {
  top: 40%;
  left: 18%;
}
.pie-label.tax {
  top: 25%;
  left: 36%;
}
.pie-label.hr {
  top: 10%;
  left: 48%;
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

#pieChart,
#agePieChart,
#consultationPieChart {
  inline-size: var(--pie-size);
  block-size: var(--pie-size);
  width: var(--pie-size);
  height: var(--pie-size);
  border-radius: 50%;
}
@media (width <= 375px) {
  :root {
    --pie-size: 300px;
  }
}

#pieChart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--color-assista-blue) 0% 57%,
    var(--color-assista-pink) 57% 100%
  );
}

/* Removed special color classes for .pie-label (.pink, .green, .blue) */

#agePieChart {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--color-assista-pink) 0% 10.6%,
    var(--color-assista-green) 10.6% 38.6%,
    var(--color-assista-blue) 38.6% 63.5%,
    var(--color-assista-pink) 63.5% 80.4%,
    var(--color-assista-green) 80.4% 88.2%,
    var(--color-assista-blue) 88.2% 100%
  );
  transition: background 1.5s ease-out;
  @media (width <=400px) {
    width: 280px;
    height: 280px;
  }
}

.age-legend {
  position: relative;
  width: 360px;
  height: 360px;
  @media (width <=375px) {
    width: 300px;
    height: 300px;
  }
}

#agePieChart.animate {
  background: conic-gradient(
    #ef7e99 0% 10.6%,
    var(--color-assista-green) 10.6% 38.6%,
    #008ccf 38.6% 63.5%,
    #ef7e99 63.5% 80.4%,
    var(--color-assista-green) 80.4% 88.2%,
    #008ccf 88.2% 100%
  );
}

.age-legend .legend {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
#agePieChart .filler,
#consultationPieChart .filler {
  width: 100%;
  height: 100%;
}

#consultationPieChart {
  width: var(--pie-size);
  height: var(--pie-size);
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--color-assista-pink) 0% 20.9%,
    var(--color-assista-green) 20.9% 45.3%,
    var(--color-assista-blue) 45.3% 60.8%,
    var(--color-assista-pink) 60.8% 76%,
    var(--color-assista-green) 76% 88.1%,
    var(--color-assista-blue) 88.1% 97.8%,
    var(--color-assista-green) 97.8% 100%
  );
}

#consultationPieChart.animate {
  background: conic-gradient(
    var(--color-assista-pink) 0% 20.9%,
    var(--color-assista-green) 20.9% 45.3%,
    var(--color-assista-blue) 45.3% 60.8%,
    var(--color-assista-pink) 60.8% 76%,
    var(--color-assista-green) 76% 88.1%,
    var(--color-assista-blue) 88.1% 97.8%,
    var(--color-assista-green) 97.8% 100%
  );
}

.established {
  margin: 0;
  color: var(--color-assista-pink);
  --clamp-min: 24;
  --clamp-max: 32;
  font-weight: 500;
  line-height: 1;
  span {
    font-family: var(--font-din);
    --clamp-min: 80;
    --clamp-max: 128;
    font-weight: 700;
  }
}
.including {
  width: 100%;
  margin: -10px 0 0 0;
  --clamp-min: 16;
  --clamp-max: 18;
  font-weight: 700;
  text-align: center;
  span {
    color: var(--color-assista-pink);
    font-family: var(--font-din);
    --clamp-min: 32;
    --clamp-max: 48;
    font-weight: 700;
  }
}
.startup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 300px;
  margin: 20px 0 0 0;
  border-top: 1px solid var(--color-assista-pink);
  p {
    width: 100%;
    margin: 0;
    padding: 18px 12px;
    --clamp-min: 18;
    --clamp-max: 20;
    font-weight: 700;
  }
  div {
    display: flex;
    justify-content: center;
    gap: 60px;
    dl {
      margin: 0;
      color: var(--color-assista-pink);
      --clamp-min: 18;
      --clamp-max: 20;
      font-weight: 500;
      dd {
        text-align: center;
        span {
          font-family: var(--font-din);
          --clamp-min: 48;
          --clamp-max: 64;
          font-weight: 700;
        }
      }
    }
  }
}

/* roadmap */
#roadmap {
  .step {
    width: 100%;
    /* max-width: 630px; */
    margin: 40px auto;
  }
  ol {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    > li {
      list-style: none;
      width: 31%;
      padding: 24px;
      background-color: #f7f8f8;
      @media (width <=768px) {
        width: 100%;
      }
      @media (width <=320px) {
        padding: 24px 8px;
      }
      &.pink {
        &::before {
          color: var(--color-assista-pink);
        }
      }
      &.green {
        &::before {
          color: var(--color-assista-green);
        }
      }
      &.blue {
        &::before {
          color: var(--color-assista-blue);
        }
      }
      h3 {
        display: inline-block;
        margin: 0 0 12px;
        --clamp-min: 16;
        --clamp-max: 24;
        font-weight: 700;
        line-height: 1.2;
        span {
          font-family: var(--font-din);
          &.pink {
            color: var(--color-assista-pink);
          }
          &.green {
            color: var(--color-assista-green);
          }
          &.blue {
            color: var(--color-assista-blue);
          }
        }
      }
    }
  }
}

.list01 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: circle outside;
  margin: 0 0 0 20px;
  &.gap16 {
    gap: 16px;
  }
  &.pink {
    li {
      &::marker {
        color: var(--color-assista-pink);
      }
    }
  }
  &.green {
    li {
      &::marker {
        color: var(--color-assista-green);
      }
    }
  }
  &.blue {
    li {
      &::marker {
        color: var(--color-assista-blue);
      }
    }
  }
}

.list02 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: circle inside;
  margin: 0 0 0 20px;
  &.gap32 {
    gap: 32px;
  }
  &.pink {
    li {
      &::marker {
        color: var(--color-assista-pink);
      }
    }
  }
  &.green {
    li {
      &::marker {
        color: var(--color-assista-green);
      }
    }
  }
  &.blue {
    li {
      &::marker {
        color: var(--color-assista-blue);
      }
    }
  }
}
/* support */
.ov-section-title02 {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 20px;
  line-height: 1;
  h2 {
    --clamp-min: 24;
    --clamp-max: 64;
    font-weight: 700;
    text-align-last: justify;
  }
  p {
    --clamp-min: 18;
    --clamp-max: 24;
    font-weight: 700;
    text-align: center;
  }
}
.text-pink {
  color: var(--color-assista-pink);
}
.text-green {
  color: var(--color-assista-green);
}
.text-blue {
  color: var(--color-assista-blue);
}
.support-text {
  --clamp-min: 16;
  --clamp-max: 18;
  font-weight: 500;
}

/* ============================================================
   Splide — canonical base + Assista要件（中央カラー/両サイド灰/クリック無効）
   ============================================================ */

/* --- 基本（他CSSの干渉を最低限リセット） --- */
.splide {
  display: block;
  visibility: visible;
  height: auto;
}
.splide__track {
  position: relative;
  overflow: hidden;
}
.splide__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}
.splide__slide {
  flex: 0 0 auto;
}
.splide__slide > a,
.splide__slide > img {
  display: block;
  width: 100%;
  height: 100%;
}
.splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- ヒーロースライダー共通 --- */
.slide {
  position: relative;
  width: 100%;
  margin: 40px 0;
  overflow: hidden;
  --hero-h: 452px; /* 既存変数を尊重 */
  min-block-size: var(--hero-h);
}
.slide .splide {
  width: 100%;
}

/* 初期から可視でOK（JS側でレイアウト確定） */
.slide .splide__track {
  opacity: 1;
  visibility: visible;
}

/* ≪中央だけカラー＆クリック可／サイドは常時グレー＆クリック不可≫ */
.slide .splide__slide {
  filter: grayscale(1) brightness(0.9);
  opacity: 0.85;
  pointer-events: none; /* デフォはクリック不可 */
  transition: none; /* アニメなし（ガタつき防止） */
  block-size: var(--hero-h);
}
.slide .splide__slide.is-active {
  filter: none;
  opacity: 1;
  pointer-events: auto; /* 中央だけクリック可 */
}

/* 念のため、非アクティブ内部要素も無効化 */
.slide .splide__slide:not(.is-active) a,
.slide .splide__slide:not(.is-active) button,
.slide .splide__slide:not(.is-active) input,
.slide .splide__slide:not(.is-active) select,
.slide .splide__slide:not(.is-active) textarea {
  pointer-events: none;
}

/* 画像は常に枠フィット */
.slide .splide__slide img,
.slide .splide__slide picture {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

/* ===== PC（>=1025px）：既存の高さを使用 ===== */
@media (min-width: 1025px) {
  .slide,
  .slide .splide__slide {
    block-size: var(--hero-h);
  }
}

/* ===== タブレット（<=1024px）：余白削減＆高さは比率管理 ===== */
@media (max-width: 1024px) {
  .slide {
    min-block-size: auto;
  }
  .slide .splide__slide {
    block-size: auto;
    aspect-ratio: 16 / 9; /* 自動で高さ確保（上下の空白を防止） */
  }
  .slide .splide__list {
    align-items: stretch;
  }
  .slide .splide__arrow {
    width: 1.75em;
    height: 1.75em;
  }
  .slide .splide__arrow.splide__arrow--prev {
    left: 12px;
  }
  .slide .splide__arrow.splide__arrow--next {
    right: 12px;
  }
  .slide .splide__arrow svg {
    width: 22px;
    height: 40px;
  }
}

/* ===== スマホ（<=768px）：さらに低めの比率でよりタイトに ===== */
@media (max-width: 768px) {
  .slide {
    min-block-size: auto !important;
  }
  .slide .splide__slide {
    aspect-ratio: 16 / 9;
  }
  .slide .splide__list {
    align-items: stretch;
    gap: 0;
  }
  .slide .splide__slide picture {
    height: 100%;
    object-fit: cover;
  }
  .slide .splide__arrow.splide__arrow--prev {
    left: 8px;
  }
  .slide .splide__arrow.splide__arrow--next {
    right: 8px;
  }
}

/* 極小端末 */
@media (max-width: 480px) {
  .slide {
    margin: 6px 0 2px;
  }
  .slide .splide__list {
    max-height: 250px;
  }
  .slide .splide__slide {
    max-height: 250px;
  }
}

/* --- 矢印：黒アイコン＋白ドロップシャドウで視認性UP --- */
.slide .splide__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.slide .splide__arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.slide .splide__arrow.splide__arrow--prev {
  left: 20px;
}
.slide .splide__arrow.splide__arrow--next {
  right: 20px;
}
.slide .splide__arrow svg {
  width: 28px;
  height: 50px;
  fill: #000; /* ← 黒 */
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 6px #fff); /* ← 白の外縁でコントラスト確保 */
}

/* ===== 相談用スライダー（別インスタンス） ===== */
.consultation-slide .splide {
  --slide-w: 650px;
  position: relative;
  margin: 0 0 3em;
}
.consultation-slide .splide__list {
  max-height: 349px;
}
.consultation-slide .splide__slide {
  width: 100%;
  max-width: var(--slide-w);
}
.consultation-slide .splide__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.consultation-slide .splide__arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  background: none;
  border: 0;
  cursor: pointer;
}
.consultation-slide .splide__arrow.splide__arrow--prev {
  left: 12px;
}
.consultation-slide .splide__arrow.splide__arrow--next {
  right: 12px;
}
.consultation-slide .splide__arrow svg {
  width: 28px;
  height: 50px;
  fill: var(--color-assista-blue);
}

.ov-section-title03 {
  --clamp-min: 26;
  --clamp-max: 48;
  font-weight: 700;
  text-align: center;
}
.concerns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 32px 0 0;
  @media (width <=768px) {
    flex-wrap: wrap;
  }
  li {
    width: 33%;
    @media (width <=768px) {
      width: 100%;
    }
    h4 {
      position: relative;
      display: grid;
      place-items: center;
      padding: 34px 16px;
      border-radius: 16px;
      --clamp-min: 20;
      --clamp-max: 22;
      font-weight: 700;
      text-align: center;
      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 63%;
        border-style: solid;
        border-width: 24px 27px 0 0;
        translate: calc(-50% - 0.5px) 100%;
        transform: skew(-26deg);
        transform-origin: top;
      }
      &.pink {
        background-color: #fad4dd;
        &::after {
          border-color: #fad4dd transparent transparent;
        }
      }
      &.green {
        background-color: #edf4bf;
        &::after {
          border-color: #edf4bf transparent transparent;
        }
      }
      &.blue {
        background-color: #bfe2f3;
        &::after {
          border-color: #bfe2f3 transparent transparent;
        }
      }
    }
    figure {
      text-align: center;
    }
  }
}

#comprehensive {
  .comprehensive {
    margin: 0 0 60px;
  }
  h2 {
    margin: 0 0 16px;
    --clamp-min: 36;
    --clamp-max: 48;
    font-weight: 700;
  }
  h3 {
    display: flex;
    align-items: center;
    height: 60px;
    margin: 36px 0 24px;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    --clamp-min: 16;
    --clamp-max: 32;
    font-weight: 700;
    img {
      margin: 0 12px 0 0;
    }
    @media (width <=768px) {
      height: 100%;
    }
    &.events {
      background: var(--color-assista-green);
    }
    &.post-startup {
      background: var(--color-assista-blue);
    }
    &.onestop {
      background: var(--color-assista-pink);
    }
    &.specific-biz-support {
      background: var(--color-assista-blue);
    }
  }
  .free-startup {
    position: relative;
    h3 {
      background: var(--color-assista-pink);
    }
    p {
      position: absolute;
      right: 24px;
      top: -10px;
    }
  }
  h4 {
    margin: 0 0 16px;
    --clamp-min: 20;
    --clamp-max: 24;
    font-weight: 700;
  }
  h5 {
    display: inline-table;
    width: 96%;
    margin: 0 0 16px;
    --clamp-min: 20;
    --clamp-max: 24;
    font-weight: 700;
    span {
      margin: 0 0 0 12px;
      color: var(--color-assista-pink);
    }
    @media (width <=768px) {
      width: 90%;
    }
  }
  .column-2 {
    display: flex;
    justify-content: space-between;
    margin: 32px 0;
    @media (width <=768px) {
      flex-wrap: wrap;
    }
    &.reverse {
      flex-direction: row-reverse;
    }
    > div {
      width: 666px;
      @media (width <=768px) {
        width: 100%;
      }
      .list01 {
        margin-bottom: 32px;
      }
    }
  }
  .photo {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 390px;
    @media (width <=768px) {
      width: 80%;
      margin: 32px auto;
      text-align: center;
    }
    li {
      &.onestop {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 183px;
        background: url(images/bg_onestop.png) no-repeat center top;
        background-size: cover;
        color: var(--color-assista-pink);
        --clamp-min: 26;
        --clamp-max: 32;
        font-weight: 700;
        text-align: center;
      }
      &.specific-biz-support {
        display: flex;
        justify-content: center;
        align-items: center;
        background: url(images/bg_specific_biz_support.png) no-repeat center top;
        background-size: cover;
        color: var(--color-assista-blue);
        --clamp-min: 20;
        --clamp-max: 24;
        font-weight: 700;
      }
    }
  }
  .afterfollow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin: 40px 0;
  }
}
#consultation {
  .consultation-title-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 0 24px;
    .consultation-title01 {
      width: 100%;
      max-width: 629px;
      h2 {
        --clamp-min: 40;
        --clamp-max: 48;
        font-weight: 700;
      }
      h3 {
        margin: 0 0 20px;
        --clamp-min: 20;
        --clamp-max: 28;
        color: var(--color-link-hover);
        font-weight: 700;
        + p {
          margin: 0 0 16px;
        }
      }
    }
    .consultation-title-img {
      width: 414px;
      @media (width <=768px) {
        width: 100%;
      }
      figure {
        margin: 0;
      }
      p {
        color: var(--color-link-hover);
        --clamp-min: 28;
        --clamp-max: 32;
        font-weight: 700;
        letter-spacing: -1px;
      }
    }
  }
  .consultation-title02 {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 3px 16px;
    border-radius: 8px;
    color: #fff;
    --clamp-min: 24;
    --clamp-max: 28;
    font-weight: 700;
    @media (width <=768px) {
      flex-wrap: wrap;
      height: 100%;
    }
    span {
      --clamp-min: 16;
      --clamp-max: 16;
    }
    &.pink {
      background-color: var(--color-assista-pink);
    }
    &.green {
      background-color: var(--color-assista-green);
    }
    &.blue {
      background-color: var(--color-assista-blue);
    }
  }
  .list01 {
    margin: 16px 32px;
    font-weight: 500;
  }
  .column-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    @media (width <=1128px) {
      gap: 0;
    }
    li {
      width: 522px;
      @media (width <=1128px) {
        width: 100%;
      }
    }
  }
  .app-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3em;
    width: 90%;
    margin: 2em auto;
    --clamp-min: 20;
    --clamp-max: 26;
    font-weight: 700;
    @media (width <=768px) {
      flex-wrap: wrap;
      gap: 1em;
      text-align: center;
    }
    dt {
      position: relative;
      display: grid;
      place-items: center;
      width: 280px;
      height: 60px;
      border: 1px solid var(--color-text-screen);
      background-color: #fff;
      &::after,
      &::before {
        left: 100%;
        top: 50%;
        border: solid transparent;
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
      }
      &::after {
        border-color: rgba(255, 255, 255, 0);
        border-left-color: #fff;
        border-width: 30px;
        margin-top: -30px;
      }
      &::before {
        border-color: #fff;
        border-left-color: var(--color-text-screen);
        border-width: 31px;
        margin-top: -31px;
      }
    }
  }
}
.ov-section-title01 {
  display: flex;
  align-items: center;
  gap: 28px;
  @media (width <=768px) {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  div {
    width: 100vw;
    h2 {
      --clamp-min: 28;
      --clamp-max: 48;
      font-weight: 700;
      text-align-last: justify;
      @media (width <=768px) {
        text-align-last: left;
      }
    }
    p {
      margin: 0;
      --clamp-min: 16;
      --clamp-max: 20;
      font-weight: 500;
    }
    @media (width <=768px) {
      br {
        display: none;
      }
    }
  }
}
.contact-info {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  margin: 0 0 32px;
  dl {
    dt {
      --clamp-min: 16;
      --clamp-max: 16;
      font-weight: 700;
    }
    dd {
      &.siip {
        margin: 0 0 16px;
        --clamp-min: 20;
        --clamp-max: 24;
        font-weight: 700;
        line-height: 1.2;
        span {
          --clamp-min: 16;
          --clamp-max: 16;
        }
      }
    }
  }
  figure {
    width: 80px;
    margin: 0;
  }
}

.card-link {
  display: block;
  transition: background-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;

  &:hover {
    background-color: #fcfcfc;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }
}

.wp-pagenavi {
  margin: 36px 0;
}
/* Slide-up animation */
.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.1s;
  will-change: opacity, transform;
}

.animate-slide-up.active {
  opacity: 1;
  transform: translateY(0);
}
