@charset "UTF-8";
/* ========================================
PC 専用スタイルシート
======================================== */
/* ====================
Common
==================== */
/* ========================================
PC / SP / Responsive 共通スタイルシート
======================================== */
/* ====================
Foundation
==================== */
/* 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;
}

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
  height: 100%;
}

body {
  color: #333;
  background: #fff;
  font-family: "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, Robot, sans-serif;
  font-size: 14px;
}

html.is-noscroll, body.is-noscroll {
  position: relative;
  height: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
  word-break: break-all;
}

p {
  line-height: 1.5;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

button {
  line-height: 1;
  cursor: pointer;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-ms-clear {
  visibility: hidden;
}

video {
  width: 100%;
}

/* ====================
Layout
==================== */
/* --------------------
Header
-------------------- */
.l-header {
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  color: #fff;
  background: #000;
  z-index: 20;
}

.l-header a,
.l-header button {
  color: #fff;
}

.l-header__top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: inherit;
}

.l-header__burger-btn {
  position: absolute;
  top: 15px;
  left: 0;
  width: 40px;
  height: 40px;
  background: #DC4991;
  text-align: center;
}

.l-header__burger-btn span {
  display: block;
  position: absolute;
  left: 25%;
  width: 50%;
  height: 2px;
  background: #fff;
}

.l-header__burger-btn span:first-child {
  top: 13px;
}

.l-header__burger-btn span:nth-child(2) {
  top: 19px;
}

.l-header__burger-btn span:last-child {
  bottom: 13px;
}

.l-header__logo a {
  display: block;
  width: 200px;
  padding: 0 10px 0 50px;
}

.l-header__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__menu-item {
  display: block;
  width: 70px;
  padding: 14px 0;
  font-size: 11px;
  text-align: center;
}

.l-header__menu-item:first-child {
  border-left: 1px solid #333;
}

.l-header__menu-item:not(:last-child) {
  border-right: 1px solid #333;
}

.l-header__menu-icon {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.l-header__search-trigger {
  display: none;
}

@media screen and (max-width: 1200px) {
  .l-header__search-trigger {
    display: block;
  }
}

.l-header__search {
  display: block;
  position: relative;
  width: 500px;
  padding: 0 5px 0 10px;
}

@media screen and (max-width: 1200px) {
  .l-header__search {
    -ms-flex: auto;
    flex: auto;
    position: absolute;
    top: 70px;
    left: 200px;
    width: calc(100% - 200px);
    max-width: 100%;
    padding: 10px;
    background: #333;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.2s ease;
  }
}

.l-header__search.is-show {
  opacity: 1;
  pointer-events: auto;
}

.l-header__search-input {
  display: block;
  width: 100%;
  padding: 11px;
  background: #fff;
  font-size: 14px;
}

.l-header__search-input:-ms-input-placeholder {
  color: #b3b3b3;
}

.l-header__search-input::placeholder {
  color: #b3b3b3;
}

.l-header__search-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  padding: 10px;
  background: #fff;
  font-size: 16px;
  transform: translate(0, -50%);
}

.l-header__search-icon span {
  color: #000;
}

.l-header__bnr {
  padding: 5px;
  background: #000;
  font-size: 0;
}

.l-header__bnr img {
  max-width: 660px;
  min-width: 660px;
  transition: opacity 0.2s ease;
}

.l-header__bnr img:hover {
  opacity: .7;
}

/* --------------------
Nav
-------------------- */
.l-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 200px;
  border-top: 1px solid #333;
  overflow-x: hidden;
  z-index: 19;
  transition: left 0.3s ease;
}

.l-nav.is-close {
  left: -200px;
}

.l-nav__scroll {
  height: 100vh;
  background: #000;
  overflow-y: auto;
  -ms-overflow-style: none;
}

.l-nav__scroll::-webkit-scrollbar {
  display: none;
}

.l-nav__inner {
  padding: 1px 0 85px;
}

.l-nav__content {
  margin-bottom: 20px;
}

.l-nav__item a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  transition: background 0.1s ease;
}

.l-nav__item a::before {
  display: inline-block;
  content: "";
  font-family: 'icomoon';
  margin-right: 10px;
  font-size: 10px;
}

.l-nav__item a:hover {
  background: #333;
}

.l-nav__bnr-item {
  margin-top: 5px;
  padding: 0 20px;
  transition: opacity 0.2s ease;
}

.l-nav__bnr-item:hover {
  opacity: .7;
}

.l-nav__bnr-item img {
  width: 100%;
}

/* --------------------
Footer
-------------------- */
.l-footer {
  width: 100%;
  position: relative;
}

.l-footer a,
.l-footer small {
  color: #fff;
}

.l-footer__backtop {
  position: absolute;
  top: -34px;
  right: 40px;
  height: 34px;
  padding: 10px 20px;
  color: #fff;
  background: #DC4991;
  border-radius: 3px 3px 0 0;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.l-footer__backtop::after {
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  content: "";
  font-family: 'icomoon';
}

.l-footer__backtop:hover {
  opacity: .8;
}

.l-footer__breadcrumb {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 40px;
  background: #575757;
}

.l-footer__breadcrumb-item {
  margin-right: 10px;
  font-size: 12px;
}

.l-footer__breadcrumb-item:not(:last-child)::after {
  margin-left: 10px;
  color: #fff;
  font-size: 10px;
  content: "";
  font-family: 'icomoon';
}

.l-footer__breadcrumb-item a {
  word-break: break-all;
}

.l-footer__content {
  padding: 20px;
  background: #333;
}

.l-footer__content-inner {
  max-width: 1000px;
  margin: auto;
}

.l-footer__nav {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.l-footer__nav-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 60px;
}

.l-footer__nav-item a {
  display: inline-block;
}

.l-footer__nav-item::before {
  margin-right: 10px;
  color: #fff;
  font-size: 10px;
  content: "";
  font-family: 'icomoon';
}

.l-footer__sub-nav {
  display: -ms-flexbox;
  display: flex;
}

.l-footer__sub-nav + .l-footer__sub-nav {
  margin-top: 10px;
}

.l-footer__sub-nav-item {
  margin-right: 20px;
  font-size: 12px;
}

.l-footer__attribute {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.l-footer__attribute-item, .l-footer__attribute-img {
  margin-right: 20px;
}

.l-footer__attribute-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.l-footer__attribute-item img {
  width: 45px;
  height: 45px;
}

.l-footer__attribute-item p {
  margin-left: 5px;
  color: #fff;
  font-size: 10px;
}

.l-footer__copyright {
  margin-top: 20px;
  font-size: 12px;
}

/* --------------------
Content Base
-------------------- */
.l-content-base {
  width: 1000px;
  margin: auto;
}

/* --------------------
Container
-------------------- */
.l-container {
  position: relative;
  left: 200px;
  width: calc(100% - 200px);
  min-height: 100%;
  padding-top: 70px;
  z-index: 18;
  transition: all 0.3s ease;
}

.l-container.is-fullwindow {
  width: 100%;
  left: 0;
}

/* --------------------
Grid
-------------------- */
.l-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-grid__col1 {
  width: 242.5px;
}

.l-grid__col2 {
  width: 495px;
}

.l-grid__half {
  width: 49%;
}

.l-grid__main {
  width: 710px;
}

.l-grid__sub {
  width: 250px;
  padding: 20px 15px;
}

.l-grid__main-section {
  width: 64%;
}

.l-grid__sub-section {
  width: 34%;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}

.l-grid::before, .l-grid::after {
  content: "";
  display: block;
  width: 242.5px;
}

.l-grid::before {
  -ms-flex-order: 1;
  order: 1;
}

/* --------------------
page
-------------------- */
.l-page {
  margin: 30px auto 40px;
}

/* --------------------
Form
-------------------- */
.l-form {
  width: 660px;
  margin: auto;
}

.l-form__note {
  color: #DC4991;
  font-weight: bold;
}

.l-form__submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}

.l-form__submit-item {
  width: 200px;
  margin: 0 10px;
}

/* ====================
Object
==================== */
/* --------------------
Icon
-------------------- */
@font-face {
  font-family: 'icomoon';
  src: url("./fonts/icomoon.eot?vzjoj1");
  src: url("./fonts/icomoon.eot?vzjoj1#iefix") format("embedded-opentype"), url("./fonts/icomoon.ttf?vzjoj1") format("truetype"), url("./fonts/icomoon.woff?vzjoj1") format("woff"), url("./fonts/icomoon.svg?vzjoj1#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="c-icon-"], [class*=" c-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-icon-ab:before {
  content: "";
}

.c-icon-account:before {
  content: "";
}

.c-icon-al:before {
  content: "";
}

.c-icon-ar:before {
  content: "";
}

.c-icon-at:before {
  content: "";
}

.c-icon-card:before {
  content: "";
}

.c-icon-cart:before {
  content: "";
}

.c-icon-comment:before {
  content: "";
}

.c-icon-edit:before {
  content: "";
}

.c-icon-exit:before {
  content: "";
}

.c-icon-fav-off:before {
  content: "";
}

.c-icon-fav-on:before {
  content: "";
}

.c-icon-history:before {
  content: "";
}

.c-icon-letter:before {
  content: "";
}

.c-icon-lock:before {
  content: "";
}

.c-icon-search:before {
  content: "";
}

.c-icon-tag:before {
  content: "";
}

.c-icon-trash:before {
  content: "";
}

.c-icon-regist:before {
content:"";
background-image:url(./fonts/icon_regist.svg);
background-repeat:no-repeat;
background-position:center;
height:20px;
display:block;
}

/* --------------------
Title
-------------------- */
.c-ttl-lev1 {
  margin-bottom: 15px;
  padding: 5px 0 5px 10px;
  font-size: 22px;
  font-weight: bold;
  border-left: 5px solid #DC4991;
}

.c-ttl-lev2,
.c-ttl-lev3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  color: #DC4991;
  font-size: 20px;
  font-weight: bold;
}

.c-ttl-lev2::before,
.c-ttl-lev3::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  margin-right: 10px;
  background: #DC4991;
}

.c-ttl-lev2 span,
.c-ttl-lev3 span {
  -ms-flex: 1;
  flex: 1;
}

.c-ttl-lev3 {
  color: #333;
  line-height: 1.2;
}

.c-ttl-lev3::before {
  background: #333;
}

.c-ttl-lev4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}

.c-ttl-sub {
  padding: 10px;
  color: #fff;
  background: #333;
  font-size: 18px;
}

.c-ttl-page {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}

/* --------------------
Text Link
-------------------- */
.c-txt-link {
  text-decoration: none;
}

.c-txt-link:hover {
  text-decoration: underline;
}

/* --------------------
Button
-------------------- */
.c-btn {
  display: inline-block;
  position: relative;
  padding: 12px 0 14px;
  color: #fff;
  border-radius: 3px;
  box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.2) inset;
  font-size: 14px;
  text-align: center;
  transition: all 0.2s ease;
}

.c-btn.is-primary {
  background: #DC4991;
}

.c-btn.is-secondary {
  background: #333;
}

.c-btn.is-sub {
  background: #F3F3F3;
}

@media screen and (min-width: 1000px) {
  .c-btn.is-primary:hover {
    background: #A82F6A;
  }
  .c-btn.is-secondary:hover {
    background: #000;
  }
  .c-btn:hover {
    box-shadow: none;
  }
}

.c-btn.is-sub {
  color: #000;
  border: 1px solid #ccc;
}

.c-btn.is-icon-at::after, .c-btn.is-icon-ab::after, .c-btn.is-icon-ar::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto 15px auto auto;
  font-size: 10px;
}

.c-btn.is-icon-ab::after {
  content: "";
  font-family: 'icomoon';
  width: 10px;
  height: 10px;
}

.c-btn.is-icon-at::after {
  content: "";
  font-family: 'icomoon';
  width: 10px;
  height: 12px;
}

.c-btn.is-icon-ar::after {
  content: "";
  font-family: 'icomoon';
  width: 10px;
  height: 11px;
}

.c-btn.is-fav {
  padding: 10px 20px;
}

.c-btn.is-fav::before {
  content: "";
  font-family: 'icomoon';
  display: inline-block;
  margin: 0 5px 4px 0;
  font-size: 18px;
  vertical-align: middle;
}


.c-btn.is-fav.is-active::before {
  content: "";
  font-family: 'icomoon';
  color: #E7A100;
}

.c-btn.is-letter {
  padding: 10px 20px;
}

.c-btn.is-letter::before {
  content: "";
  font-family: 'icomoon';
  display: inline-block;
  margin: 2px 5px 0 0;
  color: #DC4991;
  font-size: 18px;
  vertical-align: middle;
}
/* --------------------
Img Button
-------------------- */
.c-imgbtn {
  width: 200px;
  transition: opacity 0.2s ease;
}

.c-imgbtn:hover {
  opacity: .6;
}

/* --------------------
Label
-------------------- */
.c-label {
  display: inline-block;
  color: #fff;
}

.c-label.is-live {
  background: #D42A2A;
}

.c-label.is-pr {
  background: #333;
}

.c-label.is-premium {
  background: #E7A100;
}

.c-label.is-trial {
  background: #DC4991;
}

/* --------------------
Tag
-------------------- */
.c-tag {
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 5px;
  color: #DC4991;
  background: #F3F3F3;
  border: 1px solid #ccc;
  font-size: 12px;
  transition: background 0.2s ease;
}

.c-tag::before {
  margin-right: 5px;
  font-size: 10px;
  content: "";
  font-family: 'icomoon';
}

.c-tag:hover {
  background: #ccc;
}

/* --------------------
Form Input
-------------------- */
.c-forminput {
  display: block;
  position: relative;
  background: #fff;
}

.c-forminput__item {
  position: relative;
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  z-index: 1;
}

.c-forminput__item:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.c-forminput__item::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.c-forminput.is-radio {
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  background: none;
  font-weight: normal;
  cursor: pointer;
}

.c-forminput.is-radio .c-forminput__item {
  display: none;
}

.c-forminput.is-radio .c-forminput__radio-mark {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.c-forminput.is-radio .c-forminput__radio-mark::after {
  content: '';
  display: none;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
}

.c-forminput.is-radio .c-forminput__txt {
  -ms-flex: 1;
  flex: 1;
  line-height: 1.5;
}

.c-forminput.is-radio .c-forminput__item:checked + .c-forminput__radio-mark::after {
  display: block;
}

.c-forminput.is-checkbox {
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  font-weight: normal;
  cursor: pointer;
}

.c-forminput.is-checkbox .c-forminput__item {
  display: none;
}

.c-forminput.is-checkbox .c-forminput__checkbox {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  border: 1px solid #ccc;
}

.c-forminput.is-checkbox .c-forminput__checkbox::after {
  content: '';
  display: none;
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

.c-forminput.is-checkbox .c-forminput__item:checked + .c-forminput__checkbox::after {
  display: block;
}

.c-forminput.is-select::after, .c-forminput.is-search::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.c-forminput.is-select::after {
  width: 18px;
  height: 10px;
  margin: auto 10px auto auto;
  font-size: 10px;
  content: "";
  font-family: 'icomoon';
}

.c-forminput.is-search .c-forminput__submit {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: auto 1px auto auto;
  background: #fff;
  font-size: 16px;
  z-index: 10;
}

.c-forminput.is-textarea .c-forminput__item {
  height: 200px;
  resize: vertical;
}

/* --------------------
Fill
-------------------- */
.c-fill {
  background: #F3F3F3;
}

.c-fill.is-stripe {
  background: url(../image/pattern_stripe.png);
}

/* --------------------
Around
-------------------- */
.c-around {
  border: 1px solid #ccc;
}

/* --------------------
Section
-------------------- */
.c-section {
  margin-top: 20px;
}

.c-section > .c-section {
  margin-top: 20px;
}

/* --------------------
List
-------------------- */
.c-list-horizontal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-list-horizontal__item {
  border-right-width: 1px;
  border-right-style: solid;
  border-color: #333;
}

.c-list-horizontal__item:first-child {
  border-left-width: 1px;
  border-left-style: solid;
}

.c-list-vertical {
  border-bottom: 1px solid #ccc;
}

/* --------------------
Table
-------------------- */
.c-table-primary {
  width: 100%;
  font-size: 14px;
}

.c-table-primary__row {
  border-top: 1px solid #ccc;
}

.c-table-primary__row:last-child {
  border-bottom: 1px solid #ccc;
}

.c-table-primary__ttl {
  padding: 10px;
  background: #F3F3F3;
  vertical-align: middle;
}

.c-table-primary__txt {
  padding: 10px;
  line-height: 22px;
  vertical-align: middle;
}

.c-table-secondary {
  width: 100%;
}

.c-table-secondary__ttl, .c-table-secondary__txt {
  padding: 10px 0;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}

.c-table-secondary__ttl {
  width: 30%;
}

.c-table-secondary__txt {
  font-weight: normal;
}

.c-table-secondary .is-required::before {
  content: '※';
  display: inline-block;
  margin-right: 10px;
  color: #DC4991;
}

/* --------------------
Pagination
-------------------- */
.c-pagination__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #ccc;
}

.c-pagination__item a {
  display: inline-block;
  position: relative;
  padding: 15px;
  color: #333;
  font-size: 16px;
}

.c-pagination .is-active::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #DC4991;
}

/* --------------------
Slider
-------------------- */
.p-slider {
  position: relative;
  padding: 10px 0 12px;
  background: #333;
}

.p-slider__inner {
  width: 700px;
  margin: auto;
  text-align: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.p-slider__inner.is-close {
  opacity: 0;
  height: 0;
}

.p-slider__item {
  transition: opacity 0.2s ease;
}

.p-slider__item:hover {
  opacity: .7;
}

.p-slider .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.p-slider .slick-dots {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: static;
  bottom: -10px;
  width: auto !important;
  margin-left: 20px;
}

.p-slider .slick-dots li,
.p-slider .slick-dots button {
  padding: 0;
}

.p-slider .slick-dots li {
  width: 50px;
  height: 7px;
  margin: 8px 8px 0;
  background: #fff;
}

.p-slider .slick-dots button {
  width: 100%;
  height: 100%;
}

.p-slider .slick-dots button::before {
  display: none;
}

.p-slider .slick-dots .slick-active button {
  background: #DC4991;
}

.p-slider .slick-prev,
.p-slider .slick-next {
  height: 32px;
}

.p-slider .slick-prev::before,
.p-slider .slick-next::before {
  font-size: 32px;
  opacity: 1;
}

.p-slider .slick-prev {
  left: -52px;
}

.p-slider .slick-prev::before {
  content: "";
  font-family: 'icomoon';
}

.p-slider .slick-next {
  right: -52px;
}

.p-slider .slick-next::before {
  content: "";
  font-family: 'icomoon';
}

/* --------------------
Live Info
-------------------- */
.p-live-info {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
}

.p-live-info.is-close {
  display: none;
}

.p-live-info__thumb {
  width: 614px;
  transition: opacity 0.2s ease;
}

.p-live-info__thumb:hover {
  opacity: .7;
}

.p-live-info__content {
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding: 20px;
  background: #000;
}

.p-live-info__close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.p-live-info__label {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  background: #D42A2A;
}

.p-live-info__ttl, .p-live-info__txt {
  color: #fff;
}

.p-live-info__ttl {
  margin: 17px 0;
  font-size: 22px;
}

.p-live-info__txt {
  line-height: 25px;
}

.p-live-info__btn {
  margin-top: 17px;
  text-align: center;
}

.p-live-info__btn-item {
  width: 200px;
}

/* --------------------
Page Header
-------------------- */
.p-page-header {
  display: -ms-flexbox;
  display: flex;
}

.p-page-header__thumb {
  width: 500px;
  height: 100%;
  font-size: 0;
  border: 1px solid #ccc;
}

.p-page-header__content {
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  margin-left: 20px;
}

.p-page-header__ttl {
  margin: 10px 0;
  font-size: 30px;
  font-weight: bold;
}

.p-page-header__catch {
  margin: 10px 0;
  padding: 10px;
  color: #906D0C;
  background: #F3F3F3;
}

.p-page-header__btn-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-page-header__btn {
  margin-top: 10px;
}

.p-page-header__more {
  margin-top: 10px;
  text-align: center;
}

.p-page-header__more-btn {
  width: 200px;
}

/* --------------------
Side Bnr
-------------------- */
.p-sidebnrs {
  display: none;
  max-width: 1300px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 1626px) {
  .p-sidebnrs {
    display: block;
  }
}

.p-sidebnrs__left, .p-sidebnrs__right {
  position: absolute;
  top: 10px;
  background: #fff;
}

.p-sidebnrs a {
  transition: opacity 0.2s ease;
}

.p-sidebnrs a:hover {
  opacity: .7;
}

.p-sidebnrs__left {
  left: 0;
}

.p-sidebnrs__right {
  right: 0;
}

/* --------------------
Top Banner
-------------------- */
.p-top-bnr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.p-top-bnr__item {
  display: block;
  transition: opacity 0.2s ease;
}

.p-top-bnr__item:hover {
  opacity: .7;
}

/* --------------------
Media Episode
-------------------- */
.p-media-episode {
  position: relative;
  margin-bottom: 10px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.2s ease;
}

.p-media-episode:hover {
  opacity: .7;
}

.p-media-episode__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  font-size: 12px;
}

.p-media-episode__thumb {
  width: 100%;
  border: 1px solid #ccc;
}

.p-media-episode__ttl {
  margin-top: 10px;
  color: #333;
  font-size: 13px;
  line-height: 16px;
}

/* --------------------
Media Category
-------------------- */
.p-media-category {
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.p-media-category:hover {
  opacity: .7;
}

.p-media-category a {
  color: #333;
}

.p-media-category__thumb {
  width: 100%;
  border: 1px solid #ccc;
}

.p-media-category__ttl {
  margin: 5px 0;
  color: #DC4991;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
}

.p-media-category__txt {
  font-size: 12px;
}

/* --------------------
Media Live
-------------------- */
.p-media-live {
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.p-media-live:not(:last-child) {
  border-bottom: 2px solid #ccc;
}

.p-media-live__link {
  display: block;
  transition: opacity 0.2s ease;
}

.p-media-live__link:hover {
  opacity: .7;
}

.p-media-live.is-active {
  background: rgba(212, 42, 42, 0.1);
}

.p-media-live.is-active .p-media-live__time::before {
  content: 'LIVE中';
  display: inline-block;
  margin-right: 5px;
  padding: 2px 5px;
  color: #fff;
  background: #D42A2A;
  font-size: 12px;
}

.p-media-live__thumb {
  display: block;
  width: 265px;
  height: 100%;
  margin-right: 20px;
  border: 1px solid #ccc;
  font-size: 0;
}

.p-media-live__content {
  -ms-flex: 1;
  flex: 1;
}

.p-media-live__ttl {
  margin-top: 10px;
  color: #DC4991;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
}

.p-media-live__time {
  color: #333;
  font-size: 14px;
}

.p-media-live__txt {
  margin: 5px 0;
  color: #333;
  line-height: 22px;
}

.p-media-live__tag {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* --------------------
Media Info
-------------------- */
.p-media-info {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.2s ease;
}

.p-media-info:hover {
  opacity: .7;
}

.p-media-info:not(:nth-last-of-type(-n+4)) {
  margin-bottom: 10px;
}

.p-media-info__thumb {
  width: 100%;
  border: 1px solid #ccc;
}

/* --------------------
Media Slider
-------------------- */
.p-media-slider__item:nth-last-of-type(-n+4) {
  margin-bottom: 0;
}

.p-media-slider .slick-prev,
.p-media-slider .slick-next {
  top: 45%;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.2s ease;
}

.p-media-slider .slick-prev::before,
.p-media-slider .slick-next::before {
  color: #DC4991;
  font-size: 24px;
  opacity: 1;
}

.p-media-slider .slick-prev:hover,
.p-media-slider .slick-next:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.p-media-slider .slick-prev {
  left: -50px;
  padding-right: 5px;
}

.p-media-slider .slick-prev::before {
  content: "";
  font-family: 'icomoon';
}

.p-media-slider .slick-next {
  right: -50px;
  padding-left: 5px;
}

.p-media-slider .slick-next::before {
  content: "";
  font-family: 'icomoon';
}

.p-media-slider .slick-disabled {
  display: none !important;
}

/* --------------------
Media Navigation
-------------------- */
.p-media-navigation__inner::after {
  clear: both;
  content: '';
  display: block;
}

.p-media-navigation__item {
  position: relative;
  width: 49%;
  padding: 15px;
  background: #F3F3F3;
  transition: opacity 0.2s ease;
}

.p-media-navigation__item:hover {
  opacity: .7;
}

.p-media-navigation__item a {
  display: block;
  color: #000;
}

.p-media-navigation__item.is-next .p-media-navigation__label::before,
.p-media-navigation__item.is-next .p-media-navigation__label::after, .p-media-navigation__item.is-prev .p-media-navigation__label::before,
.p-media-navigation__item.is-prev .p-media-navigation__label::after {
  color: #DC4991;
  font-size: 14px;
}

.p-media-navigation__item.is-next {
  float: left;
}

.p-media-navigation__item.is-next .p-media-navigation__label {
  text-align: left;
}

.p-media-navigation__item.is-next .p-media-navigation__label:before {
  margin-right: 10px;
  content: "";
  font-family: 'icomoon';
  transform: scaleX(-1);
  display: inline-block;
}

.p-media-navigation__item.is-prev {
  float: right;
}

.p-media-navigation__item.is-prev .p-media-navigation__label {
  text-align: right;
}

.p-media-navigation__item.is-prev .p-media-navigation__label:after {
  margin-left: 10px;
  content: "";
  font-family: 'icomoon';
}

.p-media-navigation__label {
  color: #DC4991;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: bold;
}

.p-media-navigation__thumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.p-media-navigation__thumb p {
  width: 60%;
  padding-left: 10px;
  font-size: 14px;
  font-weight: bold;
}

.p-media-navigation__thumb img {
  width: 40%;
}

.p-media-navigation__txt {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

/* --------------------
Info List
-------------------- */
.p-infolist__item {
  display: -ms-flexbox;
  display: flex;
  padding: 15px 30px 15px 0;
}

.p-infolist__item:first-child {
  border-top: 1px solid #ccc;
}

.p-infolist__time {
  margin-right: 40px;
  font-weight: bold;
}

.p-infolist__link {
  color: #DC4991;
}

/* --------------------
List Abridgement
-------------------- */
.p-list-abridgement__more {
  width: 100%;
  text-align: center;
}

.p-list-abridgement__more-btn {
  width: 200px;
}

.p-list-abridgement__more-btn::after {
  content: "";
  font-family: 'icomoon';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto 15px auto auto;
  font-size: 10px;
}

.p-list-abridgement__more-btn.is-close::after {
  content: "";
  font-family: 'icomoon';
}

/* --------------------
List Hole
-------------------- */
.p-list-hole a {
  display: block;
  padding: 15px 0;
  color: #333;
  transition: opacity 0.2s ease;
}

.p-list-hole a:hover {
  opacity: .5;
}

.p-list-hole__ttl {
  color: #DC4991;
  font-size: 18px;
  font-weight: bold;
}

.p-list-hole__txt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
}

/* --------------------
List Movie
-------------------- */
.p-list-movie {
  position: relative;
}

.p-list-movie__inner {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  color: #333;
  transition: opacity 0.2s ease;
}

.p-list-movie__inner:hover {
  opacity: .7;
}

.p-list-movie__thumb {
  width: 205px;
  height: 100%;
  margin-right: 20px;
  border: 1px solid #ccc;
}

.p-list-movie__ttl {
  margin-bottom: 10px;
  color: #DC4991;
  font-size: 18px;
}

.p-list-movie__txt + .p-list-movie__txt {
  margin-top: 5px;
}

.p-list-movie__btn {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.p-list-movie__cancel {
  padding: 10px 30px;
}

.p-list-movie__icon-trash {
  color: #DC4991;
  font-size: 20px;
  transition: color 0.2s ease;
}

.p-list-movie__icon-trash:hover {
  color: #000;
}

/* --------------------
Flow
-------------------- */
.p-flow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-flow__item {
  position: relative;
  width: 320px;
  padding: 15px 0;
  color: #fff;
  background: #ccc;
  text-align: center;
}

.p-flow__item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -12px;
  border-width: 22px 0 22px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #ccc;
}

.p-flow .is-active {
  background: #333;
}

.p-flow .is-active:not(:last-child)::after {
  border-color: transparent transparent transparent #333;
}

/* --------------------
Filter
-------------------- */
.p-filter__item {
  padding: 5px 20px;
  font-size: 14px;
}

.p-filter .is-active {
  font-weight: bold;
}

/* --------------------
Tag List
-------------------- */
.p-taglist {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.p-taglist__more {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.p-taglist__more-btn {
  width: 200px;
}

/* --------------------
Tab Nav
-------------------- */
.p-tabnav {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.p-tabnav__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-tabnav__item {
  position: relative;
  padding: 20px;
  font-size: 14px;
}

.p-tabnav__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #DC4991;
  transition: height 0.1s ease;
}

.p-tabnav__item.is-active::after {
  height: 4px;
}

/* --------------------
Recommend Nav
-------------------- */
.p-recommendnav {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.p-recommendnav__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-recommendnav__item {
  position: relative;
  padding: 20px;
  font-size: 14px;
}

.p-recommendnav__item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #DC4991;
  transition: height 0.1s ease;
}

.p-recommendnav__item.is-active::after {
  height: 4px;
}

/* --------------------
Tab Panel
-------------------- */
.p-tabpanel__item {
  display: none;
}

.p-tabpanel__item.is-active {
  display: block;
}

/* --------------------
Recommend Panel
-------------------- */
.p-recommendpanel__item {
  display: none;
}

.p-recommendpanel__item.is-active {
  display: block;
}

/* --------------------
Player
-------------------- */
.p-player {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-player.is-live .p-player__video {
  width: 760px;
  border: 0;
}

.p-player__video {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
}

.p-player__comment {
  overflow: auto;
  width: 240px;
  height: 428px;
  background: #eaeaea;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #333;
}

.p-player__comment-item {
  padding: 7px 10px;
  font-size: 11px;
  line-height: 16px;
  word-break: break-all;
}

.p-player__comment-item:nth-child(odd) {
  background: #fff;
}

.p-player__input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #333;
}

.p-player__input-item {
  width: 750px;
  padding: 10px;
  background: #fff;
  font-size: 14px;
}

.p-player__input-item:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-player__input-item::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-player__input-count {
  padding: 0 15px;
  color: #fff;
  font-size: 12px;
}

.p-player__input-submit {
  -ms-flex: 1;
  flex: 1;
}

/* --------------------
ShowLittle LiveAlert
-------------------- */

.live_alert {
  position: absolute;
  display: none;
  width: inherit;
  height: inherit;
}

.live_alert_message {
  position: absolute;
  display: flex;
  color: #fff;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

.live_alert_message a:link{
   color: #fcfbc0;
}

/* --------------------
Product Menu
-------------------- */
.p-product-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.p-product-menu__item {
  position: relative;
  width: 470px;
  margin-bottom: 20px;
  padding: 20px 0;
  background: #fff;
  border: 2px solid #906D0C;
  text-align: center;
}

.p-product-menu__item.is-recommend::after {
  content: "おすすめ";
  position: absolute;
  top: -2px;
  left: -2px;
  display: inline-block;
  padding: 5px;
  color: #fff;
  background: #D42A2A;
  font-size: 12px;
}

.p-product-menu__item.is-finish {
  border-color: #ccc;
}

.p-product-menu__item.is-finish .p-product-menu__btn {
  opacity: .6;
  pointer-events: none;
}

.p-product-menu__ttl {
  color: #906D0C;
}

.p-product-menu__ttl a {
  color: inherit;
  text-decoration: underline;
}

.p-product-menu__btn {
  display: inline-block;
  margin-top: 20px;
}

/* --------------------
Accordion Block
-------------------- */
.p-accordion-block {
  display: none;
  width: 100%;
}

.p-accordion-block.is-show {
  display: block;
}

/* --------------------
Accordion Trigger
-------------------- */
.p-accordion-trigger {
  width: 100%;
  text-align: center;
}

.p-accordion-trigger button {
  width: 200px;
}

/* --------------------
Place List
-------------------- */
.p-place-list__item {
  margin-bottom: 8px;
  padding: 0 8px;
  color: #DC4991;
  border-color: #ccc;
  transition: opacity 0.2s ease;
}

.p-place-list__item:hover {
  opacity: .5;
}

.p-place-list__item:first-child {
  padding-left: 0;
  border-left: 0;
}

/* --------------------
Form Field
-------------------- */
.p-formfield {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.p-formfield__unit {
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  font-weight: normal;
  text-align: center;
}

.p-formfield.is-triple .p-formfield__item {
  width: 25%;
}

.p-formfield.is-double .p-formfield__item {
  width: 30%;
}

.p-formfield.is-double .p-formfield__item:first-of-type {
  margin-right: 40px;
}

.p-formfield.is-double .p-formfield__unit {
  width: 100%;
  text-align: left;
}

/* --------------------
Program Detail
-------------------- */
.p-program-detail__message {
  width: 100%;
  margin-top: 10px;
  padding: 18px 0;
  color: #fff;
  background: #D42A2A;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.p-program-detail__ttl {
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
}

.p-program-detail__live-time {
  font-size: 12px;
}

.p-program-detail__label {
  padding: 2px 10px;
}

.p-program-detail__nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 10px 0 0;
}

.p-program-detail__sns, .p-program-detail__btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.p-program-detail__sns-item {
  margin-right: 10px;
}

.p-program-detail__btns-item {
  margin-left: 10px;
}

/* --------------------
Hole Detail
-------------------- */
.p-hole-detail.is-member {
  padding: 1px 0;
  background: url(../image/pattern_stripe-b.png);
}

.p-hole-detail__info, .p-hole-detail__blog {
  width: 1000px;
  margin: auto;
}

.p-hole-detail__info {
  padding: 20px;
  background: #fff;
}

.p-hole-detail__blog {
  margin-top: 50px;
  background: #fff;
}

.p-hole-detail__heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 1000px;
  margin: auto;
}

.p-hole-detail__heading.is-column {
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-hole-detail__heading.is-column .p-hole-detail__ttl {
  margin: 0 0 20px;
}

.p-hole-detail__thumb-inner {
  display: -ms-flexbox;
  display: flex;
}

.p-hole-detail__thumb img {
  width: 300px;
  height: 100%;
  margin-right: 10px;
}

.p-hole-detail__ttl {
  margin-left: 20px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}

.p-hole-detail__map {
  width: 520px;
  height: 350px;
  margin-top: 10px;
}

.p-hole-detail__link {
  text-align: center;
}

.p-hole-detail__link-item {
  width: 200px;
}

.p-hole-detail__post-search {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  background: #ccc;
}

.p-hole-detail__post-search-txt {
  margin-right: 20px;
}

.p-hole-detail__post-search-input {
  width: 280px;
}

.p-hole-detail__post-search-input select {
  font-size: 14px;
  padding: 10px;
}

.p-hole-detail__post-ttl {
  padding: 15px 20px;
  color: #fff;
  background: #333;
  font-size: 18px;
}

.p-hole-detail__post-date {
  padding: 20px;
}

.p-hole-detail__post-content {
  padding: 0 0 40px;
  text-align: center;
}

.p-hole-detail__post-content p {
  margin-top: 40px;
  font-size: 32px;
  line-height: 100px;
}

.p-hole-detail__post-bnrs {
  padding: 40px 0;
  text-align: center;
}

/* --------------------
Mypage
-------------------- */
.p-mypage__nav-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-mypage__nav-item {
  position: relative;
  width: 244px;
  border: 1px solid #ccc;
}

.p-mypage__nav-item a {
  display: block;
  padding: 10px;
  color: #333;
  text-align: center;
  transition: background 0.2s ease;
}

.p-mypage__nav-item a.is-active {
  color: #fff;
  background: #DC4991;
  border-color: #DC4991;
}

.p-mypage__nav-item a.is-active:hover {
  color: #fff;
  background: #DC4991;
}

.p-mypage__nav-item a:hover {
  background: #ccc;
}

.p-mypage__nav-item:not(:nth-last-of-type(-n+4)) {
  margin-bottom: 8px;
}

.p-mypage__nav-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto auto auto 10px;
  font-size: 14px;
}

.p-mypage__filter {
  margin: 20px 0 10px;
}

.p-mypage__form-note {
  margin: 20px 0 10px;
  color: #DC4991;
  font-weight: bold;
}

.p-mypage__more {
  margin-top: 20px;
}

.p-mypage__complete-txt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/* --------------------
Buy
-------------------- */
.p-buy__table {
  margin-top: 20px;
}

.p-buy__table-ttl {
  width: 15%;
}

.p-buy__section {
  margin-top: 20px;
  padding: 20px;
}

.p-buy__info {
  margin-top: 20px;
  padding: 10px;
  border: 2px solid #D42A2A;
  font-size: 12px;
}

.p-buy__info-notes {
  color: #D42A2A;
}

.p-buy__samplevideo {
  width: 500px;
  margin: 20px auto 0;
  background: #ccc;
}

.p-buy__plan {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-buy__plan-item {
  width: 225px;
  margin-bottom: 20px;
}

.p-buy__plan-logo {
  display: block;
  margin-bottom: 10px;
}

.p-buy__plan-input {
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-buy__coupon {
  width: 500px;
  margin: auto;
  background: none;
  text-align: center;
}

.p-buy__coupon-txt {
  display: inline-block;
  margin-bottom: 10px;
}

.p-buy__coupon input {
  background: #fff;
}

.p-buy__agree {
  -ms-flex-pack: center;
  justify-content: center;
  margin: 30px 0;
}

.p-buy__agree-link {
  color: #DC4991;
}

.p-buy__submit {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.p-buy__submit-item {
  width: 200px;
  margin: 0 10px;
}

/* --------------------
Register
-------------------- */
.p-register__section {
  margin-bottom: 20px;
  padding: 20px;
}

.p-register__sns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.p-register__sns-block {
  display: -ms-flexbox;
  display: flex;
}

.p-register__sns-block + .p-register__sns-block {
  margin-top: 10px;
}

.p-register__sns-item {
  width: 232px;
  margin: 0 5px;
  transition: opacity 0.2s ease;
}

.p-register__sns-item:hover {
  opacity: .7;
}

.p-register__form-block + .p-register__form-block {
  margin-top: 40px;
}

/* --------------------
Login
-------------------- */
.p-login__section {
  margin-top: 20px;
  padding: 20px;
  -ms-flex-align: unset;
  align-items: unset;
}

.p-login__section p + p {
  margin-top: 10px;
}

.p-login__table-cell {
  width: 10%;
  padding: 10px 0;
  line-height: 1.3;
}

.p-login__submit {
  width: 300px;
}

.p-login__submit-link {
  display: block;
  margin-top: 15px;
  color: #DC4991;
}

.p-login__sns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
}

.p-login__sns-item {
  width: 232px;
  height: 100%;
  transition: opacity 0.2s ease;
}

.p-login__sns-item:hover {
  opacity: .7;
}

.p-login__sns-item + .p-login__sns-item {
  display: block;
  margin-top: 10px;
}

.p-login__linkbtn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-login__linkbtn-career {
  width: 232px;
}

.p-login__linkbtn-career + .p-login__linkbtn-career {
  margin-top: 10px;
}

.p-login__linkbtn-item {
  width: 300px;
  margin: 20px 10px 0;
}

.p-login__linkbtn-item + .p-login__linkbtn-item {
  margin-top: 10px;
}

/* --------------------
Contact From
-------------------- */
.p-contact-form__ttl {
  width: 20%;
}

.p-contact-form .p-formfield.is-double .p-formfield__item {
  width: 40%;
}

/* --------------------
Suppression
-------------------- */
.p-suppression__point-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-suppression__point-list-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 49%;
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #F3F3F3;
}

.p-suppression__point-list-thumb {
  margin-right: 15px;
}

.p-suppression__point-list-ttl {
  color: #DC4991;
  font-size: 16px;
  font-weight: bold;
}

.p-suppression__point-list-txt {
  margin-top: 8px;
  line-height: 1.3;
}

.p-suppression__point {
  margin: 20px 0 10px;
  padding: 20px 0;
  background: rgba(231, 161, 0, 0.1);
  border: 2px solid #E7A100;
  text-align: center;
}

.p-suppression__point-ttl {
  margin-bottom: 15px;
  color: #E7A100;
  font-size: 22px;
  font-weight: bold;
}

.p-suppression__point-txt {
  font-size: 16px;
  font-weight: bold;
}

/* --------------------
Pagination
-------------------- */
.p-pagination-block {
  width: 100%;
  text-align: center;
}
.p-pagination-block-list {
  margin: 0 auto;
  display: inline-block;
}
.p-pagination-block-list::after {
  content: '';
  display: table;
  clear: both;
}
.p-pagination-block-list li {
  margin: 0 5px;
  display: block;
  float: left;
  font-size: 16px;
}

.p-pagination-block-list li a{
}

.p-pagination-block-list li a,
.p-pagination-block-list li span,
.p-pagination-block-list li.current {
  border-radius:4px;
  display: inline-block;
  width:34px;
  max-height:34px;
  line-height: 34px;
  color: #DC4991;
  background: #ededed;
  box-sizing: border-box;
}

.p-pagination-block-list li a:hover,
.p-pagination-block-list li.current {
  color: #fff;
  background: #DC4991;
}
.p-pagination-block-list li.p-pagination-control {
  margin: 0;
}
.p-pagination-block-list li.p-pagination-control a {

  display: block;
  height: 34px;
  background: none transparent;
}

.p-pagination-block-list li.p-pagination-control span {
  position: relative;
  border: none transparent;
}
.p-pagination-block-list li.p-pagination-control span::before {
  content: "";
  font-family: 'icomoon';
  font-size: 15px;
  color: #DC4991;
  display: inline-block;
  line-height: 34px;
}
.p-pagination-block-list li.p-pagination-control.first span::before,
.p-pagination-block-list li.p-pagination-control.prev span::before {
  transform: scale(-1, 1);
}
.p-pagination-block-list li.p-pagination-control.prev span::before {
margin-left:-3px;
}
.p-pagination-block-list li.p-pagination-control.next span::before {
margin-right:-1px;
}
.p-pagination-block-list li.p-pagination-control.last span::after,
.p-pagination-block-list li.p-pagination-control.first span::after {
  content: "";
  font-family: 'icomoon';
  font-size: 15px;
  color: #DC4991;
  display: inline-block;
  position: absolute;
}
.p-pagination-block-list li.p-pagination-control.first{margin-right:9px;}
.p-pagination-block-list li.p-pagination-control.last{margin-left:9px;}
.p-pagination-block-list li.p-pagination-control.prev{margin-right:6px;}
.p-pagination-block-list li.p-pagination-control.next {margin-left:6px;}
.p-pagination-block-list li.p-pagination-control.first span::before{
  padding-right:.4em;
}
.p-pagination-block-list li.p-pagination-control.first span::after {
  transform: scale(-1, 1);
  left: 0.4em;
}
.p-pagination-block-list li.p-pagination-control.last span::before {
  padding-right:.5em;
}
.p-pagination-block-list li.p-pagination-control.last span::after {
  right: 0.5em;
}

.p-pagination-block-list li.p-pagination-control a span:hover{
background: #DC4991;
}
.p-pagination-block-list li.p-pagination-control a span:hover::before,
.p-pagination-block-list li.p-pagination-control a span:hover::after{
  color:#fff;
}
.p-pagination-block-list .non_active::before{
  color: #cccccc !important;
}
.p-pagination-block-list .non_active::after{
  color: #cccccc !important;
}

/* --------------------
Subcategory
-------------------- */
.sub-category-menu{
	margin-bottom: 10px;
}
.sub-category-menu .sub-menu-list{
	display: flex;
	justify-content:
	flex-start;
	flex-wrap: wrap;
}
.sub-category-menu .sub-menu-list li{
	width:calc(1000px / 5 - 10px);
	margin-right: 10px;
}
.sub-category-menu .sub-menu-list li a{
	display: block;
	background: #ededed;
	color: #DC4991;
	padding:8px 5px;
	text-align: center;
	font-size: 13px;
	border-radius: 4px;
	margin-bottom: 12px;
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.sub-category-menu .sub-menu-list li a:hover{
	background:#DC4991;
	color: #fff;
}

/* --------------------
Marign
-------------------- */
.u-mt0 {
  margin-top: 0px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-mh0 {
  margin: 0 0px;
}

.u-mv0 {
  margin: 0px 0;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-mh10 {
  margin: 0 10px;
}

.u-mv10 {
  margin: 10px 0;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-mh20 {
  margin: 0 20px;
}

.u-mv20 {
  margin: 20px 0;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-mh30 {
  margin: 0 30px;
}

.u-mv30 {
  margin: 30px 0;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-mh40 {
  margin: 0 40px;
}

.u-mv40 {
  margin: 40px 0;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-mh50 {
  margin: 0 50px;
}

.u-mv50 {
  margin: 50px 0;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-mh60 {
  margin: 0 60px;
}

.u-mv60 {
  margin: 60px 0;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-mh70 {
  margin: 0 70px;
}

.u-mv70 {
  margin: 70px 0;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-mh80 {
  margin: 0 80px;
}

.u-mv80 {
  margin: 80px 0;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-mh90 {
  margin: 0 90px;
}

.u-mv90 {
  margin: 90px 0;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mr100 {
  margin-right: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-mh100 {
  margin: 0 100px;
}

.u-mv100 {
  margin: 100px 0;
}

/* --------------------
Padding
-------------------- */
.u-pt0 {
  padding-top: 0px;
}

.u-pr0 {
  padding-right: 0px;
}

.u-pb0 {
  padding-bottom: 0px;
}

.u-pl0 {
  padding-left: 0px;
}

.u-ph0 {
  padding: 0 0px;
}

.u-pv0 {
  padding: 0px 0;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pr5 {
  padding-right: 5px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pl5 {
  padding-left: 5px;
}

.u-ph5 {
  padding: 0 5px;
}

.u-pv5 {
  padding: 5px 0;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-ph10 {
  padding: 0 10px;
}

.u-pv10 {
  padding: 10px 0;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-ph15 {
  padding: 0 15px;
}

.u-pv15 {
  padding: 15px 0;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-ph20 {
  padding: 0 20px;
}

.u-pv20 {
  padding: 20px 0;
}

.u-pt25 {
  padding-top: 25px;
}

.u-pr25 {
  padding-right: 25px;
}

.u-pb25 {
  padding-bottom: 25px;
}

.u-pl25 {
  padding-left: 25px;
}

.u-ph25 {
  padding: 0 25px;
}

.u-pv25 {
  padding: 25px 0;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-ph30 {
  padding: 0 30px;
}

.u-pv30 {
  padding: 30px 0;
}

.u-pt35 {
  padding-top: 35px;
}

.u-pr35 {
  padding-right: 35px;
}

.u-pb35 {
  padding-bottom: 35px;
}

.u-pl35 {
  padding-left: 35px;
}

.u-ph35 {
  padding: 0 35px;
}

.u-pv35 {
  padding: 35px 0;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-ph40 {
  padding: 0 40px;
}

.u-pv40 {
  padding: 40px 0;
}

.u-pt45 {
  padding-top: 45px;
}

.u-pr45 {
  padding-right: 45px;
}

.u-pb45 {
  padding-bottom: 45px;
}

.u-pl45 {
  padding-left: 45px;
}

.u-ph45 {
  padding: 0 45px;
}

.u-pv45 {
  padding: 45px 0;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-ph50 {
  padding: 0 50px;
}

.u-pv50 {
  padding: 50px 0;
}

/* --------------------
View
-------------------- */
.u-view-sp {
  display: none;
}

/* ====================
Object
==================== */
/* ====================
PC
==================== */
body {
  min-width: 1000px;
}

@media screen and (min-width: 1400px) {
  .l-header__search {
    display: block;
    position: relative;
    width: 430px;
    padding: 0 5px 0 10px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .l-header__search-trigger {
    display: block;
  }
  .l-header__search {
    -ms-flex: auto;
    flex: auto;
    position: absolute;
    top: 70px;
    left: 200px;
    width: calc(100% - 200px);
    max-width: 100%;
    padding: 10px;
    background: #333;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.2s ease;
  }
}

@media screen and (max-width: 1300px) {
  .p-media-info:nth-child(-n+1) {
    margin-bottom: 10px;
  }
  .l-grid__col1 {
    width: 23.5%;
  }
  .l-grid::before, .l-grid::after {
    content: "";
    display: block;
    width: 23.5%;
  }
  .l-grid__col2 {
    width: 49%;
  }
  .p-product-menu__item {
    width: 49%;
  }
  .l-content-base {
    width: 750px;
  }
  .l-grid__main {
    width: 64%;
  }
  .p-player.is-live .p-player__video {
    width: 510px;
  }
  .p-player__comment {
    height: 287px;
  }
  .p-player__input-item {
    width: 75%;
  }
}

/* --------------------
20191001
-------------------- */
.menu-alert {
	position:relative;
}
.menu-alert:after{
	display: block;
	content: url("/image/icon-alert.svg");
	width: 18px;
	position: absolute;
	right: 3px;
	top: 3px;
}
.mypage-alert {
	position:relative;
}
.mypage-alert:after{
	display: block;
	content: url("/image/icon-alert.svg");
	width: 20px;
	position: absolute;
	right: -8px;
	top: -8px;
}
.p-list-movie.is-alert .p-list-movie__inner{
	padding-bottom: 0;
}
.p-list-movie .c-btn.is-secondary.p-list-movie__btn-is-canceled{
	background: #ccc;
	box-shadow:none;
}
.credit-alert {
	max-width: 650px;
	margin: 0 0 20px  225px;
	border:solid 2px #D42A2A;
	background:#FCEAEA;
	padding: 10px;
}
.credit-alert__txt{
	font-size: 14px;
	color: #D42A2A;
	font-weight: bold;
}
.credit-alert__txt__link{
	font-size: 14px;
	color: #0000ee;
	text-decoration: underline;
	font-weight: bold;
	padding-top: 5px;
	display: inline-block;
}
.credit-alert__txt__link:hover{
	text-decoration: none;
}

/* --------------------
20200610
-------------------- */

.p-comment{
  /* background: #f3f3f3; */
  padding: 20px;
  box-sizing: border-box;
}
.p-comment-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom:10px;
}
.p-comment-quantity{
  font-size: 18px;
}
.p-comment-quantity span{
  padding-left:7px;
}
.p-comment-sort{
  color: #999;
  font-size: 14px;
  position:relative;
}
.p-comment-sort span{
  display: flex;
  vertical-align: middle;
  align-items: center;
}
.p-comment-sort span:after{
  display:inline-block;
	content:url("/image/icon-sort.svg");
  margin-left:7px;
}
.p-comment-sort-btn{
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition:.3s ;
  right:0;
  top:0;
  border:solid 1px #ccc;
  border-radius:4px;
  z-index:10;
  background:#fff;
  color:#333;
}
.p-comment-sort-btn.p-comment-sort-btn_active{
  opacity: 1;
  visibility:visible;
  transition: all  0.3s ease;
}
.p-comment-sort-btn li button{
  padding:14px;
  border-bottom:solid 1px #ccc;
  width:160px;
  transition: all  0.3s ease;
}
.p-comment-sort-btn li button:hover{
  color:#ccc;
}
.p-comment-sort-btn li:last-child{
  border-bottom:none;
}
.p-comment-field-user,
.p-comment-field-mine{
  display: flex;
  position:relative;
  padding:13px 0;
}
.p-comment-field-user figure img,
.p-comment-field-mine figure img{
  max-width: 40px;
  max-height: 40px;
  border-radius: 50px;
}
.p-comment-field-mine,.p-comment-field-user{
  border-bottom:solid 1px #ccc;
}
.p-comment-field-mine > div,
.p-comment-field-user > div{
  font-size: 14px;
  margin-left:15px;
}
.p-comment-field-mine > div{
  display: flex;
  width:100%;
  flex-flow:column;
}
.p-comment-field-mine > div p.error{
  color:#ff0000;
  padding-top:5px;
  font-size:12px;
  margin: 0;
}
.p-comment-field-mine > div > div{
  display: flex;
}
.p-comment-field-mine form{
	width: 100%;
}
/* .p-comment-field-mine input.comment-area{
  background:#fff;
  padding-left: 6px;
  box-sizing:border-box;
  width: 85%;
} */
.p-comment-field-mine button.send{
  background: #DC4991;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  width: 80px;
  height: 42px;
  margin-left: 10px;
  transition: opacity 0.2s ease;
} */
.p-comment-field-mine button.send:hover{
  opacity: 0.8;
}
textarea#comment_form {
  -webkit-writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: -internal-light-dark(black, white);
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-rtl-ordering: logical;
  cursor: text;
  font: 400 13.3333px Arial;
  height: auto;
  padding-left: 6px;
  box-sizing: border-box;
  width: 85%;
  overflow: hidden;
  background: #F3F3F3;
  border-radius: 10px;
}
a.send {
  display: inline-block;
  text-align: center;
  background: #DC4991;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  width: 80px;
  height: 42px;
  margin-left: 10px;
  transition: opacity 0.2s ease;
  padding: 15px 15px;
}
.p-comment-field-mine a.send:hover{
  opacity: 0.8;
}
.p-comment-field-user > div{
  max-width: 100%;
}
.p-comment-field-user-name{
  color:#999;
  padding-bottom:3px;
}
p.p-comment-field-user-comment {
  white-space: pre-wrap;
}
.p-comment-field-exile{
  position: absolute;
  right:10px;
  top:10px;
}
.p-comment-field-exile:after{
  display:inline-block;
  content:url("/image/icon-delete.svg");
  margin-left:7px;
}
.p-comment-field-exile:hover{
  cursor:pointer;
}
.p-comment-field-exile ul{
  opacity: 0;
  visibility: hidden;
  transition:.3s ;
  position:absolute;
  background:#fff;
  border-radius:4px;
  right:-30px;
  border:solid 1px #ccc;
  z-index: 1;
}
.p-comment-field-exile.p-comment-field-exile_active ul{
  opacity: 1;
  visibility:visible;
}
.p-comment-field-exile ul li{
  border-bottom:solid 1px #ccc;
}
.p-comment-field-exile ul li button{
  z-index:10;
  text-align:center;
  padding:10px;
  width:160px;
  color:#333;
  font-size:13px;
  transition:.3s;
}
.p-comment-field-exile ul li button:hover{
  color:#ccc;
}
.p-comment-field-exile ul li:last-child{
  border-bottom:none;
}
.c-btn.is-like {
  padding: 10px 20px;
}
.c-btn.is-like span{
  padding-right:2px;
  padding-left:2px;
}
.c-btn.is-like:before {
  content:url("/image/icon-like.svg");
  display: inline-block;
  margin: 0 5px 4px 0;
  font-size: 18px;
  vertical-align: middle;
}
.c-btn.is-like.is-like_active:before {
  content:url("/image/icon-like-active.svg");
}
.p-comment-sort{
  cursor: pointer;
}
.p-comment-field-exile{
  cursor: pointer;
}
