@charset "utf-8";

/* #nav
**************************************************************/
#products_nav {
    font-family: "Helvetica Neue", Arial, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    padding-top: min(9vw,50px);
    padding-bottom: min(9vw,50px);
    background:#E0F2FF;
    text-align: center;
}
#products_nav .fwrap{
    flex-wrap: nowrap;
    justify-content: space-around;
    max-width: 880px;
    margin: 0 auto;
}

#products_nav .fwrap li{
    width: 30%;
}
#products_nav .fwrap li > a p{
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #144282;
}

@media screen and (max-width: 480px) {
    #products_nav .fwrap li.con_3 img{
        width: 70%;
    }
}



/* 202509 追加 */
/* アコーディオン全体 */
section .accordion-faq {
  width: 95%;
  margin: auto;
  margin-top: 5px;
  color: #333;
}

label.accordion-title {
  border-bottom: 1px solid #333;
  position: relative;
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  height: 36px;
  line-height: 36px;
}

label.accordion-title h3 {
  font-size: 14px;
  font-weight: bold;
  width: 90%;
  height: 36px;
  line-height: 36px;
  margin: 0;
}

.accordion-content .aco_inner {
  margin-top: 8px;
  margin-bottom: 10px;
}

.accordion-content .aco_inner h4 {
  font-weight: bold;
}

.accordion-content .aco_inner .p01,
.accordion-content .aco_inner .p02 {
  font-size: 12px;
  margin-bottom: 10px;
  font-family: sans-serif !important;
  font-weight: normal !important;
}

.accordion-faq .aco_title_blue{
  color: #144282;
}

/* チェックボックスを非表示 */
.accordion-toggle {
  display: none;
}

/* アイコン共通 */
.accordion-title::before,
.accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 15px;
  height: 2px;
  background-color: #333;
  transform: translateY(-50%);
  transition: transform 0.5s ease-out;
}

.accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

/* チェック時のアイコン変化 */
.accordion-toggle:checked + .accordion-title::before {
  transform: translateY(-50%) rotate(-45deg);
}
.accordion-toggle:checked + .accordion-title::after {
  transform: translateY(-50%) rotate(45deg);
}

/* アコーディオン内容 */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.accordion-toggle:checked ~ .accordion-content {
  max-height: 500px;
}

/* SP表示調整用 */
@media screen and (max-width: 480px) {
    section .accordion-faq .mt30{
        margin-top: 30px;
    }
}

/* --- PC表示 (768px以上) は常に開いた状態に固定 --- */
@media screen and (min-width: 768px) {
  .accordion-toggle {
    display: none !important; /* チェックボックス操作不可 */
  }
  .accordion-content {
    max-height: 1000px !important; /* 常に展開 */
  }
  .accordion-title::before,
  .accordion-title::after {
    display: none; /* ＋／−アイコン非表示 */
  }
  .accordion-title {
    cursor: auto;           /* ポインター禁止 */
    pointer-events: none;   /* クリック無効化 */
  }

  section .accordion-faq{
    margin-top: 30px;
  }

  .text_block .detail{
    height: auto !important;
  }
}