@charset "UTF-8";
/* ===================== _variables ===================== */
/* ===================== _mixin ===================== */
/* ===================== 基本設定 _base ===================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  color: #fff;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-size: 16px;
}
@media screen and (min-width: 1921px) {
  html, body {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  html, body {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
}

a {
  text-decoration: none;
}

/* ===================== _components ===================== */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0078d7;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.button:hover {
  background-color: rgb(0, 91.5348837209, 164);
}

/* ===================== タイトル・テキスト類 ===================== */
header h1 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ===================== カード背景のみ個別指定 - ドット柄+グラデーション ===================== */
.card-information,
.card-news,
.card-service01,
.card-service02,
.card-service03,
.card-company,
.card-partner,
.card-guga {
  position: relative;
}

.card-information::before,
.card-news::before,
.card-company::before,
.card-partner::before,
.card-guga::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 10%, transparent 10%);
  background-size: 20px 20px;
  pointer-events: none; /* クリックを邪魔しない */
}

.card-service01::before,
.card-service02::before,
.card-service03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.35) 10%, transparent 10%);
  background-size: 20px 20px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.card-main {
  background: linear-gradient(to bottom, #2e2e2e, #141b2e);
}

.card-pickup,
.card-works {
  background-image: url(../images-main/pick-bg-line.png), url(../images-main/pick-bg-Ltop.png), url(../images-main/pick-bg-Rbottom.png);
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: left top, left top, right bottom;
  background-size: 200px auto, 1000px auto, 1000px auto;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .card-pickup,
  .card-works {
    background-size: 180px auto, 600px auto, 600px auto;
  }
}

.card-service01 {
  background: linear-gradient(to bottom, #00cfff, #0066ff);
}

.card-service02 {
  background: linear-gradient(to bottom, #ff3399, #3366ff);
}

.card-service03 {
  background: linear-gradient(to bottom, #ffc400, #ff4d4d);
}

.card-information {
  background: linear-gradient(to bottom, #001a3f, #010001);
}

.card-news {
  background: linear-gradient(to bottom, #001a3f, #010001);
}

.card-company {
  background: linear-gradient(to bottom, #001a3f, #010001);
}

.card-partner {
  background: linear-gradient(to bottom, #115fad, #082b4f);
}

.card-guga {
  background: linear-gradient(to bottom, #178290, #193C4B);
}

.card-serviceZept-BG {
  background-image: url(../images-main/serviceZept-Ltop.png), url(../images-main/serviceZept-Rbottom.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 1000px auto, 1000px auto;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .card-serviceZept-BG {
    background-size: 600px auto, 600px auto;
  }
}

.card-serviceZeptSystems-BG {
  background-image: url(../images-BG/top-left.png), url(../images-BG/top-right.png), url(../images-BG/bottom-left.png), url(../images-BG/bottom-right.png), url(../images-BG/all.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y;
  background-position: left top, right top, left bottom, right bottom, center;
  background-size: 50vw, 50vw, 50vw, 50vw, 100vw;
  background-color: #000000;
}

/* ===================== _layout ===================== */
.swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100vh;
  position: relative;
}

/* 1枚目・内容 ********************************************************************************************************************************/
/* ===================== メインビジュアル：swiper-slideの中にある中央配置用ボックス ===================== */
.main-visual-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
}

/* 2枚目・内容 ********************************************************************************************************************************/
/* ===================== 特集 ：swiper-slideの中にある中央配置用ボックス ===================== */
.feature-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 2200px;
  height: -moz-min-content;
  height: min-content;
  /* 1920px */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1921px) {
  .feature-wrap {
    gap: 25px;
  }
}
@media screen and (max-width: 1920px) {
  .feature-wrap {
    max-width: 1500px;
  }
}
@media screen and (max-width: 1280px) {
  .feature-wrap {
    max-width: 1100px;
  }
}
@media screen and (max-height: 900px) {
  .feature-wrap {
    max-width: 1100px;
  }
}
@media screen and (max-height: 700px) {
  .feature-wrap {
    max-width: 950px;
    gap: 10px;
  }
}

/* 3-5枚目・内容 ********************************************************************************************************************************/
/* ===================== Service ：swiper-slideの中にある中央配置用ボックス ===================== */
/* グリッドレイアウト：3列 */
.service-wrap {
  justify-content: center;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1500px;
  height: -moz-min-content;
  height: min-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 1024px縦 */
  /* 1920px */
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .service-wrap {
    max-width: 810px;
  }
}
@media screen and (min-width: 1921px) {
  .service-wrap {
    max-width: 1600px;
  }
}

/* 6枚目・内容 ********************************************************************************************************************************/
/* ===================== WORKS ：swiper-slideの中にある中央配置用ボックス ===================== */
.three-split-screen-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .three-split-screen-wrap {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

/* 7-8枚目・内容 ********************************************************************************************************************************/
/* ===================== Information＆News ：swiper-slideの中にある中央配置用ボックス ===================== */
.article-wrap,
.articleNews-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  max-width: 1380px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1921px) {
  .article-wrap,
  .articleNews-wrap {
    width: 80%;
    max-width: 1600px;
  }
}
@media screen and (max-width: 1280px) {
  .article-wrap,
  .articleNews-wrap {
    max-width: 1100px;
  }
}

/* ===================== グリッドレイアウト（3列 → 2列） ===================== */
.article-box,
.articleNews-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /* 1024px */
  /* 1920px */
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .article-box,
  .articleNews-box {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
  }
}
@media screen and (min-width: 1921px) {
  .article-box,
  .articleNews-box {
    gap: 30px;
  }
}

/* 9・会社概要 ***********************************************************************************************************************/
.company-wrap {
  justify-content: center;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1200px;
  height: -moz-min-content;
  height: min-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1440px) {
  .company-wrap {
    max-width: 1400px;
  }
}

/* 10枚目・パートナー ***********************************************************************************************************************/
.partner-wrap {
  justify-content: center;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1200px;
  height: -moz-min-content;
  height: min-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1280px) {
  .partner-wrap {
    max-width: 1400px;
  }
}

/* 11枚目・会社概要 ***********************************************************************************************************************/
.guga-wrap {
  justify-content: center;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1200px;
  height: -moz-min-content;
  height: min-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 1280px) {
  .guga-wrap {
    max-width: 1400px;
  }
}

/* ===================== _pages-1-main-sp ===================== */
/* 1枚目 ********************************************************************************************************************************/
.main-swiper {
  width: 100%;
  height: 100vh;
}

/* 内側スライド全体（高さから100px引く） */
.inner-swiper {
  width: 100%;
  height: calc(100vh - 80px);
}

.visual-box {
  position: relative;
}

/* 背景色付きスライド */
.box1,
.box2,
.box3,
.box4 {
  background-position: center;
  background-size: cover;
}

.box1 {
  background-image: url(../images-main/mainVisual-1.jpg);
}

.box2 {
  background-image: url(../images-main/mainVisual-2.jpg);
}

.box3 {
  background-image: url(../images-main/mainVisual-3.jpg);
}

.box4 {
  background-image: url(../images-main/mainVisual-4.jpg);
}

/* 中央の黒いコンテンツボックス */
.overlay {
  width: 90%;
  height: calc(90% - 80px);
  margin: auto;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 50px); /* 下の100pxの半分を引く */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 18px;
}

.visual-box:nth-of-type(1) .overlay {
  background: linear-gradient(to bottom right, rgba(23, 214, 243, 0.8), rgba(23, 155, 243, 0.95), rgba(14, 95, 255, 0.8));
}

.visual-box:nth-of-type(2) .overlay {
  background: linear-gradient(to bottom right, rgba(252, 56, 163, 0.8), rgba(180, 44, 174, 0.95), rgba(108, 32, 185, 0.8));
}

.visual-box:nth-of-type(3) .overlay {
  background: linear-gradient(to bottom right, rgba(212, 109, 236, 0.8), rgba(147, 109, 236, 0.95), rgba(82, 128, 253, 0.8));
}

.visual-box:nth-of-type(4) .overlay {
  background: linear-gradient(to bottom right, rgba(255, 190, 59, 0.8), rgba(255, 163, 59, 0.95), rgba(255, 114, 108, 0.8));
}

.overlay h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* 下部100pxサムネイル */
.thumbs-swiper {
  height: 80px;
}

.color-thumb {
  height: 100%;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
}

.color-thumb.blue {
  background-image: url(../images-sp/main-select01.jpg);
}

.color-thumb.magenta {
  background-image: url(../images-sp/main-select02.jpg);
}

.color-thumb.purple {
  background-image: url(../images-sp/main-select03.jpg);
}

.color-thumb.orange {
  background-image: url(../images-sp/main-select04.jpg);
}

/* 選択中のサムネイルを強調 */
.thumbs-swiper .swiper-slide-thumb-active {
  border: 2px solid rgba(58, 58, 58, 0.7333333333);
  box-sizing: border-box;
}

/* 2枚目 ********************************************************************************************************************************/
.feature-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.feature-box-mikata {
  background-image: url(../images-sp/PickupService-mikataAI-BG.png);
}

.feature-box-training {
  background-image: url(../images-sp/PickupService-training_1.1-BG.png);
}

.feature-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content-inner img {
  width: 100%;
}

.feature-content-inner a {
  display: block;
  width: 200px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  border-radius: 4px;
  text-decoration: none;
  background: linear-gradient(to bottom right, rgba(23, 214, 243, 0.8), rgba(23, 155, 243, 0.95), rgba(14, 95, 255, 0.8));
  color: #fff;
}

.feature-content-inner a:active {
  background: linear-gradient(to bottom right, rgb(14, 95, 255), rgb(23, 155, 243), rgba(23, 214, 243, 0.9));
  transform: scale(0.96); /* 少し縮むことで押し込み感 */
  box-shadow: 0 0 8px rgba(23, 214, 243, 0.8); /* 光る感じを追加 */
  color: #fff; /* テキストは読みやすく白固定 */
}

/* 2枚目 ラベル/Pickup ********************************************************************************************************************************/
.pickup-label {
  position: absolute;
  top: 8px;
  left: -30px;
  background: #ff4d4f;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  transform: rotate(-30deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
  text-align: center;
  pointer-events: none;
  padding: 8px 90px 8px 30px;
}

/* 3枚目 ********************************************************************************************************************************/
/* 3-6枚目　共通 ********************************************************************************************************************************/
.service-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.serviceAI-box {
  background: linear-gradient(to bottom, #00cfff, #0066ff);
}

.serviceSchool-box {
  background: linear-gradient(to bottom, #ff3399, #6c20b9);
}

.serviceZeptSystems-box {
  background: linear-gradient(to bottom, #d46dec, #5280fd);
}

.serviceZept-box {
  background: linear-gradient(to bottom, #ffc400, #ff4d4d);
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.35) 10%, transparent 10%);
  background-size: 20px 20px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.service-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content-inner {
  height: -moz-min-content;
  height: min-content;
}

/* ===================== 見出し2 ===================== */
.subtitle-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: -moz-min-content;
  height: min-content;
}

.subtitle {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 360px) {
  .subtitle {
    font-size: 1.6rem;
  }
}

.subtitle span {
  font-size: 0.9rem;
  font-weight: normal;
  padding-right: 1rem;
}

@media screen and (max-height: 600px) {
  .subtitle {
    margin-bottom: 0.5rem;
  }
}
/* ===================== サービスタイトル画像リスト ===================== */
.service-list {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-list img {
  width: 80px; /* 表示サイズ */
  height: auto;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
@media screen and (max-width: 360px) {
  .service-list img {
    width: 70px;
  }
}

.service-list img.active {
  opacity: 1;
}

/* ===================== サービス内容 ===================== */
.service-list-contents {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 8px;
}

.service-list-contents-box {
  display: none;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  color: #353535;
  text-align: center;
}

.service-list-contents-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-list-contents-box p {
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 1rem;
}

.service-list-contents-box.active {
  display: block;
}

/* ===================== サービス内容のリンクボタン===================== */
.service-list-contents-box img.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.service-list-contents-box a.blue,
.service-list-contents-box a.magenta,
.service-list-contents-box a.purple,
.service-list-contents-box a.orange {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* その他サービス-リストの矢印 ↓ */
.service-another-list {
  text-align: left;
  padding-left: 30px;
}

.service-another-list li {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.service-another-list li a {
  text-decoration: none;
  color: #353535;
}

.service-another-list-icon {
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
}

.service-list-contents-box a.blue {
  background-color: #0078d7;
}

.service-list-contents-box a:hover.blue {
  background-color: #003f72;
}

.service-box a.magenta {
  background-color: #B92DAD;
}

.service-box a:hover.magenta {
  background-color: #7c0272;
}

.service-box a.purple {
  background-color: #9E75F3;
}

.service-box a:hover.purple {
  background-color: #5f12fa;
}

.service-box a.orange {
  background-color: #FF9C51;
}

.service-box a:hover.orange {
  background-color: #f76f07;
}

a.arrow {
  color: #fff;
  display: inline-flex;
  align-items: center;
}

a.arrow .arrow-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* タブ切替ハイライト用 ********************************************************************************************************************************/
.service-list img {
  -webkit-tap-highlight-color: transparent; /* スマホ用（特にiOS） */
  outline: none; /* PC用 */
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* 選択不可にする */
}

/* 7枚目 ********************************************************************************************************************************/
.works-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-image: url(../images-main/pick-bg-line.png), url(../images-main/pick-bg-Ltop.png), url(../images-main/pick-bg-Rbottom.png);
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: left top, left top, right bottom;
  background-size: 180px auto, 200px auto, 200px auto;
}

.works-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-content-inner {
  height: -moz-min-content;
  height: min-content;
}

.subtitle-black {
  color: #353535;
  border-bottom: 1px solid #353535;
  padding-right: 1rem;
}

.works-wrap {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.works-innerBox {
  position: relative;
}

.works-innerBox::after {
  content: "";
  position: absolute;
  top: 15px; /* 上に寄せる */
  right: 10px; /* 右に寄せる */
  width: 15px; /* 画像の幅 */
  height: 15px; /* 画像の高さ */
  background: url("../images-main/modal-icon.png") no-repeat center center;
  background-size: contain; /* 画像を要素内に収める */
  z-index: 2;
}

.works-innerBox img {
  width: 150px;
  height: auto;
  cursor: pointer;
  border: #353535 1px solid;
  border-radius: 4px;
}
@media screen and (max-width: 360px) {
  .works-innerBox img {
    width: 140px;
  }
}

/* 8・9枚目 ********************************************************************************************************************************/
.service-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.serviceNews-box,
.serviceInformation-box {
  background: linear-gradient(to bottom, #001a3f, #010001);
  z-index: 0;
}

.service-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 10%, transparent 10%);
  background-size: 20px 20px;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.service-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content-inner {
  height: -moz-min-content;
  height: min-content;
}

.subtitle-Link-to-list {
  display: block;
  width: 150px;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  color: #003f72;
  border-radius: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* ===================== 各記事ボックス ===================== */
.post-item {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

/* アイキャッチ画像 */
.post-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

/* 投稿日 */
.post-date {
  font-size: 0.85rem;
  color: #fff;
  margin: 8px 16px 4px;
  text-align: right;
}

/* カテゴリ */
.post-category {
  margin: 5px 16px 0px 16px;
}

.post-category span {
  display: inline-block;
  background-color: #0073aa;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
}

.article-box .post-item .post-category .category-press_release {
  background-color: cadetblue;
}

.article-box .post-item .post-category .category-event {
  background-color: rgb(221, 73, 137);
}

/* ===================== Information＆News ：swiper-slideの中にある中央配置用ボックス ===================== */
.article-wrap,
.articleNews-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================== グリッドレイアウト（3列 → 2列） ===================== */
.article-box,
.articleNews-box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-height: 600px) { /* 表示高さが低いスマホ用 */
  .post-date {
    margin: 0px 0px 2px 16px;
  }
  .post-category {
    margin: 2px 16px 0px 16px;
  }
  .post-category span {
    padding: 2px 6px;
  }
  .article-box,
  .articleNews-box {
    gap: 5px;
    width: 75%;
  }
  .subtitle-Link-to-list {
    margin-top: 1rem;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}
/* 10枚目 ********************************************************************************************************************************/
.company-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-image: url(../images-sp/company-BG.png);
}

.company-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-content-inner {
  height: -moz-min-content;
  height: min-content;
}

/* =======================================
    中身
   ======================================= */
.company-content-innerBox {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  border-radius: 4px;
}

.company-content-innerBox dt,
.company-content-innerBox dd {
  display: block;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  color: #333;
}

.company-content-innerBox dt {
  font-weight: bold;
  padding-top: 8px;
}

.company-content-innerBox dd {
  border-bottom: #222 1px solid;
  padding-bottom: 8px;
}

.company-content-innerBox dd:last-of-type {
  border-bottom: none;
}

.dd-vision-img {
  width: 100%;
  border-radius: 4px;
}

@media screen and (max-height: 600px) { /* 表示高さが低いスマホ用 */
  .company-content-innerBox dt {
    padding-top: 4px;
  }
  .company-content-innerBox dd {
    padding-bottom: 4px;
  }
  .dd-vision {
    text-align: center;
  }
  .dd-vision-img {
    width: 80%;
  }
}
.company-content-innerBox {
  position: relative;
}

/* 右上に配置するボタン */
.company-content-innerBox .more-link {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #007acc;
  color: #fff;
  padding: 3px 8px 5px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.company-content-innerBox .more-link:hover {
  background: #005f99;
}

/* 11枚目 パートナー ********************************************************************************************************************************/
.partner-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background: linear-gradient(to bottom, #115fad, #082b4f);
  z-index: 0;
}

.partner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 10%, transparent 10%);
  background-size: 20px 20px;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.partner-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-content-inner {
  height: -moz-min-content;
  height: min-content;
}

.partner-content-innerBox {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  font-size: 14px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
}
@media screen and (max-width: 360px) {
  .partner-content-innerBox {
    padding: 10px 20px;
  }
}

.partner-content-innerBox h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
  border-left: 4px solid rgb(57, 57, 57);
  padding-left: 0.6em;
}

.partner-content-innerBox p {
  margin-bottom: 1.2em;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 360px) {
  .partner-content-innerBox p {
    margin-bottom: 0.8em;
    line-height: 1.2;
  }
}

.partner-content-innerBox ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  font-size: 12px;
}
@media screen and (max-width: 360px) {
  .partner-content-innerBox ul {
    margin-bottom: 0.5em;
  }
}

.partner-content-innerBox ul li {
  margin-bottom: 0.3em;
}

.partner-link {
  text-align: right;
  margin-bottom: 0 !important;
  font-size: 14px;
}

.partner-content-innerBox a {
  color: #0078d7;
}

.partner-res {
  display: inline;
}
@media screen and (max-width: 360px) {
  .partner-res {
    display: none;
  }
}

/* 12枚目 GUGA ********************************************************************************************************************************/
.guga-box {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background: linear-gradient(to bottom, #178290, #193C4B);
  z-index: 0;
}

.guga-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.15) 10%, transparent 10%);
  background-size: 20px 20px;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.guga-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guga-content-inner {
  height: -moz-min-content;
  height: min-content;
}

.guga-content-innerBox {
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  font-size: 14px;
  background-color: #fff;
  color: #222;
  border-radius: 4px;
}
@media screen and (max-width: 360px) {
  .guga-content-innerBox {
    padding: 10px 15px;
  }
}

.guga-content-innerBox h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
  border-left: 4px solid rgb(57, 57, 57);
  padding-left: 0.6em;
}
@media screen and (max-width: 360px) {
  .guga-content-innerBox h3 {
    font-size: 1.1em;
  }
}

.guga-content-innerBox p {
  margin-bottom: 1.2em;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 360px) {
  .guga-content-innerBox p {
    margin-bottom: 0.8em;
    line-height: 1.2;
  }
}

.guga-content-innerBox ul {
  font-size: 12px;
}
@media screen and (max-width: 360px) {
  .guga-content-innerBox ul {
    margin-bottom: 0.5em;
  }
}

guga-content-innerBox ul li {
  margin-bottom: 0.3em;
}

.guga-link {
  text-align: right;
  margin-bottom: 0 !important;
  font-size: 14px;
}

.guga-content-innerBox a {
  color: #0078d7;
}

.partner-res {
  display: inline;
}
@media screen and (max-width: 360px) {
  .partner-res {
    display: none;
  }
}

.guga-content-innerBox .img-wrap {
  margin-bottom: 10px;
}

.guga-img01 {
  width: 100px;
}
@media screen and (max-width: 360px) {
  .guga-img01 {
    width: 75px;
  }
}

.guga-img02 {
  width: 150px;
}
@media screen and (max-width: 360px) {
  .guga-img02 {
    width: 135px;
  }
}

/* リンクについて */
.guga-content-innerBox-aboutLink {
  text-align: center;
}

.guga-link-list {
  display: flex;
  justify-content: center;
  gap: 10px; /* リンク間の余白 */
}

.guga-link-list li a {
  display: inline-block;
  padding: 8px 10px;
  font-size: 13px;
  color: #fff;
  background: #0073aa;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 360px) {
  .guga-link-list li a {
    font-size: 12px;
  }
}

.guga-link-list li a:hover {
  background: #005f87;
}

/* ===================== _serviceZeptSystems-sp ===================== */
.serviceZept-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fefefe;
  color: #555;
  padding: 50px;
  border-radius: 12px;
  height: auto;
  word-break: break-word;
}
@media screen and (min-width: 1921px) {
  .serviceZept-wrap {
    padding: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .serviceZept-wrap {
    padding: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .serviceZept-wrap {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .serviceZept-wrap {
    padding: 20px;
  }
}

.serviceZept-wrap h3 {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
  border-left: 4px solid rgb(57, 57, 57);
  padding-left: 0.6em;
}

.serviceZept-wrap p {
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1280px) and (orientation: landscape) {
  .serviceZept-wrap p {
    font-size: 14px;
    line-height: 1.2;
  }
}

.serviceZept-consulting ul {
  list-style: disc;
  margin-top: 10px;
  padding-left: 1.5em;
  font-size: 14px;
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .serviceZept-consulting ul {
    font-size: 13px;
  }
}

.serviceZept-consulting ul.tab-list {
  padding-left: 0;
}

.serviceZept-wrap ul li {
  margin-bottom: 0.2em;
}

.serviceZept-wrap ul li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1360px) {
  .br1360 {
    display: none;
  }
}

/* ===================== serviceZept 見出し2 ===================== */
.serviceZept-subtitle-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  height: -moz-min-content;
  height: min-content;
  color: #555;
  text-align: center;
}

.serviceZept-subtitle-wrap h2 {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.8274509804);
}

.serviceZept-subtitle {
  font-size: 24px;
  font-weight: bold;
  display: block; /* 横幅100%にするため */
  padding-bottom: 12px;
  margin-bottom: 0.8em;
  position: relative;
  border-bottom: 3px solid #69ebfa; /* 下の薄い色のライン */
}
@media screen and (max-width: 1280px) and (orientation: landscape) {
  .serviceZept-subtitle {
    margin-bottom: 0.5em;
  }
}

.serviceZept-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* 横幅100% */
  border-bottom: 3px solid #008bc9; /* 上の濃い色のライン */
  transform: translateY(-3px); /* 少し上にずらして2色が見えるように */
}

/* ===================== serviceZept その他 ===================== */
.p-Last {
  margin-bottom: 0 !important;
}

.p-First {
  margin-top: 1em;
}

/* ===================== serviceZept タブ ===================== */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-nav li {
  display: inline-block;
  padding: 8px 16px;
  cursor: pointer;
  background-color: #e6f4d9;
}

.tab-nav li.active {
  font-weight: bold;
  background-color: #d3f5ff;
}

/* ===================== serviceZept tableデザイン ===================== */
.table-cost {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2em;
  font-size: 0.95rem;
  table-layout: fixed;
}

.table-cost th, .table-cost td {
  padding: 12px 8px;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
}

/* 1行目のタイトル部分（3色：青・黄緑・緑） */
.table-cost__title-01 {
  background: #d3f5ff; /* 青系統 */
  font-size: 18px;
  font-weight: bold;
}

/* 金額セルは淡い同系色で文字白 */
.table-cost__title-01 + td {
  background: #cce5ff; /* 薄い青 */
  font-size: 18px;
  font-weight: bold;
}

.table-cost__title-02 + td {
  background: #e6f4d9; /* 薄い黄緑 */
  font-size: 18px;
  font-weight: bold;
}

/* 薄いグレーで引き締め */
.table-cost__tr-gray th,
.table-cost__tr-gray td {
  background: #f4f6f8;
  color: #222;
}

/* ===================== serviceZept flowデザイン ===================== */
.flow-wrap {
  display: flex;
  flex-wrap: nowrap; /* 折り返さない → 横並び1行 */
  gap: 10px;
  padding: 10px 10px 10px 0; /* 左の余白をなくす */
  overflow-x: auto; /* 横スクロールできるようにする */
  scroll-snap-type: x mandatory; /* スクロールをピタッと止める */
}

/* スクロールの見た目（PC/スマホ対応） */
.flow-wrap::-webkit-scrollbar {
  height: 8px;
}

.flow-wrap::-webkit-scrollbar-thumb {
  background: #99cfff;
  border-radius: 4px;
}

.flow-wrap::-webkit-scrollbar-track {
  background: #e6f2ff;
}

.flow {
  flex: 0 0 220px; /* 各カードの横幅 */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 60, 120, 0.1);
  padding: 10px;
  text-align: center;
  scroll-snap-align: start; /* スクロールしたときにカードの先頭で止まる */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 60, 120, 0.2);
}

/* 数字デザイン */
.flow__number {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background: linear-gradient(135deg, #008bc9, #35bbe2);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .flow__number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

.flow__title {
  font-size: 16px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 10px;
  border-bottom: 2px solid #e0f0ff;
  display: inline-block;
  padding-bottom: 3px;
}

.flow__text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ===================== serviceZeptSystems ===================== */
.serviceZeptSystems-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  height: auto;
  word-break: break-word;
}

.serviceZeptSystems-wrap h3 {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 0.6em;
  border-left: 4px solid rgb(57, 57, 57);
  padding-left: 0.6em;
}

.serviceZeptSystems-wrap p {
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-size: 14px;
}

/* ===================== serviceZeptSystems 見出し2 ===================== */
.serviceZeptSystems-subtitle-wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  height: -moz-min-content;
  height: min-content;
  color: #555;
  text-align: center;
}

.serviceZeptSystems-subtitle-wrap h2 {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.8274509804);
}

.serviceZeptSystems-subtitle {
  font-size: 24px;
  font-weight: bold;
  display: block; /* 横幅100%にするため */
  padding-bottom: 12px;
  margin-bottom: 0.3em;
  position: relative;
  border-bottom: 3px solid #69ebfa; /* 下の薄い色のライン */
}

.serviceZeptSystems-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* 横幅100% */
  border-bottom: 3px solid #008bc9; /* 上の濃い色のライン */
  transform: translateY(-3px); /* 少し上にずらして2色が見えるように */
}

/* ===================== Blockchain ===================== */
.video-wrapper video {
  width: 100%; /* 左側の動画幅 */
  height: auto; /* 縦横比維持 */
  display: block;
  margin-bottom: 10px;
}

.blockchain-contents img {
  width: 100%; /* 右カラムの幅いっぱい */
  height: auto;
  display: block;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}

/* ===================== meta ===================== */
.meta-wrap {
  display: flex; /* 横並びにする */
  flex-wrap: wrap; /* はみ出したら折り返す */
  gap: 16px; /* 動画同士の隙間 */
  justify-content: center; /* 中央寄せ */
}

.meta-wrap video {
  width: calc(33.33% - 16px); /* 1行に3つ並べたい場合 */
  max-width: 100%; /* 親の幅を超えない */
  height: auto; /* アスペクト比維持 */
  display: block;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .meta-wrap video {
    width: calc(50% - 16px);
  }
}

/* スマホ用 補助金カード 横スクロール */
body {
  font-size: 14px;
}

.subsidy-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: #ffffff; /* 淡い青系背景 */
}

.subsidy-card {
  flex: 0 0 80%;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 90, 160, 0.15);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.subsidy-card:hover {
  transform: translateY(-4px);
}

.subsidy-card__img {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
  display: block;
}

.subsidy-card__content {
  padding: 12px;
  text-align: center;
}

.subsidy-card .btn {
  display: inline-block;
  background: #007acc;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.subsidy-card .btn:hover {
  background: #005fa3;
}

/* 横スクロールの見た目改善（スクロールバー非表示） */
.subsidy-list::-webkit-scrollbar {
  display: none;
}

.subsidy-list {
  -ms-overflow-style: none; /* IE・Edge */
  scrollbar-width: none; /* Firefox */
}

/* 高さ600px以下の端末用 */
/* 高さ600px以下の端末用 */
@media screen and (max-height: 600px) {
  .subsidy-card {
    flex: 0 0 70%; /* 少し小さく */
    max-width: 220px;
  }
  .subsidy-card__img {
    width: 100%;
    height: auto; /* 高さは自動にして切れないように */
    max-height: 160px; /* 縦を制限しつつ全体表示 */
    -o-object-fit: contain;
       object-fit: contain; /* 画像を切らずに縮小 */
  }
  .subsidy-card__content {
    padding: 8px;
  }
  .subsidy-card .btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}
/* WEb制作 */
/* タブナビゲーション */
.tab-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-bottom: 2px solid #007acc;
  margin-bottom: 10px;
}

.tab-list li {
  flex: 1 0 auto;
  padding: 8px 12px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab-list li.active {
  color: #007acc;
  font-weight: bold;
}

/* コンテンツ全体 */
.tab-content {
  font-size: 14px;
  line-height: 1.5;
  padding: 8px;
}

.serviceZept-subtitle {
  font-size: 16px;
  margin-bottom: 8px;
}

.tab-content p {
  font-size: 13px;
  margin-bottom: 8px;
}

/* 画像 */
.web-contents {
  margin: 8px 0;
}

.web-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* 制作フロー */
.flow-wrap {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 6px 0;
  scroll-snap-type: x mandatory;
}

.flow {
  flex: 0 0 50%;
  border: 1px solid #d0e6f7;
  border-radius: 8px;
  padding: 8px;
  scroll-snap-align: start;
}

.flow__number {
  font-size: 16px;
  font-weight: bold;
}

.flow__title {
  font-size: 13px;
  margin: 4px 0;
  font-weight: bold;
}

.flow__text {
  font-size: 12px;
  line-height: 1.4;
}

/* 料金プラン表 */
.table-cost {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
  overflow-x: auto;
  display: block; /* 横スクロール対応 */
}

.table-cost th,
.table-cost td {
  padding: 6px;
  border: 1px solid #d0e6f7;
  text-align: center;
}

.table-cost img {
  max-width: 80px;
  height: auto;
}

.tab-content .bus03__cost-text {
  margin-top: 8px;
}

.tab-content .bus03__cost-text p {
  font-size: 11px;
  margin-top: 0px;
  line-height: 1;
}

.table-scroll {
  overflow-x: auto; /* 横スクロール可能 */
  -webkit-overflow-scrolling: touch; /* スワイプで滑らかスクロール */
  border: 1px solid #d0e6f7;
  border-radius: 6px;
}

.table-cost {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.table-cost th,
.table-cost td {
  padding: 6px;
  text-align: center;
  border: 1px solid #d0e6f7;
  white-space: nowrap; /* 文字を改行せず1行に */
}

.table-cost img {
  max-width: 60px; /* 画像も小さめ */
  height: auto;
}

/* デザイン制作 */
.subsidy-list {
  display: flex;
  overflow-x: auto; /* 横スクロール */
  gap: 10px; /* カード間の余白 */
  padding: 10px 0;
  -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
}

.subsidy-card {
  flex: 0 0 80%; /* 一度に1枚表示、少し隣が見える */
  max-width: 300px; /* 画像サイズに合わせる */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.scroll-hand {
  position: fixed; /* 画面に固定 */
  right: 40px; /* 右下に配置 */
  bottom: 170px;
  width: 50px; /* アイコンサイズ調整 */
  height: 50px;
  opacity: 0.7;
  pointer-events: none; /* タッチを邪魔しない */
  z-index: 100; /* 他の要素の上に表示 */
  animation: bounce 1.5s infinite;
}

.scroll-hand-photo {
  position: fixed; /* 画面に固定 */
  right: 40px; /* 右下に配置 */
  bottom: 220px;
  width: 50px; /* アイコンサイズ調整 */
  height: 50px;
  opacity: 0.7;
  pointer-events: none; /* タッチを邪魔しない */
  z-index: 100; /* 他の要素の上に表示 */
  animation: bounce 1.5s infinite;
}

.scroll-hand-consulting {
  position: fixed; /* 画面に固定 */
  right: 40px; /* 右下に配置 */
  bottom: 120px;
  width: 50px; /* アイコンサイズ調整 */
  height: 50px;
  opacity: 0.7;
  pointer-events: none; /* タッチを邪魔しない */
  z-index: 100; /* 他の要素の上に表示 */
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
}
/* マッチング */
.advisor-wrap {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.advisor-box {
  flex: 0 0 65%; /* 親幅の65%に設定 → 1.5枚分表示 */
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.advisor__title {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}

.advisor__text {
  font-size: 12px;
  color: #555;
}

.tab-content h3 {
  font-size: 16px;
}

/* ===================== _modal ===================== */
/* モーダル全体（背景） */
#modal {
  display: none; /* 初期は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* 黒背景＋透過 */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* モーダル内の画像 */
#modal img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

/* 閉じるボタン */
#closeModal {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* 文字選択防止 */
  transition: transform 0.2s ease, color 0.2s ease;
}

#closeModal:hover {
  transform: scale(1.2);
  color: #ffcccc;
}

/* モーダル内でクリックしても閉じないようにするため（必要なら） */
#modal img {
  pointer-events: none;
}/*# sourceMappingURL=custom-sp.css.map */