@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  min-height: 0vw;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1;
  color: #0f172a;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

img {
  display: block;
  border-style: none;
  font-size: 0;
  line-height: 0;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

.w100 {
  width: 100%;
}

.bold {
  font-weight: bold;
}

.fade {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.fade_on {
  opacity: 1;
}

.movexl {
  opacity: 0;
  translate: -20px 0;
  transition: all 0.4s ease-out;
}

.movexr {
  opacity: 0;
  translate: 20px 0;
  transition: all 0.4s ease-out;
}

.movexl_on,
.movexr_on {
  opacity: 1;
  translate: 0 0;
}

.movey {
  opacity: 0;
  translate: 0 20px;
  transition: all 0.4s ease-out;
}

.movey_on {
  opacity: 1;
  translate: 0 0;
}

.small {
  scale: 1.5;
  opacity: 0;
  transition: all 0.4s ease-out 0.4s;
}

.small_on {
  scale: 1;
  opacity: 1;
}

.move {
  opacity: 0;
}

.move_on {
  opacity: 1;
}

.bs {
  animation: bigSmall 0.3s infinite alternate;
}

@keyframes bigSmall {
  0% {
    scale: 1;
  }
  100% {
    scale: 0.92;
  }
}

@keyframes f_a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes catch {
  0% {
    opacity: 0;
    scale: 6;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

@keyframes m_y {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

/* ===================================
ヘッダー
------------------------------------*/
header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10000;
  .inr {
    width: min(100%, 1400px);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px min(4%, 30px);
  }
  .logo {
    display: flex;
    align-items: center;
    font-size: clamp(15px, 4vw, 22px);
    font-weight: bold;
    span {
      display: inline-block;
      margin-left: 0.5em;
    }
  }
  .mark {
    width: 26px;
  }
  .btn {
    display: inline-block;
    padding: 0.6em 1.5em;
    border-radius: 100vh;
    background: #06b6d4;
    font-size: clamp(15px, 4vw, 18px);
    color: #fff;
  }
  @media screen and (min-width:769px) {
    .mark {
      width: 36px;
    }
  }
}


/* ===================================
コンテンツ
------------------------------------*/
main {
  padding: 71px 0 0;
  @media screen and (min-width:769px) {
    padding: 70px 0 0;
  }
}

.fv {
  width: min(100%, 1400px);
  margin: auto;
  padding: 70% 6% 14%;
  background: #bcd4e0 url(../img/fv-sp.jpg) center top no-repeat;
  background-size: 100% auto;
  h1 {
    margin: 0.7em 0 0;
    font-size: clamp(25px, 6.5vw, 40px);
    line-height: 1.48;
  }
  p {
    margin: 1em 0;
    font-size: clamp(18px, 4.8vw, 21px);
    line-height: 1.8;
  }
  .b_1 {
    display: block;
    max-width: 350px;
    margin: 0.5em 0.5em 0 0;
    padding: 0.7em;
    background: linear-gradient(to right, #ffaf25, #b674ff);
    border-radius: 100vh;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
  }
  @media screen and (min-width:769px) {
    padding: 88px 40px;
    background: #bcd4e0 url(../img/fv-pc.jpg) left center no-repeat;
    background-size: auto 100%;
    .box {
      width: 50%;
      margin: 0 0 0 auto;
    }
  }
  @media screen and (max-width:768px) {
    .b_1 {
      margin: auto;
    }
  }
}

.sec {
  padding: min(14%, 80px) min(6%, 30px);
}

h2 {
  margin-bottom: 2em;
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  span {
    display: block;
    margin-top: 1em;
    font-size: 20px;
    font-weight: normal;
  }
}

.s01 {
  li {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
  }
  h3 {
    margin-bottom: 1.5em;
    padding: 1.4em 4%;
    background: #f8fafc;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    .icon {
      width: 64px;
      margin: 0 auto 12px;
    }
  }
  .ph {
    width: 80%;
    margin: auto;
  }
  p {
    padding: 2em 6% 2em;
    line-height: 1.8;
  }
  @media screen and (min-width:830px) {
    ul {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: min(100%, 1400px);
      margin: auto;
      &.cs {
        justify-content: center;
        li {
          margin: 0 30px;
        }
      }
    }
    li {
      width: 32%;
      margin-bottom: 30px;
    }
  }
  @media screen and (max-width:829px) {
    h2 {
      span {
        text-align: left;
      }
    }
    ul {
      margin-bottom: 10%;
    }
    li + li {
      margin-top: 4%;
    }
  }
}

.s02 {
  background: #f8fafc;
  h3.tt {
    margin: 2em 0 1em;
    font-size: 140%;
    text-align: center;
  }
  .plan > li {
    position: relative;
    margin: 0 0 min(6%, 30px);
    padding: min(8%, 50px) min(6%, 30px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s linear;
    &:hover {
      box-shadow: 0 2px 10px 0 rgba(0,0,0,0.15);
    }
    .fukidashi {
      position: absolute;
      top: -3%;
      right: -2%;
      width: min(33%, 140px);
    }
    .yb {
      background: #fff77e;
    }
    h3 {
      position: relative;
      font-size: 20px;
      text-align: center;
      line-height: 1.4;
      .stamp {
        position: absolute;
        top: -3%;
        transform: translateY(-50%);
        left: -3%;
        width: min(30%, 120px);
      }
    }
    dt {
      position: relative;
      cursor: pointer;
      &::after {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        content: "";
        width: 20px;
        height: 16px;
        background: url(../img/arrow.png) center center no-repeat;
        background-size: cover;
        transition: all 0.3s linear;
      }
      &.active::after {
        opacity: 0;
      }
    }
  }
  .lead {
    position: relative;
    margin: 1em 0 1.5em;
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
    z-index: 2;
  }
  .lead_s {
    margin: 0 0 2.5em;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
  }
  .price {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    mark {
      font-size: 30px;
    }
  }
  .price_d {
    margin-top: 0.6em;
    text-align: center;
    line-height: 1.8;
    mark {
      background: #fff77e;
      color: #ff4949;
    }
  }
  .tax {
    font-size: 75%;
    font-weight: normal;
  }
  .red {
    color: #ff4949;
  }
  .list {
    margin-top: 1.4em;
    li {
      padding: 0.3em 0 0.3em 2em;
      background: url(../img/s2-cb.png) left center no-repeat;
      background-size: 18px auto;
      font-size: 14px;
      line-height: 1.4;
      &.sp_none {
        background: none;
      }
    }
  }
  .btn {
    display: block;
    width: 90%;
    margin: 1.4em auto 0;
    padding: 0.8em;
    border-radius: 100vh;
    background: #06b6d4;
    color: #fff;
    text-align: center;
    transition: all 0.3s linear;
    &:hover {
      background: #15407c;
    }
  }
  @media screen and (min-width:830px) {
    .plan {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      width: min(100%, 1000px);
      margin: auto;
      > li {
        width: 49%;
        &:nth-child(2),
        &:nth-child(4) {
          margin-left: 2%;
        }
        .fukidashi {
          top: -15px;
          right: 10px;
        }
      }
    }
  }
  /* タブ */
  .tab-area {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 2.5em;
    cursor: pointer;
  }
  .tab {
    width: 48%;
    padding: 0.7em;
    text-align: center;
    border-radius: 10px 10px 0 0;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background: #f8fafc;
    font-size: 90%;
    line-height: 1.2;
  }
  .tab + .tab {
    margin-left: 0.5em;
  }
  .year {
    position: relative;
    border: 1px solid #22c55e;
    border-bottom: none;
    color: #10ac49;
    &::after {
      position: absolute;
      display: block;
      top: 0;
      left: 50%;
      transform: translate(-50%, -60%);
      content: "オススメ";
      width: 6em;
      padding: 0.1em 0;
      background: #22c55e;
      border-radius: 10px;
      text-align: center;
      color: #fff;
      font-size: 13px;
    }
    .n1 {
      position: absolute;
      top: -1.5em;
      left: 50%;
      width: 11em;
      transform: translate(-50%, -60%);
      padding: 0.3em 0.5em;
      color: #10ac49;
    }
  }
  .month.active {
    background: #647182;
    color: #fff;
  }
  .year.active {
    background: #22c55e;
    color: #fff;
    &::after {
      border: 1px solid #22c55e;
      background: #f8fafc;
      color: #10ac49;
    }
  }
  .panel {
    position: relative;
    display: none;
    padding-top: 2em;
    .stamp2 {
      position: absolute;
      top: 3%;
      right: -3%;
      width: min(24%, 100px);
    }
  }
  .panel.active {
    display: block;
  }
  .note {
    line-height: 1.8;
    @media screen and (min-width:769px) {
      text-align: center;
    }
  }
  .btn-a {
    position: relative;
    display: block;
    max-width: 680px;
    margin: 3em auto 1em;
    padding: 1em;
    background: #ffe222;
    border-radius: 100vh;
    color: #000;
    font-weight: 600;
    font-size: 120%;
    text-align: center;
    line-height: 1.2;
    .hand {
      position: absolute;
      top: 20%;
      right: 0;
      width: 50px;
    }
  }
}

.s03 {
  .lead {
    margin: 0 auto 2em;
    line-height: 1.8;
    text-align: center;
  }
  li {
    margin: 0 0 min(6%, 30px);
    padding: min(8%, 35px) min(6%, 35px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
  }
  .name {
    display: flex;
    align-items: center;
    .icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
    }
    p {
      margin-left: 1em;
      line-height: 1.4;
    }
    span {
      font-weight: bold;
      font-size: 16px;
    }
  }
  .star {
    margin: 0.8em 0;
    color: #facc15;
    font-size: 16px;
  }
  .bun {
    line-height: 1.8;
  }
  .note {
    font-size: 90%;
    text-align: right;
    line-height: 1.4;
  }
  @media screen and (min-width:830px) {
    ul {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      width: min(100%, 1400px);
      margin: auto;
      li {
        width: 32%;
      }
    }
    > p {
      width: min(100%, 1400px);
      margin: auto;
    }
  }
}

.s04 {
  background: #f8fafc;
  dl {
    width: min(100%, 1400px);
    margin: auto;
  }
  dt {
    position: relative;
    padding: 1.5em 10% 1.5em 1.5em;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    background:#fff;
    font-weight: bold;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s linear;
    &::before {
      position: absolute;
      top: 50%;
      right: 1.5em;
      width: 1px;
      height: 1em;
      content: '';
      margin-top: -0.5em;
      background: #000;
      transition: all 0.3s linear;
    }
    &::after {
      position: absolute;
      top: 50%;
      right: 1em;
      width: 1em;
      height: 1px;
      content: '';
      background: #000;
      transition: all 0.3s linear;
    }
    &.active {
      border-radius: 15px 15px 0 0;
    }
    &.active::before {
      rotate: 90deg;
      opacity: 0;
    }
  }
  dd {
    padding: 1em 1.4em;
    border-radius: 0 0 15px 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-top: none;
    line-height: 1.8;
  }
  dd + dt {
    margin-top: 1em;
  }
}

.s05 {
  ul {
    width: min(100%, 1400px);
    margin: auto;
  }
  li {
    margin: 0 0 min(6%, 30px);
    padding: min(8%, 35px) min(6%, 35px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;

  }
  h3 {
    font-size: 20px;
    margin-bottom: 1em;
  }
  p {
    line-height: 1.8;
  }
}

button, textarea, select, input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

/* select要素の矢印を消す */
select::-ms-expand {
  display: none;
}

/* Androidで表示されるタップ時のオレンジの枠を消す */
button {
  box-shadow: none;
  outline: none;
}

.form {
  padding: 5em 0;
  background: #f8fafc;
  h2 {
    margin: 0;
  }
  form {
    display: block;
    width: min(100%, 1000px);
    margin: auto;
    padding: min(8%, 50px) min(6%, 50px);
  }
  dl {
    padding-bottom: 1.5em;
  }
  dt {
    margin: 3em 0 1em;
    padding-bottom: 0.7em;
    border-bottom: 1px dotted #06b6d4;
    font-weight: bold;
    span {
      color: #ff5b5b;
    }
  }
  dd + dd {
    margin-top: 1em;
  }
  select {
    width: 100%;
    padding: 1em;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: url(../img/arrow.png) right 3% center no-repeat;
    background-size: 16px auto;
    font-size: 18px;
  }
  .txt,
  textarea {
    width: 100%;
    padding: 1em;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
  }
  .txt2 {
    width: 70%;
    padding: 1em;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 10px;
    font-size: 18px;
  }
  textarea {
    line-height: 1.8;
  }
  ::placeholder {
    color: #b5b5b5;
  }

  .radio-parts {
    display: inline-block;
    position: relative;
    margin: 12px 0;
    padding: 4px 0 0 30px;
    line-height: 1;
    cursor: pointer;
  }
  .radio-parts:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
  }
  .radio-parts:after{
    content: "";
    display: block;
    position: absolute;
    top: -6px;
    left: -6px;
    width: 32px;
    height: 32px;
    background: #ff6565;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease-out;
  }
  .radio-input:checked + .radio-parts:after{
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: #ff6565;
    border-radius: 50%;
    opacity: 1;
  }
  .radio-input:checked + .radio-parts:before {
    border: 1px solid #ff6565;
  }

  .rule_area {
    margin: 30px auto;
    border: 1px solid #e0e0e0;
    h2 {
      padding: 2% 4%;
      background: #647182;
      color: #fff;
      text-align: center;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.4;
    }
    h3 {
      margin: 30px 0 10px;
      padding-bottom: 5px;
      font-size: 16px;
      color: #06b6d4;
      line-height: 1.4;
    }
    h4 {
      margin: 30px 0 10px;
      font-size: 14px;
      line-height: 1.4;
    }
    .inr {
      height: 130px;
      padding: 4%;
      background: #fff;
      overflow-y: scroll;
    }
    .red_wrap {
      margin-top: 6%;
      padding: 0 4% 4%;
      border: 1px solid #06b6d4;
      color: #06b6d4;
    }
    p {
      margin: 0;
      padding: 0;
      font-size: 14px;
      line-height: 1.8;
    }
    .t_right {
      text-align: right;
    }
    .rule_h {
      margin: 30px 0 15px;
      padding-bottom: 10px;
      border-bottom: 1px solid #06b6d4;
      text-align: center;
      font-size: 105%;
    }
    dl {
      font-size: 14px;
      line-height: 1.8;
      dt {
        margin: 15px 0 5px;
        font-weight: 400;
      }
    }
    h4 {
      margin: 20px 0 10px;
      color: #06b6d4;
      font-size: 14px;
    }
    p + P {
      margin-top: 15px;
    }
  }

  .agree_check {
    margin: 40px 0;
    label {
      display: block;
      margin: 1em 0;
    }
    .checkbox-parts {
      display: inline-block;
      position: relative;
      padding: 0.2em 0 0.2em 2em;
      cursor: pointer;
      font-weight: bold;
      line-height: 1.4;
      &::before {
        position: absolute;
        top: 50%;
        translate: 0 -50%;
        left: 0;
        width: 1.4em;
        height: 1.4em;
        content: "";
        border: 1px solid #e0e0e0;
        background: #fff;
      }
      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: -0.3em;
        translate: 0 -50%;
        width: 2em;
        height: 2em;
        background: #06b6d4;
        opacity: 0;
        transition: all 0.3s ease-out;
      }
    }
    .checkbox-input:checked + .checkbox-parts::before {
      border: 1px solid #06b6d4;
    }
    .checkbox-input:checked + .checkbox-parts::after {
      left: 0.2em;
      width: 1em;
      height: 1em;
      opacity: 1;
    }
  }
  a {
    color: #06b6d4;
  }
  .form_btn {
    display: block;
    width: min(100%, 500px);
    margin: 0.7em auto;
    padding: 1em;
    background: #06b6d4;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
  }
  .note {
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
  }
}

.confirm {
  padding: 5em 0;
  background: #f8fafc;
  h2 {
    margin: 0;
  }
  > h3 {
    margin: 4em 6% 0;
    text-align: center;
    color: #06b6d4;
    font-size: 22px;
  }
  dl {
    width: min(100%, 1000px);
    margin: auto;
    padding: min(8%, 50px) min(6%, 50px);
  }
  dt {
    margin: 2.5em 0 1em;
    padding-bottom: 0.7em;
    border-bottom: 1px dotted #06b6d4;
    font-weight: bold;
    span {
      color: #ff5b5b;
    }
  }
  dd {
    line-height: 1.8;
  }
  dd + dd {
    margin-top: 1em;
  }
  .red {
    color: #ff5b5b;
    font-weight: bold;
  }
  .back_btn {
    display: inline-block;
    padding: 2px 10px;
    background: #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #474646;
  }
  .next_btn {
    display: block;
    width: min(90%, 500px);
    margin: 0.7em auto 1.5em;
    padding: 1em;
    background: #06b6d4;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    cursor: pointer;;
  }
  .btn_txt {
    text-align: center;
    line-height: 1.8;
  }
  .prev_btn {
    display: block;
    width: min(60%, 300px);
    margin: 0.7em auto;
    padding: 0.5em 1em;
    background: #cacaca;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    cursor: pointer;
    span {
      font-size: 85%;
    }
  }
}

.thanks {
  padding: 5em 0;
  background: #f8fafc;
  .inr {
    width: min(100%, 750px);
    margin: auto;
    padding: min(8%, 50px) min(6%, 50px);
  }
  p {
    margin: 1.5em 0;
    line-height: 1.8;
  }
  .red {
    color: #ff5b5b;
    font-weight: bold;
    font-size: 120%;
  }
}

.container {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

.pay {
  padding-top: 30%;
  .thanks_t {
    margin: 0 auto 6%;
    line-height: 1.8;
    font-size: 22px;
    text-align: center;
  }
  .inr {
    width: 92%;
    margin: 0 auto 6%;
    padding-bottom: 4%;
    border: 1px solid #06b6d4;
  }
  h3 {
    margin-bottom: 4%;
    padding: 2%;
    background: #06b6d4;
    color: #fff;
    text-align: center;
    line-height: 1.4;
  }
  .ph {
    max-width: 92%;
    margin: auto;
  }
  .credit_btn {
    display: block;
    width: 92%;
    max-width: 400px;
    margin: 0 auto 8%;
    padding: 20px 0;
    background: #6dbb46;
    border-radius: 70px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
  }
  .bb {
    width: 92%;
    margin: 4% auto;
    padding: 6% 4%;
    background: #f8fafc;
    text-align: center;
    line-height: 1.4;
    dt {
      margin-bottom: 2%;
      font-weight: bold;
      color: #06b6d4;
    }
    dd + dt {
      margin-top: 8%;
    }
  }
  p {
    padding: 3% 4%;
    line-height: 1.8;
  }
  @media screen and (min-width:769px) {
    width: 1000px;
    margin: auto;
    padding: 140px 50px;
    .thanks_t {
      margin: 0 auto 70px;
      font-size: 28px;
    }
    h3 {
      font-size: 32px;
    }
    .credit_btn {
      margin: 0 auto 40px;
      font-size: 24px;
    }
    .bb {
      width: 600px;
      padding: 50px;
      margin: 20px auto;
    }
    p {
      text-align: center;
    }
  }
}


/* 実績ページ */
.achieve {
  h2 {
    margin-bottom: 1em;
  }
  .note {
    max-width: 900px;
    margin: 1em auto;
    line-height: 1.8;
    @media screen and (min-width:769px) {
      text-align: center;
    }
  }
  .big {
    font-size: 120%;
  }

  .plan_wrap {
    max-width: 1000px;
    margin: 2em auto;
  }
  dl {
    margin-bottom: 1em;
  }
  dt {
    position: relative;
    padding: 1em;
    background: #b4e9f2;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s linear;
    &::before {
      position: absolute;
      top: 50%;
      right: 1.5em;
      width: 1px;
      height: 1em;
      content: '';
      margin-top: -0.5em;
      background: #000;
      transition: all 0.3s linear;
    }
    &::after {
      position: absolute;
      top: 50%;
      right: 1em;
      width: 1em;
      height: 1px;
      content: '';
      background: #000;
      transition: all 0.3s linear;
    }
    &.active {
      border-radius: 15px 15px 0 0;
    }
    &.active::before {
      rotate: 90deg;
      opacity: 0;
    }
  }
  dd {
    margin: 0 0 min(6%, 30px);
    padding: min(8%, 50px) min(6%, 30px);
    background: #fff;
    border-radius: 0 0 15px 15px;
    border: 1px solid #e0e0e0;
  }
  .lead {
    margin: 1em 0 1.5em;
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
  }
  .lead_s {
    margin: 0 0 2.5em;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.8;
  }
  .price {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    mark {
      font-size: 30px;
    }
  }
  .price_d {
    margin-top: 0.6em;
    text-align: center;
    line-height: 1.8;
    mark {
      background: #fff77e;
      color: #ff4949;
    }
  }
  .tax {
    font-size: 75%;
    font-weight: normal;
  }
  .red {
    color: #ff4949;
  }
  .list {
    margin-top: 1.4em;
    li {
      padding: 0.6em 0 0.6em 2em;
      background: url(../img/s2-cb.png) left center no-repeat;
      background-size: 18px auto;
      font-size: 14px;
      &.sp_none {
        background: none;
      }
    }
  }
  /* タブ */
  .tab-area {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
  }
  .tab {
    width: 48%;
    padding: 0.7em;
    text-align: center;
    border-radius: 10px 10px 0 0;
    border: 1px solid #e0e0e0;
    border-bottom: none;
    background: #f8fafc;
    font-size: 90%;
    line-height: 1.2;
  }
  .tab + .tab {
    margin-left: 0.5em;
  }
  .year {
    position: relative;
    border: 1px solid #22c55e;
    border-bottom: none;
    color: #10ac49;
    &::after {
      position: absolute;
      display: block;
      top: 0;
      left: 50%;
      transform: translate(-50%, -60%);
      content: "オススメ";
      width: 6em;
      padding: 0.1em 0;
      background: #22c55e;
      border-radius: 10px;
      text-align: center;
      color: #fff;
      font-size: 13px;
    }
  }
  .month.active {
    background: #647182;
    color: #fff;
  }
  .year.active {
    background: #22c55e;
    color: #fff;
    &::after {
      border: 1px solid #22c55e;
      background: #f8fafc;
      color: #10ac49;
    }
  }
  .panel {
    display: none;
    padding-top: 2em;
  }
  .panel.active {
    display: block;
  }

  .ah_d {
    margin-top: 2em;
    h3 {
      margin-bottom: 1em;
      padding: 0.7em 1em;
      background: #22c55e;
      color: #fff;
    }
    h4 {
      margin: 1.5em 0 0.5em;
      padding-bottom: 0.3em;
      font-size: 110%;
      color: #22c55e;
      border-bottom: 1px solid #22c55e;
    }
    p {
      line-height: 1.8;
      &.ln {
        padding: 0.9em 0;
        line-height: 1;
      }
    }
    .ah_price {
      font-size: 140%;
      font-weight: bold;
      mark {
        font-size: 140%;
      }
    }
    .by {
      background: #fff600;
    }
  }
}


/* ===================================
フッター
------------------------------------*/
footer {
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  .inr {
    padding: 12% 6% 3%;
  }
  .f_logo {
    font-size: 19px;
    font-weight: bold;
  }
  a {
    color: #97a6ba;
  }
  small {
    display: block;
    color: #97a6ba;
  }
  @media screen and (min-width:830px) {
    .inr {
      width: min(100%, 1400px);
      margin: auto;
      padding: 60px 30px;
    }
    ul {
      display: flex;
    }
    li {
      margin-right: 1.5em;
    }
    small {
      text-align: right;
    }
  }
  @media screen and (max-width:829px) {
    ul {
      margin: 2em 0 5em;
    }
    li {
      margin: 1em 0;
    }
    small {
      text-align: center;
    }
  }
}