@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("//use.fontawesome.com/releases/v6.5.1/css/all.css");
/*--------------------------------------
タブ切り替え
--------------------------------------*/
.tab-area {
  display: flex;
  flex-wrap: wrap;
  /* アクティブなタブ */
  /* ラジオボタン非表示 */
}
.tab-area__label {
  height: 50px;
  padding-bottom: 15px;
  color: white;
  order: -1;
  z-index: 1;
  position: relative;
  cursor: pointer;
  flex: 1;
  font-size: 2rem;
  display: grid;
  place-content: center;
  place-items: center;
  border-radius: 15px 15px 0 0;
  background: #aaa;
}
@media (min-width: 1025px) {
  .tab-area__label {
    height: 70px;
    width: 100%;
    padding: 0 60px 0 0;
    font-size: 3rem;
  }
}
.tab-area__label::after {
  width: 60px;
  height: 20px;
  content: "";
  display: inline-block;
  background: url("../images/icon_menu.png") no-repeat;
  background-position: center center;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}
@media (min-width: 1025px) {
  .tab-area__label::after {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: auto;
    right: 90px;
    transform: translateY(-50%);
  }
}
.tab-area__label:hover::after {
  top: 70%;
}
.tab-area__content {
  width: 100%;
  display: none;
  clear: both;
}
.tab-area__switch:checked + .tab-area__label {
  color: white;
  background: #E6002D;
}
.tab-area__switch {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#tab-01:checked ~ #tab_content1,
#tab-02:checked ~ #tab_content2 {
  display: block;
}

/*--------------------------------------
アコーディオン
--------------------------------------*/
/*アコーディオンタイトル*/
.accordion-area li {
  margin: 20px 0 10px 0;
}
.accordion-area__title {
  padding: 5px 60px 5px 0;
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  color: #E6002D;
  transition: all 0.5s ease;
  display: flex;
  border-top: solid 1px #E6002D;
  border-bottom: solid 1px #E6002D;
}
@media (min-width: 1025px) {
  .accordion-area__title {
    padding: 0 60px 0 0;
    font-size: 2.1rem;
    align-items: center;
  }
}
.accordion-area__title span:first-child {
  width: 3em;
}
.accordion-area__title span:last-child {
  width: calc(100% - 3em);
}
.accordion-area__title::before, .accordion-area__title::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #E6002D;
  transition: all 0.5s ease;
}
.accordion-area__title::before {
  top: 48%;
  right: 20px;
  transform: rotate(0deg);
}
.accordion-area__title::after {
  top: 48%;
  right: 20px;
  transform: rotate(90deg);
}
.accordion-area__title.close::before {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.accordion-area__title.close::after {
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.accordion-area__box {
  display: none;
  padding: 10px;
  background: rgba(197, 0, 48, 0.1);
}
@media (min-width: 1025px) {
  .accordion-area__box {
    padding: 20px;
  }
}

@media (min-width: 1025px) {
  .gnav-mobile {
    display: none;
  }
}

#gnav-mobile-btn {
  width: 30px;
  height: 30px;
  padding: 10px;
  border-radius: 50%;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: #E6002D;
  z-index: 1000;
}
#gnav-mobile-btn > div {
  width: 30px;
  height: 25px;
  position: absolute;
  top: 13px;
}
#gnav-mobile-btn > div p {
  color: white;
  font-size: 12px;
  line-height: 1em;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
#gnav-mobile-btn span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#gnav-mobile-btn span:nth-child(1) {
  top: 0;
}
#gnav-mobile-btn span:nth-child(2) {
  top: 10px;
}
#gnav-mobile-btn span:nth-child(3) {
  top: 20px;
}

.open #gnav-mobile-btn span {
  background: #fff;
}

.open #gnav-mobile-btn span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.open #gnav-mobile-btn span:nth-child(2) {
  top: 12px;
  width: 0;
  left: 50%;
}

.open #gnav-mobile-btn span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

#gnav-list {
  background: #E6002D;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: grid;
  place-content: center;
  place-items: center;
  text-align: center;
  font-size: 2.1rem;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  color: white;
  letter-spacing: 0.05em;
  pointer-events: none;
}
#gnav-list ul {
  width: 100%;
}
#gnav-list ul li {
  margin-bottom: 15px;
}
#gnav-list a {
  color: white;
  text-decoration: none;
}
@media (min-width: 1025px) {
  #gnav-list {
    position: static;
    opacity: 1;
    background: #E6002D;
    font-size: 1.8rem;
    line-height: 1;
    display: block;
    pointer-events: auto;
  }
  #gnav-list ul {
    max-width: 1080px;
    margin: 0 auto;
    padding: 27px 0 43px;
    display: flex;
    justify-content: space-between;
  }
  #gnav-list ul li {
    margin-bottom: 0;
  }
  #gnav-list a {
    height: 2em;
    display: block;
    display: grid;
    place-content: center;
    place-items: center;
    position: relative;
  }
  #gnav-list a::after {
    font-size: 1.8rem;
    content: "";
    display: inline-block;
    width: 60px;
    height: 20px;
    background: url("../images/icon_menu.png") no-repeat;
    background-position: center center;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
  }
  #gnav-list a:hover::after {
    bottom: -35px;
  }
}

#gnav-list a {
  color: #fff;
}

.open #gnav-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gnav-list-logo {
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1025px) {
  .gnav-list-logo {
    height: 50px;
    padding: 0 0 0 20px;
    text-align: left;
  }
  .gnav-list-logo a {
    display: inline-block;
  }
  .gnav-list-logo a img {
    height: 50px;
    width: auto;
    margin: 0 0 0 auto;
  }
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .br-sp {
    display: none;
    /* SPのみ改行 */
  }
}

.br-pc {
  display: none;
}
@media (min-width: 768px) {
  .br-pc {
    display: block;
    /* PCのみ改行 */
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
}
@media (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}

:root {
  scroll-padding-top: 0;
  /* どの要素にスクロールしても100pxは空く */
}

@media (min-width: 1025px) {
  :root {
    scroll-padding-top: 50px;
  }
}
.note-area {
  scroll-margin-top: 0px;
}
@media (min-width: 1025px) {
  .note-area {
    scroll-margin-top: 100px;
  }
}

header h1 {
  line-height: 0;
}
header img {
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 1025px) {
  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.clear {
  clear: both;
}

table {
  margin-top: 10px;
  border: solid 1px #777;
}
table tr {
  border: solid 1px #777;
}
table th {
  padding: 10px;
  background: #eee;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-right: solid 1px #777;
}
table td {
  padding: 10px;
}

h2 {
  font-size: 2.5rem;
  color: #E6002D;
}
@media (min-width: 1025px) {
  h2 {
    font-size: 4rem;
  }
}

.txt_v-center {
  margin-bottom: 10px;
  display: grid;
  place-content: center;
}
@media (min-width: 1025px) {
  .txt_v-center {
    display: flex;
    align-items: center;
    place-content: start;
  }
}

.txt_vh-center {
  display: grid;
  place-content: center;
  place-items: center;
}

.title-point {
  height: auto;
  min-height: 40px;
  margin-bottom: 10px;
  color: #E6002D;
  font-weight: 500;
  display: block;
}
@media (min-width: 1025px) {
  .title-point {
    display: flex;
    align-items: center;
    height: 60px;
    margin-bottom: 30px;
  }
}
.title-point.point01 {
  background: url(../images/title-point_1.png) no-repeat;
}
.title-point.point02 {
  background: url(../images/title-point_2.png) no-repeat;
}
.title-point.point03 {
  background: url(../images/title-point_3.png) no-repeat;
}
.title-point.point04 {
  background: url(../images/title-point_4.png) no-repeat;
}
.title-point.point05 {
  background: url(../images/title-point_5.png) no-repeat;
}
.title-point.point06 {
  background: url(../images/title-point_6.png) no-repeat;
}
.title-point.point01, .title-point.point02, .title-point.point03, .title-point.point04, .title-point.point05, .title-point.point06 {
  padding-left: 60px;
  background-position: top left;
  background-size: 53px 40px;
}
@media (min-width: 1025px) {
  .title-point.point01, .title-point.point02, .title-point.point03, .title-point.point04, .title-point.point05, .title-point.point06 {
    padding-left: 100px;
    background-position: center left;
    background-size: 80px 60px;
  }
}

.title-line {
  padding: 10px;
  text-align: center;
  font-weight: 500;
  color: #E6002D;
  border-top: solid 2px #E6002D;
  border-bottom: solid 2px #E6002D;
}
.title-line span {
  display: block;
}
@media (min-width: 1025px) {
  .title-line {
    padding: 20px;
    border-top: solid 3px #E6002D;
    border-bottom: solid 3px #E6002D;
  }
  .title-line span {
    display: block;
  }
}

.title-ribbon,
.title-ribbon_l,
.title-ribbon_s {
  padding: 0 10px 0 20px;
  display: inline-block;
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  background: #E6002D;
  color: white;
  box-sizing: border-box;
}
.title-ribbon::after,
.title-ribbon_l::after,
.title-ribbon_s::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  right: 0;
  border-color: transparent white transparent transparent;
  border-style: solid;
}

.title-ribbon {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 10px;
}
.title-ribbon::after {
  border-width: 30px 20px 30px 0px;
}
@media (min-width: 1025px) {
  .title-ribbon {
    padding: 0 10px 0 20px;
  }
}

.title-ribbon_l {
  width: 2.5em;
  height: 40px;
  padding-right: 20px;
  margin-right: 10px;
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
}
.title-ribbon_l::after {
  border-width: 20px 10px 20px 0px;
}
@media (min-width: 1025px) {
  .title-ribbon_l {
    height: 60px;
    padding-right: 25px;
    font-size: 3.5rem;
  }
  .title-ribbon_l::after {
    border-width: 30px 20px 30px 0px;
  }
}

.title-ribbon_s {
  width: 2em;
  height: 30px;
  padding: 0 20px 0 10px;
  margin-right: 10px;
  font-family: "Oswald", sans-serif;
}
.title-ribbon_s::after {
  border-width: 15px 8px 15px 0px;
}
@media (min-width: 1025px) {
  .title-ribbon_s {
    height: 40px;
    padding-right: 25px;
  }
  .title-ribbon_s::after {
    border-width: 20px 10px 20px 0px;
  }
}

.title-ribbon_s-line {
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .title-ribbon_s-line::after {
    width: 100%;
    border: solid 2px #E6002D;
    position: absolute;
    content: "";
    z-index: 1;
    top: 19px;
    left: 0;
  }
}
.title-ribbon_s-line span {
  display: inline-block;
  position: relative;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 30px 0 20px;
  background: #E6002D;
  color: white;
  z-index: 2;
}
.title-ribbon_s-line span::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border-width: 15px 10px 15px 0px;
  border-color: transparent white transparent transparent;
  border-style: solid;
}
@media (min-width: 1025px) {
  .title-ribbon_s-line span {
    height: 40px;
    line-height: 40px;
  }
  .title-ribbon_s-line span::after {
    border-width: 20px 10px 20px 0px;
  }
}

.title-border {
  margin-top: 10px;
  padding: 5px 10px;
  border: solid 2px #E6002D;
  color: #E6002D;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .title-border {
    margin-top: 20px;
  }
}

.btn-area_center {
  width: 100%;
  text-align: center;
}

.btn {
  height: 50px;
  padding: 0 50px 0 10px;
  display: inline-block;
  color: black;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 26px;
  border: solid 2px #E6002D;
  background: white url(../images/icon_btn.png) no-repeat center right 20px;
  transition: all 0.3s;
  display: grid;
  place-content: center;
  place-items: center;
}
.btn:hover {
  color: #E6002D;
  background: white url(../images/icon_btn.png) no-repeat center right 10px;
}
@media (min-width: 1025px) {
  .btn {
    padding: 0 60px 0 30px;
    display: inline-block;
    line-height: 50px;
    white-space: nowrap;
    font-size: 2.1rem;
  }
}

.tel {
  margin-left: 10px;
  padding-left: 30px;
  background: url(../images/icon_tel.png) no-repeat center left;
  background-size: 10%;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: black;
}

.note, .resale-area__block ul li:not(:last-of-type) p:first-child span {
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
}

.mt_20 {
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .mt_20 {
    margin-top: 20px;
  }
}

.link-txt {
  color: #E6002D;
}
.link-txt:hover {
  text-decoration: none;
}

.txt_xl, .note-area .title-line h3 span:first-child, .benefits-area h3, .title-point, .title-line, .title-ribbon, .title-ribbon_s {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .txt_xl, .note-area .title-line h3 span:first-child, .benefits-area h3, .title-point, .title-line, .title-ribbon, .title-ribbon_s {
    font-size: 2.6rem;
  }
}

.txt_l, .note-area .title-line h3 span:last-child, .app-schedule-area__box h3, .resale-area__block ul li p:last-child, .resale-area__block ul li p:first-child, .renewal-area__row-2 h4 span:first-child, .renewal-area__box h4 span:first-child, .price-area .cap,
.renewal-area .cap,
.campaign-area .cap,
.benefits-area .cap,
.resale-area .cap,
.app-web-area .cap,
.app-mail-area .cap,
.app-schedule-area .cap,
.faq-area .cap,
.note-area .cap, .desc-list dt,
.desc-list_lgray dt,
.desc-list_red dt, .bubble-block, .txt_underline, .title-line span {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .txt_l, .note-area .title-line h3 span:last-child, .app-schedule-area__box h3, .resale-area__block ul li p:last-child, .resale-area__block ul li p:first-child, .renewal-area__row-2 h4 span:first-child, .renewal-area__box h4 span:first-child, .price-area .cap,
  .renewal-area .cap,
  .campaign-area .cap,
  .benefits-area .cap,
  .resale-area .cap,
  .app-web-area .cap,
  .app-mail-area .cap,
  .app-schedule-area .cap,
  .faq-area .cap,
  .note-area .cap, .desc-list dt,
  .desc-list_lgray dt,
  .desc-list_red dt, .bubble-block, .txt_underline, .title-line span {
    font-size: 1.8rem;
  }
}

.txt_m, .app-web-area h3 span, .app-web-area__title span, .benefits-area h3 span span, .title-ribbon_s-line span, .title-border {
  font-size: 1.4rem;
}
@media (min-width: 1025px) {
  .txt_m, .app-web-area h3 span, .app-web-area__title span, .benefits-area h3 span span, .title-ribbon_s-line span, .title-border {
    font-size: 1.6rem;
  }
}

.txt_s, footer p, .price-area__note, .price-area__note_red,
.renewal-area__note,
.renewal-area__note_red,
.campaign-area__note,
.campaign-area__note_red,
.benefits-area__note,
.benefits-area__note_red,
.resale-area__note,
.resale-area__note_red,
.app-web-area__note,
.app-web-area__note_red,
.app-mail-area__note,
.app-mail-area__note_red,
.app-schedule-area__note,
.app-schedule-area__note_red,
.faq-area__note,
.faq-area__note_red,
.note-area__note,
.note-area__note_red {
  font-size: 1.2rem;
}
@media (min-width: 1025px) {
  .txt_s, footer p, .price-area__note, .price-area__note_red,
  .renewal-area__note,
  .renewal-area__note_red,
  .campaign-area__note,
  .campaign-area__note_red,
  .benefits-area__note,
  .benefits-area__note_red,
  .resale-area__note,
  .resale-area__note_red,
  .app-web-area__note,
  .app-web-area__note_red,
  .app-mail-area__note,
  .app-mail-area__note_red,
  .app-schedule-area__note,
  .app-schedule-area__note_red,
  .faq-area__note,
  .faq-area__note_red,
  .note-area__note,
  .note-area__note_red {
    font-size: 1.4rem;
  }
}

.txt_c-red {
  color: #E6002D;
}

.txt_underline {
  margin-bottom: 10px;
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.6em;
  font-weight: 500;
  background-size: 200% 0.6em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 50%);
}

.txt_underline_nomal {
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.6em;
  font-weight: 500;
  background-size: 200% 0.6em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 50%);
}

.txt-center_p20 {
  padding: 20px;
  text-align: center;
}

.list-disc {
  margin-top: 10px;
}
.list-disc li {
  position: relative;
  padding-left: 15px;
}
.list-disc li:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
}
@media (min-width: 1025px) {
  .list-disc {
    margin-top: 20px;
  }
}

.list-number {
  counter-reset: number;
}
.list-number li {
  position: relative;
  padding-left: 1em;
}
.list-number li:before {
  counter-increment: number;
  content: "" counter(number) "";
  position: absolute;
  left: 0;
}

.attention-block, .renewal-area__attention {
  padding: 10px;
  background: rgba(197, 0, 48, 0.1);
  border-radius: 10px;
  text-align: center;
}
@media (min-width: 1025px) {
  .attention-block, .renewal-area__attention {
    padding: 30px;
  }
}

.bubble-block {
  padding: 15px;
  margin-bottom: 25px;
  background: #eee;
  border-radius: 20px;
  position: relative;
  color: black;
  display: flex;
  z-index: 0;
}
.bubble-block:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #eee;
}
.bubble-block span {
  width: 1.2em;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  color: #E6002D;
}

.section-c_white {
  padding: 50px 0;
  overflow: hidden;
}
.section-c_red {
  padding: 50px 0;
  background: #E6002D;
  overflow: hidden;
}
.section-c_red h2 {
  color: white;
}
@media (min-width: 1025px) {
  .section-c_white {
    padding: 100px 0;
  }
  .section-c_red {
    padding: 100px 0;
  }
}

.desc-list,
.desc-list_lgray,
.desc-list_red {
  margin: 10px 0;
  border-top: solid 2px #ddd;
}
@media (min-width: 1025px) {
  .desc-list,
  .desc-list_lgray,
  .desc-list_red {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.desc-list dt,
.desc-list_lgray dt,
.desc-list_red dt {
  width: 100%;
  padding: 10px;
  text-align: center;
  background: #333;
  color: white;
  display: flex;
  place-content: center;
  place-items: center;
  border-bottom: solid 2px #ddd;
  box-sizing: border-box;
}
.desc-list dt.diamond,
.desc-list_lgray dt.diamond,
.desc-list_red dt.diamond {
  color: black;
  background: url(../images/desc-list_bg_diamond.png) repeat-y;
  background-size: 100%;
}
.desc-list dt.platinum,
.desc-list_lgray dt.platinum,
.desc-list_red dt.platinum {
  color: black;
  background: url(../images/desc-list_bg_platinum.png) repeat-y;
  background-size: 100%;
}
.desc-list dt.sapphire,
.desc-list_lgray dt.sapphire,
.desc-list_red dt.sapphire {
  background: url(../images/desc-list_bg_sapphire.png) repeat-y;
  background-size: 100%;
}
.desc-list dt.ruby,
.desc-list_lgray dt.ruby,
.desc-list_red dt.ruby {
  background: #E6002D;
}
@media (min-width: 1025px) {
  .desc-list dt,
  .desc-list_lgray dt,
  .desc-list_red dt {
    width: 200px;
  }
}
.desc-list dd,
.desc-list_lgray dd,
.desc-list_red dd {
  width: 100%;
  margin-left: 0;
  padding: 10px;
  border-bottom: solid 2px #ddd;
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .desc-list dd,
  .desc-list_lgray dd,
  .desc-list_red dd {
    width: calc(100% - 200px);
    place-content: start;
  }
}

.desc-list_lgray dt {
  background: #eee;
  color: black;
}

.desc-list_red dt {
  background: #E6002D;
}

.number-square_w,
.number-square_r {
  width: 1.5em;
  height: 1.5em;
  margin-right: 5px;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-align: center;
}

.number-square_w {
  border: solid 1px white;
  color: white;
}

.number-square_r {
  border: solid 1px #E6002D;
  color: #E6002D;
}

.greetings-area {
  padding: 50px 0;
  text-align: center;
  background: url(../images/greetings_bg_pc.jpg) no-repeat center top;
  background-size: cover;
  font-weight: 500;
  text-shadow: 0 0 5px white, 0 0 10px white, 0 0 10px white;
}
.greetings-area h2 {
  font-size: 1.8rem;
  line-height: 4;
}
.greetings-area p {
  font-size: 1.4rem;
  line-height: 2.5;
}
@media (min-width: 1025px) {
  .greetings-area {
    padding: 150px 0;
  }
  .greetings-area h2 {
    font-size: 3rem;
    line-height: 5;
  }
  .greetings-area p {
    font-size: 2rem;
    line-height: 3;
  }
}

.price-area,
.renewal-area,
.campaign-area,
.benefits-area,
.resale-area,
.app-web-area,
.app-mail-area,
.app-schedule-area,
.faq-area,
.note-area {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.price-area__title,
.renewal-area__title,
.campaign-area__title,
.benefits-area__title,
.resale-area__title,
.app-web-area__title,
.app-mail-area__title,
.app-schedule-area__title,
.faq-area__title,
.note-area__title {
  min-height: 50px;
  height: auto;
  margin-bottom: 30px;
  padding-left: 50px;
  display: grid;
  align-items: center;
}
@media (min-width: 1025px) {
  .price-area__title,
  .renewal-area__title,
  .campaign-area__title,
  .benefits-area__title,
  .resale-area__title,
  .app-web-area__title,
  .app-mail-area__title,
  .app-schedule-area__title,
  .faq-area__title,
  .note-area__title {
    height: 150px;
    margin-bottom: 50px;
    padding-left: 150px;
  }
}
.price-area__row-2 li,
.renewal-area__row-2 li,
.campaign-area__row-2 li,
.benefits-area__row-2 li,
.resale-area__row-2 li,
.app-web-area__row-2 li,
.app-mail-area__row-2 li,
.app-schedule-area__row-2 li,
.faq-area__row-2 li,
.note-area__row-2 li {
  margin-top: 20px;
}
@media (min-width: 1025px) {
  .price-area__row-2,
  .renewal-area__row-2,
  .campaign-area__row-2,
  .benefits-area__row-2,
  .resale-area__row-2,
  .app-web-area__row-2,
  .app-mail-area__row-2,
  .app-schedule-area__row-2,
  .faq-area__row-2,
  .note-area__row-2 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  .price-area__row-2 li,
  .renewal-area__row-2 li,
  .campaign-area__row-2 li,
  .benefits-area__row-2 li,
  .resale-area__row-2 li,
  .app-web-area__row-2 li,
  .app-mail-area__row-2 li,
  .app-schedule-area__row-2 li,
  .faq-area__row-2 li,
  .note-area__row-2 li {
    width: 48%;
  }
}
.price-area__row-3,
.renewal-area__row-3,
.campaign-area__row-3,
.benefits-area__row-3,
.resale-area__row-3,
.app-web-area__row-3,
.app-mail-area__row-3,
.app-schedule-area__row-3,
.faq-area__row-3,
.note-area__row-3 {
  margin-top: 20px;
}
.price-area__row-3 li,
.renewal-area__row-3 li,
.campaign-area__row-3 li,
.benefits-area__row-3 li,
.resale-area__row-3 li,
.app-web-area__row-3 li,
.app-mail-area__row-3 li,
.app-schedule-area__row-3 li,
.faq-area__row-3 li,
.note-area__row-3 li {
  margin-bottom: 20px;
}
.price-area__row-3 li .img-box,
.renewal-area__row-3 li .img-box,
.campaign-area__row-3 li .img-box,
.benefits-area__row-3 li .img-box,
.resale-area__row-3 li .img-box,
.app-web-area__row-3 li .img-box,
.app-mail-area__row-3 li .img-box,
.app-schedule-area__row-3 li .img-box,
.faq-area__row-3 li .img-box,
.note-area__row-3 li .img-box {
  height: 150px;
  margin-bottom: 10px;
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
}
.price-area__row-3 li.row-3_2block,
.renewal-area__row-3 li.row-3_2block,
.campaign-area__row-3 li.row-3_2block,
.benefits-area__row-3 li.row-3_2block,
.resale-area__row-3 li.row-3_2block,
.app-web-area__row-3 li.row-3_2block,
.app-mail-area__row-3 li.row-3_2block,
.app-schedule-area__row-3 li.row-3_2block,
.faq-area__row-3 li.row-3_2block,
.note-area__row-3 li.row-3_2block {
  width: 100%;
}
@media (min-width: 1025px) {
  .price-area__row-3,
  .renewal-area__row-3,
  .campaign-area__row-3,
  .benefits-area__row-3,
  .resale-area__row-3,
  .app-web-area__row-3,
  .app-mail-area__row-3,
  .app-schedule-area__row-3,
  .faq-area__row-3,
  .note-area__row-3 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 5%;
  }
  .price-area__row-3 li,
  .renewal-area__row-3 li,
  .campaign-area__row-3 li,
  .benefits-area__row-3 li,
  .resale-area__row-3 li,
  .app-web-area__row-3 li,
  .app-mail-area__row-3 li,
  .app-schedule-area__row-3 li,
  .faq-area__row-3 li,
  .note-area__row-3 li {
    width: 30%;
    margin-bottom: 0;
  }
  .price-area__row-3 li.row-3_2block,
  .renewal-area__row-3 li.row-3_2block,
  .campaign-area__row-3 li.row-3_2block,
  .benefits-area__row-3 li.row-3_2block,
  .resale-area__row-3 li.row-3_2block,
  .app-web-area__row-3 li.row-3_2block,
  .app-mail-area__row-3 li.row-3_2block,
  .app-schedule-area__row-3 li.row-3_2block,
  .faq-area__row-3 li.row-3_2block,
  .note-area__row-3 li.row-3_2block {
    width: 65%;
  }
}
.price-area__row-4,
.renewal-area__row-4,
.campaign-area__row-4,
.benefits-area__row-4,
.resale-area__row-4,
.app-web-area__row-4,
.app-mail-area__row-4,
.app-schedule-area__row-4,
.faq-area__row-4,
.note-area__row-4 {
  margin-top: 20px;
}
.price-area__row-4 li,
.renewal-area__row-4 li,
.campaign-area__row-4 li,
.benefits-area__row-4 li,
.resale-area__row-4 li,
.app-web-area__row-4 li,
.app-mail-area__row-4 li,
.app-schedule-area__row-4 li,
.faq-area__row-4 li,
.note-area__row-4 li {
  margin-top: 20px;
}
.price-area__row-4 li .img-box,
.renewal-area__row-4 li .img-box,
.campaign-area__row-4 li .img-box,
.benefits-area__row-4 li .img-box,
.resale-area__row-4 li .img-box,
.app-web-area__row-4 li .img-box,
.app-mail-area__row-4 li .img-box,
.app-schedule-area__row-4 li .img-box,
.faq-area__row-4 li .img-box,
.note-area__row-4 li .img-box {
  height: 150px;
  margin-bottom: 10px;
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
}
@media (min-width: 1025px) {
  .price-area__row-4,
  .renewal-area__row-4,
  .campaign-area__row-4,
  .benefits-area__row-4,
  .resale-area__row-4,
  .app-web-area__row-4,
  .app-mail-area__row-4,
  .app-schedule-area__row-4,
  .faq-area__row-4,
  .note-area__row-4 {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  .price-area__row-4 li,
  .renewal-area__row-4 li,
  .campaign-area__row-4 li,
  .benefits-area__row-4 li,
  .resale-area__row-4 li,
  .app-web-area__row-4 li,
  .app-mail-area__row-4 li,
  .app-schedule-area__row-4 li,
  .faq-area__row-4 li,
  .note-area__row-4 li {
    width: 24%;
  }
}
.price-area__note, .price-area__note_red,
.renewal-area__note,
.renewal-area__note_red,
.campaign-area__note,
.campaign-area__note_red,
.benefits-area__note,
.benefits-area__note_red,
.resale-area__note,
.resale-area__note_red,
.app-web-area__note,
.app-web-area__note_red,
.app-mail-area__note,
.app-mail-area__note_red,
.app-schedule-area__note,
.app-schedule-area__note_red,
.faq-area__note,
.faq-area__note_red,
.note-area__note,
.note-area__note_red {
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.price-area__note_red,
.renewal-area__note_red,
.campaign-area__note_red,
.benefits-area__note_red,
.resale-area__note_red,
.app-web-area__note_red,
.app-mail-area__note_red,
.app-schedule-area__note_red,
.faq-area__note_red,
.note-area__note_red {
  color: #E6002D;
}
.price-area__block,
.renewal-area__block,
.campaign-area__block,
.benefits-area__block,
.resale-area__block,
.app-web-area__block,
.app-mail-area__block,
.app-schedule-area__block,
.faq-area__block,
.note-area__block {
  margin: 30px 0;
}
@media (min-width: 1025px) {
  .price-area__block,
  .renewal-area__block,
  .campaign-area__block,
  .benefits-area__block,
  .resale-area__block,
  .app-web-area__block,
  .app-mail-area__block,
  .app-schedule-area__block,
  .faq-area__block,
  .note-area__block {
    margin: 50px 0;
  }
}
.price-area__block-s,
.renewal-area__block-s,
.campaign-area__block-s,
.benefits-area__block-s,
.resale-area__block-s,
.app-web-area__block-s,
.app-mail-area__block-s,
.app-schedule-area__block-s,
.faq-area__block-s,
.note-area__block-s {
  margin: 20px 0;
}
@media (min-width: 1025px) {
  .price-area__block-s,
  .renewal-area__block-s,
  .campaign-area__block-s,
  .benefits-area__block-s,
  .resale-area__block-s,
  .app-web-area__block-s,
  .app-mail-area__block-s,
  .app-schedule-area__block-s,
  .faq-area__block-s,
  .note-area__block-s {
    margin: 30px 50px;
  }
}
.price-area__w-block,
.renewal-area__w-block,
.campaign-area__w-block,
.benefits-area__w-block,
.resale-area__w-block,
.app-web-area__w-block,
.app-mail-area__w-block,
.app-schedule-area__w-block,
.faq-area__w-block,
.note-area__w-block {
  padding: 20px;
  background: white;
  border-radius: 20px;
}
@media (min-width: 1025px) {
  .price-area__w-block,
  .renewal-area__w-block,
  .campaign-area__w-block,
  .benefits-area__w-block,
  .resale-area__w-block,
  .app-web-area__w-block,
  .app-mail-area__w-block,
  .app-schedule-area__w-block,
  .faq-area__w-block,
  .note-area__w-block {
    padding: 50px;
    background: white;
    border-radius: 30px;
  }
}
.price-area__block_left,
.renewal-area__block_left,
.campaign-area__block_left,
.benefits-area__block_left,
.resale-area__block_left,
.app-web-area__block_left,
.app-mail-area__block_left,
.app-schedule-area__block_left,
.faq-area__block_left,
.note-area__block_left {
  width: 100%;
  margin: 30px 0;
}
.price-area__block_left > p,
.renewal-area__block_left > p,
.campaign-area__block_left > p,
.benefits-area__block_left > p,
.resale-area__block_left > p,
.app-web-area__block_left > p,
.app-mail-area__block_left > p,
.app-schedule-area__block_left > p,
.faq-area__block_left > p,
.note-area__block_left > p {
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .price-area__block_left,
  .renewal-area__block_left,
  .campaign-area__block_left,
  .benefits-area__block_left,
  .resale-area__block_left,
  .app-web-area__block_left,
  .app-mail-area__block_left,
  .app-schedule-area__block_left,
  .faq-area__block_left,
  .note-area__block_left {
    width: 750px;
    margin: 50px 0;
  }
  .price-area__block_left > p,
  .renewal-area__block_left > p,
  .campaign-area__block_left > p,
  .benefits-area__block_left > p,
  .resale-area__block_left > p,
  .app-web-area__block_left > p,
  .app-mail-area__block_left > p,
  .app-schedule-area__block_left > p,
  .faq-area__block_left > p,
  .note-area__block_left > p {
    margin-top: 20px;
  }
}
.price-area .cap,
.renewal-area .cap,
.campaign-area .cap,
.benefits-area .cap,
.resale-area .cap,
.app-web-area .cap,
.app-mail-area .cap,
.app-schedule-area .cap,
.faq-area .cap,
.note-area .cap {
  margin-top: 10px;
}
@media (min-width: 1025px) {
  .price-area .cap,
  .renewal-area .cap,
  .campaign-area .cap,
  .benefits-area .cap,
  .resale-area .cap,
  .app-web-area .cap,
  .app-mail-area .cap,
  .app-schedule-area .cap,
  .faq-area .cap,
  .note-area .cap {
    margin-top: 30px;
  }
}

.price-area__map {
  margin: 0 auto 20px;
  text-align: center;
}
@media (min-width: 1025px) {
  .price-area__map {
    margin: 0 auto 50px;
  }
}
.price-area__price {
  margin-bottom: 20px;
}
@media (min-width: 1025px) {
  .price-area__price {
    display: flex;
    justify-content: space-between;
  }
}
.price-area__title {
  background: url(../images/sec1_title.png) no-repeat top left;
  background-size: 20px 50px;
}
@media (min-width: 1025px) {
  .price-area__title {
    background-size: 65px 145px;
  }
}
.price-area__header-img {
  margin-bottom: 20px;
  border-radius: 20px;
}
@media (min-width: 1025px) {
  .price-area__header-img {
    border-radius: 30px;
    margin: -200px 0 50px 0;
    float: right;
  }
}

.renewal-area__block:first-child {
  margin-top: 0;
}
.renewal-area .rex-club-10th {
  display: block;
}
.renewal-area__title {
  background: url(../images/sec2_title.png) no-repeat center left;
  background-size: 20px 50px;
}
@media (min-width: 1025px) {
  .renewal-area__title {
    background-size: 65px 145px;
  }
}
.renewal-area__title span {
  margin-left: 30px;
  font-size: 1.8rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.renewal-area__title span:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 30px;
  background: white;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%) rotate(-25deg);
}
.renewal-area__title span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 30px;
  background: white;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(25deg);
}
@media (min-width: 1025px) {
  .renewal-area__title span {
    margin-left: 30px;
    font-size: 3rem;
  }
}
.renewal-area__box {
  display: flex;
  justify-content: space-between;
}
.renewal-area__box div:first-child {
  width: 65%;
}
.renewal-area__box div:last-child {
  width: 32%;
}
.renewal-area__box h4 {
  margin-bottom: 10px;
}
.renewal-area__box h4 span:first-child {
  margin-right: 10px;
  font-family: "Oswald", sans-serif;
  color: #E6002D;
}
.renewal-area__row-2 h4 {
  margin-bottom: 10px;
}
.renewal-area__row-2 h4 span:first-child {
  margin-right: 10px;
  font-family: "Oswald", sans-serif;
  color: #E6002D;
}
.renewal-area__attention p {
  margin-bottom: 10px;
  text-align: left;
  color: #E6002D;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .renewal-area__attention {
    display: flex;
    justify-content: space-between;
  }
  .renewal-area__attention p {
    margin: 0 20px 0 0;
  }
}

.campaign-area__title {
  background: url(../images/sec3_title.png) no-repeat center left;
  background-size: 20px 50px;
}
@media (min-width: 1025px) {
  .campaign-area__title {
    background-size: 65px 145px;
  }
}
.campaign-area__header-img {
  width: 100px;
  margin: -120px -30px 0 0;
  float: right;
}
@media (min-width: 1025px) {
  .campaign-area__header-img {
    width: 300px;
    margin: -200px 0 50px 0;
    padding-left: 40px;
    background: white;
  }
}
.campaign-area__header-img img {
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1025px) {
  .campaign-area__header-img img {
    border-radius: 30px;
  }
}
.campaign-area .title-point_bg {
  padding: 10px;
  margin-bottom: 30px;
  background: rgba(197, 0, 48, 0.1);
}
.campaign-area .title-point_bg .title-point {
  margin: 0;
}
.campaign-area__block_line {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: dotted 5px #E6002D;
}
@media (min-width: 1025px) {
  .campaign-area__block_line {
    margin: 50px 0;
    padding-bottom: 50px;
    border-bottom: dotted 10px #E6002D;
  }
}
.campaign-area h3 span {
  height: 1.5em;
  width: 5em;
  margin-right: 10px;
  padding: 5px;
  display: block;
  background: #E6002D;
  color: white;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1025px) {
  .campaign-area h3 span {
    height: 2em;
    width: 2em;
    margin-right: 10px;
    padding: 10px;
    display: inline-block;
    background: #E6002D;
    color: white;
    font-size: 2rem;
    line-height: 1;
    text-align: center;
  }
}
.campaign-area__ticket {
  text-align: center;
}
.campaign-area__ticket img {
  margin: 20px auto;
}
@media (min-width: 1025px) {
  .campaign-area__ticket img {
    margin: 50px auto;
  }
}
.campaign-area__block-img {
  width: 100px;
  margin: -10px -30px 0 10px;
  float: right;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1025px) {
  .campaign-area__block-img {
    width: 300px;
    margin: 0px 0 50px 0;
    border-radius: 30px;
  }
}

.benefits-area__title {
  background: url(../images/sec4_title.png) no-repeat center left;
  background-size: 20px 50px;
}
@media (min-width: 1025px) {
  .benefits-area__title {
    background-size: 65px 145px;
  }
}
.benefits-area h3 {
  min-height: 50px;
  height: auto;
  margin-bottom: 10px;
  color: #E6002D;
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
@media (min-width: 1025px) {
  .benefits-area h3 {
    height: 70px;
    margin-bottom: 30px;
  }
}
.benefits-area h3 span span {
  margin-bottom: 0px;
  padding: 5px;
  line-height: 1;
  display: inline-block;
  border: solid 1px #E6002D;
  border-radius: 10px;
}
.benefits-area h3.number01 {
  background: url(../images/title-number_1.png) no-repeat;
}
.benefits-area h3.number02 {
  background: url(../images/title-number_2.png) no-repeat;
}
.benefits-area h3.number03 {
  background: url(../images/title-number_3.png) no-repeat;
}
.benefits-area h3.number04 {
  background: url(../images/title-number_4.png) no-repeat;
}
.benefits-area h3.number05 {
  background: url(../images/title-number_5.png) no-repeat;
}
.benefits-area h3.number06 {
  background: url(../images/title-number_6.png) no-repeat;
}
.benefits-area h3.number07 {
  background: url(../images/title-number_7.png) no-repeat;
}
.benefits-area h3.number08 {
  background: url(../images/title-number_8.png) no-repeat;
}
.benefits-area h3.number09 {
  background: url(../images/title-number_9.png) no-repeat;
}
.benefits-area h3.number10 {
  background: url(../images/title-number_10.png) no-repeat;
}
.benefits-area h3.number11 {
  background: url(../images/title-number_11.png) no-repeat;
}
.benefits-area h3.number12 {
  background: url(../images/title-number_12.png) no-repeat;
}
.benefits-area h3.number13 {
  background: url(../images/title-number_13.png) no-repeat;
}
.benefits-area h3.number01, .benefits-area h3.number02, .benefits-area h3.number03, .benefits-area h3.number04, .benefits-area h3.number05, .benefits-area h3.number06, .benefits-area h3.number07, .benefits-area h3.number08, .benefits-area h3.number09, .benefits-area h3.number10, .benefits-area h3.number11, .benefits-area h3.number12, .benefits-area h3.number13 {
  padding-left: 60px;
  background-position: top left;
  background-size: 60px 50px;
}
@media (min-width: 1025px) {
  .benefits-area h3.number01, .benefits-area h3.number02, .benefits-area h3.number03, .benefits-area h3.number04, .benefits-area h3.number05, .benefits-area h3.number06, .benefits-area h3.number07, .benefits-area h3.number08, .benefits-area h3.number09, .benefits-area h3.number10, .benefits-area h3.number11, .benefits-area h3.number12, .benefits-area h3.number13 {
    padding-left: 80px;
    background-position: center left;
    background-size: 80px 70px;
  }
}
.benefits-area__header-img {
  width: 150px;
  margin: -100px -50px 0 0;
  float: right;
}
@media (min-width: 1025px) {
  .benefits-area__header-img {
    width: 300px;
    margin: -200px 0 50px 0;
  }
}
.benefits-area ol > li:not(:last-of-type) {
  margin-bottom: 30px;
}
.benefits-area ol > li > p {
  margin-bottom: 20px;
}
.benefits-area ol > li .right-img img {
  margin-top: 10px;
}
.benefits-area ol > li ul li {
  margin-bottom: 5px;
  padding: 10px;
  background: #eee;
}
@media (min-width: 1025px) {
  .benefits-area ol {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 45px 1%;
  }
  .benefits-area ol > li {
    width: 48%;
  }
  .benefits-area ol > li.row-1 {
    width: 100%;
  }
  .benefits-area ol > li > p {
    margin-bottom: 20px;
  }
  .benefits-area ol > li .right-img {
    display: flex;
    justify-content: space-between;
  }
  .benefits-area ol > li .right-img > p {
    width: 48%;
  }
  .benefits-area ol > li .right-img > div {
    width: 48%;
  }
  .benefits-area ol > li .row-1-right-img {
    width: 100%;
    margin-top: -100px;
  }
}
.benefits-area .benefits-area__note {
  margin-bottom: 0;
}
.benefits-area__footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.resale-area__title {
  background: url(../images/sec5_title.png) no-repeat center left;
  background-size: 20px 50px;
}
@media (min-width: 1025px) {
  .resale-area__title {
    background-size: 65px 145px;
  }
}
.resale-area__title span {
  padding: 0 5px;
  color: white;
  background: #E6002D;
  font-size: 1.8rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1025px) {
  .resale-area__title span {
    font-size: 3rem;
  }
}
.resale-area__header-img {
  width: 100px;
  margin: -10px -30px 20px 0px;
  padding-left: 20px;
  float: right;
  background: white;
}
@media (min-width: 1025px) {
  .resale-area__header-img {
    width: 300px;
    margin: -200px 0 50px 0;
  }
}
.resale-area__header-img img {
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1025px) {
  .resale-area__header-img img {
    border-radius: 30px;
  }
}
.resale-area__header-img2 {
  width: 100px;
  margin: -10px -30px 20px 0px;
  padding-left: 20px;
  float: right;
  background: white;
}
@media (min-width: 1025px) {
  .resale-area__header-img2 {
    width: 300px;
    margin: 0 0 50px 0;
  }
}
.resale-area__header-img2 img {
  border-radius: 20px;
}
@media (min-width: 1025px) {
  .resale-area__header-img2 img {
    border-radius: 30px;
  }
}
.resale-area__row-3 .bubble-block {
  height: 3em;
  display: flex;
  align-items: center;
}
.resale-area__block ul {
  margin-top: 10px;
}
.resale-area__block ul li {
  margin-bottom: 20px;
  border: solid 2px #E6002D;
  border-radius: 20px;
  position: relative;
  text-align: center;
}
.resale-area__block ul li p {
  padding: 10px 0;
  display: grid;
  place-content: center;
  place-items: center;
}
.resale-area__block ul li p:first-child {
  background: #E6002D;
  color: white;
  border-radius: 18px 18px 0 0;
  display: flex;
}
.resale-area__block ul li p:last-child {
  display: flex;
  text-align: left;
  color: #E6002D;
}
.resale-area__block ul li:not(:last-of-type) {
  border: solid 2px #333;
}
.resale-area__block ul li:not(:last-of-type)::after {
  width: 10px;
  height: 20px;
  content: url("../images/icon_triangle.png");
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: rotate(90deg) translateX(-50%);
}
.resale-area__block ul li:not(:last-of-type) p:first-child {
  display: block;
  background: #333;
}
.resale-area__block ul li:not(:last-of-type) p:first-child span {
  display: block;
}
.resale-area__block ul li:not(:last-of-type) p:last-child {
  color: black;
}
@media (min-width: 1025px) {
  .resale-area__block ul {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
  }
  .resale-area__block ul li {
    width: 30%;
  }
  .resale-area__block ul li p {
    height: 3em;
    padding: 10px 0;
    display: grid;
    place-content: center;
    place-items: center;
  }
  .resale-area__block ul li p:first-child {
    background: #E6002D;
    color: white;
    border-radius: 18px 18px 0 0;
    display: flex;
  }
  .resale-area__block ul li p:last-child {
    display: flex;
    text-align: left;
    color: #E6002D;
  }
  .resale-area__block ul li:not(:last-of-type) {
    border: solid 2px #333;
  }
  .resale-area__block ul li:not(:last-of-type)::after {
    width: 10px;
    height: 20px;
    content: url("../images/icon_triangle.png");
    display: block;
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
  }
  .resale-area__block ul li:not(:last-of-type) p:first-child {
    display: block;
    background: #333;
  }
  .resale-area__block ul li:not(:last-of-type) p:first-child span {
    display: block;
  }
  .resale-area__block ul li:not(:last-of-type) p:last-child {
    color: black;
  }
}

.app-web-area {
  width: 100%;
  margin-top: 50px;
}
.app-web-area__title {
  padding-left: 0px;
}
.app-web-area__title h2 {
  font-size: 2.5rem;
  color: #E6002D;
}
@media (min-width: 1025px) {
  .app-web-area__title h2 {
    font-size: 4rem;
  }
}
.app-web-area__title span {
  padding: 5px 5px 5px 40px;
  display: inline-block;
  border: solid 2px #E6002D;
  border-radius: 10px;
  background: url(../images/icon_excl_red.png) no-repeat center left 10px;
}
@media (min-width: 1025px) {
  .app-web-area__title span {
    padding: 10px 10px 10px 40px;
  }
}
.app-web-area__block_left {
  width: 100%;
  margin: 0 0 30px;
}
.app-web-area__block_left p {
  margin-top: 10px;
}
.app-web-area__block_left p:first-child {
  margin-top: 30px;
}
@media (min-width: 1025px) {
  .app-web-area__block_left {
    width: 650px;
    margin: 0 0 50px;
  }
}
.app-web-area h3 {
  display: block;
  line-height: 1.1;
}
.app-web-area h3 span {
  padding: 5px 10px;
  display: inline-block;
  border: solid 1px #E6002D;
  border-radius: 10px;
  line-height: 1;
}
.app-web-area__row-3 li div {
  margin-bottom: 30px;
}
.app-web-area__block-img {
  width: 100px;
  margin: 0 -20px 0 10px;
  padding-left: 10px;
  float: right;
  background: white;
}
@media (min-width: 1025px) {
  .app-web-area__block-img {
    width: 300px;
    margin: 0px 0 50px 0;
    border-radius: 30px;
  }
}
.app-web-area__block-img img {
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1025px) {
  .app-web-area__block-img img {
    border-radius: 30px;
  }
}

.app-mail-area {
  width: 100%;
  margin: 30px 0 -30px 0;
}
@media (min-width: 1025px) {
  .app-mail-area {
    margin: 50px 0 -50px 0;
  }
}
.app-mail-area__title {
  padding-left: 0px;
}
.app-mail-area__title h3 {
  font-size: 2.5rem;
  color: #E6002D;
}
@media (min-width: 1025px) {
  .app-mail-area__title h3 {
    font-size: 4rem;
  }
}
.app-mail-area__block_left {
  width: 100%;
  margin: 0 0 30px;
}
@media (min-width: 1025px) {
  .app-mail-area__block_left {
    width: 650px;
    margin: 0 0 50px;
  }
}
@media (max-width: 768px) {
  .app-mail-area h3 {
    display: block;
    line-height: 1.1;
  }
  .app-mail-area h3 span {
    display: inline-block;
    line-height: 1;
  }
}
.app-mail-area__header-img {
  width: 100px;
  margin: -100px -20px 10px 10px;
  float: right;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 1025px) {
  .app-mail-area__header-img {
    width: 300px;
    margin: -150px 0 50px 0;
    border-radius: 30px;
  }
}
.app-mail-area .border_w, .app-mail-area .border_b, .app-mail-area .border_r {
  padding: 0 5px;
  border-radius: 5px;
  display: inline-block;
}
.app-mail-area .border_w {
  display: block;
  border: solid 1px white;
  font-family: "Oswald", sans-serif;
}
.app-mail-area .border_b {
  margin: 0 5px 5px 0;
  border: solid 1px black;
}
.app-mail-area .border_r {
  margin: 5px 5px 5px 0;
  border: solid 1px #E6002D;
  color: #E6002D;
  font-family: "Oswald", sans-serif;
}
.app-mail-area .title-ribbon_s-line {
  margin-top: 50px;
}
.app-mail-area .title-border {
  margin-bottom: 20px;
}
.app-mail-area .list-disc {
  margin-top: 0;
}

.app-schedule-area__title {
  background: url(../images/sec6_title.png) no-repeat center left;
  background-size: 20px 50px;
}
@media (min-width: 1025px) {
  .app-schedule-area__title {
    background-size: 65px 145px;
  }
}
.app-schedule-area__box {
  padding: 10px;
  background: rgba(197, 0, 48, 0.1);
}
@media (min-width: 1025px) {
  .app-schedule-area__box {
    padding: 20px;
  }
}
.app-schedule-area__box h3 {
  margin-bottom: 10px;
  color: #E6002D;
}
.app-schedule-area .cap {
  margin-bottom: 20px;
  text-align: center;
}
.app-schedule-area__block {
  margin: 30px 0 0;
}
@media (min-width: 1025px) {
  .app-schedule-area__block {
    margin: 50px 0 0;
  }
}
.app-schedule-area__attention {
  margin: 10px 0;
  padding: 10px;
  background: rgba(197, 0, 48, 0.1);
  border-radius: 10px;
  text-align: left;
}
.app-schedule-area__attention ul {
  margin: 0;
}
@media (min-width: 1025px) {
  .app-schedule-area__attention {
    margin: 20px 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
  }
  .app-schedule-area__attention div {
    width: 45%;
  }
  .app-schedule-area__attention ul {
    width: 54%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .app-schedule-area__attention ul li {
    width: 53%;
  }
  .app-schedule-area__attention ul li:nth-child(even) {
    width: 40%;
  }
}
.app-schedule-area .desc-list, .app-schedule-area .desc-list_red {
  background: white;
}
.app-schedule-area .desc-list .dsp-flex p, .app-schedule-area .desc-list_red .dsp-flex p {
  margin-bottom: 10px;
}
@media (min-width: 1025px) {
  .app-schedule-area .desc-list .dsp-flex, .app-schedule-area .desc-list_red .dsp-flex {
    display: flex;
  }
  .app-schedule-area .desc-list .dsp-flex p, .app-schedule-area .desc-list_red .dsp-flex p {
    margin-right: 10px;
  }
}

.faq-area__title {
  padding-left: 70px;
  background: url(../images/secfaq_title.png) no-repeat center left;
  background-size: 60px 50px;
}
@media (min-width: 1025px) {
  .faq-area__title {
    padding-left: 200px;
    background-size: 175px 145px;
  }
}

.note-area .title-line {
  margin-bottom: 30px;
  padding: 20px;
  border-top: solid 3px #E6002D;
  border-bottom: solid 3px #E6002D;
}
@media (min-width: 1025px) {
  .note-area .title-line h3 {
    display: flex;
    place-content: center;
    place-items: center;
    text-align: center;
  }
}
.note-area .title-line h3 span:first-child {
  margin: 0;
  padding: 10px 0 10px 60px;
  height: auto;
  font-weight: 500;
  background: url(../images/icon_attention.png) no-repeat center left;
}
.note-area .title-line h3 span:last-child {
  height: 1em;
  margin: 0 0 0 10px;
  padding: 5px;
  line-height: 1;
  border: solid 1px #e6002d;
  border-radius: 10px;
}
.note-area__block {
  margin: 30px 0 0;
}
@media (min-width: 1025px) {
  .note-area__block {
    margin: 100px 0 0;
  }
}
.note-area .list-disc {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .floating-banner {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
  }
  .floating-banner::after {
    height: 50px;
    width: calc(100% - 64px);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    border-bottom: 50px solid #E6002D;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
  }
  .floating-banner::before {
    height: 52px;
    width: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    border-bottom: 52px solid white;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
  }
  .floating-banner a {
    width: 12em;
    height: 50px;
    margin-left: 30px;
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    z-index: 100;
    position: absolute;
    background: url(../images/icon_link.png) no-repeat center right;
    display: grid;
    place-content: center;
  }
}
@media (min-width: 1025px) {
  .floating-banner {
    width: 60px;
    height: 280px;
    position: fixed;
    bottom: 100px;
    right: -10px;
    transition: all 0.3s;
  }
  .floating-banner::after {
    height: 280px;
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    border-right: 60px solid #E6002D;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: none;
  }
  .floating-banner::before {
    height: 284px;
    position: absolute;
    top: -2px;
    right: 0px;
    content: "";
    border-right: 62px solid white;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
  }
  .floating-banner:hover {
    right: 0;
  }
  .floating-banner a {
    width: 50px;
    height: 260px;
    margin: 20px 0 0 0;
    padding-bottom: 40px;
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    z-index: 100;
    writing-mode: vertical-rl;
    position: absolute;
    background: url(../images/icon_link.png) no-repeat bottom 20px center;
    background-size: 50%;
    display: grid;
    place-content: center;
  }
}

footer {
  padding: 30px 0 10px;
  background: black;
  color: white;
}
@media (min-width: 1025px) {
  footer {
    padding: 50px 0 20px;
  }
}
footer .footer-area {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 30px;
}
@media (min-width: 1025px) {
  footer .footer-area {
    display: flex;
    justify-content: space-between;
  }
}
footer .footer-area > div:first-child {
  margin-bottom: 10px;
  display: flex;
  place-content: center;
}
footer .footer-area > div:first-child img {
  width: 50px;
  margin-right: 20px;
}
@media (min-width: 1025px) {
  footer .footer-area > div:first-child {
    width: 50%;
    margin-bottom: 0;
    display: flex;
  }
  footer .footer-area > div:first-child img {
    width: 80px;
    margin-right: 20px;
  }
}
footer .footer-area > div:last-child {
  align-items: center;
}
footer .footer-area > div:last-child p {
  text-align: center;
}
footer .footer-area > div:last-child p span {
  width: 100%;
  margin: 5px 10px 5px 0;
  display: inline-block;
  text-align: center;
  border: solid 1px white;
}
@media (min-width: 1025px) {
  footer .footer-area > div:last-child {
    width: 50%;
    display: flex;
    align-items: center;
  }
  footer .footer-area > div:last-child p {
    text-align: left;
  }
  footer .footer-area > div:last-child p span {
    width: 5em;
  }
}
footer p {
  text-align: center;
  font-size: 1.4rem;
}
footer .tel {
  padding-left: 50px;
  background: url(../images/icon_tel_w.png) no-repeat center left;
  background-size: 10%;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: white;
  display: block;
}
@media (min-width: 1025px) {
  footer .tel {
    font-size: 5rem;
  }
}