/* ==================
使用する色を変数に入れる
===================== */
    :root {
        --yellowColor: #FFCD00;
        --orangeColor: #FF9D00;
        --blueColor: #0072ce;
        --pinkColor: #E5007E;
        --blueBackgroundColor: #e6f4ff;
        --greyColor: #555;
        --font-family-base: 'Noto Sans JP', sans-serif;
        --font-size-base: 16px;
        --font-size-sm: 14px;
        --font-size-lg: 18px;
        /* 見出しのフォントサイズ */
        --font-size-lv1: 40px;
        --font-size-lv2: 32px;
        --font-size-lv3: 24px;
        --line-height-base: 1.6;
        --font-weight-normal: 400;
        --font-weight-bold: 700;
    }
    html, body {
        font-family: var(--font-family-base);
    }
    /* テキスト寄せ */
    .text-center {text-align: center;}
    .text-left {text-align: left;}
    .text-right {text-align: right;}

    .heading-lv2 {font-size: var(--font-size-lv2);}
    .heading-lv3 {font-size: var(--font-size-lv3);}
    .heading-lv4 {font-size: var(--font-size-lg);}
    /* ボーダー付き見出しのスタイル */
    .heading-lv2.lv2-with-border {
        position: relative;
        text-align: center;
        margin-bottom: 3rem;
    }
    .heading-lv2.lv2-with-border::before {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 7px;
        border-radius: 3px;
        background: var(--blueColor);
    }

    .colorOrange {color: var(--orangeColor);}
    .colorBlue {color: var(--blueColor);}

    /* Display Grid */
    .d-grid {
        display: grid;
        gap: 2rem;
    }

    .grid-2 {grid-template-columns: repeat(2, 1fr);}
    .grid-3 {grid-template-columns: repeat(3, 1fr);}

    @media screen and (max-width: 784px) {
        .grid-2 {grid-template-columns: repeat(1, 1fr);}
        .grid-3 {grid-template-columns: repeat(1, 1fr);}
        .heading-lv2 {font-size: min(25px, 6vw);}
    }

    /* 余白（マージン） */
    .mt-4 {margin-top: 4px;}
    .mt-6 {margin-top: 6px;}
    .mt-8 {margin-top: 8px;}
    .mt-10 {margin-top: 10px;}
    .mt-12 {margin-top: 12px;}
    .mt-16 {margin-top: 16px;}
    .mt-24 {margin-top: 24px;}
    .mt-36 {margin-top: 36px;}
    .mt-48 {margin-top: 48px;}
    .mt-60 {margin-top: 60px;}

    .mb-4 {margin-bottom: 4px;}
    .mb-6 {margin-bottom: 6px;}
    .mb-8 {margin-bottom: 8px;}
    .mb-10 {margin-bottom: 10px;}
    .mb-12 {margin-bottom: 12px;}
    .mb-16 {margin-bottom: 16px;}
    .mb-24 {margin-bottom: 24px;}

    .pt-80 {padding-top: 80px;}
    .pt-100 {padding-top: 100px;}

    /* ホバー */
    body.devicePC a:hover {
        opacity: 90%!important;
        color: #fff!important;
    }

    .pc_only {display: block;}
    .sp_only {display: none;}
    @media screen and (max-width: 784px) {
        .pc_only {display: none;}
        .sp_only {display: block;}
    }

    .titleArea {
        text-align: center;
        margin-bottom: 28px;
    }

    h2.titleWithIcon {
        display: inline-block;
        position: relative;
    }
    h2.titleWithIcon::before {
        content: "";
        position: absolute;
        background: url(/wp-content/themes/hismobile/images/campaign/first_sp/title_icon_black_left.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 52px;
        height: 48px;
        left: -57px;
        top: 0;
    }
    .titleWithIcon::after {
        content: "";
        position: absolute;
        background: url(/wp-content/themes/hismobile/images/campaign/first_sp/title_icon_black_right.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 52px;
        height: 48px;
        right: -57px;
        top: 0;
    }
    @media screen and (max-width: 784px) {
        h2.titleWithIcon::before {
            width: 8vw;
            height: 9vw;
            left: -10vw;
            top: 0;
        }
        .titleWithIcon::after {
            width: 8vw;
            height: 9vw;
            right: -10vw;
            top: 0;
        }
    }

/* =================
MV
==================== */
@media screen and (max-width: 784px) {
    #mv {
    height: 100%;
    margin-bottom: 0!important;
}
}
#mv h1 {
    height: 100%;
}
#mv picture {
    display: block;
    height: 100%;
}
#mv img {
    height: 100%;
    object-fit: contain;
}
/* =========================
開催期間
============================*/
#schedule {
    background: var(--blueColor);
    color: #ffffff;
    padding: 30px 0;
}

#schedule h3 {
    font-size: 30px;
}

#schedule h3 span {
    position: relative;
}

#schedule h3 span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -62px;
    width: 50px;
    height: 3px;
    background: #fff;
    transform: translateY(-50%);
}

#schedule h3 span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -62px;
    width: 50px;
    height: 3px;
    background: #fff;
    transform: translateY(-50%);
}

#schedule .inner > p {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
}
#schedule .inner > p span.withUnderline {
    background: linear-gradient(transparent 70%, var(--yellowColor) 70%);
}
#schedule .inner > p .largeText {
    font-size: 30px;
}
.scheduleBtn p {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: var(--font-weight-bold);
}
.scheduleBtn p::before {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/hismobile/images/campaign/first_sp/title_icon_white_left.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
    left: -38px;
    top: 0;
}
.scheduleBtn p::after {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/hismobile/images/campaign/first_sp/title_icon_white_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
    right: -38px;
    top: 0;
}
.scheduleBtn {
    position: fixed;
    bottom: -100px;
    left: 0;
    background: rgba(0, 0, 0, .7);
    margin: 0;
    padding: 18px 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: bottom 0.3s ease;
}
.scheduleBtn.show {
    bottom: 0;
    z-index: 11;
}
.scheduleBtn a {
    display: flex;
    background: var(--pinkColor);
    color: #fff;
    width: 365px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 65px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    border: 1px solid var(--pinkColor);
}
.scheduleBtn a:last-of-type {
    background: #fff;
    color: var(--pinkColor);
}
.scheduleBtn a:last-of-type:hover {
    color: var(--pinkColor)!important;
}
@media screen and (max-width: 784px) {
    #schedule h3 {
        font-size: 24px;
    }
    #schedule h3 span {
        position: relative;
    }
    #schedule h3 span::before {
        left: -7vw;
        width: 5vw;
    }
    #schedule h3 span::after {
        right: -7vw;
        width: 5vw;
    }
    #schedule .inner > p {
        font-size: 18px;
    }
    #schedule .inner > p .largeText {
        font-size: 27px;
    }
    .scheduleBtn  {
        padding: 3%;
    }
    .scheduleBtn p {
        font-size: 18px;
    }
    .scheduleBtn p::before {
        width: 33px;
        height: 33px;
        left: -38px;
        bottom: 0;
        top: unset;
    }
    .scheduleBtn p::after {
        width: 33px;
        height: 33px;
        right: -38px;
        bottom: 0;
        top: unset;
    }
    .scheduleBtn a::before {
        right: 5%;
        font-size: 16px;
    }
    .scheduleBtn a {
        color: #fff;
        max-width: 365px;
        width: 100%;
        height: 65px;
        line-height: unset;
        padding: 0;
        margin: 0;
    }
}

/* =========================
18歳未満の方限定
============================*/
#age .ageContentsBox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}
#age .ageContentsBoxImage {
    width: 30%;
}
#age .ageContentsBoxText {
    width: 70%;
    margin-top: 0;
    font-size: 28px;
    font-weight: bold;
}
#age .largeText {
    font-weight: var(--font-weight-bold);
    font-size: 38px;
}
#age .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 22px solid transparent;
  border-left: 22px solid transparent;
  border-top: 22px solid var(--blueColor);
  border-bottom: 0;
  margin: 16px auto 10px;
}
@media screen and (max-width: 940px) {
    #age .ageContentsBoxImage {
        width: 22%;
    }
    #age .ageContentsBoxText {
        width: 78%;
        font-size: 24px;
    }
    #age .largeText {
        font-size: 34px;
    }
}

@media screen and (max-width: 784px) {
    #age .ageContentsBox {
        flex-direction: column;
        gap: 2rem;
    }
    #age .ageContentsBoxImage {
        max-width: 240px;
        width: 75%;
    }
    #age .ageContentsBoxText {
        width: 100%;
        font-size: 20px;
        text-align: center;
    }
    #age .largeText {
        font-size: 28px;
    }
}

/* =========================
お申し込みは簡単
============================*/
.stepContents {
    border: 3px solid var(--blueColor);
    padding: 72px 22px 32px;
    margin-top: 88px;
}
.stepContents ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}
.stepContents li {
    position: relative;
}
.stepContents li:not(:last-of-type):before {
    position: absolute;
    content: "";
    background: url(/wp-content/themes/hismobile/images/campaign/first_sp/step_icon_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 47px;
    height: 47px;
    top: 50%;
    right: -47px;
    transform: translateY(-50%);
}
.stepContentsNumber {
    position: absolute;
    content: "";
    top: -128px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blueColor);
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    line-height: 1;
    width: 100px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.stepContentsText {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    min-height: 55px;
}
.stepBtn a {
    display: block;
    background: var(--blueColor);
    color: #fff;
    max-width: 400px;
    width: 100%;
    border-radius: 100px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin: 0 auto;
    position: relative;
}
.stepBtn a::before,
.stepBtn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 3px;
  height: 12px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% calc(100% - 1.5px);
  transform: translateY(-50%);
}
.stepBtn a::before {
  transform: translateY(-50%) rotate(45deg);
}
.stepBtn a::after {
  transform: translateY(-50%) rotate(-45deg);
}
.stepContentsButton {
    width: 82%;
    margin: 25px auto 0;
}
.stepContentsButton a {
    display: block;
    background: var(--blueColor);
    color: #fff;
    text-align: center;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    border-radius: 100px;
    position: relative;
}
.stepContentsButton a::before,
.stepContentsButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
  transform: translateY(-50%);
}
.stepContentsButton a::before {
  transform: rotate(45deg);
}
.stepContentsButton a::after {
  transform: rotate(-45deg);
}
.stepContentsNote {
    font-size: 14px;
    margin-top: 25px;
}
@media screen and (max-width: 784px) {
    .stepContents {
        border: none;
        padding: 72px 0 32px;
        margin-top: 0;
    }
    .stepContents ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 42px;
    }
    .stepContents li {
        border: 3px solid var(--blueColor);
        padding: 15% 3% 6%;
        max-width: 330px;
        margin: 0 auto;
    }

    .stepContents li:not(:last-of-type) {
        margin-bottom: 30%;
    }

    .stepContentsNumber {
        top: -12vw;
        left: 50%;
        font-size: 6vw;
        width: 22vw;
    }

    .stepContents li:not(:last-of-type):before {
        width: 47px;
        height: 47px;
        top: unset;
        bottom: -27%;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .stepContentsImage {
        width: 65%;
        margin: 7% auto 5%;
    } 

    .stepContentsText {
        min-height: unset;
    }

    .stepBtn a {
        height: 57px;
        line-height: 57px;
        font-size: 16px;
    }
}

/* =========================
対象プラン
============================*/
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Arial", sans-serif;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.price-table.pc_only {
  display: table!important;
}
.logo img {
  width: 20.4375rem;
  display: block;
  margin: 0 auto;
}
#plan .labels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.875rem;
}
#plan .labels .label_large {
  font-size: 1.875rem;
  line-height: 2.5rem;
  padding: 0 0.875rem;
  border-radius: 1.375rem;
}
#plan .labels .label_orange {
  background: #FF860D;
  color: #fff;
}
#plan .labels .label_blue {
  border: 0.125rem solid var(--blueColor);
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  color: var(--blueColor);
}
.price-table th,
.price-table td {
  border: 1px solid #8F7C3A;
  padding: 1% 0;
  vertical-align: middle;
}
.price-table th.dottedBorder,
.price-table td.dottedBorder {
  border-right: 2px dashed #8F7C3A;
}
.planBtn a {
    display: block;
    background: var(--pinkColor);
    color: #fff;
    max-width: 400px;
    width: 100%;
    border-radius: 100px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin: 0 auto;
    position: relative;
}
.planBtn a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 26px;
    display: block;
    width: 11px;
    height: 17px;
    background-color: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    transform: translateY(-50%);
}
  @media screen and (max-width: 784px) {
    .dashedBorder td {
      border-bottom: none;
      position: relative;
    }
    .topBorderNone td {
      border-top: none;
    }
    .dashedBorder td::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 1px;
      width: 100%;
      background: repeating-linear-gradient(
        to right,
        #8F7C3A,
        #8F7C3A 4px,
        transparent 4px,
        transparent 8px
      );
      pointer-events: none;
    }

    .planBtn a {
        height: 57px;
        line-height: 57px;
        font-size: 16px;
    }
  }

.price-table thead th {
  background-color: var(--blueColor);
  color: #fff;
  font-weight: bold;
}
.price-table thead th.col-label {
  color: #fff;
}
.price-table thead th:not(.col-label), 
.price-table tbody .price td {
  font-size: min(20px, 1.4vw);
  box-sizing: border-box;
}
.price-table tbody .price td:nth-of-type(6), 
.price-table tbody .price td:last-of-type {
  padding-top: 28px;
}
.price-table .col-label {
  font-weight: bold;
  white-space: nowrap;
  color: #0269AC;
}
.price-table .opt {
  position: relative;
  padding-left: 35px;
}
.price-table .opt span {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF429;
  color: #232323;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
  height: 406%;
  width: 30px;
  text-align: center;
  border-right: 1px solid #8F7C3A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
}
.price-table td .small-el {
  display: block;
  font-size: 14px;
  color: #555;
}
.price-table .price {
  font-weight: bold;
  position: relative;
}
.price-table tbody tr:nth-of-type(2),
.price-table tbody tr:nth-of-type(3) {
  background: #ECF6FA;
}
.price-table tbody tr:nth-of-type(4),
.price-table tbody tr:nth-of-type(5) {
  background: #FFFAD9;
}
.price-table .houdaiArea {
  position: relative;
}
.price-table .price .small-el {
  position: absolute;
  width: 200%;
  background: #FFFAD9;
  border-bottom: 1px solid #8F7C3A;
  top: 0;
  right: 0;
  font-size: 16px;
}
.note {
  font-size: 13px;
  color: #666;
  text-align: right;
  margin-top: -10px;
}
.txtDataBold {
  font-size: 42px;
}
.txtPriceBold {
  font-size: min(42px, 2.8vw);
}
@media screen and (max-width: 784px) {
    .price-table.pc_only {
        display: none !important;
    }
    .price-table.sp_only {
        overflow: hidden;
    }
    .price-table.pc_only {
    display: none!important;
  }
  .price-table.sp_only {
    display: table!important;
    margin-bottom: 11%;
  }
  .price-table .opt span {
    height: 409%;
    bottom: 0;
    top: auto;
    background: #FFFAD9;
  }
  .price-table .optionRow.colorArea,
  .price-table tbody .optionRow.colorArea td:first-of-type {
    background: #FFFAD9;
  }
  /* SPのデータ別の料金表 */
  .price-table.sp_only td, 
  .price-table.sp_only th {
    padding: 1%;
  }
  .price-table.sp_only .optionRow th {
    padding-left: 7%;
    font-size: min(16px, 3vw);
  }
  .price-table.sp_only td {
    position: relative;
  }
  .price-table.sp_only td .small-el {
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFAD9;
    color: #232323;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 1;
    height: 200%;
    width: 30px;
    font-size: min(14px, 3vw);
    text-align: center;
    border-right: 1px solid #8F7C3A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
  }

#plan .labels .label_orange {
    background: #FF860D;
    color: #fff;
    font-size: 4vw;
    padding: 0 2.3vw;
    border-radius: 3vw;
    line-height: 5.5vw;
}

#plan .labels .label_blue {
    color: var(--blueColor);
    border: 0.0625rem solid var(--blueColor);
    font-size: 3vw;
    line-height: 4vw;
    padding: 0 2vw;
    border-radius: 1.2vw;
}
.price-table tbody td:first-of-type {
  background: var(--blueColor);
  color: #fff;
  font-weight: bold;
}
.price-table tbody .optionRow td:first-of-type  {
  background: #fff;
  color: #333;
  font-size: min(16px, 2.7vw);
}
.price-table thead th:last-of-type {
  background: #fff;
  color: #0269AC;
}
.txtPriceBold {
    font-size: min(33px, 7vw);
    font-weight: bold;
}
.txtDataBold {
    font-size: min(33px, 7vw);
    font-weight: bold;
}

.price-table thead th:not(.col-label), .price-table tbody .price td {
  font-size: 16px;
}
.price-table tbody tr:nth-of-type(2), .price-table tbody tr:nth-of-type(3),
.price-table tbody tr:nth-of-type(4), .price-table tbody tr:nth-of-type(5) {
  background: #fff;
}
}
/* ========================
スマホライフを楽しもう！
===========================*/
 #enjoy .row .box {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 2px solid var(--blueColor);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#enjoy .row .col p {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    text-align: center;
}

@media screen and (max-width: 784px) {
    #enjoy .row .box {
        max-width: 330px;
        margin: 0 auto;
    }
}

/* ========================
キャンペーン内容
===========================*/
#campaign .campaignContents > p {
    font-size: 24px;
}

#campaign .campaignContents > p span {
    font-size: 40px;
}
.campaignContentsCard {
    background: var(--blueColor);
    color: #fff;
    display: flex;
}
.campaignContentsNote li {
    position: relative;
    padding-left: 1.25em;
    text-indent: 0;
}
.campaignContentsNote li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
}
@media screen and (max-width: 784px) {
    #campaign .campaignContents > p {
        font-size: 20px;
    }
    #campaign .campaignContents > p span {
        font-size: 32px;
    }
    #campaign .campaignContents img {
        margin-top: 1rem;
    }
}

/* =======================
フォームエリア
========================== */
.apply_form-container {
    width: 100%;
    max-width: 100%;
}
#applyForm .with-triangle {
    position: relative;
}
.form-banner {
  position: relative;
  background:  #ff2a2a; 
  color: #fff;
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Noto Sans JP', sans-serif;
}
.form-banner::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid #ff2a2a;
}
.form-banner-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
    @media screen and (max-width: 784px) {
        h2 {
            font-size: 25px;
        }
        .order_step ul {
            display: block;
        }
        .order_step ul li {
            width: 100%;
            font-size: 18px;
        }
        .order_step ul li:not(:last-of-type) {
            margin-bottom: 70px;
        }
        .order_step ul li:not(:last-of-type)::before {
            content: "";
            position: absolute;
            background: url(/wp-content/themes/hismobile/images/campaign/audiobook/arrow.png);
            top: 102%;
            right: 46%;
            width: 26px;
            height: 81px;
            background-size: contain;
            background-repeat: no-repeat;
            transform: rotate(90deg) translateX(-50%);
        }
        .benefits_box-area {
            display: block;
        }
        .benefit_box {
            width: 100%;
        }
        .benefit_box:first-of-type {
            margin-bottom: 25px;
        }
        #applyForm .with-triangle::before {
            bottom: -4vw;
            left: 50%;
            border-style: solid;
            border-right: 25vw solid transparent;
            border-left: 25vw solid transparent;
            border-top: 5vw solid red;
            border-bottom: 0;
        }
    }

/* ========================
フィルタリングサービス
===========================*/
.filteringBox {
    border: 1px solid var(--blueColor);
}
.filteringBox h3 {
    color: #ffffff;
    background: var(--blueColor);
    padding: 16px 10px;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
}
.filteringBox h3 img {
    width: 27px;
    vertical-align: middle;
    margin-right: 6px;
}
.filteringBox p {
    padding: 16px 22px;
}
.filteringBtn a {
    display: block;
    background: var(--blueColor);
    color: #fff;
    max-width: 520px;
    width: 100%;
    border-radius: 100px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    margin: 0 auto;
    position: relative;
}

.filteringBtn a::before {
    content: "▶";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 16px;
}

@media screen and (max-width: 784px) {
    .filteringBox h3 {
        font-size: 20px;
    }
    .filteringBox h3 img {
        width: 22px;
        vertical-align: sub;
    }
    .filteringBtn a {
        max-width: 520px;
        width: 90%;
        height: auto;
        line-height: 1.4;
        font-size: 16px;
        padding: 10px 0;
    }
    .filteringBtn a::before {
        content: "▶";
        position: absolute;
        top: 50%;
        right: 22px;
        transform: translateY(-50%);
        color: #fff;
        font-size: 16px;
    }
}

    /* ========================
    キャンペーンの概要
    ===========================*/
    .summary_row {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #cccccc;
    padding: 16px 0;
    }
    .summary_row:last-of-type {
        border-bottom: 1px solid #cccccc;
    }
    .summary_row:first-child {
    border-top: none;
    }
    .summary_row .l-space {
        width: 120px;
        font-weight: var(--font-weight-bold);
    }
    .summary_row ul {
        width: calc(100% - 120px);
    }
    .summary_row ul li {
        position: relative;
    }

    .summary_row ul li:not(:first-of-type) {
        margin-top: 10px;
    }

    /* レスポンシブ */
    @media (max-width: 784px) {
        .summary_row {
            flex-direction: column;
        }
        .summary_row .l-space {
            width: 100%;
            margin-bottom: 4px;
        }
        .summary_row p:not(.l-space),
        .summary_row ul {
            width: 100%;
        }
    }
    .formarea{
        margin: 60px auto;
        padding: 20px 30px;
        font-size: 26px;
    }
 /* 注意事項*/
 .attention_list li{
    text-indent: -1em;
    padding-left: 1em;
 }
 .summary_row li.asterisk {
    position: relative;
    padding-left: 1.25em;
    text-indent: 0;
 }
 .summary_row li.asterisk::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
 }
/* SP版 */
@media screen and (max-width: 784px){
    .discount_area_1{
        grid-template-columns: unset;
    }
    ._r_title{
        font-size: 24px;
    }
    .discount_ratio{
        font-size: 50px;
    }
    ._r_discount{
        font-size: 22px;
    }
    .formarea{
        margin: 34px auto;
        font-size: 18px;
        padding: 10px;
    }
    .ctabutton{
        font-size: 24px;
    }
    .howto_order_sp li{
        font-weight: 700;
        margin: 25px 0 24px;
        position: relative;
    }
    .howto_order_sp li:not(:last-child)::after{
        content: "\25BC";
        position: absolute;
        font-size: 18px;
        transition: bottom .3s;
        rotate: unset;
        transform: translate(-50%, -50%);
        top: 2.25em;
        left: 50%;
        }
        .fs18_sp{
            font-size: 18px;
        }
}

/* キャンペーンバナーエリア */
.campaign7thBanners {
    margin-top: 21px;
}
.campaign7thBanner + .campaign7thBanner {
    margin-top: 5px;
}
.campaign7thBanners img {
    cursor: pointer;
    transition: all .3s;
}
.campaign7thBanners img:hover {
    opacity: .7;
}
.campaign {
    padding: 40px 0 50px;
    overflow: hidden;
}
.inner.eventBanner {
    max-width: 750px;
}

.inner.eventBanner img {
    height: auto!important;
}
    .js-campaign {
      position: relative;
    }
    .campaignCntItem img {
      height: 200px;
    }
    .js-campaign.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -30px;
    }
    .js-campaign .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    }
    .js-campaign .swiper-pagination-bullet-active {
    background: #00b4e6;
    }
    .campaignCntItem img:hover {
    opacity: .7;
    }

    /* ==================
    アンカーリンクのスタイル
    ===================== */
    .anchorArea {
        margin: 3rem 0 0;
    }
    .navigation {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .navigationItem {
        width: 33.3333333333%;
        max-width: 270px;
    }
    .navigationItem a {
        position: relative;
        display: block;
        line-height: 41px;
        border: 2px solid var(--blueColor);
        background-color: #fff;
        color: var(--blueColor);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }
    .navigationItem a:hover {
        background: var(--blueColor);
        color: #fff!important;
    }
    .navigationItem a::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        width: 20px;
        height: 12px;
        background-color: var(--blueColor);
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        transform: translateY(-50%);
        transition: all .3s;
    }
    .navigationItem a:hover::after {
        background: #ffffff;
    } 
    @media screen and (max-width: 784px) {
        .navigationItem {
            width: 48%;
            max-width: unset;
        }
        .navigationItem a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            line-height: 1.26;
            font-size: min(15px, 3.44vw);
        }
        .navigationItem a::after {
            right: 3%;
            width: 3vw;
            height: 2vw;
            background-color: var(--blueColor);
        }
    }
    /* 4つのアンカーメニュー */
    @media screen and (max-width: 600px) {
        .navigation.anchorRow {
            display: flex;
            justify-content: space-between;
            gap: 26px 2vw;
            flex-wrap: wrap;
        }
        .navigation.anchorRow .navigationItem {
            width: 48%;
            box-sizing: border-box;
            max-width: none;
        }
    }

/* ---------------------------
紹介割
------------------------------*/
.Introductioncp {
    --font-ja: 'Noto Sans JP', sans-serif;

    font-family: var(--font-ja);
    color: #000;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .04em;
}

.IntroductioncpBgBlue {
    background-color: #EAF9FF;
}

.IntroductioncpMv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    background-color: #00BAFF;
    background-image: url(/img/lp_introduction/bg_mv_left.png), url(/img/lp_introduction/bg_mv_right.png);
    background-size: auto 100%;
    background-position: left center, right center;
    background-repeat: no-repeat;
    text-align: center;
}
.IntroductioncpMvMain img {
    width: min(816px, 85vw);
}
.IntroductioncpMvImg {
    position: absolute;
    bottom: 0;
    width: auto;
    height: 250px;
}
.IntroductioncpMvImg img {
    width: auto;
    height: 100%;
}
.IntroductioncpMvImg01 {
    right: calc(50% + 375px);
}
.IntroductioncpMvImg02 {
    left: calc(50% + 365px);
}
@media screen and (max-width:1580px) {
    .IntroductioncpMvImg {
        height: 12vw;
    }
    .IntroductioncpMvImg01 {
        right: auto;
        left: 0;
    }
    .IntroductioncpMvImg02 {
        left: auto;
        right: 0;
    }
}

.IntroductioncpLead {
    padding-block: 75px 90px;
    background-color: #D8F4FF;
    background-size: min(1366px, 100vw) auto;
    background-position: 61px center;
    background-repeat: no-repeat;
    text-align: center;
}
.IntroductioncpLeadTitle img {
    width: 696px;
}
.IntroductioncpLeadText {
    line-height: 1.8;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
}
.IntroductioncpLeadFrom {
    display: grid;
    grid-template-columns: 231px 1fr;
    grid-template-rows: repeat(2, min-content);
    align-items: center;
    margin-top: 50px;
    padding: 14px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background: #fff;
}
.IntroductioncpLeadFromImg {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
.IntroductioncpLeadFromLabel {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    align-self: flex-end;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: center;
    gap: 5px;
    color: #0062B9;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0;
}
.IntroductioncpLeadFromLabel img {
    flex-shrink: 0;
    width: 211px;
}
.IntroductioncpLeadFromText {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    align-self: flex-start;
    margin-top: 5px;
    font-size: 16px;
}
.IntroductioncpLeadArrow {
    display: grid;
    grid-template-columns: 23px 459px 23px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 22px;
}
.IntroductioncpLeadArrowText {
    line-height: 46px;
    border-radius: 8px;
    background-color: #B7E6FF;
    font-size: 18px;
    font-weight: 700;
}
.IntroductioncpLeadTo {
    margin-top: 19px;
}
.IntroductioncpLeadToCnts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.IntroductioncpLeadToCnt {
    position: relative;
    padding: 100px 30px 18px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background-color: #fff;
}
.IntroductioncpLeadToTitle {
    position: absolute;
    top: 21px;
    left: -9px;
    width: calc(100% + 18px);
    padding: 7px;
    border-top: 6px solid #FFF500;
    border-bottom: 6px solid #FFF500;
    background-color: #007DBF;
    color: #FFF500;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .025em;
}
.IntroductioncpLeadToTitle::before,
.IntroductioncpLeadToTitle::after {
    content: '';
    position: absolute;
    bottom: -14px;
    width: 9px;
    height: 8px;
    background-color: #B0A700;
}
.IntroductioncpLeadToTitle::before {
    left: 0;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.IntroductioncpLeadToTitle::after {
    right: 0;
    clip-path: polygon(100% 0, 0 0, 0 100%);
}
.IntroductioncpLeadToTitle img {
    position: absolute;
    top: -50px;
    left: 17px;
    width: 95px;
}
.IntroductioncpLeadToLabel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    color: #0062B9;
    font-size: 20px;
    font-weight: 700;
}
.IntroductioncpLeadToLabel::before,
.IntroductioncpLeadToLabel::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background-color: #0062B9;
}
.IntroductioncpLeadToText {
    display: flex;
    align-items: end;
    width: fit-content;
    margin: 3px auto 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #0062B9;
    color: #0062B9;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0;
}
.IntroductioncpLeadToText02 img {
    width: 108px;
}
.IntroductioncpLeadToText03 img {
    width: 239px;
}
.IntroductioncpLeadToCntNote {
    margin-top: 5px;
    letter-spacing: 0;
}
.IntroductioncpLeadToNote {
    margin-top: 19px;
    text-align: left;
}
.IntroductioncpLead .IntroductioncpBtn {
    margin-top: 55px;
}

.IntroductioncpBtn {
    width: 420px;
    margin-inline: auto;
}
.IntroductioncpBtn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 65px;
    border-radius: 33px;
    background-color: #FF0189;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .03em;
    transition: opacity .3s;
}
.IntroductioncpBtn a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 26px;
    display: block;
    width: 11px;
    height: 17px;
    background-color: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    transform: translateY(-50%);
}
.IntroductioncpBtn a:hover {
    opacity: .7;
}
body.devicePC .IntroductioncpBtn a:hover {
    color: #fff;
    opacity: .7;
}
.IntroductioncpBtn2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}
.IntroductioncpBtn2col a {
    width: 100%;
    padding-inline: 30px 50px;
}
.IntroductioncpTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0062B9;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0;
}
.IntroductioncpTitle img {
    width: 41px;
}

.IntroductioncpFlow {
    padding-block: 90px;
}
.IntroductioncpFlowCnts {
    display: grid;
    grid-template-columns: 127px 1fr;
    gap: 20px 0;
    margin-top: 32px;
}
.IntroductioncpFlowCntNum {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    background-color: #00589F;
    text-align: center;
}
.IntroductioncpFlowCntNum img {
    width: 45px;
}
.IntroductioncpFlowCntTexts {
    padding: 20px 30px;
    border-radius: 0 10px 10px 0;
    background-color: #fff;
}
.IntroductioncpFlowCntLabel {
    padding-bottom: 5px;
    border-bottom: 1px solid #C4C4C4;
    color: #0062B9;
    font-size: 18px;
    font-weight: 700;
}
.IntroductioncpFlowCntText {
    line-height: 1.49;
    margin-top: 8px;
}
.IntroductioncpFlowCntTexts .IntroductioncpBtn {
    margin: 10px 0 0;
}
.IntroductioncpFlowCntTexts .IntroductioncpBtn a {
    width: 383px;
    height: 48px;
    font-size: 16px;
}
.IntroductioncpForm {
    /* margin-top: 90px; */
    padding-top: 90px;
    background: #fff;
}
.IntroductioncpOverview {
    /* margin-top: 162px; */
    padding-top: 192px;
    padding-bottom: 90px;
    /* padding-block: 90px; */
}
.IntroductioncpOverviewTableWrap {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.IntroductioncpOverviewTable {
    width: 100%;
    line-height: 1.49;
    margin-top: 50px;
    font-size: 15px;
    letter-spacing: .03em;
}
.IntroductioncpOverviewTable th {
    padding: 25px 48px;
    background-color: #D0F1FF;
    color: #014F9D;
    white-space: nowrap;
    text-align: left;
}
.IntroductioncpOverviewTable tr + tr th {
    border-top: 1px solid #fff;
}
.IntroductioncpOverviewTable td {
    padding: 25px 48px;
    background-color: #fff;
    font-weight: 500;
}
.IntroductioncpOverviewTable tr + tr td {
    border-top: 1px solid #BFECFF;
}
.IntroductioncpOverviewTableNotes:not(:last-child) {
    margin-bottom: 14px;
}
.IntroductioncpOverviewTableNote,
.IntroductioncpOverviewTableAttention {
    display: grid;
    grid-template-columns: min-content 1fr;
}
.IntroductioncpOverviewTableNote a {
    color: #0062B9;
    text-decoration: underline;
}
.IntroductioncpOverviewTableNote a:hover {
    text-decoration: none;
}
.IntroductioncpOverviewTableNote::before,
.IntroductioncpOverviewTableAttention::before {
    content: '・';
}
.IntroductioncpOverview .IntroductioncpBtn {
    margin-top: 110px;
}

/* SP */
@media screen and (max-width:784px) {
    .IntroductioncpMv {
        display: block;
        height: auto;
        background: none;
    }
    .IntroductioncpMvMain img {
        width: 100%;
    }
    .IntroductioncpMvImg {
        display: none;
    }
    .IntroductioncpLead {
        padding-block: 38px 60px;
        background-size: 100% auto;
        background-position: top center;
    }
    .IntroductioncpLeadTitle img {
        width: 100%;
    }
    .IntroductioncpLeadText {
        line-height: 1.6;
        text-align: left;
    }
    .IntroductioncpLeadFrom {
        grid-template-columns: 1fr;
        grid-template-rows: revert;
        padding: 18px 18px 20px;
        border-radius: 5px;
    }
    .IntroductioncpLeadFromImg {
        grid-row: 1 / 2;
    }
    .IntroductioncpLeadFromLabel {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        font-size: 21px;
    }
    .IntroductioncpLeadFromLabel img {
        width: 208px;
    }
    .IntroductioncpLeadFromText {
        grid-row: 3 / 4;
        grid-column: 1 / 2;
        margin-top: 15px;
        font-size: 15px;
    }
    .IntroductioncpLeadArrow {
        display: block;
        padding-block: 28px 39px;
        background-image: url(/img/lp_introduction/arrow_lead.png);
        background-repeat: no-repeat;
        background-size: 22px auto;
        background-position: center center;
    }
    .IntroductioncpLeadArrowImg {
        display: none;
    }
    .IntroductioncpLeadArrowText {
        line-height: 37px;
        border-radius: 4px;
    }
    .IntroductioncpLeadTo {
        margin-top: 12px;
    }
    .IntroductioncpLeadToCnts {
        grid-template-columns: 1fr;
        gap: 43px;
        padding: 37px 18px 15px;
        border-radius: 4px 4px 0 0;
        background-color: #B7E6FF;
    }
    .IntroductioncpLeadToCnt {
        padding: 77px 18px 15px;
        border-radius: 8px;
    }
    .IntroductioncpLeadToTitle {
        top: 19px;
        padding: 5px;
        border-top: 5px solid #FFF500;
        border-bottom: 5px solid #FFF500;
        font-size: 18px;
    }
    .IntroductioncpLeadToTitle::before,
    .IntroductioncpLeadToTitle::after {
        bottom: -13px;
    }
    .IntroductioncpLeadToTitle img {
        top: -55px;
        left: -8px;
        width: 86px;
    }
    .IntroductioncpLeadToLabel {
        margin-top: 10px;
        font-size: 15px;
    }
    .IntroductioncpLeadToLabel::before,
    .IntroductioncpLeadToLabel::after {
        width: 25px;
    }
    .IntroductioncpLeadToText {
        padding-bottom: 3px;
        font-size: 24px;
    }
    .IntroductioncpLeadToText02 img {
        width: 93px;
    }
    .IntroductioncpLeadToText03 img {
        width: 203px;
    }
    .IntroductioncpLeadToCntNote {
        margin-top: 5px;
        letter-spacing: 0;
    }
    .IntroductioncpLeadToNote {
        margin-top: 0;
        padding: 0 18px 20px;
        background-color: #B7E6FF;
    }
    .IntroductioncpLead .IntroductioncpBtn {
        margin-top: 60px;
    }

    .IntroductioncpBtn {
        width: 100%;
    }
    .IntroductioncpBtn a {
        height: 53px;
        font-size: 18px;
    }
    .IntroductioncpBtn2col {
        grid-template-columns: 1fr;
    }
    .IntroductioncpBtn2col a {
        padding-inline: 20px 50px;
        font-size: 16px;
    }

    .IntroductioncpTitle {
        gap: 6px;
        line-height: 1.2;
        font-size: 25px;
    }
    .IntroductioncpTitle img {
        width: 33px;
    }

    .IntroductioncpFlow {
        padding-block: 60px;
    }
    .IntroductioncpFlowCnts {
        grid-template-columns: 64px 1fr;
    }
    .IntroductioncpFlowCntNum {
        border-radius: 5px 0 0 5px;
    }
    .IntroductioncpFlowCntNum img {
        width: 38px;
    }
    .IntroductioncpFlowCntTexts {
        padding: 20px 18px 20px 15px;
        border-radius: 0 5px 5px 0;
    }
    .IntroductioncpFlowCntLabel {
        line-height: 1.4;
        padding-bottom: 8px;
    }
    .IntroductioncpFlowCntText {
        line-height: 1.4;
    }
    .IntroductioncpFlowCntTexts .IntroductioncpBtn a {
        width: 100%;
        font-size: 14px;
        padding-inline: 20px 40px;
    }

    .IntroductioncpForm {
        margin-top: 60px;
    }

    .IntroductioncpOverview {
        margin-top: 156px;
        padding-block: 60px;
        padding-bottom: 120px;
    }
    .IntroductioncpOverviewTable {
        display: block;
        line-height: 1.4;
        margin-top: 25px;
    }
    .IntroductioncpOverviewTable tr,
    .IntroductioncpOverviewTable th,
    .IntroductioncpOverviewTable td {
        display: block;
    }
    .IntroductioncpOverviewTable th {
        padding: 12px 18px;
    }
    .IntroductioncpOverviewTable tr + tr th {
        border-top: none;
    }
    .IntroductioncpOverviewTable td {
        padding: 12px 18px;
    }
    .IntroductioncpOverviewTable tr + tr td {
        border-top: none;
    }
    .IntroductioncpOverviewTableNotes:not(:last-child) {
        margin-bottom: 12px;
    }
    .IntroductioncpOverview .IntroductioncpBtn {
        margin-top: 50px;
    }
}

/* キャンペーンバナーエリア */
.campaign7thBanners {
    margin-top: 21px;
    margin-bottom: 21px;
}
.campaign7thBanner + .campaign7thBanner {
    margin-top: 5px;
}

.campaign7thBanners img {
    cursor: pointer;
    transition: all .3s;
}

.campaign7thBanners img:hover {
    opacity: .7;
}

/* バナースライダー */
.campaign {
    padding: 40px 0 50px;
    overflow: hidden;
}
.inner.eventBanner {
    max-width: 750px;
}
.inner.eventBanner img {
    height: auto!important;
}
.js-campaign {
    position: relative;
}
.campaignCntItem img {
    height: 200px;
}
.js-campaign.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: -30px;
}
.js-campaign .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}
.js-campaign .swiper-pagination-bullet-active {
    background: #00b4e6;
}
.campaignCntItem img:hover {
    opacity: .7;
}

/* ==================
アンカーリンクのスタイル
===================== */
    .anchorArea {
        margin-bottom: 75px;
    }
    .navigationItem a {
        position: relative;
        display: block;
        line-height: 41px;
        border: 2px solid var(--blueColor);
        background-color: #fff;
        color: var(--blueColor);
        font-size: 18px;
        font-weight: 700;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }
    .navigationItem a:hover {
        background: var(--blueColor);
        color: #fff!important;
    }
    .navigationItem a::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        width: 20px;
        height: 12px;
        background-color: var(--blueColor);
        clip-path: polygon(50% 100%, 0 0, 100% 0);
        transform: translateY(-50%);
        transition: all .3s;
    }
    .navigationItem a:hover::after {
        background: #ffffff;
    } 
    @media screen and (max-width: 784px) {
        .navigationItem {
            width: 48%;
            max-width: unset;
        }
        .navigationItem a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            line-height: 1.26;
            font-size: min(15px, 3.44vw);
        }
        .navigationItem a::after {
            right: 3%;
            width: 3vw;
            height: 2vw;
            background-color: var(--blueColor);
        }
    }

    /* 4つのアンカーメニュー */
    @media screen and (max-width: 600px) {
        .navigation.anchorRow {
            display: flex;
            justify-content: space-between;
            gap: 26px 2vw;
            flex-wrap: wrap;
        }

        .navigation.anchorRow .navigationItem {
            width: 48%;
            box-sizing: border-box;
            max-width: none;
        }
    }

/* フローティングボタン */
.scheduleBtn p {
    display: inline-block;
    position: relative;
    font-size: 22px;
    font-weight: var(--font-weight-bold);
}

.scheduleBtn p::before {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/hismobile/images/campaign/first_sp/title_icon_white_left.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
    left: -38px;
    top: 0;
}

.scheduleBtn p::after {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/hismobile/images/campaign/first_sp/title_icon_white_right.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 33px;
    height: 33px;
    right: -38px;
    top: 0;
}

.scheduleBtn {
    position: fixed;
    bottom: -100px;
    left: 0;
    background: rgba(0, 0, 0, .7);
    margin: 0;
    padding: 18px 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: bottom 0.3s ease;
}

.scheduleBtn.show {
    bottom: 0;
    z-index: 11;
}

.scheduleBtn a {
    display: flex;
    background: #E5007E;
    color: #fff;
    width: 365px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 65px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    border: 1px solid #E5007E;
}

.scheduleBtn a:last-of-type {
    background: #fff;
    color: #E5007E;
}

@media screen and (max-width: 784px) {
    .scheduleBtn  {
        padding: 3%;
    }

    .scheduleBtn p {
        font-size: 18px;
    }
    .scheduleBtn p::before {
        width: 33px;
        height: 33px;
        left: -38px;
        bottom: 0;
        top: unset;
    }
    .scheduleBtn p::after {
        width: 33px;
        height: 33px;
        right: -38px;
        bottom: 0;
        top: unset;
    }
    .scheduleBtn a::before {
        right: 5%;
        font-size: 16px;
    }
    .scheduleBtn a {
        color: #fff;
        max-width: 365px;
        width: 100%;
        height: 65px;
        line-height: unset;
        padding: 0;
        margin: 0;
    }
}

.titleArea {
  margin-bottom: 28px;
  text-align: center;
}

/* =============================
LP3のCSS
================================*/
.breadcrumb, .footer, footer, .allContsNotes {
    display: none!important;
  }
  /* 共通 */
  :root {
    --blackColor: #0E0E0F;
    --goldColor: #D8BB54;
    --mainColor: #2aa0b0;
    --pinkColor: #e5007e;
    --pinkText: #FF0189;
  }
  #lp3 {
    position: relative;
  }
  #lp3::before {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100vw;
    height: 100vh;
    background: url(/wp-content/themes/hismobile/images/campaign/pakapaka/bg_pakapaka.png) no-repeat top center / cover #fff;
    content: "";
  }

   #lp3 .campaignContents {
    max-width: 720px;
    margin: 0 auto;
    /* background: var(--blackColor); */
    box-shadow: 0px 0px 18px -5px rgba(0, 0, 0, .5);
    overflow: hidden;
  }

  .cpWrap {
    padding: 2rem 1.2rem;
  }
  .commonBlock {
    padding-top: 1.5rem;
  }

  h2 {
    font-size: 2.5rem;
    /* color: #fff; */
    /* border-left: 5px solid #00a0e9; */
    padding-left: 10px;
    margin-bottom: 1rem;
    text-align: center;
  }
  .commonBtn {
    padding: 2rem 1.2rem;
  }
  .saleItem .commonBtn {
    padding-top: .5rem;
  }
  #btn_animation a {
    display: block;
    position: relative;
    max-width: 550px;
    width: 100%;
    height: 78px;
    /* line-height: 78px; */
    text-decoration: none;
    background-color: var(--pinkColor);
    text-align: center;
    margin: .4rem auto;
    overflow: hidden;
    font-size: 24px;
    font-weight: bold;
    border: 1px solid var(--pinkColor);
    color: #fff;
    padding: 1.2rem 4px;
    box-shadow: 0 5px #b60164;
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s ease;
  }
  #btn_animation a:hover {
    text-decoration: none;
    transform: translateY(5px);
    box-shadow: 0 0 0 var(--pinkColor);
    opacity: .9;
    color: #fff!important;
  }
  #btn_animation a::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fbfbfb;
    animation: btn_animation 2.5s ease-in-out infinite;
  }

  @-webkit-keyframes btn_animation {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
  }
  .imgBlock {
    margin-bottom: 1rem;
  }
  .cpContentText {
    font-size: 16px;
    line-height: 1.6;
  }
  .textPink {
    font-weight: bold;
    color: var(--pinkColor);
  }

  @media screen and (max-width: 784px) {
    h2 {
      font-size: 1.75rem;
      padding-left: 0;
    }
    #btn_animation a {
      height: auto;
      margin: .4rem auto;
      /* font-size: 20px; */
      font-size: min(18px, 4.2vw);
      /* padding: 1rem 4px; */
      padding: 3vw 4px;
      box-shadow: 0 3px #b60164;
    }
  }

  /* =====================
        2025.07.09 追加ブロックCSS
        ======================== */
        :root {
                --pinkColor: #E5007E;
                --blueColor: #0072ce;
                --blueBackgroundColor: #e6f4ff;
                --greyColor: #555;

                --font-size-base: 16px;
                --font-size-sm: 14px;
                --font-size-lg: 18px;

                /* 見出しのフォントサイズ */
                --font-size-lv1: 40px;
                --font-size-lv2: 32px;
                --font-size-lv3: 24px;

                --line-height-base: 1.6;
                --font-weight-normal: 400;
                --font-weight-bold: 700;

            }

            /* フォント寄せ */
            .text-center {text-align: center;}
            .text-left {text-align: left;}
            .text-right {text-align: right;}

            .grid-2 {grid-template-columns: repeat(2, 1fr);}
            .grid-3 {grid-template-columns: repeat(3, 1fr);}

            @media screen and (max-width: 784px) {
                .grid-2 {grid-template-columns: repeat(1, 1fr);}
                .grid-3 {grid-template-columns: repeat(1, 1fr);}
            }

            .heading {
                font-weight: bold;
                line-height: var(--line-height-base);
            }

            .heading-lv1 {font-size: var(--font-size-lv1);}
            .heading-lv2 {font-size: var(--font-size-lv2);}
            .heading-lv3 {font-size: var(--font-size-lv3);}
            .heading-lv4 {font-size: var(--font-size-lg);}

            /* ボーダー付き見出しのスタイル */
            .heading-lv2.lv2-with-border {
                position: relative;
                text-align: center;
                margin-bottom: 3rem;
            }

            .heading-lv2.lv2-with-border::before {
                content: "";
                position: absolute;
                bottom: -12px;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 7px;
                border-radius: 3px;
                background: var(--blueColor);
            }

            .heading-lv3.lv3-with-border {
                /* border-left: 3px solid var(--blueColor); */
                position: relative;
                padding-left: 16px;
                margin-bottom: 16px;
            }

            .heading-lv3.lv3-with-border::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 7px;
                height: 34px;
                border-radius: 3px;
                background: var(--blueColor);
            }

            @media screen and (max-width: 784px) {
                .heading {
                    font-weight: bold;
                    line-height: 1.5;
                }
                .heading-lv1 {font-size: 40px;}
                .heading-lv2 {font-size: 24px;}
                .heading-lv3 {font-size: 24px;}
                .heading-lv4 {font-size: 20px;}
            }
        .cpDetailBox {
          background: #fff;
          border: 3px solid #E5007E;
          border-radius: 8px;
          max-width: 550px;
          margin: 0 auto;
          padding: 2rem 2rem 1rem;
        }
        .cpDetailBoxImage {
          display: grid;
          grid-template-columns: 4fr 1fr 1fr;
          gap: 1.5rem;
        }
        .cpDetailBoxImage span {
          font-size: 32px;
          font-weight: bold;
          color: #E5007E;
          text-align: center;
        }
        .cpDetailBoxImage img:nth-of-type(2) {
          height: 62px;
          width: auto;
          display: block;
          margin: 0 auto;
        }
        .cpDetailBoxTitle {
          color: #E5007E;
          font-size: 26px;
          font-weight: bold;
          text-align: center;
          margin-top: 1rem !important;
        }
        .cpDetailText {
          color: #333;
          margin-top: 1rem;
          text-align: center;
          font-weight: bold;
          font-size: 20px;
        }

  /* --- MV --- */
  #mv {
    position: relative;
    text-align: center;
  }
  #mv img {
    width: 100%;
    display: block;
  }
  .anchorLists {
    padding: 1rem 1.2rem;
    /* background: #f3f8fb; */
  }
  .anchorLists ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
  }
  .anchorLists a {
    text-decoration: none;
    background: #fff;
    /* box-shadow: 0 5px #00569c; */
    border: 2px solid var(--goldColor);
    /* color: #fff; */
    color: var(--goldColor);
    display: block;
    font-size: 18px;
    padding: 1rem;
    border-radius: 6px;
  }
  @media screen and (max-width: 784px) {
    .anchorLists a {
      font-size: min(16px, 3.44vw);
      padding: .925rem;
    }
  }

  /* ---- アンカーリンク ---- */
  /* 通常 */
    .nav {
      width: 100%;
      /* padding: 1rem 1.2rem; */
      padding-bottom: 3rem;

      margin-top: 15px;
      padding: 1.3em 0;
      background: #fff;
      border: 4px solid #232323;
      border-left: 4px solid #232323;
      border-right: 4px solid #232323;
      border-radius: 10px;
    }
    .nav ul {
      display: grid;
      -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
      /* margin-top: 15px;
      padding: 1.3em 0;
      background: #fff;
      border: 4px solid #232323;
      border-left: 4px solid #232323;
      border-right: 4px solid #232323;
      border-radius: 10px; */
    }
    .nav ul.navBottom {
      display: grid;
      /* grid-template-columns: 1fr 1fr 1fr; */
      grid-template-columns: 1fr 1fr;
      border-top: 2px dashed #333;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
    }
    .nav li {
      border-right: 2px solid #232323;
    }
    .nav li:last-of-type {
      border: none;
    }
    .nav li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      text-decoration: none;
      font-size: min(20px, 2.5vw);
      height: 100%;
      padding: 0 .5em;
      line-height: 1.4;
      font-weight: bold;
      text-align: center;
      position: relative;
      padding-bottom: 2.25rem;
      cursor: pointer;
      transition: all .3s;
    }
    .nav li a::before {
      content: "";
      position: absolute;
      /* background: url(/wp-content/uploads/2025/11/nav_icon.png); */
      background: url(/wp-content/themes/hismobile/images/campaign/blackfriday/nav_icon.png);
      background-size: 100%;
      background-repeat: no-repeat;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      transition: all .1s;
    }
    .nav li a:hover {
      color: #333!important;
    }
    @media screen and (min-width: 784.1px) {
      .nav li a:hover {
        color: #333!important;
        opacity: .8;
      }
      .nav li a:hover::before {
        bottom: -3px;
      }
    }

    @media screen and (max-width: 720px) {
      .nav li a {
        font-size: min(18px, 3.8vw);
      }
    }

    /* メニューが4つ以上 */
    .nav.nav2col ul {
      /* display: grid; */
      /* -ms-grid-columns: repeat(3, 1fr); */
      /* grid-template-columns: 1fr 1fr 1fr 1fr; */
      /* grid-template-columns: repeat(3, 1fr); */
      /* margin-top: 15px;
      padding: 1.3em 0;
      background: #fff;
      border: 4px solid var(--goldColor);
      border-left: 4px solid var(--goldColor);
      border-right: 4px solid var(--goldColor);
      -webkit-box-shadow: 0px 8px var(--goldColor);
      box-shadow: 0px 8px var(--goldColor);
      border-radius: 10px; */
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
    }
    .nav.nav2col ul li {
      width: calc(100% / 3);
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 2px solid var(--goldColor);
    }
    .nav.nav2col ul li:nth-of-type(3n),
    .nav.nav2col ul li:last-of-type {
      border: none;
    }

  /* 導入 */
  .cpLead {
    text-align: center;
    padding: 3rem 0 4rem;
  }
  .cpLeadTop {
    color: var(--pinkColor);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 1.25rem;
  }
  .cpLeadTop p span {
    font-size: 32px;
  }
  .cpLeadBottom {
    font-weight: bold;
    line-height: 1.8;
    font-size: 18px;
  }
  .cpLeadBottom p span {
    color: var(--pinkColor);
    font-size: 24px;
  }
  @media screen and (max-width: 784px) {
    .cpLeadTop {
      font-size: min(18px, 4vw);
    }
    .cpLeadTop p span {
      font-size: min(28px, 6.5vw);
    }
    .cpLeadBottom {
      font-size: min(18px, 4vw);
    }
    .cpLeadBottom p span {
      font-size: min(24px, 5vw);
    }
  }

  /* -- キャンペーン内容 -- */
  .campaignAbout {
    /* background-image: url(/img/blackfriday2024/bg_lead.png); */
    background: #fff;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .cpAbout {
    margin-top: 2rem;
  }
  .campaignLead {
    font-size: 26px;
    text-align: center;
    margin: 2rem 0 2rem;
    font-weight: bold;
  }
  .campaignLead span {
    position: relative;
  }
  .campaignLead span::before {
    content: "";
    position: absolute;
    /* background: url(/wp-content/uploads/2025/11/lead_left.png); */
    background: url(/wp-content/themes/hismobile/images/campaign/blackfriday/lead_left.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 50px;
    height: 81px;
    left: -4rem;
    top: 0;
  }
  .campaignLead span::after {
    content: "";
    position: absolute;
    /* background: url(/wp-content/uploads/2025/11/lead_right.png); */
    background: url(/wp-content/themes/hismobile/images/campaign/blackfriday/lead_right.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 50px;
    height: 81px;
    right: -4rem;
    top: 0;
  }
  .cpContent {
    /* border: 2px solid var(--blackColor); */
    border-radius: 6px;
    margin-bottom: 6rem;
    position: relative;
  } 
  .cpContent::before {
    content: "";
    position: absolute;
    background: url(/wp-content/themes/hismobile/images/campaign/blackfriday/cp_fukidashi_no1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 125px;
    height: 125px;
    display: flex;
    top: -45px;
    left: -10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
  }
  .cpContent:last-of-type:before {
    /* background: url(/wp-content/uploads/2025/11/cp_fukidashi_no2.png); */
    /* background: url(background: url(/wp-content/themes/hismobile/images/campaign/blackfriday/cp_fukidashi_no2.png);); */
    background-size: 100%;
    background-repeat: no-repeat;
    width: 125px;
    height: 125px;
  }
  .cpContent:last-of-type {
    margin-bottom: 1rem;
  }
  .cpContentTitle {
    background: var(--blackColor);
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    padding: 12px; 
    text-align: center;
  }
  .cpContentTitle span {
    font-size: 20px;
  }
  .cpContentInner {
    padding: 1.5rem;
    background: #fff;
  }
  .cpContentText p {
    text-align: center;
    font-size: min(20px, 2.8vw);
  }
  .cpSchedule {
    margin-top: 2rem;
  }
  .cpSchedule h3 {
    background: var(--blackColor);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: .725rem .25rem;
    border-radius: 6px;
  }
  .cpSchedule .emText {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    padding: 1rem 0;
    color: #fff;
  }

  /* ================= */
  @media screen and (max-width: 720px) {
    .campaignAbout {
      padding-top: 0!important;
    }
    .campaignLead {
      font-size: min(26px, 4.8vw);
    }
    .campaignLead span::before {
      width: 9vw;
      height: 15vw;
      left: -10vw;
    }
    .campaignLead span::after {
      width: 9vw;
      height: 15vw;
      right: -10vw;
    }
    .cpContent {
      margin-bottom: 12%;
    }
    .cpContent::before {
      width: 21vw;
      height: 21vw;
      top: -4vw;
      left: -2vw;
    }
    .cpContent:last-of-type:before {
      width: 21vw;
      height: 21vw;
      top: -4vw;
      left: -2vw;
    }
    .cpContentInner {
      padding: 7% 4%;
    }
    .packageCardList {
      margin-top: 7%;
    }
    .cpContentText p {
      font-size: min(22px, 3.77vw);
    } 
    .cpContentTitle {
      font-size: min(26px, 4.88vw);
      /* padding: 4vw; */
      padding: 4vw 4vw 4vw 16vw;
    }
    .cpContentTitle span {
      font-size: min(18px, 3.5vw);
    }

    /* カードタイプ */
    .packageCard:not(:last-of-type) {
      margin-bottom: 1rem;
    }
    .packageCardContent {
      border-right: 10vw solid var(--goldColor);
      padding: 2%;
    }
    .packageCardContent::before {
      right: -7vw;
      border-right: 2.4vw solid transparent;
      border-left: 2.4vw solid transparent;
      border-top: 3vw solid #ffffff;
    }
    .packageCardCircle {
      width: 18vw;
      height: 18vw;
      font-size: min(26px, 4.5vw);
      line-height: 1.2;
    }
    .packageCardCircle span {
      font-size: min(18px, 3.7vw);
    }
    .packageTextName {
      font-size: min(22px, 3.88vw);
    }
    .packageTextDiscountMember {
      font-size: min(28px, 4.92vw);
      /* font-size: min(28px, 4.1vw); */
    }
    .deviceCard .packageTextDiscountMember {
      font-size: min(28px, 4.72vw);
    }
    .packageTextDiscountNum {
      font-size: min(97px, 13.3vw);
    }
    .packageTextDiscountPer {
      font-size: min(28px, 4.2vw);
    }
  }

  /* --- プラン --- */
  #step {
    position: relative;
  }
  .stepCard {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
  }

  /* =====================
  プレゼント端末
  ======================== */
  .present {
    padding: 3rem 0;
    background: #FFFEE4;
  }
  .presentItem {
    text-align: center;
  }
  .presentItem:first-of-type {
    margin-bottom: 3rem;
  }
  .presentItem img {
    max-width: 470px;
    display: block;
    margin: 0 auto 1rem;
    padding: 2rem;
    background: #fff;
  }
  .presentLabel {
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    padding: 6px 12px;
    border-radius: 100px;
    background: #E5007E;
    color: #fff;
    max-width: 265px;
  }
  .presentItemTitle {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 0.5rem 0;
  }
  .presentItem a {
    color: var(--blueColor);
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    position: relative;
    padding-right: 1.75rem;
    cursor: pointer;
  }
  .presentItem a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    right: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #0072ce;
    border-right: 0;
    transform: translateY(-50%);
  }
  body.devicePC .presentItem a:hover {
    color: var(--blueColor)!important;
  }

  /* -- キャンペーン概要 -- */
  .campaignDetailTitle {
    background: #232323;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: .75rem;
    text-align: center;
    border-radius: 6px;
  }
  .campaignDetailText {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 1.25rem 0 2.25rem;
  }

  @media screen and (max-width: 720px) {
    .campaignDetailTitle {
      font-size: min(18px, 4.2vw);
      padding: 2.3vw;
    }
    .campaignDetailText {
      font-size: min(18px, 4.2vw);
      padding: 2.3vw 0 4.3vw;
    }
  }

  /* ==================
   ご購入の流れ
   ==================== */
  #step {
    background: #FFFEE4;
    padding: 3rem 0;
  }

  .flowItem {
      background: #fff;
      display: grid;
      grid-template-columns: 70% 1fr;
      align-items: center;
      gap: 0 40px;
      margin-bottom: 35px;
      /* padding: 2rem 3rem; */
      padding: 1.75rem 2rem;
      /* border-radius: 14px; */
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .flowItemTitleWrap {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
  }
  .flowItemNum {
      font-size: 42px;
      font-weight: bold;
      color: #0072ce;
      line-height: 1;
      padding-bottom: 6px;
      font-family: "Montserrat", sans-serif;
  }
  .flowItemTitle {
      /* font-size: 28px; */
      font-size: 22px;
      /* line-height: 1; */
      font-weight: bold;
      text-align: left;
      color: #333;
      margin: 8px 0 16px;
  }
  .flowItemDesc {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
      font-size: 16px;
      line-height: 1.7;
  }
  .flowItemImage {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
  }
  .flowItemImage img {
      width: 100%;
      height: auto;
  }
  @media screen and (max-width: 784px) {
      .flowItem {
          grid-template-columns: 1fr;
          max-width: 480px;
          width: 100%;
          margin: 0 auto 2rem;
          gap: 0;
          padding: 2rem;
          height: auto;
          border-radius: 14px;
      }
      .flowItemNum {
          text-align: center;
      }
      .flowItemTitle {
          font-size: 25px;
          text-align: center;
          margin-bottom: 22px;
      }
      .flowItemImage {
          grid-column: 1 / 2;
          grid-row: 2 / 3;
          max-width: 280px;
          width: 100%;
          margin: 0 auto 2.4rem;
      }
      .flowItemDesc {
          grid-row: 3 / 4;
      }
  }

  /* --- 注意事項 --- */
  #notes {
      background: #fff;
  }
  .noteTextWrap {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
  }

  .noteTextWrap li {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 15px;
    margin-bottom: 5px;
  }

  /* --- お問い合わせ --- */
  .contactText {
    text-align: center;
    margin-bottom: 1rem;
  }

  /* --- 左メニュー --- */
  .leftSideMenu {
    position: fixed;
    /* top: 30%; */
    top: 17%;
    left: 3.5rem;
    z-index: 10;
    position: fixed;
    /* left: 0; */
    width: 100%;
    max-width: calc((100% - 930px) / 2);
  }

  .leftSideMenuTop {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    border: 2px solid var(--mainColor);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: .825rem;
    z-index: 10;
  }

  .leftSideMenuBottom {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    border: 2px solid var(--mainColor);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: .825rem;
    z-index: 10;
    margin-top: 1rem;
  }
  .leftSideMenuBottom img {
    display: block;
    width: 70%;
    margin: 0 auto 14px;
  }
  .leftSideMenuBottom .commonBtn {
    padding: 0;
  }
  .leftSideMenuBottom .commonBtn .saleCopy {
    font-size: 14px;
  }
  .leftSideMenuBottom #btn_animation a {
    height: 48px;
    padding: 0 10px;
    line-height: 46px;
    font-size: 18px;
  }
  .leftSideMenuBottom #btn_animation a::before {
    display: none;
  }

  .leftSideMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .leftSideMenu li:not(:last-of-type) {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #999;
  }

  .leftSideMenu li.is-active a {
    background: var(--mainColor);
    color: #fff;
  }
  .leftSideMenu li.is-active a::before {
    background: url(/wp-content/themes/hismobile/images/campaign/common/cp_arrow_white.svg);
  }
  .leftSideMenu a {
    display: block;
    text-align: center;
    padding: 1rem 1rem;
    border-radius: 1rem;
    font-weight: bold;
    /* font-size: 18px; */
    font-size: 16px;
    text-decoration: none;
    position: relative;
    color: var(--mainColor);
  }
  .leftSideMenu a:hover {
    background: var(--mainColor);
    color: #fff!important;
  }
  .leftSideMenu a::before {
    content: "";
    position: absolute;
    /* background: url(/wp-content/uploads/2025/11/cp_arrow_gold.png); */
    background: url(/wp-content/themes/hismobile/images/campaign/pakapaka/cp_arrow_teal.png);
    width: 26px;
    height: 26px;
    background-size: 100%;
    background-repeat: no-repeat;
    right: 1vw;
    top: 50%;
    transform: translateY(-50%);
  }
  .leftSideMenu a:hover::before {
    background: url(/wp-content/themes/hismobile/images/campaign/common/cp_arrow_white.svg);
  }

  @media screen and (max-width: 1460px) {
    .leftSideMenu a {
      font-size: min(16px, 3.44vw);
    }
    .leftSideMenu a::before {
      width: 22px;
      height: 22px;
    }
  }

  @media screen and (max-width: 1366px) {
    .leftSideMenu {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .planCard, .benefitCard {
      width: 100%;
    }
    .leftSideMenu {
      display: none;
    }
  }

  /* 外部リンク */
  .exLink {
    position: relative;
    text-decoration: underline;
  }
  .exLink::before {
    content: "";
    position: absolute;
    top: 59%;
    right: -1.7rem;
    /* background: url(/wp-content/uploads/2025/11/exlink_icon.png); */
    background: url(/wp-content/themes/hismobile/images/campaign/blackfriday/exlink_icon.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
  }
  .exLink.noExIcon::before {
    display: none;
  }
  @media screen and (max-width: 720px) {
    .exLink::before {
      width: 16px;
      height: 16px;
    }
  }
  main .allContsNotes li {
    color: #fff!important;
  }
  .noteTextWrap ul {
    margin-bottom: 1.25rem;
  }
  .noteSubTitle {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 10px;
  }

/* 対象プランここから */
/* ======================
2025 0418
========================= */
#plan {
  background: #fff;
}
#plan h2 {
  color: #333;
}
.cpn_area .cpnTxt {
  color: #fff;
}
.cpnTxt {
  position: relative;
  box-sizing: content-box;
  width: fit-content;
  margin-inline: auto;
  padding: 23px 103px 0;
  font-size: 26px;
  font-weight: 700;
}
.cpn_area .cpnTxt::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(60%) saturate(0%) hue-rotate(82deg) brightness(107%) contrast(101%);
}
.cpnTxt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url(/img/lp_hoken/deco_button.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  user-select: none;
  pointer-events: none;
}
.cpnBtn .cpn_area {
  color: #fff;
}
.cpn_area {
  font-size: min(30px, 2.5vw);
  font-weight: 700;
  text-align: center;
  margin: 30px 0 30px;
  background-color: #E5007E;
  border-radius: 38px;
}

.yen{
  font-size: 26px!important;
}

.cpn_area span{
  color: #fff429;
  font-size: 46px;
}

.cpn_area .cpnTxt {
  color: #fff;
}
.cpnTxt {
  position: relative;
  box-sizing: content-box;
  width: fit-content;
  margin-inline: auto;
  padding: 23px 103px 0;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width:784px){

  .cpn_area span{
  font-size: 26px;
}
.cpn_area {
  font-size: 16px;
}

}

.splan202408tableMain .anchorArea {
  margin-bottom: 4.25rem;
}

.secBox.splan202408top .table:first-of-type {
  margin-top: 0;
  padding-top: 32px;
}
.secBox.splan202408top .table:first-of-type .splan202408tableMain {
  margin-bottom: 0;
}
.secBox.splan202408top .point,
.secBox.splan202408top .flow{
  margin-top: 96px;
}
.flowBoxWrap {
  margin: 0 auto 112px;
  width: 90%;
}
.simBoxWrap {
  width: 90%;
  margin: 52px auto;
}
#sec_flow .splan202408entry {
  margin-top: 0;
}
.splan202408bottom .secBox.typeA:last-of-type {
  margin-bottom: 50px;
}
@media screen and (max-width:784px) {
.secBox.splan202408top .table:first-of-type {
  padding-bottom: 40px;
}
  .secBox.splan202408top .point, 
  .secBox.splan202408top .flow {
      margin-top: 50px;
  }
  .secBox.splan202408top .table:first-of-type .splan202408tableMain {
      margin-bottom: 40px;
  }
  .simBoxWrap {
      width: 100%;
  }
  .splan202408bottom .secBox.typeA:last-of-type {
      margin-bottom: 0px;
      padding-top: 50px;
  }
}

#bnrsingle {
  margin-top: 3rem;
}

#bnrsingle .dflex {
  display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  @media screen and (min-width: 768px) {
    #bnrsingle {
      /* width: 960px; */
      width: 100%;
      max-width: 960px;
      display: block;
      margin: 3rem auto 0;
    }
    #bnrsingle .dflex a {
      cursor: pointer;
      transition: all .3s;
    }
    #bnrsingle .dflex a:hover {
      opacity: .7;
    }
  }/*# sourceMappingURL=style.css.map */

  @media screen and (max-width: 1000px) {
    #bnrsingle .dflex {
      gap: 1rem;
    }
  }

  @media screen and (max-width: 767px) {
    #bnrsingle .dflex {
      flex-direction: column;
    }
    #bnrsingle .dflex a {
      width: 70%;
      margin: 0 auto;
    }
  }

/* ======================
2025 0418
========================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Arial", sans-serif;
  text-align: center;
  font-size: 16px;
  /* margin-bottom: 3em; */
  margin-bottom: .3em;
  color: #333;
}

.price-table.pc_only {
  display: table!important;
}

.logo img {
  width: 20.4375rem;
  display: block;
  margin: 0 auto;
}

.splan202408tableMain .labels {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.875rem;
}

.splan202408tableMain .labels .label_large {
  font-size: 1.875rem;
  line-height: 2.5rem;
  padding: 0 0.875rem;
  border-radius: 1.375rem;
}

.splan202408tableMain .labels .label_orange {
  background: #FF860D;
  color: #fff;
}
.splan202408tableMain .labels .label_blue {
  border: 0.125rem solid #00B3C1;
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
  color: #00B3C1;
}

@media screen and (min-width:784.1px) {
  .splan202408tableMain .labels .label_orange {
    font-size: 1.875rem!important;
    line-height: 2.5rem!important;
    padding: 0 0.875rem!important;
    border-radius: 1.375rem!important;
  }
  .splan202408tableMain .labels .label_blue {
    border: 0.125rem solid #00B3C1!important;
    font-size: 1.25rem!important;
    line-height: 1.75rem!important;
    padding: 0 0.75rem!important;
    border-radius: 0.5rem!important;
    color: #00B3C1;
  }
}

.price-table th,
.price-table td {
  border: 1px solid #8F7C3A;
  /* padding: 10px; */
  padding: 1% 0;
  vertical-align: middle;
}

  .price-table th.dottedBorder,
  .price-table td.dottedBorder {
    border-right: 2px dashed #8F7C3A;
  }

  @media screen and (max-width: 784px) {
    .dashedBorder td {
      border-bottom: none;
      position: relative;
    }

    .topBorderNone td {
      border-top: none;
    }

    .dashedBorder td::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 1px;
      width: 100%;
      background: repeating-linear-gradient(
        to right,
        #8F7C3A,
        #8F7C3A 4px,
        transparent 4px,
        transparent 8px
      );
      pointer-events: none;
    }
  }

.price-table thead th {
  background-color: #2CB7C1;
  color: #fff;
  font-weight: bold;
}

.price-table thead th.col-label {
  color: #fff;
}

.price-table thead th:not(.col-label), 
.price-table tbody .price td {
  /* font-size: 20px; */
  font-size: min(20px, 1.4vw);
  box-sizing: border-box;
}

.price-table tbody .price td:nth-of-type(6), 
.price-table tbody .price td:last-of-type {
  padding-top: 28px;
}

.price-table .col-label {
  font-weight: bold;
  white-space: nowrap;
  color: #0269AC;
}

.price-table .opt {
  position: relative;
  padding-left: 35px;
}

.price-table .opt span {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF429;
  color: #232323;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
  /* height: 179px; */
  height: 406%;
  width: 30px;
  text-align: center;
  border-right: 1px solid #8F7C3A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
}
@media screen and (min-width: 784.1px) {
  #lp3 .price-table .opt span {
    height: 404%!important;
    top: -116px;
  }
}

.price-table td .small-el {
  display: block;
  font-size: 14px;
  color: #555;
}

.price-table .price {
  font-weight: bold;
  position: relative;
}

.price-table tbody tr:nth-of-type(2),
.price-table tbody tr:nth-of-type(3) {
  background: #ECF6FA;
}

.price-table tbody tr:nth-of-type(4),
.price-table tbody tr:nth-of-type(5) {
  background: #FFFAD9;
}

.price-table .houdaiArea {
  position: relative;
}

.price-table .price .small-el {
  position: absolute;
  width: 200%;
  background: #FFFAD9;
  border-bottom: 1px solid #8F7C3A;
  top: 0;
  right: 0;
  font-size: 16px;
}

.note {
  font-size: 13px;
  color: #666;
  text-align: right;
  margin-top: -10px;
}
.noteBottom {
  font-size: 13px;
  color: #666;
  /* margin-bottom: 3em; */
}

.txtDataBold {
  font-size: 42px;
}

.txtPriceBold {
  /* font-size: 42px; */
  font-size: min(42px, 2.8vw);
}

.line-box {
  /* display: flex; */
  background: linear-gradient(transparent 50%, #FFCE00 62%);
}

/* 比較テーブル */
.plan-compare {
  color: #333;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.column .cell {
  border: 1px solid #333;
  margin-bottom: 10px;
  padding: 10px 8px;
} 

.column.grayArea .cell {
  background: rgba(0, 0, 0, .16);
}

.highlight .cell {
  background: #FFFAD9;
  box-sizing: border-box;
  border: 2px solid #FFDD00;
}

.plan-compare {
    display: grid!important;
    grid-template-columns: repeat(6, 1fr); /* 6列構成 */
    gap: 10px;
    margin-top: 2rem;
}
.plan-compare.sp_only {
    display: none!important;
}
/* 各カラム共通 */
.column {
    display: flex;
    flex-direction: column;
}
          
/* セル共通スタイル */
.cell {
    padding: 12px 8px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #333;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    box-sizing: border-box;
}
/* 左端カラム */
.column.grayArea .cell {
    background: rgba(0, 0, 0, 0.1);
    font-weight: bold;
}          
/* HISモバイルだけ太枠 + 調整 */
.column.highlight .cell {
    border: 2px solid #FFDD00;
    background: #FFFAD9;
    font-size: 16px;
    font-weight: bold;
    height: 30px;
}
.column.highlight .cell.header {
    font-size: 23px;
    color: #0072CE;
    background: #ECF6FA;
    position: relative;
}
.column.highlight .cell.header::before {
    content: url('/wp-content/uploads/2025/06/king-icon.png');
    position: absolute;
    top: -3px;
    right: 5px;
    width: 14px;
    height: auto;
}
.column.highlight .cell span.highlight-blue {
    font-size: 23px;
    color: #0072CE;
}
/* 見出しセル（各列の上） */
.cell.header {
    font-weight: bold;
    background-color: #ECF6FA;
}

@media screen and (max-width: 1090px) {
    .txtPriceBold,
    .txtDataBold {
        font-size: min(34px, 3vw);
    } 
}

          /* @media screen and (max-width:784px) { */
            /* .plan-compare.pc_only {
              display: none!important;
            }

            .plan-compare.sp_only {
              display: block!important;
            } */

  /* accordion */
  .accordion {
    max-width: 800px;
    margin: 2rem auto;
  }

  .dataHeading {
    background: #f7f7f7;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 18px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
  }
  .accordion-item {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
  }

.accordion-header {
  background: #00C9D3;
  position: relative;
  color: #fff;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}
.accordion-header::before {
  content: "";
    position: absolute;
    top: 38%;
    right: 23px;
    width: 10px;
    height: 10px;
    margin-top: max(-6px, -.41vw);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  /* padding: 1rem 0; */
  margin-bottom: -1rem;
  padding-top: 1rem;
}

.accordion-body.open {
  padding: 0;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.acc-cell {
  display: flex;
  gap: 1rem;
  margin-bottom: .5rem;
}

.acc-cell p {
  border: 1px solid #333;
  width: 50%;
  padding: 2%;
  text-align: center;
  font-weight: bold;
}

.acc-cell.highlight p {
  border: 2px solid #FFDD00;
  color: #0072CE;
  font-size: 18px;
  position: relative;
}

.acc-cell.highlight p span {
  color: #333;
  font-size: 16px;
}

.acc-cell.highlight p:last-of-type {
  background: #FFFAD9;
}

.acc-cell p:first-of-type {
  background: #ECF6FA;
  font-size: 18px;
}

.acc-cell.highlight p:first-of-type {
  position: relative;
}

.acc-cell.highlight p:first-of-type::before {
  content: url('/wp-content/uploads/2025/06/king-icon.png');
  position: absolute;
  top: 0;
  right: 5%;
  width: 2vw;
  height: auto;
}

.fukidashi {
    width: 100%;
    height: 11vw;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 0;
    position: relative;
}

.fukidashi p {
    font-size: min(34px, 4.2vw);
}

.commission-block {
  gap: 1rem;
}

.commission-box {
  width: 50%;
  min-width: 50%
}

.commission-hl {
  font-size: min(31px, 4vw);
}

.commission-right .commission-hl {
  font-size: min(22px, 2.7vw);
}

.price-table.sp_only {
  overflow: hidden;
}

.splan202408tableMain .labels .label_orange {
    background: #FF860D;
    color: #fff;
    font-size: 4vw;
    padding: 0 2.3vw;
    border-radius: 3vw;
    line-height: 5.5vw;
}

.splan202408tableMain .labels .label_blue {
    color: #00B3C1;
    border: 0.0625rem solid #00B3C1;
    font-size: 3vw;
    line-height: 4vw;
    padding: 0 2vw;
    border-radius: 1.2vw;
}

#lp3 .price-table tbody td:first-of-type {
  background: #2CB7C1;
  color: #fff;
  font-weight: bold;
}

#lp3 .price-table tbody .optionRow td:first-of-type  {
  background: #fff;
  color: #333;
  font-size: min(16px, 2.7vw);
}

#lp3 .price-table tbody .optionRow.colorArea td {
    background: #FFFAD9;
}

#lp3 .price-table thead th:last-of-type {
  background: #fff;
  color: #0269AC;
}

.txtPriceBold {
    font-size: min(33px, 7vw);
    font-weight: bold;
}

.txtDataBold {
    font-size: min(33px, 7vw);
    font-weight: bold;
}

.price-table thead th:not(.col-label), .price-table tbody .price td {
  font-size: 16px;
}

#lp3 .price-table tbody tr:nth-of-type(2), #lp3 .price-table tbody tr:nth-of-type(3),
#lp3 .price-table tbody tr:nth-of-type(4), #lp3 .price-table tbody tr:nth-of-type(5) {
  background: #fff;
}

#lp3 .price-table .opt span {
  /* height: 24.6vh; */
  /* height: 200%; */
}
.table-plan-block,
.commision-block {
  margin-bottom: 3rem;
}

.commision-block img {
  width: 75%;
    display: block;
    margin: 0 auto;
}

.dataTeigakuPlan {
  width: 90%;
  margin: 5rem auto 5rem;
}
.dataTeigakuPlan .labels {
  display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1.875rem;
}

.dataTeigakuPlan .labels .label_large {
    font-size: 1.875rem;
    line-height: 2.5rem;
    padding: 0 0.875rem;
    border-radius: 1.375rem;
    background: #006FB9;
    color: #fff;
}

.dataTeigakuPlan .labels .label_blue {
    border: 0.125rem solid #00B3C1;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    color: #00B3C1;
}

.splan202408tableMain .l-plan_sec_subttl, 
  .dataTeigakuPlan .l-plan_sec_subttl {
    font-size: 24px;
  }

  .price-table.teigaku-price tbody .price td:nth-of-type(6), 
  .price-table.teigaku-price tbody .price td:last-of-type {
    padding-top: 1%;
  }

@media screen and (max-width: 786px) {
  .splan202408tableMain .l-plan_sec_subttl, 
  .dataTeigakuPlan .l-plan_sec_subttl {
    font-size: 17px;
  }
}

@media screen and (max-width: 996px) {
  .column.highlight .cell.header {
    font-size: min(18px, 2vw);
  }

  .column .cell {
    font-size: min(15px, 2vw);
  }

  .column .cell.small-num {
    font-size: min(13px, 1.6vw);
  }
}
.price-table .optionRow.colorArea,
  .price-table tbody .optionRow.colorArea td:first-of-type {
    background: #FFFAD9;
  }

@media screen and (max-width: 784px) {
  .price-table.pc_only {
    display: none!important;
  }

  .price-table.sp_only {
    display: table!important;
    margin-bottom: 1%;
  }

  .noteBottom {
    /* margin-bottom: 10%; */
    font-size: min(16px, 3vw);
  }

  .price-table .opt span {
    height: 409%;
    bottom: 0;
    top: auto;
    background: #FFFAD9;
  }

  .price-table .optionRow.colorArea,
  .price-table tbody .optionRow.colorArea td:first-of-type {
    background: #FFFAD9;
  }

  /* SPのデータ別の料金表 */
  .price-table.sp_only td, 
  .price-table.sp_only th {
    padding: 1%;
  }

  .price-table.sp_only .optionRow th {
    padding-left: 7%;
    font-size: min(16px, 3vw);
  }

  .price-table.sp_only td {
    position: relative;
  }

  .price-table.sp_only td .small-el {
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFAD9;
    color: #232323;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 1;
    height: 200%;
    width: 30px;
    font-size: min(14px, 3vw);
    text-align: center;
    border-right: 1px solid #8F7C3A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .dataTeigakuPlan .labels .label_large {
        font-size: 4vw;
        padding: 0 2.3vw;
        border-radius: 3vw;
        line-height: 5.5vw;
        background: #006FB9;
      color: #fff;
    }

    .dataTeigakuPlan .labels .label_blue {
        border: 0.0625rem solid #00B3C1;
        font-size: 3vw;
        line-height: 4vw;
        padding: 0 2vw;
        border-radius: 1.2vw;
    }

    /* 定額プラン料金表 */
    .price-table.sp_only.teigaku-price tr {
      background: #fff;
    }

    .price-table.sp_only.teigaku-price thead tr {
      font-size: min(16px, 3.5vw);
      font-weight: bold;
      color: #0269AC;
    }

    .price-table.sp_only.teigaku-price thead tr th {
      background: #2CB7C1;
      color: #fff;
      font-size: min(16px, 3.5vw);
    }

    .price-table.sp_only.teigaku-price tr.dataRow {
      background: #fff;
      font-size: min(16px, 3.5vw);
    }

    .price-table.sp_only.teigaku-price tr.dataRow td:first-of-type {
      color: #0269AC;
      background: #fff;
    }
}
/* 対象プランここまで */

/* バナーリンク */
.bottomBannerCp {
  background: #fff;
}
.bottomBannerCpContent {
  padding: 0 40px;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 784px) {
  .bottomBannerCpContent {
    padding: 0px;
  }
}

/* --------------------------
campaignOverview
----------------------------*/
@media screen and (max-width: 784px) {
  #lp2 #campaignOverview {
    padding-bottom: 100px;
  }
}