@charset "UTF-8";
:root {
  --color-black: #111;
  --color-link: #008cd9;
  --color-red: #f00;
  --color-yellow: #f7d414;
}

/* ==========================================================================
   Reset
   ========================================================================== */
/* Initialize
   ========================================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
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, main,
menu, nav, output, ruby, section, summary, input, textarea,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 0.625em;
  height: 100%;
  overflow-y: scroll;
}

body {
  color: var(--color-black);
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}
body.is-fixed {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

button {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

dd,
dt,
td,
th,
ol,
ul,
p {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  dd,
  dt,
  td,
  th,
  ol,
  ul,
  p {
    font-size: 3.2vw;
  }
}

td dl,
td ul,
td ol,
td td,
td th,
td p,
td li,
dd dd,
dd dt,
dd p,
dd li,
dd ul,
dd ol,
li th,
li td,
li table,
li dd,
li dt,
li ol,
li ul,
ol li,
ul li,
li p {
  font-size: 1em;
}

ol,
ul {
  list-style: none;
}

a {
  color: var(--color-link);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  a:hover img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

address {
  font-style: normal;
}

/* google chrome input button padding */
input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button, button {
  padding: 1px 6px;
}

input[type=checkbox] {
  margin: 0;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.img-box {
  font-size: 0;
  line-height: 0;
}

.wrap {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 970px;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  .wrap {
    padding-left: 4vw;
    padding-right: 4vw;
    width: auto;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

sup {
  font-size: 1.2rem;
  font-weight: normal;
  vertical-align: top;
}

.text-bold,
strong {
  font-weight: bold;
}

.text-small {
  font-size: 0.8em;
}

.text-large {
  font-size: 2.4em;
}

.text-underline {
  text-decoration: underline;
}

.text-italic {
  font-style: italic;
}

video {
  outline: none;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.color-red {
  color: var(--color-red) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/* ---------------------------------------------------------

■■■ PC SP ■■■■■■■■■■

--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  img.sp,
  br.sp,
  span.sp,
  .sp {
    display: none !important;
  }
  br.sp {
    width: 0 !important;
  }
  .pc {
    display: block !important;
  }
  span.pc,
  img.pc,
  br.pc {
    display: inline !important;
  }
  th.pc,
  td.pc {
    display: table-cell !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  th.pc,
  td.pc,
  span.pc,
  br.pc,
  img.pc,
  .pc {
    display: none !important;
  }
  img.sp,
  br.sp,
  span.sp {
    display: inline !important;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

/* f-move-top
========================================================================== */
.f-move-top {
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.f-move-top.--delay {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.f-move-top.--delay2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-move-top.--delay2, .f-move-top.--delay {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
.f-move-top.--move {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

/* c-btn
========================================================================== */
.c-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.4666666667vw;
  }
  .c-btn-wrap > li:nth-child(1) p:not([class]) img {
    width: 41.8666666667vw;
  }
  .c-btn-wrap > li:nth-child(2) p:not([class]) img {
    width: 48.4vw;
  }
}

.c-btn {
  margin-top: 12px;
  max-width: 100%;
  width: 405px;
  text-align: center;
}
.c-btn > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ff397e;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 0 2px #db2e6a;
          box-shadow: 0 3px 0 2px #db2e6a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  position: relative;
}
.c-btn > a::before {
  background: url(../img/icon-arroww.png) no-repeat 50% 50% #fff;
  border-radius: 0 4px 4px 0;
  content: "";
  width: 32px;
  position: absolute;
  bottom: 6px;
  right: 4px;
  top: 6px;
}
@media (hover: hover) {
  .c-btn > a:hover {
    -webkit-box-shadow: 0 1px 0 1px #db2e6a;
            box-shadow: 0 1px 0 1px #db2e6a;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.c-btn.--btn01 > a img {
  aspect-ratio: 264/22;
  max-width: 264px;
  width: 100%;
}
.c-btn.--btn02 > a img {
  aspect-ratio: 164/23;
  max-width: 164px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-btn {
    margin-top: 3.2vw;
    width: 88vw;
  }
  .c-btn > a {
    border-radius: 1.0666666667vw;
    -webkit-box-shadow: 0 0.8vw 0 0.5333333333vw #db2e6a;
            box-shadow: 0 0.8vw 0 0.5333333333vw #db2e6a;
    height: 17.3333333333vw;
  }
  .c-btn > a::before {
    border-radius: 0 1.0666666667vw 1.0666666667vw 0;
    width: 7.4666666667vw;
    bottom: 0.8vw;
    right: 0.5333333333vw;
    top: 0.8vw;
  }
  .c-btn.--btn01 > a img {
    max-width: 57.3333333333vw;
  }
  .c-btn.--btn02 > a img {
    max-width: 35.4666666667vw;
  }
}

/* l-container
========================================================================== */
.l-container {
  overflow-x: hidden;
}

/* l-header
========================================================================== */
.l-header {
  background-color: var(--color-black);
}
.l-header .l-header_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header .l-header_inner {
    height: 8vw;
  }
}
.l-header .logo {
  width: 289px;
}
@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 37.0666666667vw;
  }
}

/* l-footer
========================================================================== */
#page-top_img {
  position: fixed;
  bottom: 0;
  right: 5vw;
  font-weight: 700;
  z-index: 2;
  opacity: 0;
  width: 106px;
  padding-bottom: 54px;
}

@media (max-width: 768px) {
  #page-top_img {
    position: fixed;
    right: 4.6vw;
    z-index: 2;
    opacity: 0;
    width: 14.1vw;
    padding-bottom: 11.7333333333vw;
  }
}
/*　上に上がる動き　*/
#page-top_img.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top_img.DownMove {
  -webkit-animation: DownAnime 0.15s forwards;
          animation: DownAnime 0.15s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}
/* l-footer
========================================================================== */
.l-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-black);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 120px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
.l-footer .logo {
  line-height: 1;
  width: 289px;
}
.l-footer .copyright {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    height: 11.7333333333vw;
    margin-top: 24vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .l-footer .logo {
    width: 32.4vw;
  }
  .l-footer .copyright {
    font-size: 2.6666666667vw;
  }
}

/* p-search
========================================================================== */
.p-search-group {
  color: #818181;
  max-width: 1100px;
  margin: 100px auto 0;
}
.p-search-group > h3 {
  color: var(--color-blue);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 54px;
  text-align: center;
}
.p-search-group .p-search-group_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 90px;
}
@media screen and (max-width: 767px) {
  .p-search-group {
    max-width: 80vw;
    margin-top: 14.9333333333vw;
  }
  .p-search-group > h3 {
    font-size: 4.8vw;
    margin-bottom: 6.4vw;
  }
  .p-search-group .p-search-group_container {
    grid-template-columns: auto;
    gap: 4.8vw 0;
  }
}

.p-search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  .p-search {
    max-width: initial;
  }
}
.p-search > label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 22px;
  font-weight: 500;
  width: 120px;
}
.p-search > label::before {
  background: no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
}
.p-search > label[for^=dvd] {
  gap: 12px;
}
.p-search > label[for^=dvd]::before {
  background-image: url(../img/icon-cd-orange-thin.png);
  height: 26px;
  width: 26px;
}
.p-search > label[for^=cd] {
  gap: 8px;
}
.p-search > label[for^=cd]::before {
  background-image: url(../img/icon-music-orange-thin.png);
  height: 27px;
  width: 23px;
}
.p-search > label[for^=comic] {
  font-size: 17px;
  gap: 6px;
}
.p-search > label[for^=comic]::before {
  background-image: url(../img/icon-comic-orange.png);
  height: 23px;
  width: 25px;
}
@media screen and (max-width: 767px) {
  .p-search > label {
    font-size: 4.2666666667vw;
    width: 21.3333333333vw;
  }
  .p-search > label[for^=dvd] {
    gap: 1.6vw;
  }
  .p-search > label[for^=dvd]::before {
    height: 4.6666666667vw;
    width: 4.6666666667vw;
  }
  .p-search > label[for^=cd] {
    gap: 1.6vw;
  }
  .p-search > label[for^=cd]::before {
    height: 4.8vw;
    width: 4.1333333333vw;
  }
  .p-search > label[for^=comic] {
    font-size: 3.6vw;
    gap: 1.6vw;
  }
  .p-search > label[for^=comic]::before {
    height: 4vw;
    width: 4.2666666667vw;
  }
}
.p-search .p-search_form {
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-search .p-search_form {
    margin-bottom: 4.2666666667vw;
  }
}
.p-search .p-search_form:last-child {
  margin-bottom: 0;
}
.p-search .p-search_form .p-search_form_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-search .p-search_form input[type=text] {
  border: 2px solid #ffb609;
  background-color: #fff;
  border-radius: 15px 0 0 15px;
  font-size: 16px;
  height: 66px;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-search .p-search_form input[type=text] {
    border-width: 0.2666666667vw;
    border-radius: 2.4vw 0 0 2.4vw;
    font-size: 3.7333333333vw;
    height: 11.2vw;
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}
.p-search .p-search_form input[type=submit] {
  background: url(../img/icon-search.png) no-repeat 50% 50% #ffb609;
  background-size: 30px 28px;
  border: 0;
  border-radius: 0 15px 15px 0;
  cursor: pointer;
  font-size: 0;
  height: 66px;
  line-height: 0;
  width: 80px;
  text-indent: -9999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-search .p-search_form input[type=submit]:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-search .p-search_form input[type=submit] {
    background-size: 4vw 3.7333333333vw;
    border-radius: 0 2.4vw 2.4vw 0;
    height: 11.2vw;
    width: 14.4vw;
  }
}
.p-search .p-search_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-search .p-search_tag li button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  text-decoration: underline;
}
@media (hover: hover) {
  .p-search .p-search_tag li button:hover {
    text-decoration: none;
  }
}

.p-search-attention {
  font-size: 15px;
}
.p-search-attention > li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-top: 10px;
}
.p-search-attention > li:first-child {
  margin-top: 0;
}
.p-search-attention > li::before {
  background: url(../img/icon-check-simple.png) no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 12px;
  margin-top: 8px;
  width: 17px;
}
@media screen and (max-width: 767px) {
  .p-search-attention {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
  }
  .p-search-attention > li {
    gap: 1.6vw;
    margin-top: 1.3333333333vw;
  }
  .p-search-attention > li::before {
    height: 2.6666666667vw;
    margin-top: 1.6vw;
    width: 3.6vw;
  }
}

/* popIframe
========================================================================== */
form.popOn {
  position: relative;
  pointer-events: none;
}
form.popOn::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-repeating-linear-gradient(315deg, #000, #000 1px, transparent 1px, transparent 2px);
  background: repeating-linear-gradient(135deg, #000, #000 1px, transparent 1px, transparent 2px);
  -webkit-animation: formpopOn 1.4s cubic-bezier(0.13, 0.75, 0.29, 0.91) forwards;
          animation: formpopOn 1.4s cubic-bezier(0.13, 0.75, 0.29, 0.91) forwards;
}

@-webkit-keyframes formpopOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes formpopOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.2;
  }
}
.popIframe {
  display: none;
  position: fixed;
  width: 96%;
  height: -webkit-calc(90vh - 70px);
  height: calc(90vh - 70px);
  bottom: 0;
  left: 2%;
  background: #fff;
  border-radius: 1%;
  border: 1px solid #e5e5e5;
  z-index: 2;
}
.popIframe.popOut {
  display: block;
  -webkit-animation: popOut 0.4s cubic-bezier(0.13, 0.75, 0.29, 0.91) forwards;
          animation: popOut 0.4s cubic-bezier(0.13, 0.75, 0.29, 0.91) forwards;
}
.popIframe.popOn {
  -webkit-box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 3px 3px 35px rgba(0, 0, 0, 0.05);
  display: block;
  -webkit-animation: popOn 0.4s cubic-bezier(0.13, 0.75, 0.29, 0.91) forwards;
          animation: popOn 0.4s cubic-bezier(0.13, 0.75, 0.29, 0.91) forwards;
}
.popIframe object {
  position: absolute;
  width: 100%;
  height: -webkit-calc(84vh - 70px);
  height: calc(84vh - 70px);
  bottom: 0;
  left: 0;
  border: none;
  border-top: 1px solid #e5e5e5;
  z-index: 20;
}

@-webkit-keyframes popOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 100vh);
            transform: translate(0, 100vh);
  }
  20%, 100% {
    opacity: 1;
  }
}

@keyframes popOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 100vh);
            transform: translate(0, 100vh);
  }
  20%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes popOn {
  0% {
    -webkit-transform: translate(0, 100vh);
            transform: translate(0, 100vh);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
@keyframes popOn {
  0% {
    -webkit-transform: translate(0, 100vh);
            transform: translate(0, 100vh);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
button.popBtn2 {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vh;
  font-weight: 900;
  line-height: 6vh;
  height: 6vh;
  padding: 0;
  width: 6vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
}

.inner_popIframe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  height: 100%;
  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;
}
.inner_popIframe .loader {
  aspect-ratio: 1;
  background: -webkit-radial-gradient(farthest-side, #ffa516 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #ffa516);
  background: radial-gradient(farthest-side, #ffa516 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #ffa516);
  -webkit-mask: -webkit-radial-gradient(farthest-side, rgba(0, 0, 0, 0) -webkit-calc(100% - 8px), #000 0);
  border-radius: 50%;
  width: 50px;
  -webkit-animation: l13 1s infinite linear;
          animation: l13 1s infinite linear;
}

@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
span#DSresultTXT {
  color: var(--color-black);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2vh;
  font-weight: 700;
  height: 6vh;
  line-height: 6vh;
  padding-left: 1em;
}

/* main-visual
========================================================================== */
.main-visual {
  background: url(../img/mv_bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  text-align: center;
}

/* lead
========================================================================== */
.lead {
  padding-bottom: 54px;
  padding-top: 44px;
  text-align: center;
}
.lead .lead_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  margin-top: 36px;
}
.lead ul:not(.c-btn-wrap) {
  text-align: left;
}
.lead .c-btn-wrap {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .lead {
    padding-bottom: 10.6666666667vw;
    padding-top: 3.2vw;
    text-align: center;
  }
  .lead .wrap {
    padding: 0 4.5333333333vw;
  }
  .lead .lead_price {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 4.8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 8vw;
    margin-top: 5.3333333333vw;
  }
  .lead .lead_price li {
    width: 88vw;
  }
  .lead .c-btn-wrap {
    margin-top: 32px;
  }
}

/* terms
========================================================================== */
.terms {
  margin-bottom: 45px;
}
.terms ul,
.terms p {
  margin-bottom: 1.5em;
}
.terms ul:last-child,
.terms p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .terms {
    margin-bottom: 8vw;
  }
  .terms P > strong {
    font-size: 3.7333333333vw;
  }
}

/* links
========================================================================== */
.links h3 {
  margin-bottom: 12px;
}
.links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  line-height: 1.2;
  margin-bottom: 32px;
  text-align: center;
}
.links ul:last-child {
  margin-bottom: 0;
}
.links ul > li > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 16px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 186px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.links ul > li > a::before {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .links ul > li > a:hover {
    opacity: 0.5;
  }
}
.links ul.links_search {
  font-size: 22px;
  gap: 10px;
}
.links ul.links_search > li > a {
  background-color: #000;
  color: #fff;
  height: 54px;
  width: 240px;
}
.links ul.links_search > li > a::before {
  border-color: transparent transparent transparent #fff;
  border-width: 5px 0 5px 5px;
}
@media screen and (max-width: 767px) {
  .links h3 {
    margin-bottom: 2.4vw;
  }
  .links h3.--search img {
    width: 28.8vw;
  }
  .links h3.--dvd img {
    width: 22.6666666667vw;
  }
  .links h3.--cd img {
    width: 18vw;
  }
  .links ul {
    font-size: 3.2vw;
    gap: 2.4vw 1.3333333333vw;
    margin-bottom: 4.2666666667vw;
  }
  .links ul > li > a {
    border-radius: 2.1333333333vw;
    height: 10.6666666667vw;
    width: 28.8vw;
  }
  .links ul > li > a::before {
    border-width: 1.3333333333vw 0 1.3333333333vw 1.3333333333vw;
    right: 0.9333333333vw;
  }
  .links ul.links_search {
    display: grid;
    font-size: 4.2666666667vw;
    gap: 2.4vw 1.3333333333vw;
    grid-template-columns: repeat(2, 1fr);
  }
  .links ul.links_search > li > a {
    height: 10.1333333333vw;
    width: 100%;
  }
  .links ul.links_search > li > a::before {
    border-width: 1.0666666667vw 0 1.0666666667vw 1.0666666667vw;
  }
}

/* banner
========================================================================== */
.banner {
  margin-top: 110px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .banner {
    margin-top: 11.7333333333vw;
  }
  .banner img {
    width: 80vw;
  }
}