@charset "UTF-8";

body {
    font-family: 'Hiragino Sans', 'Noto Sans JP', 'ヒラギノ角ゴシック', sans-serif;
}

/* ========================================
   Adtest Kit Specific Styles
   ======================================== */


/* Common Classes */
.break-pc {
  display: inline;
}

.break-sp {
  display: none;
}

.top-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ========================================
   Navigation Override
   ======================================== */
.nav-container {
  background: #D9ECDA !important;
}

.nav > li > a:hover {
  color: #00a651 !important; /* 緑に変更 */
}

.nav-container {
    top: 50px !important;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .nav-container {
    background: #F0F0F0 !important;
  }
}

/* ========================================
   Header Cart Button Size Adjustment
   ======================================== */
.cart-btn {
  overflow: hidden;
}

.cart-btn img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.header-top-right .cart-btn img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  height: auto;
}

.cart-inner-btn img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) and (orientation: portrait),
       screen and (max-width: 896px) and (orientation: landscape) {
  .cart-btn img {
    max-height: 36px;
    max-width: 100%;
    width: auto;
  }
  
  .header-top-right .cart-btn img {
    max-height: 36px;
    max-width: 100%;
    width: auto;
  }
  
  .cart-inner-btn img {
    max-height: 50px;
  }
}

/* ========================================
   Navigation Button (Hamburger Menu)
   ======================================== */
.nav-btn {
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: #fff !important;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .nav-btn {
    display: none;
  }
}

@media (max-width: 359px) {
  .nav-btn {
    margin-left: 3px;
  }
}

.nav-btn::before, 
.nav-btn::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: #fff;
  transition: 0.4s;
  transform: translateX(-50%);
}

.nav-btn::before {
  top: 20px;
}

.nav-btn::after {
  bottom: 20px;
}

.nav-btn.expanded::before, 
.nav-btn.expanded::after {
  top: 50%;
}

.nav-btn.expanded::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-btn.expanded::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================
   Cart Button
   ======================================== */
.cart-btn {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 40px;
  height: 36px;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .cart-btn {
    z-index: 1;
    align-items: center;
    width: 219px;
    height: 79px;
    cursor: pointer;
    background: #00a651;
    /* border-radius: 25px; */
    transition: background 0.3s ease;
  }
  
  .cart-btn:hover {
    background: #008c44;
  }
  
  header.scroll .cart-btn, 
  .cart-btn.hover {
    border-radius: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1365px) and (orientation: portrait), 
       (min-width: 897px) and (max-width: 1365px) and (orientation: landscape) {
  .cart-btn {
    width: 219px;
    height: 79px;
  }
}

.cart-btn span {
  position: relative;
  font-size: 0.5rem;
  font-weight: bold;
  line-height: 1.45;
  color: #03141a;
  text-align: center;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .cart-btn span {
    margin-left: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
  }
}

@media (min-width: 768px) and (max-width: 1365px) and (orientation: portrait), 
       (min-width: 897px) and (max-width: 1365px) and (orientation: landscape) {
  .cart-btn span {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .cart-btn span.sp-txt {
    display: none;
  }
}

.cart-btn span.sp-txt::before {
  position: absolute;
  top: -21px;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: url("../images/icon/cart.svg") no-repeat center/contain;
  transform: translateX(-50%);
}

.cart-btn span.pc-txt {
  display: none;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .cart-btn span.pc-txt {
    display: block;
  }
  
  .cart-btn span.pc-txt::before {
    display: none;
  }
}

/* Cart Inner Button (SP Navigation) */
.cart-inner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-top: 30px;
  background: #fff;
  border: 2px solid #00a651;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-inner-btn:hover {
  background: #00a651;
}

.cart-inner-btn:hover span {
  color: #fff;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .cart-inner-btn {
    display: none;
  }
}

.cart-inner-btn span {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  color: #00a651;
  padding-left: 25px;
  transition: color 0.3s ease;
}

.cart-inner-btn span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: url("../images/icon/cart-green.svg") no-repeat center/contain;
  transform: translateY(-50%);
}

/* ========================================
   Hero Section
   ======================================== */
.adtest-kit-hero {
  background-color: #fff;
}

.adtest-kit-hero-inner {
  max-width: 100%;
  margin: 0 auto;
}

.adtest-kit-hero-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Introduction Section
   ======================================== */
.adtest-kit-intro {
  padding: 60px 0;
  background-color: #fff;
}

.adtest-kit-intro-heading {
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
  color: #231815;
  margin-bottom: 30px;
  line-height: 2.6;
}

.adtest-kit-intro-text {
  text-align: center;
  font-size: 1.0625rem;
  line-height: 2;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

/* ========================================
   Common Section Styles
   ======================================== */
.heading2_ {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    color: #231815;
    /* margin-bottom: 60px; */
    position: relative;
    padding-top: 25px;
}
.heading3-add {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #231815;
    position: relative;
    padding-bottom: 10px;
}

.heading2_ span {
  position: relative;
  /* display: block; */
}

.heading2_ > span {
    display: block;
    /* padding: 12px 10px; */
    /* margin-bottom: 10px; */
    font-size: 0.875rem;
    font-weight: normal;
    /* line-height: 1.667; */
    color: #111;
    /* background: #fafbfb; */
    /* border-left: 4px solid #70be57; */
}

/* ========================================
   Feature Section
   ======================================== */
.adtest-kit-feature {
    padding: 60px 90px;
    background: #E2F5E3;
}
.adtest-kit-feature-other {
    padding: 0;
    background: #E2F5E3;
}
.adtest-kit-feature-lead {
    text-align: center;
    font-size: 1.125rem;
    color: #231815;
    /* margin-bottom: 20px; */
    line-height: 1.8;
    padding: 10px;
}

.adtest-kit-feature-list {
  max-width: 1000px;
  margin: 0 auto;
}

.adtest-kit-feature-item {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #231815;
}

.adtest-kit-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.adtest-kit-feature-item-image {
  flex-shrink: 0;
  width: 360px;
}

.adtest-kit-feature-item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.adtest-kit-feature-item-content {
  flex: 1;
  padding-top: 20px;
}

.adtest-kit-feature-item-title {
  font-size: 1.9rem;
  font-weight: bold;
  color: #00A33C;
  margin-bottom: 20px;
  line-height: 1.5;
}
.adtest-kit-feature-item-title-text {
  font-size: 2.2rem;
  font-weight: bold;
  color: #00A33C;
}

.adtest-kit-feature-item-text {
  font-size: 1.125rem;
  line-height: 2;
  color: #231815;
}
.left{
    font-size: 1.125rem;
    line-height: 2;
    color: #231815;
    text-align: left;
    margin: 0px 150px 60px 150px;
    font-weight: bold;
    line-height: 2.6;
}

/* ========================================
   Target Section
   ======================================== */
.adtest-kit-target {
  padding: 60px 0;
  background-color: #fff;
}

.adtest-kit-target-list img {
    width: 74%;
    height: auto;
    display: block;
    justify-items: center;
    margin: auto;
    padding-bottom: 60px;
}

/* ========================================
   Usage (How to Use) Section
   ======================================== */
.adtest-kit-usage {
  padding: 60px 0;
  background-color: #E2F5E3;
}

.adtest-kit-usage-lead {
  text-align: center;
  font-size: 1.0625rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

.adtest-kit-usage-video {
    text-align: center;
    cursor: pointer;
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 80px;
}

.adtest-kit-usage-video img {
    max-width: 800px;
    /* margin: 40px auto; */
    padding: 0 20px　80px 20px;
}

.add-sample {
    background-color: #FFFFC5 !important;
    margin: 0 60px 50px 60px;
}

.adtest-kit-usage-sample img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.adtest-kit-usage-steps {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.adtest-kit-usage-step {
    display: flex;
    gap: 35px;
    /* margin-bottom: 55px; */
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    padding: 20px;
}

.adtest-kit-usage-step-image {
  flex-shrink: 0;
  width: 200px;
}

.adtest-kit-usage-step-image img {
  width: 100%;
  height: auto;
  display: block;
}

.adtest-kit-usage-step-content {
  flex: 1;
}

.adtest-kit-usage-step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #231815;
  margin-bottom: 15px;
}

.adtest-kit-usage-step-text {
  font-size: 1rem;
  line-height: 2;
  color: #555;
}

/* ========================================
   Result Section
   ======================================== */
.adtest-kit-result {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.adtest-kit-result-image {
  text-align: center;
}

.adtest-kit-result-image img {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ========================================
   FAQ Section
   ======================================== */
.adtest-kit-faq {
  padding: 80px 150px;
  background-color: #fff;
}

.adtest-kit-faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.adtest-kit-faq-item {
  /* background-color: #f8f9fa;
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 25px;
  border-left: 5px solid #00a651;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); */
}

.adtest-kit-faq-question {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.adtest-kit-faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.adtest-kit-faq-icon.q {
  background: linear-gradient(135deg, #00a651 0%, #00d66a 100%);
  color: #fff;
}

.adtest-kit-faq-question p {
  font-size: 1.125rem;
  font-weight: bold;
  color: #231815;
  line-height: 1.7;
  flex: 1;
}

.adtest-kit-faq-answer {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.adtest-kit-faq-icon.a {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #00a651;
}

.adtest-kit-faq-answer-text {
  flex: 1;
}

.adtest-kit-faq-answer-text p {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 12px;
}

.adtest-kit-faq-answer-text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Buy Section
   ======================================== */
.adtest-kit-buy {
  padding: 40px 0;
  background: linear-gradient(180deg, #e8f5e9 0%, #f0f7f2 100%);
}

.adtest-kit-buy-lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00a651;
  margin-bottom: 25px;
}

.adtest-kit-buy-text {
  text-align: center;
  font-size: 1.0625rem;
  line-height: 2;
  color: #231815;
  margin-bottom: 45px;
}

.adtest-kit-buy-note {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #231815;
  margin-bottom: 30px;
  font-weight: bold;
}

.adtest-kit-buy-btn-wrapper {
    text-align: center;
    margin: 0 auto;
    /* padding: 45px; */
    width: 78%;
}

.adtest-kit-pharmacy-btn {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.adtest-kit-pharmacy-btn img {
  height: auto;
  display: block;
}

.adtest-kit-pharmacy-btn:hover {
  opacity: 0.7;
}

.adtest-kit-buy-online-title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: bold;
  color: #231815;
  margin-bottom: 18px;
}

.adtest-kit-buy-online-text {
  text-align: center;
  font-size: 0.9375rem;
  color: #808075;
  margin-bottom: 35px;
}

.adtest-kit-buy-online-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.adtest-kit-buy-online-list li {
  display: block;
}

.adtest-kit-buy-online-list a {
  display: block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.adtest-kit-buy-online-list img {
  height: auto;
  display: block;
}

.adtest-kit-buy-online-list a:hover {
  opacity: 0.7;
}

/* ========================================
   Footer Modifications
   ======================================== */
.footer-note {
  font-size: 0.75rem;
  line-height: 1.9;
  color: #b0b0b0;
  margin-bottom: 20px;
}

/* ========================================
   Cookie Notice
   ======================================== */
.cookie.text {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  z-index: auto;
  width: 100%;
}

.info-area {
  background-color: #f5f5f5;
  color: #231815;
  padding: 30px 20px;
  box-shadow: none;
  border-top: 1px solid #e0e0e0;
}

.info-area__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.info-area__text {
  font-size: 0.8125rem;
  line-height: 1.8;
  flex: 1;
  color: #231815;
}

.info-area__text a {
  color: #00a651;
  text-decoration: underline;
}

.info-area__button {
  flex-shrink: 0;
  background: #fff;
  color: #231815;
  border: 2px solid #d0d0d0;
  padding: 10px 40px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}
hr {
    border-bottom: 1px solid #231815;
    width: 77%;
    margin: 80px auto;
}

.info-area__button:hover {
  background: #f0f0f0;
  border-color: #b0b0b0;
}

/* .info-area.is-sticky {
  display: block;
} */
.important{
  color: #D80C24;
}
.{
  color: #D80C24;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media screen and (max-width: 768px) and (orientation: portrait),
       screen and (max-width: 896px) and (orientation: landscape) {
  
  .break-pc {
    display: none;
  }

  .break-sp {
    display: inline;
  }

  .top-container {
    padding: 0 20px;
  }

  /* Intro */
  .adtest-kit-intro {
    padding: 45px 0;
  }

  .adtest-kit-intro-heading {
        font-size: 1rem;
        line-height: 2;
        margin: 15px;
  }

  .adtest-kit-intro-text {
    font-size: 0.9375rem;
  }

  /* Headings */
  .heading2_ {
        font-size: 1.4rem;
        margin: 20px 20px 40px 20px;
        letter-spacing: -0.05em;
        line-height: 1.2;
  }
    .heading3-add {
        font-size: 1.6rem;
        margin: 20px;
        padding-bottom: 20px;
        letter-spacing: -0.05em;
        line-height: 1.2;
  }

.adtest-kit-usage-step-title {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: -0.05em;
}
.indent {
    margin: 0 !important;
}
.adtest-kit-target-list img {
    width: 90%;
    height: auto;
    display: block;
    justify-items: center;
    margin: auto;
    padding-bottom: 60px;
}

.add-sample {
    background-color: #FFFFC5 !important;
    margin: 0 15px 50px 15px;
}
.adtest-kit-usage-steps {
    max-width: 750px;
    margin: 0 auto;
    padding: 0px;
    justify-items: center;
}
.adtest-kit-usage-step-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center !important;
}
.adtest-kit-usage-step {
    display: flex;
    gap: 35px;
    /* margin-bottom: 55px; */
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    padding: 20px;
    margin: 15px;
}
  /* Features */
  .adtest-kit-feature {
        padding: 10px 0;
  }

  .adtest-kit-feature-lead {
        font-size: 0.85rem;
        /* margin: 0 20px; */
        font-weight: normal;
  }

  .adtest-kit-feature-item {
    flex-direction: column;
    margin-bottom: 60px;
    padding-bottom: 40px;
    gap: 20px;
  }

  .adtest-kit-feature-item-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .adtest-kit-feature-item-content {
    padding-top: 0;
    text-align: center;
  }

  .adtest-kit-feature-item-title {
        font-size: 1.5rem;
        margin: 20px;
        text-align: left;
  }

  .left {
      font-size: 1.125rem;
      line-height: 2;
      color: #231815;
      text-align: left;
      margin: 15px;
      line-height: 1.8;
  }

  .adtest-kit-feature-item-text {
        font-size: 1rem;
        text-align: left;
        margin: 20px;
        line-height: 1.8;
  }

  /* Target */
  .adtest-kit-target {
    padding: 1px 0 60px 0;
  }

  /* Usage */
  .adtest-kit-usage {
    padding: 1px 0 60px 0;
  }

  .adtest-kit-usage-lead {
    font-size: 0.9375rem;
    margin-bottom: 30px;
  }

  .adtest-kit-usage-sample {
    margin-bottom: 40px;
  }

  .adtest-kit-usage-step {
    flex-direction: column;
    /* margin-bottom: 45px; */
    align-items: flex-start;
  }

  .adtest-kit-usage-step-image {
    width: 100%;
    /* max-width: 280px; */
    margin-bottom: 20px;
  }

  .adtest-kit-usage-step-content {
    text-align: left;
  }

  .adtest-kit-usage-step-title {
    font-size: 1.25rem;
      text-align: center;
  }

  .adtest-kit-usage-step-text {
    font-size: 0.9375rem;
  }

  /* Result */
  .adtest-kit-result {
    padding: 60px 0;
  }

  /* FAQ */
  .adtest-kit-faq {
    padding: 1px 0 60px 0;
  }

  .adtest-kit-faq-item {
    padding: 25px 20px;
  }

  .adtest-kit-faq-question p {
    font-size: 1rem;
  }

  .adtest-kit-faq-answer-text p {
    font-size: 1rem;
  }

  /* Buy */
  .adtest-kit-buy {
    padding: 1px 0 10px 0;
  }

  .adtest-kit-buy-lead {
    font-size: 1.25rem;
  }

  .adtest-kit-buy-text {
    font-size: 0.9375rem;
  }

  .adtest-kit-buy-btn-wrapper {
    margin-bottom: 50px;
  }

  .adtest-kit-buy-online-title {
    font-size: 1.375rem;
  }

  .adtest-kit-buy-online-list {
    flex-direction: column;
    align-items: center;
  }

  .adtest-kit-buy-online-list a {
    width: 100%;
    max-width: 300px;
  }

  /* Cookie */
  .info-area__inner {
    flex-direction: column;
    text-align: center;
  }

  .info-area__button {
    width: 100%;
    max-width: 200px;
  }
}

@media (min-width: 768px) and (max-width: 1365px) and (orientation: portrait), (min-width: 897px) and (max-width: 1365px) and (orientation: landscape) {
    .nav > li > a {
        font-size: 0.9375rem;
    }
}
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
    .nav > li.current > a::before {
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 4px;
        height: 4px;
        content: "";
        background: #111;
        border-radius: 50%;
        transform: translate(-50%, -100%);
    }
}
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
    section + section .heading2_, .heading2_.section-first {
        margin-top: 0px !important;
    }
    .margin0{
        margin-top: 0px !important;
    }
}


.adtest-kit-faq-accordion {
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', sans-serif;
}

.adtest-kit-faq-item {
  /* border-bottom: 1px solid #f5f5f5; */
}

.adtest-kit-faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    background: #f5f5f5;
    border: none;
    padding: 15px 20px;
    font-size: 1.125rem;
    cursor: pointer;
    text-align: left;
}
.adtest-kit-faq-text {
    flex-grow: 1; /* テキストを広げて右端にスペースを作る */
}
.adtest-kit-faq-icon,
.adtest-kit-faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #00a651;
  font-weight: bold;
  font-size: 1rem;
  background: #fef8fa;
  border: 2px solid #00a651;
}

.adtest-kit-faq-icon.adtest-kit-circle {
  margin-right: 10px;
}

.adtest-kit-faq-toggle.adtest-kit-circle {
  font-size: 1.25rem;
}

.adtest-kit-faq-answer {
  display: none;
  margin: 23px;
}
.adtest-kit-faq-question[aria-expanded="true"] + .adtest-kit-faq-answer {
  display: flex;
}


@media (max-width: 768px) {
  .adtest-kit-faq-question {
    font-size: 1rem;
    padding: 12px;
  }
  .adtest-kit-faq-answer {
    font-size: 1rem;
    /* padding: 12px 15px; */
  }
  .adtest-kit-faq-answer {
  display: none;
  /* margin: 23px; */
}
}

/* QとA用（白背景＋緑枠＋緑文字） */
.adtest-kit-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(254, 248, 250, 0);
    color: #00a651;
    border: 2px solid #00a651;
    font-weight: bold;
    font-size: 1rem;
    padding: 0; /* パディングを必ず0に */
    box-sizing: border-box;
    flex: 0 0 auto; /* ← これが重要！flexで伸びないようにする */
}

/* ＋／−用（緑背景＋白文字） */
.adtest-kit-toggle-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #00a651; /* 緑背景 */
    color: #fff; /* 白文字 */
    font-size: 1.25rem;
    font-weight: bold;
}

.adtest-kit-circle,
.adtest-kit-toggle-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 0;
    flex: 0 0 auto; /* ← これが重要！flexで伸びないようにする */
}

/* QとA（白背景＋緑枠＋緑文字） */
.adtest-kit-circle {
    background: #f5f5f5;
    color: #00a651;
    border: 2px solid #00a651;
    font-weight: bold;
    font-size: 1rem;
}

/* ＋／−（緑背景＋白文字） */
.adtest-kit-toggle-circle {
    background: #00a651;
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
  /* .adtest-kit-usage-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; */
  }

  .adtest-kit-usage-step-title {
    order: -1; /* タイトルを画像より前に */
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: bold;
  }

  .adtest-kit-usage-step-image img {
    display: block;
    margin: 0 auto;
    max-width: 280px;
    height: auto;
  }

  .adtest-kit-usage-step-image {
    flex-shrink: 0; /* 画像サイズを固定 */
    /* max-width: 220px; PC版で画像サイズを制限 */
  }

  .adtest-kit-usage-step-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .adtest-kit-usage-step-content {
    flex: 1; /* テキスト部分を広げる */
    text-align: left; /* PC版は左寄せ */
  }

  .adtest-kit-usage-step-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
  }

  .adtest-kit-usage-step-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .adtest-kit-footer-inner {

  display: block;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px 30px;

}

}
.adtest-kit-footer-top-inner {
  padding: 70px 20px 40px;
}
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .adtest-kit-footer-top-inner {
    max-width: 900px;
    padding: 80px 0;
    margin: 0 auto;
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 900px) and (orientation: portrait) {
  .adtest-kit-footer-top-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.adtest-kit-footer {
  background: #fff;
  padding: 0 30px;
  /* border-top: 1px solid #e0e0e0; */
}

.adtest-kit-footer-inner {

  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;

}

.adtest-kit-footer-nav ul {

  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-right: 325px;

}

.adtest-kit-footer-nav li {
  position: relative;
}

.adtest-kit-footer-nav li + li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #231815; 
  margin-top: 4px;
}


.adtest-kit-footer-nav a {
  color: #231815;
  text-decoration: none;
  font-size: 0.875rem;
}

.adtest-kit-footer-copy {
  font-size: 0.75rem;
  color: #808075;
}

.adtest-kit-footer-nav a {
  color: #231815;
  text-decoration: none;
  font-size: 0.875rem;
}

.adtest-kit-footer-nav a:hover {
  text-decoration: underline;
}

.adtest-kit-footer-copy {
  font-size: 0.75rem;
  color: #808075;
}
.adtest-kit-footer-logo {
  display: block;
  width: 210px;
  margin: 0 auto;
  height: 73px;
}
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .adtest-kit-footer-logo {
    flex-shrink: 0;
    margin: 0;
  }
  .adtest-kit-footer-logo:hover {
    opacity: 0.7;
  }
  
.adtest-kit-footer-logo {
  display: flex;
  align-items: center;
}

}
.adtest-kit-footer-logo img {
    width: 348px;
    height: auto;
}
@media screen and (max-width: 768px) {
  .adtest-kit-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding: 30px 20px;
    gap: 15px;
  }

  .adtest-kit-footer-logo img {
        width: 239px;
        height: 83px;
  }

  .adtest-kit-footer-nav ul {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .adtest-kit-footer-nav a {
    font-size: 0.875rem;
    color: #231815;
    text-decoration: none;
  }

  .adtest-kit-footer-nav a:hover {
    text-decoration: underline;
  }

  .adtest-kit-footer-copy {
        font-size: 1rem;
        color: #808075;
        margin-top: 10px;
        text-align: center;
        line-height: 1.2;
  }
}
.sp-break {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-break {
    display: block;
    text-align: center;
  }
  .info-area__text {
    font-size: 0.8125rem;
    line-height: 1.8;
    flex: 1;
    color: #231815;
    text-align: left;
}
.adtest-kit-usage-step-title {
    font-size: 1.2rem;
}
}
// 2025.11.21.追加

/* ========================================
   ハンバーガーメニューの制御
   ======================================== */
@media (max-width: 767px) and (orientation: portrait), (max-width: 896px) and (orientation: landscape) {
  /* デフォルトは非表示 */
  .nav-container {
    display: none !important;
  }

  /* expandedクラスがある時のみ表示 */
  .js-navBtn.expanded ~ .nav-container {
    display: block !important;
  }
    .adtest-kit-usage-step {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        padding: 20px;
        background-color: #fff;
        border-radius: 20px;
  }
  .indent {
    margin: 0;
}
.adtest-kit-header .nav-btn {
  width: 40px;
  height: 40px;
  background: transparent !important;  /* ← 透明に強制上書き */
  margin-left: 0;
  margin-right: 5px;
}
.adtest-kit-header .nav-btn::before,
.adtest-kit-header .nav-btn::after {
  background: #231815;
}
.adtest-kit-header .nav-btn::before {
  box-shadow: 0 9px 0 #231815;
}
}

/* ハンバーガーボタンのアニメーション強化 */
/* ハンバーガーボタンのアニメーション強化（2本線） */
.nav-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.0) !important; /* 白50%透明 */
  border: none;
  cursor: pointer;
  padding: 26px;
  z-index: 1000;
}

.nav-btn::before, 
.nav-btn::after {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  content: "";
  background: #231815;  /* ← 白→黒に変更 */
  transition: 0.4s;
  transform: translateX(-50%);
}

.nav-btn::before {
  top: 15px;
  box-shadow: 0 10px 0 #231815;  /* ← 中央の線（3本目）を追加 */
}

.nav-btn::after {
  bottom: 15px;
}

.nav-btn.expanded::before {
  top: 24px;
  /* transform: rotate(45deg); */
}

.nav-btn.expanded::after {
  bottom: 24px;
  /* transform: rotate(-45deg); */
}

/* SP版を表示、PC版を非表示 */
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}

/* PC版を表示、SP版を非表示 */
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: flex;
  }
}

.indent {
    margin: 35px 0 0 -30px;
}

.arrow {
  width: 0;
  height: 0;
  margin: 20px auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #222; /* ▼の色 */
}

.breadcrumb {
  display: block; /* flexにしない */
  font-size: 0.625rem;
  color: #231815;
  /* margin: 15px 20px; */
    text-align: right;
  background-color: #fff; /* SP版のみ */
  padding: 10px 20px;
}

@media screen and (min-width: 769px) {
  .breadcrumb {
    background-color: transparent;
    text-align: right;
  }
.breadcrumb {
    display: block;
    font-size: 0.625rem;
    color: #231815;
    /* margin: 15px 20px; */
    text-align: right;
    /* background-color: #f5f5f5; */
    /* padding: 10px 20px; */
}  
}


/* 2025.11.27.追加 - ヘッダーメニュー変更 */

/* ========================================
   Adtest-Kit Header Override
   ======================================== */

/* ヘッダー全体 */
.adtest-kit-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: #fff;
}

/* PC版ヘッダーロゴ */
.adtest-kit-header .header-logo {
  width: auto;
  /* margin-left: 20px; */
  flex-shrink: 0;
}

.adtest-kit-header .header-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  /* PC版ヘッダー全体の高さを統一 */
  .adtest-kit-header .header-top {
    height: 70px; /* ロゴ50px + 上下padding 10px */
  }
  
  .adtest-kit-header .header-logo {
    /* margin-left: 30px; */
    height: 100%;
    display: flex;
    align-items: center;
  }
  .adtest-kit-header .header-logo img {
    height: 50px;
  }
}

/* PC版ナビゲーションコンテナ */
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .adtest-kit-header .nav-container {
    position: static;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    background: #fff !important;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  
  .adtest-kit-header .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    background: #fff !important;
  }
  
  .adtest-kit-header .nav > li {
    margin: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .adtest-kit-header .nav > li:first-of-type {
    margin-left: 20px;
  }
  
  .adtest-kit-header .nav > li:last-of-type {
    margin-right: 20px;
  }
  
  .adtest-kit-header .nav > li > a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #231815;
    padding: 0;
    border: none;
    white-space: nowrap;
  }
  
  .adtest-kit-header .nav > li > a:hover {
    color: #00a651 !important;
  }
  
  .adtest-kit-header .nav > li > a::after {
    display: none !important;
    content: none !important;
  }
}

/* PC版購入ボタン */
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
  .adtest-kit-header .header-top-right {
    margin-right: 0;
    flex-shrink: 0;
    height: 100%;
  }
  
  .adtest-kit-header .cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    min-height: auto;
    padding: 0 25px;
    background: #fff;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .adtest-kit-header .cart-btn:hover {
  opacity: 0.7;
  }
  
  .adtest-kit-header .cart-btn img {
    height: 32px;
    width: auto;
    max-width: none;
  }
}

/* ========================================
   SP版ヘッダー・メニュー
   ======================================== */
@media (max-width: 767px) and (orientation: portrait), (max-width: 896px) and (orientation: landscape) {
  
  /* SP版ヘッダートップ */
  .adtest-kit-header .header-top {
  height: 50px;
  background: #fff;
  border-bottom: 2px solid #e1e6e7;
    
  }
  
  .adtest-kit-header .header-logo {
    margin-left: 10px;
  }
  
  .adtest-kit-header .header-logo img {
    height: 35px;
    width: auto;
  }
  
  /* SP版ヘッダー右側 */
  .adtest-kit-header .header-top-right {
    display: flex;
    justify-content: flex-end;      /* 右寄せ */
    align-items: center;
    flex: 1;                        /* 右側を広げて右端に寄せる */
  }
  
  /* SP版カートボタン非表示（メニュー内に移動） */
  .adtest-kit-header .header-top-right .cart-btn {
    display: none;
  }
  
  /* SP版ナビゲーションコンテナ */
  .adtest-kit-header .nav-container {
    position: fixed;
    top: 0!important;;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #D9ECDA !important;
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  
  /* SP版メニューヘッダー（ロゴ＋閉じるボタン） */
  .adtest-kit-sp-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    border-bottom: 2px solid #A0A0A0;
    background: #fff;
    flex-shrink: 0;
  }
  
  .adtest-kit-sp-menu-logo img {
    height: 40px;
    width: auto;
  }
  
  .adtest-kit-sp-menu-close {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
  }
  
  .adtest-kit-sp-menu-close::before,
  .adtest-kit-sp-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #231815;
  }
  
  .adtest-kit-sp-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .adtest-kit-sp-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  /* SP版パンくずリスト */
  .adtest-kit-sp-breadcrumb {
    padding: 10px 20px;
    font-size: 0.6875rem;
    color: #231815;
    text-align: right;
    background: #fff;
    flex-shrink: 0;
  }
  
  /* SP版ナビゲーション */
  .adtest-kit-header .nav {
    /* flex: 1; ←削除 or 上書き */
    flex: 0 0 auto;     /* 明示しておくと安心 */
    /* 必要なら余白は最小化 */
    padding: 20px 30px 200px 30px;
    background-color: #D9ECDA;
  }
  
  .adtest-kit-header .nav > li {
    margin: 0;
  }
  
  .adtest-kit-header .nav > li + li {
    margin-top: 0;
  }
  
  .adtest-kit-header .nav > li > a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
        font-weight: 700;
        color: #231815;
        border-bottom: none;
        line-height: 1;
  }
  
  .adtest-kit-header .nav > li > a::after {
    display: none !important;
    content: none !important;
  }
  
  /* SP版下部カートエリア */
  .adtest-kit-sp-menu-footer {
    padding: 30px 20px 40px;
    flex-shrink: 0;
    /* margin-top: auto; */
  }
  
  .adtest-kit-sp-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .adtest-kit-sp-cart-link img {
    height: 30px;
    width: auto;
  }
  
  .adtest-kit-sp-buy-banner {
    display: block;
    text-align: center;
  }
  
  .adtest-kit-sp-buy-banner img {
    max-width: 100%;
    height: auto;
  }

}
@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
    .header-top {
        background: #fff;
        border-bottom: 2px solid #A0A0A0;
    }
}

@media (min-width: 768px) and (orientation: portrait), (min-width: 897px) and (orientation: landscape) {
    header {
        box-shadow: none !important;
    }
 .adtest-kit-buy-banner img {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 auto;
}
}


.adtest-kit-buy-banner-section {
  margin: 24px 20px; /* 見出し下の余白 */
}

.adtest-kit-buy-banner img {
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.adtest-kit-buy-banner-bg img {
  display: block;
  width: 90%;            /* レスポンシブ。原寸で見せたいなら適宜 max-width 指定 */
  height: auto;
  margin: 0 auto;
}

/* 既存のsp-only/pc-only切り替えを尊重。必要なら中央寄せ */
.adtest-kit-buy-banner {
  text-align: center;
    margin: 24px auto;  
}
.adtest-kit-buy-banner-bg {
    text-align: center;
    /* margin: 0px 0px 60px 0px; */
    background: #E2F5E3;
    padding-bottom: 80px;
}

.adtest-kit-buy-banner a:hover {
  opacity: 0.7;
}
.adtest-kit-buy-banner-bg a:hover {
  opacity: 0.7;
}
/* 画面幅に応じて最大幅を制限したい場合（任意） */
@media (min-width: 768px) {
  .adtest-kit-buy-banner-section {
    max-width: 900px;      /* ページのコンテナ幅に合わせる */
    margin: 24px auto;     /* 中央寄せ */
  }
}


@media (max-width: 767px) and (orientation: portrait),
       (max-width: 896px) and (orientation: landscape) {
  .adtest-kit-header .nav-container {
    display: none; /* 初期は閉じる */
  }
  .js-navBtn.expanded ~ .nav-container {
    display: flex !important; /* 開いたときだけ表示 */
  }
}


@media (max-width: 767px) and (orientation: portrait),
       (max-width: 896px) and (orientation: landscape) {
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左ロゴ／右ブロックを両端配置 */
    padding: 0;
  }
  .header-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;      /* 右寄せ */
    flex: 1 0 auto;
    gap: 100px;
  }
  .nav-btn {
    margin-left: auto;              /* 保険で右端へ */
    background: transparent !important; /* 透明化（必要なら） */
  }
  /* SPメニューの初期表示は閉じる。開いた時だけ表示 */
  .adtest-kit-header .nav-container { display: none; }
  .js-navBtn.expanded ~ .nav-container { display: flex !important; }
}
.botm {
  padding-bottom: 30px;
}
.g-bg {
      background: #E2F5E3;
}

/* ========================================
   Adtest-Kit Footer - 新デザイン
   ======================================== */

.adtest-kit-footer {
  background: #fff;
  padding: 10px auto;
  /* border-top: 1px solid #e0e0e0; */
}

.adtest-kit-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* ロゴ */
.adtest-kit-footer-logo {
  display: block;
  text-align: center;
}

.adtest-kit-footer-logo a {
  display: inline-block;
}

.adtest-kit-footer-logo a:hover {
  opacity: 0.7;
}

.adtest-kit-footer-logo img {
  height: auto;
  width: auto;
  max-width: 200px;
}

/* ナビゲーション */
.adtest-kit-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.adtest-kit-footer-nav li {
  position: relative;
  display: flex;
  align-items: center;
}

.adtest-kit-footer-nav li::after {
  content: "｜";
  color: #231815;
  margin: 0 10px;
  font-size: 0.875rem;
}

.adtest-kit-footer-nav li:last-child::after {
  display: none;
}

.adtest-kit-footer-nav a {
  color: #231815;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.adtest-kit-footer-nav a:hover {
  text-decoration: underline;
}

/* コピーライト */
.adtest-kit-footer-copy {
  text-align: center;
}

.adtest-kit-footer-copy small {
  font-size: 0.75rem;
  color: #808075;
}

/* ========================================
   SP版フッター
   ======================================== */
@media screen and (max-width: 767px) {
  .adtest-kit-footer {
    padding: 40px 20px;
  }

  .adtest-kit-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .adtest-kit-footer-logo img {
    max-width: 210px;
  }

  /* SP版ナビ：2行に分ける */
  .adtest-kit-footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 320px;
  }

  .adtest-kit-footer-nav li {
    display: inline-flex;
    align-items: center;
  }

  .adtest-kit-footer-nav li::after {
    content: "｜";
    color: #c8102e;
    margin: 0 10px;
    font-size: 0.8125rem;
  }

  /* 2番目と4番目（各行の最後）は区切りなし */
  .adtest-kit-footer-nav li:nth-child(2)::after,
  .adtest-kit-footer-nav li:last-child::after {
    display: none;
  }

  /* 2番目の後で改行 */
  .adtest-kit-footer-nav li:nth-child(2) {
    margin-right: 100%; /* 強制改行 */
    margin-bottom: 15px;
  }

  .adtest-kit-footer-nav a {
    color: #c8102e;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
  }

  .adtest-kit-footer-nav a:hover {
    text-decoration: underline;
  }

  .adtest-kit-footer-copy small {
    font-size: 0.8rem;
    color: #808075;
  }
}

/* SP版ナビ（HTML2行版） */
@media screen and (max-width: 767px) {
  .adtest-kit-footer-nav {
    text-align: center;
  }

  .footer-nav-row {
    /* margin-bottom: 15px; */
  }

  .footer-nav-row:last-child {
    margin-bottom: 0;
  }

  .footer-nav-row a {
    color: #231815;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }

  .nav-divider {
    color: #231815;
    margin: 0 10px;
    font-size: 0.8125rem;
  }

}


.adtest-kit-usage-video {
    max-width: 800px;
    /* margin: 40px auto; */
    padding: 0 20px　80px 20px;
}

.adtest-kit-usage-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.adtest-kit-usage-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* SP版調整 */
@media screen and (max-width: 767px) {
  .adtest-kit-usage-video {
        max-width: 100%;
        /* margin: 30px auto; */
        padding: 0 15px 50px 15px;
        width: 93%;
  }
    .left_ {
        text-align: left !important;
        margin: 0;
}
.adtest-kit-footer-logo {
    display: block;
    width: 346px !important;
    height: auto;
    margin: 0px auto;
}
}

/* SPだけ改行するbr */
br.sp-only-br {
  display: none;
}

@media screen and (max-width: 768px) {
  br.sp-only-br {
    display: inline; /* brはinlineで十分（blockでも可） */
  }
}

/* ========================================
   Adtest-Kit Footer - PC/SP対応
   ======================================== */

.adtest-kit-footer {
  background: #fff;
  padding: 40px 20px;
}

.adtest-kit-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ロゴ */
.adtest-kit-footer-logo {
  display: block;
  text-align: center;
}

.adtest-kit-footer-logo a {
  display: inline-block;
}

.adtest-kit-footer-logo a:hover {
  opacity: 0.7;
}

.adtest-kit-footer-logo img {
  height: auto;
  width: auto;
  max-width: 180px;
}

/* ========================================
   PC版ナビ：1行表示
   ======================================== */
.adtest-kit-footer-nav {
  text-align: center;
}

.footer-nav-row {
  display: inline;
}

.footer-nav-row a {
  color: #231815;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-nav-row a:hover {
  text-decoration: underline;
}

.nav-divider {
  color: #231815;
  margin: 0 15px;
  font-size: 0.875rem;
}

/* 1行目の最後（個人情報〜）の後にも区切り線を追加 */
.footer-nav-row:first-child::after {
  content: "|";
  color: #231815;
  margin: 0 15px;
  font-size: 0.875rem;
}

/* コピーライト */
.adtest-kit-footer-copy {
  text-align: center;
}

.adtest-kit-footer-copy small {
  font-size: 0.75rem;
  color: #808075;
}

/* ========================================
   SP版ナビ：2行表示
   ======================================== */
@media screen and (max-width: 767px) {
  .adtest-kit-footer {
    padding: 40px 20px;
  }

  .adtest-kit-footer-inner {
    gap: 25px;
  }

  .adtest-kit-footer-logo img {
    max-width: 150px;
  }

  /* SP版：2行に分ける */
  .footer-nav-row {
    display: block;
    margin-bottom: 15px;
  }

  .footer-nav-row:last-child {
    margin-bottom: 0;
  }

  /* 1行目の後の区切り線を非表示 */
  .footer-nav-row:first-child::after {
    display: none;
  }

  .footer-nav-row a {
        color: #231815;
        font-size: 1rem;
        font-weight: 700;
  }

  .nav-divider {
    color: #231815;
    margin: 0 10px;
  }

  .adtest-kit-footer-copy small {
    font-size: 0.6875rem;
  }

.adtest-kit-usage-step-image img {
    display: block;
    margin: 0;
    max-width: 280px;
    height: auto;
}

}


/* -----------------------------------------
  WC専用 告知バー（ヘッダーメニューの上に表示）
  PC: 高さ70px / SP: 高さ140px / 背景色 #FF801B
----------------------------------------- */
.adtest-kit-wc-banner {
  background-color: #FF801B;
  color: #fff;
  /* ページ幅に合わせる */
  width: 100%;
}

.adtest-kit-wc-banner__inner {
  /* 中央寄せ＆左右余白 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* 高さは親で管理 */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px; /* PC既定 */
}

.adtest-kit-wc-banner__text {
  /* 可読性確保 */
  font-family: 'Hiragino Sans', 'Noto Sans JP', 'ヒラギノ角ゴシック', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  /* アクセシビリティ：コントラスト十分（白文字×オレンジ） */
  /* 文言が1行に収まらない場合の折返し */
  word-break: break-word;
}

/* SP：高さ140pxに拡張、文字サイズも少し上げる */
@media screen and (max-width: 768px) {
  .adtest-kit-wc-banner__inner {
    /* min-height: 140px; */
    padding: 14px;
  }
  .adtest-kit-wc-banner__text {
    font-size: 1.1rem; /* 約17px */
    line-height: 1.5;
  }
}

.adtest-kit-wc-banner + header {
  /* 告知バーの分だけヘッダーを下げたい場合は有効化
     margin-top: 0;（headerが固定なら、ページ全体のトップ余白を別途調整してください） */
}

/* 登録商標マーク（上揃え） */
sup.reg {

sup.reg {
  font-size: 0.7em;       /* サイズはお好みで */
  line-height: 1;         /* 行間を調整 */
  vertical-align: middle; /* 上下中央に配置 */
}
}


/* まずは共通：中央寄せ */
.buy-banner {
  display: block;
}
.buy-banner img {
  display: block;
  height: auto;
  margin: 0 auto;
}

/* SP：sourceで切替、横幅は画面に合わせる */
@media (max-width: 767px) {
  .buy-banner img {
    width: 100%;
    max-width: 100%;
  }
}

/* PC：横幅を1220pxに固定（伸び縮みさせない） */
@media (min-width: 768px) {
  .buy-banner img {
    width: 1220px;      /* 固定幅 */
    max-width: none;    /* 100%化の干渉を防止 */
  }
}

/* PC：見出し行内は改行させない */
@media (min-width: 768px) {
  .heading2_ .reg,
  .heading2_ .adtest-kit-feature-item-title-text {
    display: inline;         /* 行内に並べる */
    white-space: nowrap;     /* 必要なら改行抑制（長すぎれば削ってOK） */
  }

  /* 既存の「spanをblockにする」ルールの影響を打ち消す */
  .heading2_ span,
  .heading2_ > span {
    display: inline;         /* PCではインラインに戻す */
  }
}

/* ® を上下中央にそろえる（インライン中央揃え） */
.heading2_ .reg {
  font-size: 0.7em;          /* お好みで */
  line-height: 1;            /* 余計な上下のズレを抑える */
  vertical-align: text-top;
}

/* SP：従来通り（sp-only-br を表示して改行） */
@media (max-width: 767px) {
  br.sp-only-br { display: inline; }
  /* SPでは自由に改行させたいなら、下記は不要。必要なら inline のままでもOK */
  /* .heading2_ span, .heading2_ > span { display: inline; } */
}


/* ==== 共通（PC/SP） ===================================== */
.adtest-kit-usage{
  background-color:#E2F5E3;              /* 淡緑背景 */
}

/* 白カード＋角丸 */
.adtest-kit-usage-step{
  position:relative;                      /* バッジの基準 */
  background:#fff;
  border-radius:25px;
  margin: 40px;
}

/* 左上の緑バッジ：画像ではなくCSSで描画 */

.adtest-kit-usage-step::before {
  content: attr(data-step);
  position: absolute;
  top: 14px; /* 必要なら位置調整 */
  left: 14px;
  width: 40px;
  height: 40px;
  background: #10a45a;
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  line-height: 1;
  font-size: 1.15rem; /* 数字の大きさ調整 */
  z-index: 10; /* ← これを追加して前面に */
}


/* 画像を上下左右の中央に配置（最も確実） */
.adtest-kit-usage-step-image{
  display:flex;
  align-items:center;
  justify-content:center;
  /* width:100%; */
}
.adtest-kit-usage-step-image img{
  display:block;
  width:100%;
  height:auto;
  margin:0 auto;
}

/* 本文のみ表示（見出しは置かない／不要なら削除済み） */
.adtest-kit-usage-step-text{
  color:#231815;
  margin:0;
}

/* ==== SP（～768px） ============================ */
@media screen and (max-width:768px){
  .adtest-kit-usage{ padding:16px 0 60px; }

  /* 縦レイアウト（画像→本文） */
  .adtest-kit-usage-step{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding:18px;
    margin:15px;
    border-radius:20px;                    /* SPは少し小さめ角丸 */
  }

  /* バッジ位置・サイズ（SP見本相当） */
  .adtest-kit-usage-step::before{
    top:14px; left:14px;
    width:42px; height:42px;
    font-size:1.15rem;
  }

  /* 画像サイズ（SP） */
  .adtest-kit-usage-step-image{
    min-height:180px;                      /* カード内で上下中央を確保 */
  }

  
/* =========================================================
   STEPバッジの安全化（SP/PC共通）
   - data-step を持つカードだけに適用して競合回避
   - 画像の手前に出すため z-index
   - バッジぶんの左余白をカードに付与（重なり防止）
   ========================================================= */
.adtest-kit-usage-step[data-step]{
  position: relative;
  /* バッジのぶんだけ左に余白を確保（SP初期値） */
  padding-left: 72px; /* 42px(バッジ) + 余白 */
}

.adtest-kit-usage-step[data-step]::before{
  content: attr(data-step);
  position: absolute;
  top: 14px;        /* SP初期値。PCは後のメディアクエリで上書き */
  left: 14px;
  width: 42px;
  height: 42px;
  background: #10a45a;
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  z-index: 2;       /* 画像より前面へ */
}

/* 応急：テンプレ都合で data-step を入れられない場合だけ使用
   例：4番目のカードに「4」を強制表示 */
.adtest-kit-usage-step:nth-of-type(4)::before{
  content: "4";
}

/* =========================================================
   PC版（769px～）の完全上書き
   - 詳細度を上げて既存PCルールに確実に勝つ
   - 横並び／画像列の固定幅／本文は残り幅
   - バッジ位置と左余白をPC用に再調整
   ========================================================= */
@media screen and (min-width: 769px){

  .adtest-kit-usage{ padding: 40px 0; }

  .adtest-kit-usage .adtest-kit-usage-step{
    display: flex;              /* 横並び */
    align-items: center;
    gap: 35px;
    padding: 24px 32px;
    border-radius: 25px;
    width: auto;                /* 既存の固定幅指定を無効化 */
    /* バッジぶんの左余白（PCはバッジが大きい） */
    padding-left: 86px;         /* 52px(バッジ) + 余白 */
  }

  .adtest-kit-usage-step[data-step]::before{
    top: 18px;
    left: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .adtest-kit-usage .adtest-kit-usage-step-image{
    flex: 0 0 220px;            /* 列幅 固定 */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    width: auto;                /* 既存の width:200px 等より後勝ち */
  }

  .adtest-kit-usage .adtest-kit-usage-step-image img{
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .adtest-kit-usage .adtest-kit-usage-step-content{
    flex: 1 1 auto;
    text-align: left;
  }
}

/* 最終手段（他CSSがさらに後から上書きしてくる環境向け） */
@media screen and (min-width: 769px){
  .adtest-kit-usage .adtest-kit-usage-step{ display: flex !important; }
  .adtest-kit-usage .adtest-kit-usage-step-image{ flex: 0 0 220px !important; }
}

/* バッジが重ならないようカード左に余白（共通） */
.adtest-kit-usage-step[data-step]{
  position: relative;
  background: #fff;
  border-radius: 25px;
  /* SPの既定余白。PCで上書きします */
  padding-left: 72px; /* 42px(バッジ) + 余白 */
}

/* バッジ（共通） */
.adtest-kit-usage-step[data-step]::before{
  content: attr(data-step);
  position: absolute;
  top: 14px; left: 14px;
  width: 42px; height: 42px;
  background: #10a45a; color: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.15rem; line-height: 1;
  z-index: 2;
}

/* ---- PC（横並び）で“本文を真ん中”にする ---- */
@media screen and (min-width: 769px){
  /* 横並びのカード */
  .adtest-kit-usage-step{
    display: flex;             /* 画像＋本文を横並び */
    align-items: center;       /* 行の上下中央にそろえる */
    gap: 35px;
    padding: 24px 32px;
    padding-left: 86px;        /* 52px(PCバッジ) + 余白 */
    border-radius: 25px;
  }

  /* PCのバッジを少し大きく */
  .adtest-kit-usage-step[data-step]::before{
    top: 18px; left: 18px;
    width: 52px; height: 52px;
    font-size: 1.35rem;
  }

  /* 画像列：中央寄せ＆固定幅 */
  .adtest-kit-usage-step-image{
    flex: 0 0 220px;           /* 列幅（必要なら200–240pxで調整） */
    display: flex;
    align-items: center;       /* 画像の上下中央 */
    justify-content: center;   /* 画像の左右中央 */
    min-height: 160px;
  }
  .adtest-kit-usage-step-image img{
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
  }

  /* 本文列：上下中央に“置く”ためにコンテナをflex化 */
  .adtest-kit-usage-step-content{
    flex: 1 1 auto;
    display: flex;             /* ←追加 */
    align-items: center;       /* ←ここで本文を上下中央に */
  }

  /* 本文の文字サイズ・行間（お好みで） */
  .adtest-kit-usage-step-text{
    font-size: 1.0625rem;
    line-height: 2;
    color: #231815;
    margin: 0;
  }
}

/* ---- SP（縦並び）既定：変更不要だが保険で中央寄せ維持 ---- */
@media screen and (max-width: 768px){
  .adtest-kit-usage-step{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    margin: 15px;
    border-radius: 20px;
  }
  .adtest-kit-usage-step-image{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    width: 100%;
  }
  .adtest-kit-usage-step-image img{
    max-width: 280px;
  }
}

/* セクション背景 */
.adtest-kit-usage{ background:#E2F5E3; }

/* 親カード：スタッキングコンテキストを作る（z-indexの基準） */
.adtest-kit-usage-step{
  position: relative;
  z-index: 0;                 /* ← これで ::before(0) と子(1) がレイヤー分けできる */
  background:#fff;
  border-radius:25px;
  margin: 15px;
  padding: 18px;
}

/* 左上バッジ（data-stepの数字）＝下のレイヤー */
.adtest-kit-usage-step[data-step]::before{
  content: attr(data-step);
  position: absolute;
  top: 14px; left: 14px;      /* SP値。PCで上書きあり */
  width: 42px; height: 42px;
  background:#10a45a; color:#fff;
  border-radius:10px;
  display:grid; place-items:center;
  font-weight:700; font-size:1.15rem; line-height:1;
  z-index: 0;                 /* ← 親と同じ“下層”。画像・テキストより背面 */
}

/* 画像・テキストは“上のレイヤー”。必ず前面に来る */
.step-img,
.step-text{
  position: relative;
  z-index: 1;
}

/* ---- SP（縦並び） ---- */
@media (max-width: 768px){
  .adtest-kit-usage-step{
    display: block;
    padding-left: 72px;       /* バッジぶんの左余白（42px＋余白） */
  }
  .step-img{
    display:flex; align-items:center; justify-content:center;
    min-height: 180px;
  }
  .step-img img{ max-width: 280px; width:100%; height:auto; display:block; }
  .step-text{ font-size:1rem; line-height:1.9; color:#231815; margin:0; }
}

/* ---- PC（横並び／中央寄せ） ---- */
@media (min-width: 769px){
  .adtest-kit-usage{ padding: 40px 0; }

  /* 入れ子なしGrid：左=バッジ領域、中央=画像、右=本文 */
  .adtest-kit-usage-step{
    display: grid;
    grid-template-columns: 86px 220px 1fr; /* 86=バッジ(52)+余白、画像=220、本文=残り */
    align-items: center;                    /* 行の上下中央にそろえる */
    gap: 35px;
    padding: 24px 32px;
    border-radius: 25px;
  }

  /* PCバッジを少し大きく（位置は同じく下層） */
  .adtest-kit-usage-step[data-step]::before{
    top: 18px; left: 18px;
    width: 52px; height: 52px;
    font-size: 1.35rem;
  }

  /* 列配置（フラット構造でもOK） */
  .step-img{
    grid-column: 2;                         /* 画像は中央列 */
    display:flex; align-items:center; justify-content:center;
    min-height: 160px;
  }
  .step-img img{ max-width: 220px; width:100%; height:auto; display:block; }

  .step-text{
    grid-column: 3;                         /* 本文は右列 */
    margin: 0;
    font-size: 1.0625rem; line-height: 2; color:#231815;
  }
}

/* 親カードの基準（既存にあるならOK） */
.adtest-kit-usage-step{
  position: relative; /* ::beforeの基準 */
}

/* data-step がある場合だけ表示 */
.adtest-kit-usage-step[data-step]::before{
  content: attr(data-step);
  position: absolute;
  top: 14px;          /* PCで後から上書きしてもOK */
  left: 14px;
  width: 40px;
  height: 40px;
  background: #10a45a;
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  line-height: 1;
  font-size: 1.15rem;
  z-index: 10;        /* 常に前面に */
}

/* data-step が無いカードはバッジを完全に消す */
.adtest-kit-usage-step:not([data-step])::before{
  content: none !important;
  display: none !important;
}

/* バッジ用の左余白を付けている場合、data-step が無いカードだけ余白を戻す */
.adtest-kit-usage-step:not([data-step]){
  /* 例：SP/PC共通のデフォルト余白に戻す。値はサイトの既定に合わせて調整 */
  padding-left: 18px;
}

/* もし媒体ごとに余白を変えるなら（任意） */
@media (max-width: 768px){
  .adtest-kit-usage-step[data-step]{ padding-left: 72px; }   /* SP：40pxバッジ＋余白 */
  .adtest-kit-usage-step:not([data-step]){ padding-left: 18px; }
}
@media (min-width: 769px){
  .adtest-kit-usage-step[data-step]{ padding-left: 86px; }   /* PC：52pxバッジ＋余白 */
  .adtest-kit-usage-step:not([data-step]){ padding-left: 24px; }
}

/* PC/SPの切り替えを明示。既存があっても後勝ちで上書き */
.pc-only { display: block; }  /* 初期は表示（PCで上書きする） */

/* SP（～768px）：pc-only を完全に非表示 */
@media (max-width: 768px){
  .pc-only { display: none !important; }

  /* もしバッジ(::before)や左余白を全カードに付けている場合の保険：
     非表示カード内での不要なレイアウト影響を回避 */
  .pc-only.adtest-kit-usage-step::before {
    content: none !important;
    display: none !important;
  }
  .pc-only.adtest-kit-usage-step {
    padding-left: 18px !important; /* バッジ用余白をリセット（必要なら） */
  }
}

/* PC（769px～）：通常表示。配置はお好みのPC版スタイルに従う */
@media (min-width: 769px){
  .pc-only { display: block; }  /* Grid/Flexは既存ルールで適用 */
}

/* 「data-step="鼻腔"」のカードだけバッジを消す */
.adtest-kit-usage-step[data-step="鼻腔"]::before{
  content: none !important;
  display: none !important;
}

/* バッジ用に付けている左余白があれば、このカードだけ通常値へ */
.adtest-kit-usage-step[data-step="鼻腔"]{
  padding-left: 18px !important; /* 既定の内側余白に調整（必要に応じて値変更） */
}

.adtest-kit-usage-step.no-step::before{ content:none !important; display:none !important; }
.adtest-kit-usage-step.no-step{ padding-left: 24px !important; }

/* 該当カードだけ、バッジ擬似要素を完全に潰す */
.adtest-kit-usage-step.add-sample.sp-only::before{
  content: none !important;     /* 擬似要素を生成しない */
  display: none !important;     /* 念のため非表示 */
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.adtest-kit-usage-step.add-sample.pc-only::before{
  content: none !important;     /* 擬似要素を生成しない */
  display: none !important;     /* 念のため非表示 */
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* バッジ用の左余白が残っている場合は、通常値へ戻す */
.adtest-kit-usage-step.add-sample.sp-only{
  padding-left: 18px !important; /* サイト既定に合わせて調整可 */
}

/* 旧：.adtest-kit-usage-step::before { ... } を削除 or 上書き */
.adtest-kit-usage-step[data-step]::before{
  content: attr(data-step);
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  background: #10a45a; color: #fff;
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.15rem; line-height: 1;
  z-index: 10;
}

.no-step::before{
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.adtest-kit-usage-step.no-step{ padding-left: 24px; } /* バッジ用余白を戻す場合 */
.adtest-kit-usage-step_ {
display: flex;
    gap: 35px;
    /* margin-bottom: 55px; */
    align-items: center;
    background-color: #fff;
    border-radius: 25px;
    padding: 20px;
}

.adtest-kit-usage-step_add {
    padding: 25px !important;
    border-radius: 25px !important;
}

/* PC/SP共通：カードの左余白は維持（バッジのため） */

@media (min-width: 769px) {
  .adtest-kit-usage-step[data-step] { padding-left: 86px; } /* PC */
}

/* 本文は左端から始めたい：カード内でさらに左詰め */
.adtest-kit-usage-step-content {
  text-align: left;
  margin-left: 0 !important;   /* 念のため */
}

/* セクションの過度な左右パディングを弱める（必要なら） */
@media (min-width: 769px) {
  .adtest-kit-usage-steps { padding: 0 20px; } /* 60px → 20pxなど適量に */
}
@media (max-width: 430px) {
  .heading2_ > span {
    display: inline;
    font-size: 0.7rem;
    font-weight: normal;
    color: #111;
  }
  .adtest-kit-footer-inner {
    /* max-width: 1200px;
    margin: 0 auto; */
    display: inline;
    /* flex-direction: column;
    align-items: center;
    gap: 20px; */
}
}