.about-page #sidebar {
  display: none;
}

section.main-body {
    max-width: 650px;
    margin: auto;
}

.side-nav__menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-nav__menu li {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    height: 50px; /* 高さを固定 (必要に応じて変更) */
}


/* aboutページ専用ナビ */
.about-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* 背景色を白に */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.about-top-nav__menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-top-nav__menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    align-items: center;
}

.about-top-nav__menu ul li {
    display: inline-block;
}

.about-top-nav__menu ul li a {
    text-decoration: none;
    color: #333; /* リンク色 */
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s;
}

.about-top-nav__menu ul li a:hover {
    color: #ff0000; /* ホバー時の色 */
}


/* aboutページのサイドバーを上部に固定して追従 */
.about-page .side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background: white;
  z-index: 1000;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

@media screen and (max-width: 768px) {
.about-top-nav {
	display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff; /* 背景色を白に */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}
}

img.button-simple.yureru-s {
    width: 100%;
}

.footer {
	    margin-right: 0px!important;
}

/* ==========================================================================
   1. LP設定
   ========================================================================== */
html,
body {
  margin: 0;
  padding: 0;
}

div#baguetteBox-overlay {
  display: none;
}

img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* ユーティリティクラス */
.hidden {
  display: none;
}

.my-4,
h1,
h2,
h3,
h4,
h5,
.waku {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.pb-4 {
  padding-bottom: 0 !important;
}

.pt-4 {
  padding-top: 0 !important;
}

.lpb-custom {
  overflow: hidden;
}



@media screen and (max-width:768px) {
  section.main-body {
    margin-right: 0px;
  }
}

.floating {
  display: none
}

@media screen and (max-width:768px) {
  .floating {
    display: block
  }
}

section.FV {
    padding-top: 70px;
}

/* ==========================================================================
   2. スキルセクション
   ========================================================================== */
.skills-container {
  background-color: #306479;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  display: none;
  /* 初期状態 */
}

.skills-container.active {
  display: flex !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.skill-items.creative {
  color: #000;
}

.category-group {
  border-radius: 5px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.category {
  width: 50%;
  border-radius: 8px;
  padding: 10px;
}


.category-title {
  background: #2D4F63;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skill-item {
  background: #f8f9fa;
  padding: 6px 8px;
  margin-bottom: 5px;
  border-radius: 0 4px 4px 0;
  font-size: 10px;
  transition: transform 0.2s;
}

.skill-item:hover {
  transform: translateX(5px);
}

/* カテゴリー別ボーダー */
.creative .skill-item {
  border-left: 3px solid #f1c40f;
}

.ai .skill-item {
  border-left: 3px solid #ff6b4e;
}

.business .skill-item {
  border-left: 3px solid #2ecc71;
}

.management .skill-item {
  border-left: 3px solid #9b59b6;
}

/* ==========================================================================
   3. メリットセクション
   ========================================================================== */
.merit-wrapper {
  font-family: sans-serif;
  margin: 0 auto;
  background-color: #306479;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.merit-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding: 20px;
  color: white;
}

.merit-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.merit {
  background-color: white;
  margin: 7px;
  padding: 10px;
  border-radius: 10px 10px 0 3px;
  position: relative;
  transition: all 0.3s ease;
}

/* メリットの幅設定 */
.merit:nth-child(2) {
  max-width: 500px;
}

.merit:nth-child(3) {
  max-width: 650px;
}

.merit:nth-child(4) {
  max-width: 400px;
}

.merit:nth-child(5) {
  max-width: 550px;
}

.merit:nth-child(6) {
  max-width: 450px;
}

.merit:nth-child(7) {
  max-width: 600px;
}

.merit:nth-child(8) {
  max-width: 500px;
}

.merit:nth-child(9) {
  max-width: 700px;
}

.merit:hover {
  transform: translateX(10px);
}

.merit::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 0 0 10px 10px;
  background-color: #FF6B4E;
}

.merit-text {
  color: #2D4F63;
  font-size: 16px;
  margin: 0;
}

/* ==========================================================================
   4. ボタン関連
   ========================================================================== */
.show-more-btn {
  background-color: #FF6B4E;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  opacity: 0.9;
}

/* フローティングボタン */
.floating {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 2px;
  margin: auto;
  width: 100%;
  z-index: 1000000;
  max-width: 750px;
}

/* ==========================================================================
   5. CTAセクション
   ========================================================================== */
.cta {
  padding: 15px 0 10px 0;
  background-color: #346579;
}

.cta_btn {
  margin: 0 10px;
}

/* 吹き出しタイトル */
.bubble-title {
  background-color: #ff5b3b;
  color: white;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 50px;
  position: relative;
  margin: 0 30px 30px;
  line-height: 1.5;
  font-weight:700;
  z-index:10;
}

.bubble-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 50px 20px 0;
  border-style: solid;
  border-color: #ff5b3b transparent transparent transparent;
  z-index:-1;
}

/* ラジオボタングループ共通スタイル */
.radio-3,
.radio-3-second,
.radio-3-third {
  border: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.radio-inner {
  padding: 5px;
  width: 50%;
}

/* ラジオラベル共通スタイル */
.radio-3 label,
.radio-3-second label,
.radio-3-third label {
  color: #33667a;
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  width: 100%;
  margin-bottom: 0.8em;
  padding: 1em 0.9em;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight:700;
}

/* ラジオボタン状態スタイル */
.radio-3 label:hover,
.radio-3-second label:hover,
.radio-3-third label:hover,
.radio-3 label:has(:checked),
.radio-3-second label:has(:checked),
.radio-3-third label:has(:checked) {
  background-color: #ff5b3b;
  color: #fff;
}

.radio-3 input,
.radio-3-second input,
.radio-3-third input {
  display: none;
}

/* 回答エリア */
.answer-container {
  text-align: center;
  background: #346579;
  padding: 2rem 20px;
}

.answer-text {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.answer-paragraph {
  font-weight: 300;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.8 !important;
  color: white;
  font-size:2rem;
}

.answer-paragraph:last-child {
  margin-bottom: 0 !important;
}

.answer-paragraph u {
  text-decoration: underline;
  text-decoration-color: #ff5b3b;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* CTAボタン */
.cta-button-wrap {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  color: white;
  transition: background-color 0.2s;
  width: 100%;
}

.cta-button {
    border-radius: 4px;
    color: #fff !important;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0;
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.answerContainer-btn {
  max-width: 100%;
  height: auto;
}

img.answer-check {
  padding: 0px 20px;
}

img.answer-frow {
  padding: 20px;
}

/* ==========================================================================
   6. アニメーション
   ========================================================================== */
.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes yureru-s {
  0% {
    transform: translate(2px, 0);
  }

  5% {
    transform: translate(-2px, 0);
  }

  10% {
    transform: translate(2px, 0);
  }

  15% {
    transform: translate(-2px, 0);
  }

  20% {
    transform: translate(2px, 0);
  }

  25% {
    transform: translate(-2px, 0);
  }

  30% {
    transform: translate(0, 0);
  }
}

/* ボタンアニメーション */
.answerContainer-btn,
.hidden .answerContainer-btn {
  display: inline-block;
  animation: poyopoyo 2s ease-out infinite;
}

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
    transform: scale(1.0);
  }

  50%,
  70% {
    transform: scale(0.95);
  }
}

/* ==========================================================================
   7. フッター
   ========================================================================== */
.inner {
  margin-bottom: 240px;
}

footer {
  background-color: #EBEFEF;
  margin: 0 auto;
  display: block;
}

footer .nav {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 20px;
}

footer .nav>li {
  line-height: 1.6;
  font-size: 11px;
  display: inherit;
  padding: 0 10px;
  margin-bottom: 10px;
}

footer .nav>li a {
  text-decoration: none;
  color: #969696;
}

footer .copyright {
  font-size: 10px;
  text-align: center;
  color: #fff;
  background-color: #555555;
  padding: 1rem 0;
}

/* ==========================================================================
   8. レスポンシブ設定
   ========================================================================== */
@media screen and (max-width: 800px) {
  .inner {
    margin-bottom: 120px;
  }

  footer .nav {
    padding: 40px 20px 0 20px;
  }
}

@media (max-width: 768px) {
  .skills-container.active {
    grid-template-columns: 1fr;
  }

  .skills-columns {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }
}

@media (max-width: 600px) {

  .radio-inner,
  .radio-3-second .radio-inner {
    width: 100%;
  }
}

@media screen and (min-width: 756px) {
  #question {
    display: none;
  }
}

/* ==========================================================================
   9. FQA（よくある質問）
   ========================================================================== */
.FQA {
  position: relative;
  z-index: 888;
  margin-top: -14px;
}

.s_03 .accordion_one {
  padding: 20px;
  border-radius: 40px;
  padding-bottom: 20px;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto 20px auto;
  overflow: hidden;
  background: #FFEEEB;
}

.section.s_03 {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 10px 10px 30px 10px;
}

.s_03 .accordion_one .accordion_header {
  border-radius: 40px;
  background: #fff;
  color: #fe5b3b;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 60px 15px 30px;
  text-align: left;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  display: flex;
  align-items: center;
}

.accordion_header p {
  margin: 0 !important;
  font-weight: 600;
  color: #FF6C04;
}

.s_03 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.s_03 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.s_03 .accordion_one .accordion_header .i_box .one_i:before,
.s_03 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #FF6C04;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(0deg);
  transform-origin: center center;
}

.s_03 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}

.s_03 .accordion_one .accordion_inner {
  padding: 10px 30px;
  display: none;
  box-sizing: border-box;
}

.s_03 .accordion_one .accordion_inner.show {
  display: block;
}

.s_03 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
  font-size: 18px;
  color: #33667a;
}

/* アコーディオンの開閉状態 */
.s_03 .accordion_one .accordion_header.open .i_box {
  transform: rotate(-45deg);
}

/* ==========================================================================
   10. お客様の声セクション
   ========================================================================== */
/* セクション全体 */
section#voice {
  background-color: #e6e1f0;
}

.voice_box {
  padding: 20px 0;
}

/* カードスライダー */
.voice_card {
  width: 100%;
  margin: 0 auto;
}

.voice_card.slick-initialized.slick-slider {
  padding: 14px;
}

/* カード内部のスタイル */
.card {
  margin: 10px;
}

.card_inner {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card_inner img.bc_img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

p.bc_p {
  padding-left: 10px;
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* Slickスライダーのカスタマイズ */
.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

/* スライダーのドット */
.slick-dots {
  bottom: -30px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #306479;
}

.slick-dots li.slick-active button:before {
  color: #FF6B4E;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .voice_box {
    padding: 10px;
  }

  .card {
    margin: 5px;
  }

  .card_inner {
    padding: 10px;
  }
}
