@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

.ps5Content {
  text-align: left;
  font-size: 16px;
  line-height: normal;
  color: #333333;
}
.ps5Content img {
  max-width: 100%;
}
.ps5Content sup {
  top: 0;
  color: #757575;
}
.ps5Content .pink {
  color: #ED005B;
}
.ps5Content .colorRed {
  color: #ee0000 !important;
}
.ps5Content .title {
  text-align: center;
}
.ps5Content .inner {
  max-width: 890px;
  margin: 0 auto;
}
.ps5Content .btnLink {
  text-align: center;
}
.ps5Content .btnLink a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background-color: #EAEAEA;
  width: 326px;
  color: #555555;
  height: 58px;
  text-decoration: none;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .btnLink--option a {
  border-radius: 4px;
  border: 2px solid #707070;
  background-color: #fff;
  pointer-events: unset;
  margin: 0 auto;
  position: relative;
  width: 380px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ps5Content .btnLink--option a:hover {
  background-color: #707070;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ps5Content .btnLink--option a:hover::after {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: url(../images/arrow_wt.svg) no-repeat center;
  background-size: contain;
}
.ps5Content .btnLink--option a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 7px;
  right: 15px;
  background: url(../images/arrow_row.svg) no-repeat center;
  background-size: contain;
}
.ps5Content .btnLink--active a {
  color: #fff !important;
  background-color: #ED005B !important;
  pointer-events: unset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 416px;
  font-weight: bold;
}
.ps5Content .btnLink--active a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ps5Content .btnLink--black a {
  border: 2px solid #262626;
  background-color: #262626;
  color: #fff;
  margin: 0;
  position: relative;
  width: 380px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  pointer-events: unset;
  font-weight: bold;
}
.ps5Content .btnLink--black a:hover {
  background-color: #fff;
  color: #262626;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.ps5Content .notes li, .ps5Content .notes dd,
.ps5Content .notesNum li,
.ps5Content .notesNum dd,
.ps5Content .listNormal li,
.ps5Content .listNormal dd {
  font-size: 16px;
  color: #757575;
}
.ps5Content .notes__item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.ps5Content .notes__item:last-child {
  margin-bottom: 0;
}
.ps5Content .notes__item::before {
  position: absolute;
  content: "※";
  left: 0;
}
.ps5Content .notes--option .notes__item {
  padding-left: 35px;
}
.ps5Content .notes--option .num2::before {
  content: "※2";
}
.ps5Content .notes--option .num3::before {
  content: "※3";
}
.ps5Content .notes--option .num4::before {
  content: "※4";
}
.ps5Content .notes--option .num5::before {
  content: "※5";
}
.ps5Content .notes--option .num6::before {
  content: "※6";
}
.ps5Content .notes--option .num7::before {
  content: "※7";
}
.ps5Content .notes--option .num8::before {
  content: "※8";
}
.ps5Content .notesNum {
  counter-reset: item;
  list-style-type: none;
}
.ps5Content .notesNum__item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 5px;
}
.ps5Content .notesNum__item:last-child {
  margin-bottom: 0;
}
.ps5Content .notesNum__item::before {
  counter-increment: item;
  content: "※" counter(item);
  position: absolute;
  left: 0;
}
.ps5Content .kv__wrapper {
  background-color: #F6F6F6;
  border-bottom: 6px solid #0e1d84;
}
.ps5Content .kv__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding-top: 34px;
}
.ps5Content .kv__tab--01, .ps5Content .kv__tab--02 {
  padding: 25px 50px 20px;
  max-width: 450px;
  border-radius: 12px 12px 0 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.ps5Content .kv__tab--01 .font-M, .ps5Content .kv__tab--02 .font-M {
  font-size: 23px;
}
.ps5Content .kv__tab--01 {
  margin-right: 5px;
  background-color: #0e1d84;
  color: #383838;
  color: #FFFFFF;
}
.ps5Content .kv__tab--02 {
  margin-left: 5px;
  background-color: #FFFFFF;
  color: #383838;
}
.ps5Content .kv__tab a {
  text-decoration: none;
}
.ps5Content .kv__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.ps5Content .kv__box:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 10px;
}
.ps5Content .kv__release {
  font-size: 24px;
  margin: 40px 0;
}
.ps5Content .kv__title {
  left: 70px;
  position: relative;
}
.ps5Content .kv .ps5convBtnArea {
  background-color: #101b79;
  text-align: center;
  padding: 65px 0;
}
.ps5Content .kv .ps5convBtnArea .ps5convBtnArea__title {
  padding-bottom: 20px;
  color: #ffffff !important;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.ps5Content .kv .ps5convBtnArea .btnLink {
  margin-bottom: 30px;
  background-color: #ffffff !important;
  width: 416px;
  margin: 0 auto 30px;
  border-radius: 50px;
}
.ps5Content .kv .ps5convBtnArea ul li {
  color: #ffffff;
}
.ps5Content .kv .ps5convBtnArea ul li a {
  color: #ffffff;
}
.ps5Content .kv .selectPlan__convBtn {
  color: #fff !important;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  padding: 25px 0;
  display: block;
  -webkit-box-shadow: 2px 2px 6px 2px #bfbfbf;
  box-shadow: 2px 2px 6px 2px #bfbfbf;
  border-radius: 5px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 690px;
  background-color: #d30d58 !important;
  border-bottom: 3px solid #9b0a41;
  margin: 35px auto 15px !important;
}
.ps5Content .kv .spiderman {
  background-color: #101b79;
  margin: 0 auto;
  text-align: center;
}
.ps5Content .kv .spiderman__inner {
  width: 815px;
  border-top: 2px solid #4753bc;
  padding: 70px 0 100px;
  margin: 0 auto;
}
.ps5Content .kv .spiderman picture {
  display: block;
}
.ps5Content .kv .spiderman__ttl {
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 30px;
}
.ps5Content .kv .spiderman .btn4000 {
  margin-top: 30px;
  width: 417px;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.ps5Content .kv .spiderman .btn4000 a {
  color: #333333;
  font-size: 18px;
  display: block;
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
}
.ps5Content .movement {
  margin: 42px 0 114px;
  background: url(../images/bg_image.png) no-repeat center;
  background-size: cover;
  padding: 24px 0;
}
.ps5Content .movement__btns {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.ps5Content .movement__btnsItem a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 58px;
  background-color: #fff;
  border-radius: 4px;
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ps5Content .movement__btnsItem a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 7px;
  right: 15px;
  background: url(../images/arrow_row.svg) no-repeat center;
  background-size: contain;
}
.ps5Content .movement__btnsItem a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.9;
}
@media all and (-ms-high-contrast: none) {
  .ps5Content .movement__btns {
    display: -ms-flexbox;
  }
  .ps5Content .movement__btnsItem {
    width: 25%;
    margin-right: 10px;
  }
  .ps5Content .movement__btnsItem:last-child {
    margin-right: 0;
  }
}
.ps5Content .psLife {
  margin-bottom: 100px;
}
.ps5Content .psLife__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  margin: 60px 0 70px;
}
.ps5Content .psLife__gallery img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media all and (-ms-high-contrast: none) {
  .ps5Content .psLife__gallery {
    display: -ms-flexbox;
  }
  .ps5Content .psLife__galleryItem {
    width: 25%;
  }
}
.ps5Content .psLife__option {
  border: 8px solid #E6E6E6;
  border-radius: 12px;
  padding: 48px 45px 40px;
  margin: 40px 0 48px;
}
.ps5Content .psLife__optionTitle {
  font-size: 28px;
  margin-bottom: 38px;
  font-weight: normal;
}
.ps5Content .psLife__optionTitle sup {
  font-size: 16px;
  vertical-align: top;
}
.ps5Content .psLife__optionImg {
  margin-bottom: 40px;
}
.ps5Content .psLife__text {
  margin-bottom: 27px;
}
.ps5Content .psLife .notes {
  letter-spacing: -0.03em;
}
.ps5Content .point {
  margin: 30px auto 0;
  padding: 0;
  background-color: transparent;
}
.ps5Content .point__box {
  padding-bottom: 0px;
  margin-bottom: 40px;
  border-bottom: 1px solid #CCCCCC;
}
.ps5Content .point__box:first-child {
  border-top: 1px solid #CCCCCC;
}
.ps5Content .point__box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ps5Content .point__box:last-child .point__grid {
  margin-bottom: 0;
}
.ps5Content .point__grid {
  display: -ms-grid;
  display: grid;
  grid-column-gap: 50px;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
}
.ps5Content .point__link a {
  position: relative;
  color: #333;
  font-weight: bold;
}
.ps5Content .point__link a:after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 12px;
  height: 12px;
  background-image: url(/hikari/renewal/common/images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media all and (-ms-high-contrast: none) {
  .ps5Content .point__grid {
    display: -ms-flexbox;
  }
  .ps5Content .point__gridItem {
    width: 50%;
  }
  .ps5Content .point__text {
    padding-left: 50px;
  }
}
.ps5Content .point__img figure {
  position: relative;
  border: 1px solid #e8e8e8;
}
.ps5Content .point__img figure::before {
  content: "";
  display: block;
  padding-top: 260px;
}
.ps5Content .point__img figure img {
  position: absolute;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ps5Content .point__titleSub {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
  font-weight: normal;
}
.ps5Content .point__titleSub sup {
  font-size: 16px;
}
.ps5Content .point__discri--mb30 {
  margin-bottom: 30px;
}
.ps5Content .point .btnLink a {
  width: 323px;
}
.ps5Content .point sup, .ps5Content .point .notesNum li, .ps5Content .point .listNormal li, .ps5Content .point .notes li {
  color: #666 !important;
}
.ps5Content .ctaArea {
  margin-bottom: 120px;
}
.ps5Content .ctaArea__logo {
  margin-bottom: 37px;
}
.ps5Content .ctaArea__text {
  font-weight: bold;
  font-size: 30px;
}
.ps5Content .ctaArea__text--mb34 {
  margin-bottom: 34px;
}
.ps5Content .ctaArea .btnLink a {
  margin: 0 auto;
}
.ps5Content .ctaArea__line {
  margin-top: 64px;
}
.ps5Content .ctaArea__lineTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #0BAC34;
  color: #fff;
  padding: 26px 0;
  position: relative;
}
.ps5Content .ctaArea__lineTitle::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #0bac33 transparent transparent transparent;
  bottom: -19px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.ps5Content .ctaArea__lineFriend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
.ps5Content .ctaArea__lineFriendItem {
  width: 50%;
  padding: 26px 0 20px;
}
.ps5Content .ctaArea__lineFriendItem:first-child {
  border-right: 1px solid #CCCCCC;
}
.ps5Content .ctaArea__lineFriendQr img {
  width: 136px;
  height: auto;
}
.ps5Content .ctaArea__lineText {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}
.ps5Content .ctaArea__lineBtn {
  width: 176px;
  height: 136px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.ps5Content .ctaArea__lineBtn a {
  display: block;
}
.ps5Content .ctaArea__lineBtn a img {
  width: 176px;
  height: auto;
  display: block;
}
.ps5Content .ctaArea__lineNotes {
  margin-top: 24px;
  font-size: 16px;
}
.ps5Content .price {
  background-color: #EBEBEB;
  padding: 90px 0 100px;
  margin-bottom: 90px;
}
.ps5Content .price__titleSub {
  font-size: 28px;
  margin-bottom: 47px;
  font-weight: normal;
}
.ps5Content .price__box {
  margin-top: 19px;
  padding: 48px 40px 45px;
  border: 8px solid #E6E6E6;
  border-radius: 12px;
  background-color: #fff;
}
.ps5Content .price__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ps5Content .price__blockItem {
  width: 50%;
  text-align: center;
  padding: 17px 0 28px;
}
.ps5Content .price__blockItem:first-child {
  border-right: 1px solid #D8D8D8;
}
.ps5Content .price__blockDt {
  min-height: 282px;
}
.ps5Content .price__monthly {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin: 35px 0 10px;
}
.ps5Content .price__notes {
  font-weight: bold;
}
.ps5Content .price .listNormal li {
  color: #757575;
  font-size: 16px;
}
.ps5Content .price__table {
  margin-top: 35px;
}
.ps5Content .price__tableImg {
  margin-bottom: 20px;
}
.ps5Content .price__toggle {
  margin-bottom: 30px;
}
.ps5Content .price__toggle span {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.ps5Content .price__toggle .open::after {
  display: block;
  content: "";
  background: url(../images/arrow_top.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 5px;
  margin: 10px auto 0;
}
.ps5Content .price__toggle .off::after {
  display: block;
  content: "";
  background: url(../images/arrow_row.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 5px;
  margin: 10px auto 0;
}
.ps5Content .flow {
  margin-bottom: 60px;
}
.ps5Content .flow__information {
  max-width: 768px;
  margin: 60px auto 0;
}
.ps5Content .flow__information .flow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ps5Content .flow__information .flow__item:last-child::after {
  content: none;
}
.ps5Content .flow__information .flow__item::after {
  display: block;
  content: "";
  background: url(../images/arrow_bottom.svg) no-repeat center;
  background-size: contain;
  width: 32px;
  height: 9px;
  margin: 20px auto;
}
.ps5Content .flow__information .flow__itemDl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
}
.ps5Content .flow__information .flow__itemDl + p {
  margin-bottom: 20px;
}
.ps5Content .flow__information .flow__itemDt {
  width: 135px;
  height: 58px;
  background-color: #262626;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .flow__information .flow__itemDd {
  max-width: 633px;
  width: 100%;
  background-color: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .flow__information .flow__itemDicri {
  margin-top: 10px;
  padding: 25px 73px 24px;
  background-color: #DFEBF5;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .psPlus {
  padding: 80px 0 100px;
  margin-bottom: 90px;
  background-color: #EBEBEB;
}
.ps5Content .psPlus__box {
  background-color: #fff;
  border: 8px solid #E6E6E6;
  border-radius: 12px;
  padding: 60px 10px 70px;
}
.ps5Content .psPlus__text {
  font-size: 20px;
}
.ps5Content .psPlus__logo {
  max-width: 600px;
  margin: 44px auto 40px;
}
.ps5Content .psPlus .btnLink a {
  width: 323px;
  margin: 0 auto;
}
.ps5Content .notesArea {
  margin-bottom: 50px;
}
.ps5Content .notesArea__box {
  margin-top: 60px;
}
.ps5Content .notesArea dl dd {
  color: #333333;
}
.ps5Content .modalTable {
  padding-right: 10px;
}
.ps5Content .modalTable table {
  border: 1px solid #333;
  width: 100%;
}
.ps5Content .modalTable table th, .ps5Content .modalTable table td {
  padding: 5px;
}
.ps5Content .modalTable table th {
  width: 50%;
}
.ps5Content .modalTable table th:first-child {
  border-right: 1px solid #333;
}
.ps5Content .modalTable table td {
  border-top: 1px solid #333;
}
.ps5Content .modalTable table td:first-child {
  border-right: 1px solid #333;
}
.ps5Content .copy {
  color: #424242;
}

@media screen and (min-width: 560px) and (max-width: 640px) {
  .ps5Content .point__img figure img {
    height: auto;
    top: 0;
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
/* 5月 PS5オプション改修 */
.ps5Content .title {
  margin-top: 30px;
  font-size: 30px;
  font-weight: normal;
}
.ps5Content .btnLink {
  text-align: center;
}
.ps5Content .btnLink span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background-color: #EAEAEA;
  width: 326px;
  color: #555555;
  height: 58px;
  margin: 0 auto;
  text-decoration: none;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .btnLink--active span {
  color: #fff !important;
  background-color: #ED005B !important;
  pointer-events: unset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 416px;
  font-weight: bold;
}
.ps5Content .btnLink--active span:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ps5Content .psLife .price {
  background-color: transparent;
  padding: 0 !important;
  margin-bottom: 40px;
}
.ps5Content .psLife .price__box {
  padding: 48px 0 45px;
}
.ps5Content .psLife__priceItem {
  display: block;
  position: relative;
  text-align: center;
  margin: 50px auto 80px;
}
.ps5Content .psLife__priceTitle {
  display: block;
  text-align: center;
  padding: 25px 0;
  border: solid 2px #707070;
  border-radius: 3px;
  font-size: 24px;
  font-weight: bold;
}
.ps5Content .psLife__priceTitle::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../images/20220520/icon-plus.svg) no-repeat center;
  width: 100%;
  height: 100%;
  margin: 25px auto 0;
  text-align: center;
}
.ps5Content .psLife__optArea {
  display: block;
  position: relative;
  text-align: center;
  margin: 50px auto 50px;
  border: solid 1px #707070;
}
.ps5Content .psLife__optTitle {
  display: block;
  text-align: center;
  padding: 25px 0;
  background-color: #035AB2;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
}
.ps5Content .psLife__optItem {
  padding: 10px 40px 70px;
}
.ps5Content .psLife .optionBtn--01, .ps5Content .psLife .optionBtn--02 {
  position: relative !important;
  margin: 30px auto -20px !important;
  padding: 10px 20px 0 !important;
  text-align: left !important;
  color: #FFFFFF !important;
  border-radius: 20px !important;
  cursor: pointer;
}
.ps5Content .psLife .optionBtn--01 {
  background-color: #D13030;
}
.ps5Content .psLife .optionBtn--02 {
  background-color: #333333;
}
.ps5Content .psLife__optDetail--01, .ps5Content .psLife__optDetail--02 {
  border-radius: 0 0 15px 15px;
  margin-top: -20px;
  margin-bottom: 20px;
}
.ps5Content .psLife__optDetail--01 {
  border: solid 3px #D13030;
  border-top: 20px solid #D13030;
}
.ps5Content .psLife__optDetail--02 {
  border: solid 3px #333333;
  border-top: 20px solid #333333;
}
.ps5Content .psLife__optPrice .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
  border-width: 3px;
  border-radius: 50%;
}
.ps5Content .psLife__optPrice .icon--default {
  right: 20px;
  border-color: #424242;
}
.ps5Content .psLife__optPrice .icon--default .icon-mark:before,
.ps5Content .psLife__optPrice .icon--default .icon-mark::after {
  background-color: #707070;
}
.ps5Content .psLife__optPrice .icon-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.ps5Content .psLife__optPrice .icon-mark::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: #40180A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ps5Content .psLife__optPrice .icon-mark::after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
  width: 12px;
  height: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.ps5Content .psLife__optPrice .js-open .icon-mark:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.ps5Content .psLife__opBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 30px;
}
.ps5Content .psLife__opBox--img {
  padding: 20px;
}
.ps5Content .psLife__opBox--note {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
}
.ps5Content .psLife__optNote {
  margin: 10px 30px 20px;
  padding: 10px;
  background-color: #FFEFEF;
  font-size: 20px;
  font-weight: bold;
}
.ps5Content .psLife__optInner {
  margin: 20px;
  padding: 20px;
  background-color: #EFEFEF;
}
.ps5Content .psLife__optInnerTitle {
  padding: 10px 0 20px;
  background-color: #EFEFEF;
  font-size: 25px;
  font-weight: normal;
}
.ps5Content .psLife__optInnerStep {
  padding: 15px 10px;
  background-color: #FFFFFF;
  text-align: left;
}
.ps5Content .psLife__optInnerStep dt {
  font-weight: bold;
  padding-bottom: 5px;
}
.ps5Content .psLife__optInnerStep:not(:last-of-type) {
  margin-bottom: 45px;
  position: relative;
}
.ps5Content .psLife__optInnerStep:not(:last-of-type)::after {
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  bottom: -40px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 12.5px solid transparent;
  border-top: 10px solid #424242;
}
.ps5Content .psLife__optInnerStep .psLife__optStepList {
  color: #757575;
}
.ps5Content .psLife__optInnerStep .psLife__optStepList li::before {
  content: "※";
  padding-right: 5px;
}
.ps5Content .psLife__optInnerStep .tab_box {
  margin-top: 20px;
}
.ps5Content .psLife__optInnerStep .tab_box .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn01,
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn02 {
  color: #424242;
  background: lightgray;
  text-align: center;
  font-weight: bold;
  padding: 0.5em 1em;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 2px;
  position: relative;
}
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn01 + .tab_btn01,
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn02 + .tab_btn02 {
  margin-left: 5px;
}
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn01.active,
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn02.active {
  background: #212121;
  color: #FFFFFF;
  font-weight: bold;
}
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn01.active:after,
.ps5Content .psLife__optInnerStep .tab_box .btn_area .tab_btn02.active:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border: 10px solid transparent;
  border-top: 10px solid #212121;
  width: 0;
  height: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area {
  border: 1px solid #333;
  margin-top: 20px;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .tab_panel01,
.ps5Content .psLife__optInnerStep .tab_box .panel_area .tab_panel02 {
  display: none;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .tab_panel01.active,
.ps5Content .psLife__optInnerStep .tab_box .panel_area .tab_panel02.active {
  display: block;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content {
  padding: 20px 15px;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content .selectMeans__item--title {
  font-weight: bold;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content .selectMeans__item:not(:last-of-type) {
  margin-bottom: 10px;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table {
  border: 1px solid #333;
  margin-top: 20px;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table th {
  width: 50%;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table td {
  border-top: 1px solid #333;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table th, .ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table td {
  padding: 5px;
}
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table th:first-child,
.ps5Content .psLife__optInnerStep .tab_box .panel_area .selectMeans__content table td:first-child {
  border-right: 1px solid #333;
}
.ps5Content__optStepList {
  color: #757575;
}
.ps5Content__optStepList li::before {
  content: "※";
  padding-right: 5px;
}
.ps5Content .ps5Block__movieSec {
  background-color: #333;
  padding: 65px 0;
  margin-bottom: 0;
}
.ps5Content .ps5Block__detail {
  max-width: 890px;
  margin: 0 auto 100px;
}
.ps5Content .ps5Block__titleImg {
  margin: 50px auto 20px;
}
.ps5Content .ps5Faq {
  background-color: #EBEBEB;
  padding: 90px 0 100px;
  margin-bottom: 90px;
}
.ps5Content .ps5Faq__inner {
  max-width: 890px;
  margin: 0 auto;
}
.ps5Content .ps5Faq__title {
  text-align: center;
}
.ps5Content .ps5Faq__content {
  max-width: 890px;
  padding: 48px 45px 40px;
  margin: 40px auto 48px;
  border: 8px solid #E6E6E6;
  border-radius: 12px;
  background-color: #FFFFFF;
}
.ps5Content .ps5Faq__set {
  padding: 30px 70px 30px 30px;
  font-size: 18px;
}
.ps5Content .ps5Faq__set:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.ps5Content .ps5Faq__question {
  position: relative;
  font-weight: bold;
}
.ps5Content .ps5Faq .js-open .icon-mark::after {
  -webkit-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important;
}
.ps5Content .ps5Faq .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  border-width: 3px;
  border-style: solid;
  border-radius: 50%;
}
.ps5Content .ps5Faq .icon--blue {
  right: -50px;
  border-color: #0066be;
}
.ps5Content .ps5Faq .icon--blue .icon-mark::before, .ps5Content .ps5Faq .icon--blue .icon-mark::after {
  background-color: #0066be;
}
.ps5Content .ps5Faq .icon-mark {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.ps5Content .ps5Faq .icon-mark::before, .ps5Content .ps5Faq .icon-mark::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.ps5Content .ps5Faq .icon-mark::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ps5Content .ps5Faq .icon-mark::after {
  top: 6px;
  left: 2px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.ps5Content .ps5Faq__answerList .dot::before {
  content: "・";
  left: 0;
  top: 0;
}
.ps5Content .ps5Faq__answer {
  margin-top: 20px;
  display: none;
}
.ps5Content .ps5Faq .btnLink .modal-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  border-radius: 50px;
  background-color: #EAEAEA;
  width: 326px;
  color: #555555;
  height: 58px;
  text-decoration: none;
  pointer-events: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .ps5Faq .btnLink--active .modal-switch {
  color: #fff !important;
  background-color: #ED005B !important;
  pointer-events: unset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 416px;
  font-weight: bold;
}
.ps5Content .modal-area .tokutenArea {
  width: 848px;
  padding: 20px 0;
}
.ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle {
  overflow: hidden !important;
  height: auto;
}
.ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle .swiper-body {
  margin: 20px 70px;
  overflow: hidden !important;
}
.ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle .swiper-body .flow__information--modal .flow__itemDl--modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
}
.ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle .swiper-body .flow__information--modal .flow__itemDl--modal .flow__itemDt--modal {
  width: 135px;
  height: 58px;
  background-color: #262626;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle .swiper-body .flow__information--modal .flow__itemDl--modal .flow__itemDd--modal {
  max-width: 633px;
  width: 100%;
  background-color: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ps5Content .modal-area .tokutenArea .btnLink {
  margin: 20px auto;
}
.ps5Content .modal-area .tokutenArea .btnLink .tokuten-btn {
  margin: 35px auto 40px;
}
.ps5Content .modal-area .tokutenArea .ps5Recommend-prev {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.ps5Content .modal-area .tokutenArea .ps5Recommend-prev::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 105px;
  left: 60px;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  background-image: url(/hikari/renewal/common/images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.ps5Content .modal-area .tokutenArea .ps5Recommend-next {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.ps5Content .modal-area .tokutenArea .ps5Recommend-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 105px;
  right: 60px;
  background-image: url(/hikari/renewal/common/images/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.ps5Content .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 120px !important;
}

.ps5Content .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 20px !important;
  background-color: #666666 !important;
}

.ps5Content .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
}

@-moz-document url-prefix() {
  .ps5Content .modal-area .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 100px !important;
  }
  .ps5Content .modal-area .ps5Recommend-next::after {
    bottom: 105px !important;
    right: 60px;
  }
  .ps5Content .modal-area .ps5Recommend-prev::after {
    bottom: 83px !important;
  }
}
@media screen and (min-width: 560px) and (max-width: 640px) {
  .ps5Content .modal-area .tokutenArea {
    width: 93.896713615vw;
    padding: 3.1298904538vw;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body {
    max-width: 64.615vw;
    margin: 3.1298904538vw auto;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body .flow__information--modal img {
    width: 110.2564102564vw;
  }
}
/***********************************
    お申し込みエリア追加：20230725
************************************/
.apply__content {
  width: 840px;
  margin: 0 auto;
  margin-top: 100px;
}
.apply__content02 {
  width: 100%;
  background-image: url(/hikari/tokuten/ps5/images/apply-bg_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
}
.apply__content02 .apply__inner {
  padding: 115px 0 60px;
  width: 840px;
  margin: 0 auto;
  margin-top: 0px;
}
.apply__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.apply__left {
  text-align: left;
  color: #ffffff;
}
.apply__left p:nth-child(1) {
  font-size: 34px;
  font-weight: bold;
}
.apply__left p:nth-child(2) {
  font-size: 14px;
  margin: 15px 0;
  letter-spacing: 0.001em;
}
.apply__left p:nth-child(3) {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #777778;
  -moz-text-decoration-color: #777778;
  text-underline-offset: 5px;
  letter-spacing: 0.001em;
}
.apply__left p:nth-child(4) {
  color: #ffffff;
  font-size: 16px;
  margin: 20px 0 24px;
  text-decoration: underline;
  text-decoration-color: #777778;
  -moz-text-decoration-color: #777778;
  text-underline-offset: 5px;
  letter-spacing: 0.001em;
}
.apply__left p:nth-child(5) {
  color: #ffffff;
  font-size: 16px;
  text-align: left;
}
.apply__right {
  width: 440px;
  height: 270px;
  padding: 50px 40px;
  background-image: url(/hikari/tokuten/ps5/images/coupon-bg_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  border-radius: 15px;
  text-align: left;
}
.apply__coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.apply__coupon p:nth-child(1) {
  color: #ffffff;
  margin-right: 15px;
}
.apply__copyBtn .appFlowCoupon__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.apply__copyBtn .appFlowCoupon__area .couponBlock {
  background-image: url(/hikari/tokuten/ps5/images/bg-coupon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 256px;
  height: 65px;
  position: relative;
}
.apply__copyBtn .appFlowCoupon__area .couponCode {
  padding: 17px 11px 11px 34px;
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
}
.apply__copyBtn .appFlowCoupon__area button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.apply__copyBtn .appFlowCoupon__area .js-copyBtn {
  position: absolute;
  bottom: 5px;
  right: 4px;
  padding: 20px 16px;
  background-color: #ffffff;
  color: #0a033c;
  border-radius: 26px;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.apply__copyBtn .appFlowCoupon__area .js-copyBtn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.8;
}
.apply__bottom {
  text-align: center;
  color: #c1c1c2;
  margin-top: 30px;
}

.btnArea {
  width: 890px;
  margin: 0 auto;
  padding: 60px 0 30px;
}
.btnArea h3 {
  font-size: 40px;
  font-weight: bold;
}

.cont-area {
  text-align: left;
  height: 400px;
  overflow-x: auto;
}
.cont-area.convModal {
  text-align: center;
}
.cont-area.convModal .optionSelect--img {
  width: 70%;
}
.cont-area.convModal .selectPlan__convBtn {
  margin-top: 10px !important;
  padding: 20px 0;
}

@media screen and (max-width: 559px) {
  .ps5Content {
    font-size: 3.4666666667vw;
  }
  .ps5Content .title {
    margin: 0 auto;
  }
  .ps5Content .inner {
    max-width: 93.0666666667vw;
  }
  .ps5Content .btnLink a {
    width: 58.6666666667vw;
    height: 12vw;
    font-size: 3.7333333333vw;
  }
  .ps5Content .btnLink--option a {
    border-radius: 1.0666666667vw;
    border: 0.5333333333vw solid #707070;
    width: 89.0666666667vw;
  }
  .ps5Content .btnLink--option a::after {
    width: 2.6666666667vw;
    height: 1.3333333333vw;
    right: 3.7333333333vw;
  }
  .ps5Content .btnLink--active a {
    width: 89.3333333333vw;
  }
  .ps5Content .btnLink--black a {
    width: 101.3333333333vw;
  }
  .ps5Content .notes li,
  .ps5Content .notesNum li,
  .ps5Content .listNormal li {
    font-size: 3.4666666667vw;
  }
  .ps5Content .notes__item {
    padding-left: 5.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
  .ps5Content .notesNum__item {
    padding-left: 10.6666666667vw;
    margin-bottom: 1.0666666667vw;
  }
  .ps5Content .notesNum__item::before {
    left: 0;
  }
  .ps5Content .listNormal li {
    font-size: 3.4666666667vw !important;
  }
  .ps5Content .kv__tab {
    padding-top: 6.4vw;
  }
  .ps5Content .kv__tab--01, .ps5Content .kv__tab--02 {
    padding: 15px;
    max-width: 450px;
    border-radius: 12px 12px 0 0;
    font-size: 3.2vw;
    font-weight: bold;
    text-align: center;
  }
  .ps5Content .kv__tab--01 .font-M, .ps5Content .kv__tab--02 .font-M {
    font-size: 4.2666666667vw;
    line-height: 1.3;
  }
  .ps5Content .kv__tab--01 {
    margin-right: 5px;
    background-color: #0e1d84;
    color: #FFFFFF;
  }
  .ps5Content .kv__tab--02 {
    margin-left: 5px;
    background-color: #FFFFFF;
    color: #383838;
  }
  .ps5Content .kv__block {
    display: block;
    margin-bottom: 3.2vw;
  }
  .ps5Content .kv__box:first-child {
    margin-right: 0;
    margin-bottom: 4.5333333333vw;
  }
  .ps5Content .kv__box:nth-child(2) {
    width: 67.2vw;
    margin: 0 auto;
  }
  .ps5Content .kv__box .btnLink a {
    margin: 0 auto;
  }
  .ps5Content .kv__release {
    font-size: 5.3333333333vw;
    margin: 6.9333333333vw 0 4.8vw;
  }
  .ps5Content .kv .notes {
    font-size: 3.4666666667vw;
  }
  .ps5Content .kv .notes li {
    text-align: left !important;
  }
  .ps5Content .kv__title {
    left: 0;
  }
  .ps5Content .kv .ps5convBtnArea {
    background-color: #101b79;
    text-align: center;
    padding: 30px 0;
  }
  .ps5Content .kv .ps5convBtnArea .ps5convBtnArea__title {
    padding-bottom: 20px;
    color: #ffffff !important;
    font-size: 24px;
    text-align: center;
  }
  .ps5Content .kv .ps5convBtnArea .btnLink {
    margin-bottom: 30px;
    background: none !important;
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 50px;
  }
  .ps5Content .kv .ps5convBtnArea ul li {
    color: #ffffff;
  }
  .ps5Content .kv .ps5convBtnArea ul li a {
    color: #ffffff;
  }
  .ps5Content .kv .selectPlan__convBtn {
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    display: block;
    -webkit-box-shadow: 2px 2px 6px 2px #bfbfbf;
    box-shadow: 2px 2px 6px 2px #bfbfbf;
    border-radius: 5px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 690px;
    background-color: #d30d58 !important;
    border-bottom: 3px solid #9b0a41;
    font-size: 14px !important;
    padding: 14px 0 !important;
    background-color: #d30d58 !important;
    border-bottom: 3px solid #9b0a41;
    margin: 0 auto 15px !important;
  }
  .ps5Content .kv .spiderman {
    border-top: 2px solid #4753bc;
    padding: 35px 30px 50px;
    background-color: #101b79;
    margin: 0 auto;
    text-align: center;
  }
  .ps5Content .kv .spiderman__inner {
    width: 100%;
    margin: 0 auto;
    border-top: none;
    padding: 0;
  }
  .ps5Content .kv .spiderman picture {
    display: block;
  }
  .ps5Content .kv .spiderman__ttl {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .ps5Content .kv .spiderman .btn4000 {
    margin-top: 10px;
    width: 100%;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .ps5Content .kv .spiderman .btn4000 a {
    color: #333333;
    font-size: 14px;
    display: block;
    padding: 15px;
    font-weight: bold;
    text-decoration: none;
  }
  .ps5Content .movement {
    margin: 5.3333333333vw 0 12vw;
    padding: 5.3333333333vw 0;
  }
  .ps5Content .movement__btns {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 3.4666666667vw;
    grid-row-gap: 2.6666666667vw;
    -ms-grid-columns: 1fr 3.4666666667vw 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .ps5Content .movement__btnsItem a {
    height: 12vw;
    font-size: 3.4666666667vw;
  }
  .ps5Content .movement__btnsItem a::after {
    width: 1.8666666667vw;
    height: 0.8vw;
    right: 2.9333333333vw;
  }
  .ps5Content .psLife {
    margin-bottom: 8vw;
  }
  .ps5Content .psLife__titleH3 {
    width: 79.2vw;
    margin: 0 auto;
  }
  .ps5Content .psLife__gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin: 4.5333333333vw 0 8vw;
  }
  .ps5Content .psLife__option {
    border: 1.6vw solid #E6E6E6;
    border-radius: 3.2vw;
    padding: 7.7333333333vw 5.3333333333vw 7.2vw;
    margin: 2.6666666667vw 0 8vw;
  }
  .ps5Content .psLife__optionTitle {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
  .ps5Content .psLife__optionTitle sup {
    font-size: 3.2vw;
  }
  .ps5Content .psLife__optionImg {
    margin-bottom: 4.5333333333vw;
  }
  .ps5Content .psLife__text {
    margin-bottom: 3.2vw;
    text-align: left !important;
  }
  .ps5Content .point {
    padding: 0vw 0 0vw;
    margin-top: 5.3333333333vw;
    margin-bottom: 0vw;
  }
  .ps5Content .point .inner {
    max-width: 89.0666666667vw;
  }
  .ps5Content .point__title {
    width: 81.3333333333vw;
  }
  .ps5Content .point__box {
    padding-bottom: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
  .ps5Content .point__box--first {
    margin-top: 5.3333333333vw;
  }
  .ps5Content .point__box:first-child {
    padding-top: 5.3333333333vw;
  }
  .ps5Content .point__box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .ps5Content .point__box:last-child .point__grid {
    margin-bottom: 0;
  }
  .ps5Content .point__grid {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 0;
    grid-row-gap: 3.7333333333vw;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 0 5.3333333333vw;
  }
  .ps5Content .point__grid--mb {
    margin-bottom: 0;
  }
  .ps5Content .point__img figure::before {
    padding-top: 54.9333333333vw;
  }
  .ps5Content .point__titleSub {
    font-size: 4.2666666667vw;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 4.5333333333vw;
  }
  .ps5Content .point__titleSub sup {
    font-size: 3.2vw;
  }
  .ps5Content .point__discri--mb30 {
    margin-bottom: 0;
  }
  .ps5Content .point__discri--mbOption {
    margin-bottom: 0 !important;
  }
  .ps5Content .point__discri.mb30 {
    margin-bottom: 8vw !important;
  }
  .ps5Content .point .notesNum li {
    color: #757575;
  }
  .ps5Content .point .btnLink a {
    width: 100%;
    font-size: 3.4666666667vw;
  }
  .ps5Content .point .notes {
    margin-bottom: 4.2666666667vw !important;
  }
  .ps5Content .ctaArea {
    margin-bottom: 10.6666666667vw;
  }
  .ps5Content .ctaArea .inner {
    max-width: 100%;
  }
  .ps5Content .ctaArea .notes {
    width: 93%;
    margin: auto;
  }
  .ps5Content .ctaArea__logo {
    width: 74.4vw;
    margin: 0 auto 3.4666666667vw;
  }
  .ps5Content .ctaArea__text {
    font-size: 5.6vw;
    line-height: 1;
  }
  .ps5Content .ctaArea__text--mb34 {
    margin-bottom: 10.4vw;
  }
  .ps5Content .ctaArea .btnLink a {
    margin: 0 auto;
  }
  .ps5Content .ctaArea__line {
    margin-top: 16vw;
  }
  .ps5Content .ctaArea__lineTitle {
    font-size: 4.8vw;
    padding: 4.5333333333vw 1.3333333333vw;
  }
  .ps5Content .ctaArea__lineTitle::after {
    border-width: 4.2666666667vw 4vw 0 4vw;
    bottom: -4vw;
  }
  .ps5Content .ctaArea__lineFriend {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  .ps5Content .ctaArea__lineFriendItem {
    width: 89.0666666667vw;
    margin: 0 auto;
    padding: 0;
  }
  .ps5Content .ctaArea__lineFriendItem:first-child {
    border-right: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .ps5Content .ctaArea__lineFriendItem:last-child {
    border-bottom: 1px solid #CCCCCC;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 0 8.5333333333vw;
    margin: 0 auto 7.2vw;
  }
  .ps5Content .ctaArea__lineFriendQr img {
    width: 36.2666666667vw;
  }
  .ps5Content .ctaArea__lineText {
    font-size: 3.4666666667vw;
    margin-bottom: 5.0666666667vw;
    line-height: 1.2;
  }
  .ps5Content .ctaArea__lineBtn {
    width: auto;
    height: auto;
  }
  .ps5Content .ctaArea__lineBtn a img {
    width: 46.9333333333vw;
  }
  .ps5Content .ctaArea__lineNotes {
    margin-top: 3.7333333333vw;
    font-size: 3.4666666667vw;
    letter-spacing: -0.01em;
  }
  .ps5Content .price {
    padding: 12vw 0 10.6666666667vw;
    margin-bottom: 12vw;
  }
  .ps5Content .price .inner {
    max-width: 89.0666666667vw;
  }
  .ps5Content .price__title {
    width: 32vw;
  }
  .ps5Content .price__titleSub {
    font-size: 4.2666666667vw;
    margin-bottom: 5.6vw;
  }
  .ps5Content .price__box {
    margin-top: 4.2666666667vw;
    padding: 7.7333333333vw 7.7333333333vw 8vw;
    border: 1.6vw solid #E6E6E6;
    border-radius: 3.2vw;
  }
  .ps5Content .price__block {
    display: block;
  }
  .ps5Content .price__blockItem {
    width: 100%;
    padding: 0;
  }
  .ps5Content .price__blockItem:first-child {
    border-right: none;
    border-bottom: 1px solid #D8D8D8;
    padding: 0 0 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
  .ps5Content .price__blockDt {
    width: 62.9333333333vw;
    margin: 0 auto;
    min-height: auto;
  }
  .ps5Content .price__monthly {
    font-size: 8vw;
    margin: 2.4vw 0 1.6vw;
  }
  .ps5Content .price__table {
    margin-top: 1.0666666667vw;
  }
  .ps5Content .price__tableImg {
    margin-bottom: 4.2666666667vw;
  }
  .ps5Content .price__toggle {
    margin-bottom: 9.6vw;
  }
  .ps5Content .price__toggle span {
    display: inline-block;
    position: relative;
    cursor: pointer;
  }
  .ps5Content .price__toggle .open::after {
    width: 2.6666666667vw;
    height: 1.3333333333vw;
    margin: 2.6666666667vw auto 0;
  }
  .ps5Content .price__toggle .off::after {
    display: block;
    content: "";
    background: url(../images/arrow_row.svg) no-repeat center;
    background-size: contain;
    width: 10px;
    height: 5px;
    margin: 10px auto 0;
  }
  .ps5Content .flow {
    margin-bottom: 10.6666666667vw;
  }
  .ps5Content .flow__title {
    width: 44vw;
  }
  .ps5Content .flow__information {
    max-width: 89.0666666667vw;
    margin: 4.2666666667vw auto 0;
  }
  .ps5Content .flow__information .flow__item::after {
    width: 8.5333333333vw;
    height: 2.4vw;
    margin: 3.7333333333vw auto;
  }
  .ps5Content .flow__information .flow__itemDl {
    display: block;
    margin-bottom: 2.6666666667vw;
  }
  .ps5Content .flow__information .flow__itemDl + p {
    margin-bottom: 2.6666666667vw;
  }
  .ps5Content .flow__information .flow__itemDt {
    width: 100%;
    height: 9.0666666667vw;
  }
  .ps5Content .flow__information .flow__itemDd {
    max-width: 100%;
    width: 100%;
    padding: 3.7333333333vw 5.0666666667vw;
  }
  .ps5Content .flow__information .flow__itemDicri {
    margin-top: 1.3333333333vw;
    padding: 3.7333333333vw 2.6666666667vw 4vw;
    background-color: #DFEBF5;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .ps5Content .psPlus {
    padding: 10.6666666667vw 0 8vw;
    margin-bottom: 12vw;
  }
  .ps5Content .psPlus .inner {
    max-width: 89.0666666667vw;
  }
  .ps5Content .psPlus__box {
    border: 1.6vw solid #E6E6E6;
    border-radius: 3.2vw;
    padding: 7.7333333333vw 6.9333333333vw 8vw;
  }
  .ps5Content .psPlus__text {
    font-size: 3.7333333333vw;
    letter-spacing: 0.08em;
  }
  .ps5Content .psPlus__logo {
    max-width: 77.3333333333vw;
    margin: 2.9333333333vw auto 5.0666666667vw;
  }
  .ps5Content .psPlus .btnLink a {
    width: 100%;
    margin: 0 auto;
    font-size: 3.4666666667vw;
  }
  .ps5Content .notesArea__title {
    width: 24.8vw;
  }
  .ps5Content .notesArea__box {
    margin-top: 4.2666666667vw;
  }
  .ps5Content .notesArea .listNormal dd {
    font-size: 3.2vw;
  }
  .ps5Content .modalTable {
    padding-right: 2.6666666667vw;
  }
  .ps5Content .modalTable table {
    border: 0.2666666667vw solid #333;
  }
  .ps5Content .modalTable table th, .ps5Content .modalTable table td {
    padding: 1.3333333333vw;
  }
  .ps5Content .modalTable table th:first-child {
    border-right: 0.2666666667vw solid #333;
  }
  .ps5Content .modalTable table td {
    border-top: 0.2666666667vw solid #333;
  }
  .ps5Content .modalTable table td:first-child {
    border-right: 0.2666666667vw solid #333;
  }
  .ps5Content .copy {
    font-size: 3.2vw;
    color: #424242;
  }
  /* 5月 PS5オプション改修 */
  .ps5Content .btnLink span {
    width: 89.3333333333vw;
    height: 12vw;
    font-size: 3.7333333333vw;
  }
  .ps5Content .psLife .price {
    margin-bottom: 15px;
  }
  .ps5Content .psLife .price__box {
    margin-top: 0;
  }
  .ps5Content .psLife__priceItem {
    margin: 0 auto 15.4666666667vw;
  }
  .ps5Content .psLife__priceTitle {
    padding: 4vw 0;
    font-size: 4.8vw;
    border: solid 0.2666666667vw #707070;
  }
  .ps5Content .psLife__priceTitle::after {
    margin-top: 4vw;
  }
  .ps5Content .psLife__optTitle {
    font-size: 4.8vw;
  }
  .ps5Content .psLife__optInner {
    margin: 2.6666666667vw;
    padding: 2.6666666667vw;
  }
  .ps5Content .psLife__optInnerTitle {
    padding-bottom: 0;
  }
  .ps5Content .psLife__optItem {
    padding: 0 2.6666666667vw 12.8vw;
  }
  .ps5Content .psLife__optDetail--01, .ps5Content .psLife__optDetail--02 {
    margin-top: 0;
  }
  .ps5Content .psLife__opBox {
    display: block;
    padding: 2.6666666667vw;
  }
  .ps5Content .psLife__opBox--img {
    padding: 0;
  }
  .ps5Content .psLife__opBox--note {
    text-align: center;
    font-size: 3.4666666667vw;
  }
  .ps5Content .psLife__optNote {
    margin: 2.6666666667vw;
    padding: 2.6666666667vw 2.1333333333vw;
    font-size: 3.3333333333vw;
  }
  .ps5Content .psLife .ps5Block__titleImg {
    margin-top: 0;
  }
  .ps5Content .psLife .ps5Block__movieSec {
    padding: 5.3333333333vw;
  }
  .ps5Content .psLife .ps5Block__detail {
    margin-bottom: 8vw;
    padding: 7.7333333333vw 8vw 7.2vw;
  }
  .ps5Content .psLife .ps5Block__movieFrame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .ps5Content .psLife .ps5Block__movieFrame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .ps5Content .ps5Faq {
    padding: 2.6666666667vw 0;
    margin-bottom: 12.8vw;
  }
  .ps5Content .ps5Faq__inner {
    margin-top: 5.3333333333vw;
  }
  .ps5Content .ps5Faq__title {
    width: 40vw;
  }
  .ps5Content .ps5Faq__content {
    border: 1.6vw solid #E6E6E6;
    border-radius: 3.2vw;
    padding: 5.0666666667vw 5.3333333333vw;
    margin: 0 2.9333333333vw 8vw;
  }
  .ps5Content .ps5Faq__set {
    font-size: 3.4666666667vw;
  }
  .ps5Content .ps5Faq__answer {
    margin-top: 2.6666666667vw;
  }
  .ps5Content .modal-area .tokutenArea {
    width: 75%;
    padding: 5.3333333333vw;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle {
    width: 100%;
    height: 74.6666666667vw;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body {
    margin: 0 !important;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body .flow__information--modal {
    max-width: 64.8vw;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body .flow__information--modal .flow__itemDl--modal {
    display: block !important;
    margin-bottom: 2.6666666667vw !important;
    font-size: 3.4666666667vw;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body .flow__information--modal .flow__itemDl--modal .flow__itemDt--modal {
    width: 100% !important;
    height: 9.0666666667vw !important;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .swiper-body .flow__information--modal .flow__itemDl--modal .flow__itemDd--modal {
    max-width: 100%;
    width: 100%;
    height: 12.8vw;
    padding: 3.7333333333vw 5.0666666667vw !important;
  }
  .ps5Content .modal-area .ps5Recommend-prev::after {
    bottom: 16vw !important;
    left: 0 !important;
  }
  .ps5Content .modal-area .ps5Recommend-next::after {
    bottom: 16vw !important;
    right: 0 !important;
  }
  .ps5Content .modal-area .btnLink .tokuten-btn {
    width: 65.3333333333vw;
    margin: 0 auto !important;
  }
  .ps5Content .swiper-pagination-bullet {
    width: 2.1333333333vw !important;
    height: 2.1333333333vw !important;
  }
  .ps5Content .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 20.5333333333vw !important;
  }
  .ps5Content .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 2.6666666667vw !important;
    background-color: #666666 !important;
  }
  @-moz-document url-prefix() {
    .ps5Content .modal-area .swiper-container-horizontal > .swiper-pagination-bullets {
      bottom: 20vw !important;
    }
    .ps5Content .modal-area .ps5Recommend-next::after {
      bottom: 20vw !important;
      right: 15.4666666667vw;
    }
    .ps5Content .modal-area .ps5Recommend-prev::after {
      bottom: 15.2vw !important;
    }
    .ps5Content .modal-area .btnLink {
      margin: 0 auto 8.5333333333vw !important;
    }
    .ps5Content .modal-area .tokuten-btn {
      margin: 9.3333333333vw auto 10.6666666667vw !important;
    }
  }
}
/***********************************
    お申し込みエリア追加：20230725
************************************/
@media screen and (max-width: 559px) {
  .cont-area {
    max-height: 330px;
    overflow: scroll;
  }
  .apply__inner {
    padding: 0 4vw;
  }
  .apply__content {
    width: 100%;
    margin: 0 auto;
    margin-top: 10.6666666667vw;
  }
  .apply__content02 {
    width: 100%;
    background-image: url(/hikari/tokuten/ps5/images/apply-bg_sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
  }
  .apply__content02 .apply__inner {
    padding: 8vw 8vw 34.6666666667vw;
    width: 100%;
    margin: 0 auto;
    margin-top: 0px;
  }
  .apply__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .apply__left {
    text-align: left;
    color: #ffffff;
    position: relative;
  }
  .apply__left p:nth-child(1) {
    font-size: 7.4666666667vw;
    font-weight: bold;
  }
  .apply__left p:nth-child(2) {
    font-size: 4.2666666667vw;
    margin: 15px 0;
    letter-spacing: 0.001em;
  }
  .apply__left p:nth-child(3) {
    font-size: 3.7333333333vw;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    -moz-text-decoration-color: #ffffff;
    text-underline-offset: 5px;
    letter-spacing: 0.001em;
    position: absolute;
    bottom: -96%;
    white-space: nowrap;
  }
  .apply__left p:nth-child(4) {
    font-size: 3.7333333333vw;
    color: #ffffff;
    font-size: 16px;
    margin: 20px 0 24px;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    -moz-text-decoration-color: #ffffff;
    text-underline-offset: 5px;
    letter-spacing: 0.001em;
    position: absolute;
    bottom: -121%;
  }
  .apply__left p:nth-child(4) span {
    font-size: 3.7333333333vw;
  }
  .apply__left p:nth-child(5) {
    font-size: 3.2vw;
    color: #ffffff;
    position: absolute;
    bottom: -127%;
  }
  .apply__right {
    width: 100%;
    height: 48.8vw;
    padding: 8vw;
    background-image: url(/hikari/tokuten/ps5/images/coupon-bg_sp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    border-radius: 15px;
    text-align: left;
  }
  .apply__right picture {
    display: block;
    width: 70%;
  }
  .apply__coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2.6666666667vw;
  }
  .apply__coupon p:nth-child(1) {
    color: #ffffff;
    margin-right: 15px;
  }
  .apply__copyBtn .appFlowCoupon__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .apply__copyBtn .appFlowCoupon__area .couponBlock {
    background-image: url(/hikari/tokuten/ps5/images/bg-coupon_sp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 256px;
    height: 65px;
    position: relative;
  }
  .apply__copyBtn .appFlowCoupon__area .couponCode {
    padding: 17px 11px 11px 11px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    position: absolute;
  }
  .apply__copyBtn .appFlowCoupon__area button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .apply__copyBtn .appFlowCoupon__area .js-copyBtn {
    position: absolute;
    bottom: 11px;
    right: 4px;
    padding: 14px;
    background-color: #ffffff;
    color: #0a033c;
    border-radius: 26px;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .apply__copyBtn .appFlowCoupon__area .js-copyBtn:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.8;
  }
  .apply__bottom {
    text-align: center;
    color: #c1c1c2;
    margin-top: 45.3333333333vw;
    font-size: 3.2vw;
  }
  .btnArea {
    width: 100%;
    margin: 0 auto;
    padding: 8vw 4vw 4vw;
  }
  .btnArea h3 {
    font-size: 6.4vw;
    font-weight: bold;
    text-align: center;
  }
}
/* Safari対応 */
_::-webkit-full-page-media, _:future, :root .ps5Content .modal-area .swiper-button-prev,
_::-webkit-full-page-media, _:future, :root .ps5Content .modal-area .swiper-button-next {
  margin-top: auto !important;
}

@media screen and (max-width: 559px) {
  .ps5Content .modal-area .tokutenArea {
    min-height: 47vh;
  }
  .ps5Content .modal-area .tokutenArea .btnLink {
    margin: 40px auto 0;
  }
  .renewal-ps5 .ps5Modal .swiper-container-horizontal > .swiper-pagination-bullets,
  .ps5Content .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 55px !important;
  }
  .ps5Content .modal-area .tokutenArea .tokutenCont .scrlStyle {
    height: auto;
  }
  .ps5Content .modal-area .swiper-button-prev,
  .ps5Content .modal-area .swiper-button-next {
    margin-top: auto !important;
  }
  .renewal-ps5 .ps5Content .modal-area .ps5Recommend-prev::after,
  .renewal-ps5 .ps5Content .modal-area .ps5Recommend-next::after {
    bottom: 30px !important;
  }
  /* Safari対応 */
  _::-webkit-full-page-media, _:future, :root .ps5Content .modal-area .tokutenArea {
    min-height: auto;
  }
}
@media screen and (max-width: 376px) {
  .ps5Content .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 75px !important;
  }
}
