@charset "utf-8";

li.header_list--mega #menu_bar03 + label::before {
  transform: rotate(135deg) translateY(50%);
  left: 18px;
}
#menu_bar03 + .label_list + .header_list--child {
  max-height: 2200px;
}
#menu_bar03:checked + .label_list + .header_list--child {
  max-height: 0;
  transition: all 0.3s;
}
#menu_bar03:checked + .label_list::before {
  transform: rotate(45deg) translateY(-50%) !important;
  transition: all .3s;
  left: 10px;
}

/* ------------------
pagevisual
------------------ */
.pv_h1 {
  background: url("../img/pv_h1.webp")no-repeat center;
  background-size: cover;
}

.lead_box {
  width: 100%;
  max-width: 960px;
  padding: 30px 60px;
  margin: 25px auto 15px;
  display: flex;
  justify-content: center;
  gap: 24px;
  & p {
    width: 100%;
    max-width: 540px;
  }
}

/*intro_nav*/
.intro_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 90%;
  max-width: 960px;
  margin: 48px auto;
  & li {
    width: 100%;
    max-width: 300px;
    & a {
      position: relative;
      background: var(--theme-color);
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      font-weight: bold;
      &::after {
        content: '';
        position: absolute;
        background: url("../../../common/img/arrow.webp") no-repeat;
        width: 15px;
        height: 15px;
        display: inline-block;
        right: 15px;
      }
    }
  }
}

.contents {
  & article {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
    & > h2 {
      width: 100%;
      color: var(--theme-color);
      font-size: 2.4rem;
      font-weight: bold;
      letter-spacing: 4.8px;
      border-bottom: 4px solid var(--theme-color);
      padding-bottom: 16px;
      margin-bottom: 32px;
    }
    & h3 {
      background: #fff;
      border: 3px solid #a4afd3;
      color: var(--theme-color);
      margin-bottom: 20px;
      padding: 15px 25px;
      font-size: 2.4rem;
      font-weight: normal;
    }
    & section {
      margin-bottom: 56px;
    }
  }
}

.flow_flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 24px auto 64px;
  & li {
    position: relative;
  }
  & li::before {
    content: '';
    position: absolute;
    background: url("../img/flow_tri.webp")no-repeat center;
    background-size: contain;
    width: 22px;
    height: 62px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -3em;
  }
  & li:last-child::before {
    display: none;
  }
}

.sec_flex {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  & figure {
    min-width: 206px;
    text-align: center;
    & + p {
      width: 100%;
      max-width: 480px;
    }
  }
}

.sec_price {
  & figure {
    margin: 24px 0;
    text-align: center;
  }
}
.sec_price--note {
  color: #F00;
  border: 2px solid #FF8F95;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: 40px auto;
}
.article10 {
  margin-bottom: 40px;
  & table {
    width: 100%;
    margin: 0 auto;
    & th, & td {
      padding: 10px;
      text-align: center;
      border: solid 2px #8CA4D4;
    }
    & th {
      text-align: center;
      background: #0D2453;
      color: #fff;
      padding: 10px;
      border: solid 2px #8CA4D4;
      font-weight: bold;
    }
  }
}
.article10 td.page {
  background: #D0D6E8;
  color: #0D2453;
}

/* iPad縦 */
@media screen and (orientation: portrait) and (min-width: 768px){
  
}

@media screen and (max-width: 767px){
  /*intro_nav*/
  .intro_nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 24px auto 40px;
  }

  .lead_box {
    width: 90%;
    padding: 30px 0;
    flex-direction: column-reverse;
    align-items: center;
  }

  .contents {
    & article {
      & h2 {
        margin: 0 auto 28px;
        font-size: 2rem;
        letter-spacing: 2.4px;
        padding-bottom: 8px;
      }
      & h3 {
        font-size: 2rem;
        padding: 10px 5%;
      }
      & section {
        margin-bottom: 40px;
      }
    }
  }
  section#sec01::before,
  section#sec02::before,
  section#sec03::before,
  section#sec04::before,
  section#sec05::before,
  section#sec06::before {
    content: '';
    display: block;
    height: 48px;
    margin-top: -48px;
  }
  .flow_flex {
    justify-content: center;
    column-gap: 16px;
    & li::before {
      width: 10px;
      right: -14px;
    }
  }
  .sec_flex {
    flex-direction: column;
    gap: 20px;
    & figure {
      min-width: inherit;
    }
  }

  .sec_price--note {
    margin: 24px auto;
  }
  .article10 {
    overflow-x: scroll;
    & table {
      width: 800px;
    }
  }
}