@charset "utf-8";
/* style_b.css */

/* ----------------------------------------------------------------------------------------------
　共通
---------------------------------------------------------------------------------------------- */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ----------------------------------------------------------------------------------------------
　Blog
---------------------------------------------------------------------------------------------- */
/*.keywords-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px !important;
    background-color: #F2F3F3 !important;
}
.keywords-title {
    font-size: 48px;
    color: #0052a3;
    text-align: center !important;
    margin-bottom: 40px;
    font-weight: 700;
}
.keywords-container {
  display: flex;
}
.parent-terms-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 25.0965%;
}
.parent-term-btn {
    width: 100%;
    padding: 10px 11.4035%;
    border-radius: 8px;
    text-align: left;
    background-color: #fff;
    line-height: 1.45;
}
.parent-term-btn:hover {
    border-color: #0052a3;
    background-color: #f0f7ff;
}
.parent-term-btn.active {
    background-color: #0052a3;
    color: #fff;
    border-color: #0052a3;
}
.child-terms-content {
    position: relative;
    width: calc(100% - 25.0965%);
    min-height: 200px;
    margin-left: 4.8593%;
    padding-left: 4.8593%;
    border-left: 1px solid #fff;
}
.child-terms-group {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeIn 0.3s ease;
}
.child-terms-group.active {
    display: flex;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.child-term-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 10px 3.5230%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.child-term-item:hover {
    background-color: #fff;
    border-color: #0052a3;
    color: #0052a3;
    box-shadow: 0 2px 8px rgba(0, 82, 163, 0.1);
}
.no-terms {
    color: #999;
    font-size: 14px;
}

@media only screen and (max-width: 768px){
  .keywords-section {
    width: 100% !important;
  }
  .keywords-section .keywords-title {
    font-size: calc(60px * (32 / 100));
  }
  .keywords-container {
    font-size: calc(35px * (32 / 100));
  }
  .parent-term-btn {
    padding: 5px 11.4035%;
  }
  .child-terms-group {
    gap: 10px 5px;
  }
  .child-term-item {
    padding: 5px 3.5230%;
  }
}*/

.keywords-section {
    width: 100% !important;
    max-width: none !important;
    padding: 80px 6.6335% !important;
    background-color: #F2F3F3 !important;
}

.keywords-title {
    text-align: center !important;
    font-size: 24px;
    margin-bottom: 20px;
    color: #004AA8;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.accordion-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-section .accordion-item {
    border: none;
    border-radius: 10px !important;
    width: 49%;
}
/*.accordion-section .accordion-item:first-of-type {
    width: 100%;
}
.accordion-section .accordion-item:not(:first-of-type) {
    width: 30%;
}*/
.accordion-section .accordion-item:not(:last-of-type) {
    margin-bottom: calc(80px / 4);
}

/*.accordion-item + .accordion-item {
  border-top: 1px solid #e0e0e0;
}*/

.accordion-toggle {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: #004AA8;
  position: relative;
  cursor: pointer;
}

.accordion-toggle::after,button.eye-muscles-btn::after {
  content: "";
  width: calc(70px / 2.5);
  height: calc(70px / 2.5);
  background: url(../img/blog/accordion-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-toggle::after,.whiteBox.is-open button.eye-muscles-btn::after {
  transform: rotate(180deg);
}
button.eye-muscles-btn::after {
    width: calc(90px / 2.5);
    height: calc(90px / 2.5);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-content {
  max-height: 1000px; /* 十分に大きい値を指定 */
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 20px;
}

.keyword-tag {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
}

.keyword-tag:hover {
    background: #004AA8;
    color: #fff;
    border-color: #0033cc;
}

@media only screen and (max-width: 768px) {
    .keywords-section {
        padding: calc(80px / 2) 6.6335% !important;
    }
    .keywords-section .keywords-title {
        font-size: calc(60px * (32 / 100));
        margin-bottom: 20px !important;
    }
    .accordion-section {
        display: block;
    }
    .accordion-section .accordion-item {
        width: 100%;
    }
}


.campaign-banner-slider {
  margin: 100px auto;
  width: 100%;
  max-width: 1300px;  /* コンテナ幅は自由に調整 */
  box-sizing: border-box;
  /*display: flex;
  align-items: center;*/
  padding: 0 80px;
}

.campaign-banner-slider .slick-prev,
.campaign-banner-slider .slick-next {
    display: inline-block !important;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.campaign-banner-slider .slick-prev {
    left: 0;
}
.campaign-banner-slider .slick-next {
    right: 0;
}

.campaign-banner-slide {
  padding: 0 10px; /* スライドの間にスペース */
}

.campaign-banner-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .campaign-banner-slider {
        max-width: none;
        padding: 0;
        margin: calc(100px / 2.5) auto;
    }
}

/* PC時のみ高さ400pxを強制 */
/*@media screen and (min-width: 769px) {
  .campaign-banner-slide img {
    height: 400px;
  }
}*/


@media only screen and (max-width: 768px) {
    .blog .sns {
        gap: 0.5rem 0;
    }
}