@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

/* RESET
------------------------------------*/
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 {
    position: relative;
    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;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
img {
    border-style: none;
    vertical-align: bottom;
    font-size:0;
}

article,aside,footer,header,nav,section,main {
    display: block;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: 0;
}

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}



/* BASE
------------------------------------*/

html {
    font-size: 62.5%;
    min-width: 100%;
    height: 100%;
}
body {
    background-color: #FFFFFF;
    font-family: Lato, "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333333;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

@media only screen and (max-width: 767px) {
    html { min-width: auto; }
} /* end @media */




/* COMMON
------------------------------------*/

.wrap {
  max-width: 1220px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.wrap1100 {
  max-width: 1120px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
.containar {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
}
.main {
  width: 100%;
}
.content {
  padding: 70px 0 0 0;
}

.center { text-align: center; }
.relative { position: relative; }
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

a {
  text-decoration: none;
}

p, ul {
  line-height: 1.7em;
  font-size: 1.4rem;
}
.ft18 { font-size: 1.8rem; }
.ft15 { font-size: 1.5rem; }
.ft14 { font-size: 1.4rem; }
.ft13 { font-size: 1.3rem; }
.ft12 { font-size: 1.2rem; }
.fwb { font-weight: 700; }

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt70 { margin-top: 70px; }
.mt100 { margin-top: 100px; }

.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb100 { margin-bottom: 100px; }

.indentation {
  padding-left:1em;
  text-indent:-1em;
}


.sp { display: none; }

@media only screen and (max-width: 767px) {

    body.fixed{
      position: fixed;
      width:100%;
    }

    .pc { display: none !important; }
    .sp { display: inherit; }

    .wrap {
        width: 100%;
    }
    .containar {
        width: 100%;
        box-sizing: border-box;
    }
    .main {
        width: 100%;
    }
    .content {
      padding: 50px 0 0 0;
    }

} /* end @media */




/* COMMON2
------------------------------------*/

h1,h2,h3,h4 {
  line-height: 1.5em;
}

.fade_in_up {
  opacity : 0;
  transform: translateY(50px);
  transition: all 2s;
}

a.link_blue {
  color: #1A0DAB;
  text-decoration: underline;
}
a.link_fade {
  transition: 0.5s all;
}
a.link_fade:hover {
  opacity: 0.7;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 50px 0;
}
.pagination span,
.pagination .pager {
  display: block;
  width: auto;
  margin: 4px;
  padding: 3px;
  text-decoration: none;
  text-align: center;
  color: #999999;
  line-height: 16px;
}
/* ページ番号 */
.pagination .pager{
  border-bottom: 1px solid #000000;
}
/* ホバー時 & 現在のページ */
.pagination a.pager:hover,
.pagination .current  {
  color: #FFFFFF;
}
.pagination .current  {
  border-bottom: 1px solid #FFFFFF;
}
.pagination img {
  position: relative;
  top: -2px;
}
/* 前へ */
.pagination a.prev img,
/* 次へ */
.pagination a.next img {
  margin: 0 10px;
}
/* Page x / y */
.pagination span.page_num {
    display: none;
}

.swpm-post-not-logged-in-msg {
  font-size: 1.5rem;
  line-height: 2.0em;
  color: #FFFFFF;
}
.swpm-post-not-logged-in-msg a {
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
}
#topcontrol {
  z-index: 10;
}
.swpm-post-no-access-msg {
  text-align: center;
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {

  .swpm-post-no-access-msg {
    text-align: left;
  }

}



/* HEADER
------------------------------------*/

header {
  position: relative;
  background-color: #000000;
  padding-bottom: 12px;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 10px solid #25282E;
  padding: 20px;
}
.header_logo img,
.footer_logo img {
  width: 158px;
  height: auto;
}
.header_logo img {
  vertical-align: middle;
}
.header_category {
  position: relative;
  display: inline-block;
  padding-bottom: 23px;
  margin-left: 50px;
}
.header_category label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.header_category label::after {
	position: absolute;
  content: url(../img/icon_down.svg);
  margin-left: 9px;
  top: 2px;
}
.header_category ul {
  display: none;
  position: absolute;
  top: 35px;
  left: -10px;
  border-radius: 6px;
  width: 285px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
	overflow: hidden;
}
.header_category ul.is-active {
  display: block;
}
.header_category ul li:not(:last-of-type) {
  border-bottom: 1px solid #383C45;
}
.header_category ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 17px;
  color: #CCCCCC;
  font-size: 1.2rem;
  font-weight: 700;
  background-color: #25282E;
}
.header_category ul li a:hover {
	background: #383C45;
	opacity: 1;
}
.header_category ul li a::after {
  content: url(../img/icon_menu_link.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  margin-left: 10px;
}
.header_category__premium::before {
  content: url(../img/icon_premium.svg);
  display: inline-block;
  width: 24.21px;
  height: 15.96px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}
.header_category__pack::before {
  content: url(../img/icon_pack.svg);
  display: inline-block;
  width: 20.78px;
  height: 22.26px;
  vertical-align: top;
  margin-right: 10px;
}
.header_search {
  display: inline-block;
}
.header_search input[type=text] {
  background-color: #25282E;
  border-radius: 3px 0 0 3px;
  width: 190px;
  height: 35px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 10px;
	letter-spacing: 0.1em;
}
.header_search input[type=submit] {
  background-color: #25282E;
  background-image: url(../img/icon_search.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 3px 3px 0;
  width: 30px;
  height: 35px;
  margin-right: 20px;
}
.header_login {
  display: inline-block;
  background-color: #C83232;
  border-radius: 3px;
  width: 128px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 40px;
  text-align: center;
	transition: background-color 0.5s ease;
}
.header_login:hover {
  background-color: #D94848;
}

.header_menu {
  display: inline-block;
}
.header_menu label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-right: 14px;
}
.header_menu img {
  width: 30px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
}
.header_menu ul {
  display: none;
  position: absolute;
  top: 75px;
  right: 18px;
  border-radius: 6px;
  background-color: #25282E;
  width: 285px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
	overflow: hidden;
}
.header_menu ul li:not(:last-of-type) {
  border-bottom: 1px solid #383C45;
}
.header_menu ul li a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 17px;
  color: #CCCCCC;
  font-size: 1.2rem;
  font-weight: 700;
}
.header_menu ul li a:hover {
	background-color: #383C45;
	opacity: 1;
}
.header_menu ul li a::after {
  content: url(../img/icon_menu_link.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.header_menu ul.is-active {
  display: block;
}
#menu_close {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: none;
  width: 0;
  height: 0;
  z-index: 1;
  opacity: 0;
}
#menu_close.is-open {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (max-width: 767px) {
  header {
    padding-bottom: 11px;
  }
  .header_wrap {
    border-bottom: 13px solid #25282E;
    padding: 14px 17px 13px 12px;
  }
  .header_logo img {
    width: 118px;
    height: auto;
  }
  .header_menu label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-right: 14px;
  }
  #menuBtn {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 20px;
    box-sizing: border-box;
    vertical-align: middle;
    z-index: 1001;
  }
  #menuBtn span {
    display: block;
    width: 30px;
    height: 1px;
    background: #ADADAD;
    position: absolute;
    left: 0;
    transition: all 0.5s ease;
  }

  #menuBtn span:nth-child(1) { top: 0px; }
  #menuBtn span:nth-child(2) { top: 10px; }
  #menuBtn span:nth-child(3) { top: 20px; }

  #menuBtn span:nth-child(1).open2 {
    top: 8px;transform:
    rotate(45deg);
  }
  #menuBtn span:nth-child(2).open2 { opacity: 0; }
  #menuBtn span:nth-child(3).open2 {
    top: 8px;transform:
    rotate(-45deg);
  }
  #menuBtn:hover {
    cursor: pointer;
  }

  #menu {
    width: 100%;
    max-width: 375px;
    height: 100%;
    background-color: #25282E;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate(375px);
    transition: all .5s;
    padding: 0;
    z-index: 20;
    overflow: scroll;
  }
  #menu.open {
    transform: translate(0);
  }
  #menu .menu_title {
    width: 100%;
    text-align: right;
    padding: 24px 75px;
  }
  #menu .menu_title label{
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
  }
  .menu_member {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 16px;
    margin-bottom: 16px;
  }
  .menu_member a {
    background-color: #C83232;
    border-radius: 3px;
    width: 48%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 12px;
  }
  .menu_member a span {
    font-size: 1.1rem;
    font-weight: 400;
  }
  .sp_search {
    display: inline-block;
    width: 100%;
    padding: 0 16px;
    margin-bottom: 20px;
  }
  .sp_search input[type=text] {
    background-color: #F7F7F7;
    border-radius: 3px 0 0 3px;
    width: calc(100% - 44px);
    height: 50px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    padding: 15px 10px;
  }
  .sp_search input[type=submit] {
    background-color: #F7F7F7;
    background-image: url(../img/icon_search.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-image: 20px 20px;
    border-radius: 0 3px 3px 0;
    width: 44px;
    height: 50px;
  }


  #menu ul.list_menu {
    background-color: #3A3D42;
  }
  #menu ul.list_menu li {
    border-bottom: 1px solid #25282E;
  }
  #menu ul.list_menu li a {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    color: #CCCCCC;
    padding: 24px 17px;
  }
  #menu ul.list_menu li a::after {
    content: url(../img/icon_menu_link.svg);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #menu ul.mypege_menu {
    margin-top: 18px;
  }
  #menu ul.mypege_menu li {

  }
  #menu ul.mypege_menu li a {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    color: #CCCCCC;
    padding: 11px 34px;
  }
  #menu ul.mypege_menu li a::before {
    content: url(../img/icon_menu_link.svg);
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .menu-background {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .menu-background.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }

}


/* FOOTER
------------------------------------*/
footer {
  position: relative;
  border-top: 4px solid #25282E;
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 150px;
}
.footer_logo {
  text-align: center;
  padding: 100px 0 50px 0;
}
footer nav {
  position: relative;
  right: 32px;
  text-align: right;
	line-height: 1.5em;
  padding: 0 0 30px 0;
}
footer nav a {
  display: inline-block;
  font-size: 1.2rem;
  color: #FFFFFF;
  padding: 0 15px;
  margin-bottom: 5px;
	transition: opacity 0.3s ease;
}
footer nav a:hover {
	opacity: 0.6;
}
.footer_copywrite {
  background-color: #25282E;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0;
  padding: 34px 0 34px;
}
@media only screen and (max-width: 767px) {
  footer {
    margin-top: 100px;
  }
  footer nav {
    position: relative;
    top: 0;
    right: 0;
  }
  footer nav a {
    display: block;
    border-bottom: 1px solid #25282E;
    text-align: center;
    line-height: 65px;
    padding: 0;
    margin: 0;
  }
  .footer_logo {
    text-align: center;
    padding: 70px 0;
  }
}



/* HOME ver01
------------------------------------*/
body.homever01 {
  background-color: #000000;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
.homever01_wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.homever01 a {
  transition: 0.8s all;
}
.homever01 a:hover {
  opacity: 0.6;
}


#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000000;
  z-index: 10000;
  overflow: hidden;
}
@keyframes LogofadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes LogofadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
.blockOut {
  display: flex;
  height: 100vh;
  justify-content: space-around;
  align-items: center;
}
.block {
  width: 50px;
  display: flex;
  justify-content: space-between;
  -webkit-animation: blockFade 0.5s ease 0.5s 1 forwards;
  animation: blockFade 0.5s ease 0.5s 1 forwards;
  opacity: 0;
}
@-webkit-keyframes blockFade {
  100% {
    opacity: 1;
  }
}
@keyframes blockFade {
  100% {
    opacity: 1;
  }
}
.circle {
  width: 8px;
  height: 8px;
  background-color: #333333;
  border-radius: 50%;
  animation: loading 1s infinite;
}
.circle:nth-child(2) {
    animation-delay: 0.1s;
}
.circle:nth-child(3) {
    animation-delay: 0.2s;
}
@keyframes loading {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
  }
}


.homever01 .main_visual {
  max-width: 1200px;
  width: 100%;
  padding: 18px 10px;
  margin: 0 auto;
}
.homever01 .main_visual img {
  width: 100%;
  height: auto;
}

.homever01 .sec01 {
  text-align: center;
  padding: 100px 10px;
}
.homever01 .sec01 h2 {
  font-size: 2.3rem;
  line-height: 1.1em;
}
.homever01 .sec01 h2 span {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 15px;
}
.homever01 .sec01__text01 {
  max-width: 775px;
  font-size: 1.4rem;
  line-height: 2.0em;
  margin: 40px auto 55px auto;
}
.homever01 .sec01__video01 {
  border: 6px solid #222222;
  max-width: 757px;
  margin: 0 auto;
}
.homever01 .sec01__video01 div {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.homever01 .sec01__video01 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.homever01 .sec02 {
  background-color: #222222;
  padding: 100px 10px 20px 10px;
}
.homever01 .sec02 h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  margin-bottom: 75px;
}
.homever01 .sec02 h2:before {
  content: "";
  display: block;
  border-top: solid 1px #434343;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.homever01 .sec02 h2 span {
  background-color: #222222;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}
.sessions_lineup {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
.sessions_lineup li {
  max-width: 340px;
  width: 31%;
  margin-bottom: 50px;
}
.sessions_lineup li img {
  width: 100%;
  height: auto;
}
.sessions_lineup li h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 16px 0 2px;
}
.sessions_lineup li p {
  font-size: 1.4rem;
  color: #999999;
}

.homever01 .sec03 {
  background-color: #222222;
  padding: 0 0 85px 0;
}
.homever01 .sec03 h2 {
  background-color: #000000;
  text-align: center;
  font-size: 2.6rem;
  line-height: 70px;
  margin-bottom: 2px;
}
.homever01 .slider {
  position: relative;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 253px;
  overflow: hidden;
  padding: 0;
}
.homever01 .slider img {
  width: auto;
  height: 100%;
  will-change: transform;
}
.homever01 .slider img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
  animation: loop 50s -25s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.homever01 .slider img + img {
  -webkit-animation: loop2 50s  linear infinite;
  animation: loop2 50s linear infinite;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

.homever01 .sec04 {
  padding: 70px 10px 80px 10px;
}
.homever01 .sec04 h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  margin-bottom: 70px;
}
.homever01 .sec04 h2:before {
  content: "";
  display: block;
  border-top: solid 1px #434343;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.homever01 .sec04 h2 span {
  background-color: #000000;
  padding: 0 88px;
  position: relative;
  z-index: 2;
}
.homever01 .sec04 h3 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 28px;
}

.homever01 .sec05 {
  text-align: center;
  padding: 0;
}
.link_membership,
.link_contact {
  display: inline-block;
  width: 500px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.6em;
  padding: 20px 0;
  margin: 20px;
}
.link_membership span,
.link_contact span {
  font-size: 1.6rem;
  font-weight: 400;
}
.link_membership {
  background-color: #F14462;
}
.link_contact {
  background-color: #F19A44;
}

@media only screen and (max-width: 767px) {
  .homever01 .sec01 {
    text-align: center;
    padding: 80px 10px 70px 10px;
  }
  .homever01 .sec01__text01 {
    width: 100%;
    text-align: left;
  }
  .homever01 .sec01__image01 {
    border: 2px solid #222222;
  }

  .homever01 .sec02 {
    background-color: #222222;
    padding: 70px 10px 20px 10px;
  }
  .homever01 .sec02 h2 {
    margin-bottom: 70px;
  }
  .homever01 .sec02 h2:before {
    border-top: none;
  }
  .sessions_lineup li {
    max-width: 100%;
    width: 100%;
  }

  .homever01 .sec03 {
    padding: 0 0 152px 0;
  }
  .homever01 .sec03 h2 {
    font-size: 1.8rem;
  }
  .homever01 .slider {
    height: 180px;
  }

  .homever01 .sec04 {
    padding: 70px 10px 30px 10px;
  }
  .homever01 .sec04 h2 {
    margin-bottom: 60px;
  }
  .homever01 .sec04 h2:before {
    border-top: none;
  }
  .plan_option label {
    margin: 5px;
  }
  .plan_list dl {
    max-width: 100%;
    width: 100%;
  }
  .plan_list dl:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .homever01 .sec05 {
    padding: 0 10px;
  }
  .link_membership,
  .link_contact {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.6em;
    padding: 13px 0 15px;
    margin: 0 0 20px 0;
  }

}


/* HOME
------------------------------------*/
body.home {
  background-color: #000000;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000000;
  z-index: 10000;
  overflow: hidden;
}
@keyframes LogofadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes LogofadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
.blockOut {
  display: flex;
  height: 100vh;
  justify-content: space-around;
  align-items: center;
}
.block {
  width: 50px;
  display: flex;
  justify-content: space-between;
  -webkit-animation: blockFade 0.5s ease 0.5s 1 forwards;
  animation: blockFade 0.5s ease 0.5s 1 forwards;
  opacity: 0;
}
@-webkit-keyframes blockFade {
  100% {
    opacity: 1;
  }
}
@keyframes blockFade {
  100% {
    opacity: 1;
  }
}
.circle {
  width: 8px;
  height: 8px;
  background-color: #333333;
  border-radius: 50%;
  animation: loading 1s infinite;
}
.circle:nth-child(2) {
    animation-delay: 0.1s;
}
.circle:nth-child(3) {
    animation-delay: 0.2s;
}
@keyframes loading {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1);
  }
}


.home .main_visual {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 26px;
}
.main_visual__login {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-block;
  background-color: #C83232;
  border-radius: 3px;
  width: 128px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 40px;
  color: #FFFFFF;
  box-shadow: 0 0 10px 30px rgba(0,0,0,0.8);
	transition: background-color 0.3s ease;
}
.main_visual__login:hover {
	background-color: #D94848;
}
.home .main_visual img {
  width: 100%;
  height: auto;
}

.home .special_banner {
  max-width: 930px;
  margin: 53px auto 0 auto;
}
.home .special_banner img {
  width: 100%;
}

.home .sec_slide {
  text-align: center;
  padding: 30px 0;
}

.home .sec_news {
  margin-top: 50px;
}
.home .sec_news h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}
.sec_news__list {
  width: 100%;
  margin-top: 12px;
}
.sec_news__list li {
  width: 100%;
  background-color: #25282E;
  padding: 17px;
  margin-bottom: 2px;
}
.sec_news__list li time {
  font-size: 1.3rem;
  font-weight: 700;
  color: #A0A0A0;
}
.sec_news__list li span {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-left: 55px;
}
.sec_news__list li span a {
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.3rem;
  color: #FFFFFF;
  text-decoration: underline;
}
.sec_news__list li span a img {
  vertical-align: middle;
  margin: 0 0 3px 5px;
}

.home .sec_about {
  text-align: center;
  padding: 100px 10px;
}
.home .sec_about h2 {
  font-size: 2.3rem;
  line-height: 1.1em;
}
.home .sec_about h2 span {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 15px;
}
.home .sec_about__text01 {
  max-width: 775px;
  font-size: 1.4rem;
  line-height: 2.0em;
  margin: 40px auto 45px auto;
}
.home .sec_about__video01 {
  width: 1100px;
  margin: 0 auto;
}
.home .sec_about__video01 div {
  position: relative;
}
.home .sec_about__video01 iframe {
  width: 530px;
  height: 310px;
}
.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer;
}
.slide-arrow.prev-arrow {
  left: -40px;
}
.slide-arrow.next-arrow {
  right: -40px;
}
.slick-dots li {
  margin: 0;
}
.home .sec_category {
  padding: 100px 0 0 0;
}
.sec_category h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 60px;
}
.sec_category h2:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.sec_category h2 span {
  display: inline-block;
  background: #000000;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.sec_category__more {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.sec_category__more a {
  display: inline-block;
  background-color: transparent;
  background-image: url(../img/icon_next.svg);
	background-repeat: no-repeat;
	background-size: 7px 14px;
	background-position: right 26px center;
	border: 1px solid #999999;
  height: 70px;
  width: 330px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 27px 0;
}


.home .sec_pickup {
  background-color: #25282E;
  padding: 70px 0 15px 0;
}
.sec_pickup h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 60px;
}
.sec_pickup h2:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.sec_pickup h2 span {
  display: inline-block;
  background: #25282E;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.sec_pickup h2 label {
  font-size: 1.5rem;
}
.sec_pickup .session_list > li {
  margin-bottom: 55px;
}
.sec_pickup .session_list__category li a {
  background-color: #000000;
}

.home .sec_plan {
  padding: 70px 10px 0 10px;
}
.home .sec_plan h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  margin-bottom: 70px;
}
.home .sec_plan h2:before {
  content: "";
  display: block;
  border-top: solid 1px #434343;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.home .sec_plan h2 span {
  display: inline-block;
  background-color: #000000;
  padding: 0 88px;
  position: relative;
  z-index: 2;
}
.home .sec_plan h2 label {
  font-size: 1.5rem;
}

.home .plan_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 30px 0 60px;
}
.home .plan_list dl {
  max-width: 342px;
  width: 40%;
  letter-spacing: 0;
  margin: 0 20px;
}
.home .plan_list dt {
  background-color: #25282E;
  border-radius: 4px 4px 0 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  padding: 30px 0 20px 0;
}
.home .plan_list .plan_regular dt {
  background-color: #3E424B;
}
.home .plan_list dt span {
  font-size: 2.4rem;
  font-weight: 700;
}
.home .plan_list dd.plan_option {
  background-color: #25282E;
  border-bottom: 1px solid #40454D;
  text-align: center;
  padding: 0 10px 27px 10px;
}
.home .plan_list .plan_regular dd.plan_option {
  background-color: #3E424B;
  border-bottom: 1px solid #25282E;
}
.home .plan_list dd.plan_option label {
  background-color: #FFFFFF;
  border-radius: 3px;
  color: #000000;
  width: 130px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 7px 0;
}
.home .plan_list dd.plan_option span {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 10px;
}
.home .plan_list dd.plan_option label.plan_option__kumu {
  background-color: #8B8B31;
  color: #FFFFFF;
}
.home .plan_list dd.plan_price {
  background-color: #25282E;
  border-radius: 0 0 4px 4px;
  text-align: center;
  padding: 30px 0px 35px 0;
}
.home .plan_list .plan_regular dd.plan_price {
  background-color: #3E424B;
}
.home .plan_list dd.plan_price span {
  line-height: 1.3em;
  font-size: 3.6rem;
}
.home .plan_list dd.plan_info {
  padding: 20px 0 0 0;
}
.home .plan_list dd.plan_info p {
  font-size: 1.2rem;
  line-height: 1.5em;
}

.home .sec_qa {
  padding: 100px 0 0 0;
}
.sec_qa h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 60px;
}
.sec_qa h2:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.sec_qa h2 span {
  display: inline-block;
  background: #000000;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.sec_qa h2 label {
  font-size: 1.5rem;
}

dl.q_and_a,
.q_and_a dt,
.q_and_a dd {
  margin: 0;
  padding: 0;
}
dl.q_and_a {
  width: 100%;
  background: #25282E;
  margin-bottom: 8px;
}
.q_and_a dt {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.0em;
  color: #FFFFFF;
  padding: 12px 88px 12px 60px;
	transition: background 0.3s ease;
}
.q_and_a dt:hover {
	cursor: pointer;
	background: #383C45;
}
.q_and_a dt::before {
  content: 'Q';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 2.4rem;
  font-weight: 400;
}
.q_and_a dd {
  position: relative;
  font-size: 1.5rem;
  line-height: 2.0em;
  color: #FFFFFF;
  padding: 10px 88px 16px 60px;
}
.q_and_a dd::before {
  content: 'A';
  position: absolute;
  top: 10px;
  left: 22px;
  font-size: 2.4rem;
  font-weight: 400;
  color: #F14462;
}
.q_and_a dd a {
  color: #FFFFFF;
  text-decoration: underline;
}

span.q_and_a__button::before,
span.q_and_a__button::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #ADADAD;
  position: absolute;
  right: 20px;
  top: 27px;
}
span.q_and_a__button::after {
  background: #ADADAD;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
span.q_and_a__button.is-active::after {
  transform: rotate(0);
  transition: 0.5s;
}

.home .sec_link {
  text-align: center;
  padding: 0;
  margin-top: 150px;
}
.home .link_membership,
.home .link_contact {
  display: inline-block;
  width: 500px;
	max-width: 44%;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.6em;
  padding: 20px 0 24px;
  margin: 0 20px;
}
.home .link_membership span,
.home .link_contact span {
  font-size: 1.6rem;
  font-weight: 400;
}
.home .link_membership {
  background-color: #F14462;
	transition: all 0.3s ease;
}
.home .link_membership:hover {
  background-color: #FFFFFF;
	color: #F14462;
}
.home .link_contact {
  background-color: #F19A44;
	transition: all 0.3s ease;
}
.home .link_contact:hover {
  background-color: #FFFFFF;
	color: #F19A44;
}


@media only screen and (max-width: 1154px) {
  .home .sec_about__video01 {
    width: 85%;
    margin: 0 auto;
  }
  .home .sec_about__video01 div {
  }
  .home .sec_about__video01 iframe {
    width: 100%;
    height: 400px;
  }

}

@media only screen and (max-width: 767px) {
  .main_visual__login {
    top: 0;
    right: 15px;
  }
  .sec_news__list li {
    padding: 10px;
  }
  .sec_news__list li span {
    display: block;
    line-height: 1.3em;
    margin: 0;
  }
  .home .sec_about {
    text-align: center;
    padding: 50px 10px 70px 10px;
  }
  .sec_about__text01 {
    text-align: left;
    margin: 50px auto 50px auto;
  }
  .slide-arrow.prev-arrow,
  .slide-arrow.next-arrow {
    width: 22px;
    height: auto;
  }
  .slide-arrow.prev-arrow {
    left: -28px;
  }
  .slide-arrow.next-arrow {
    right: -28px;
  }
  .home .sec_about__video01 iframe {
    width: 100%;
    height: 280px;
  }
  .home .sec_category {
    padding: 70px 0 0 0;
    margin-bottom: 30px;
  }
  .home .sec_category h2 span {
    width: 100%;
  }
  .home .sec_pickup h2 span {
    width: 100%;
  }
  .home .sec_plan h2 {
    margin-bottom: 45px;
  }
  .home .sec_plan h2 span {
    width: 100%;
  }

  .home .plan_list dl {
    max-width: 100%;
    width: 100%;
    margin: 0
  }
  .home .plan_list dl:first-child {
    margin-bottom: 50px;
  }
  .home .plan_list dd.plan_option {
    background-color: #25282E;
    border-bottom: 1px solid #40454D;
    text-align: center;
    padding: 0 0 27px 0;
  }
  .home .plan_list dd.plan_option label {
    width: 120px;
  }
  .home .plan_list dd.plan_option span {
    margin: 0 3px;
  }

  .q_and_a dt {
    font-size: 1.4rem;
    line-height: 1.5em;
    padding: 12px 50px 12px 45px;
  }
  .q_and_a dt::before {
    top: 12px;
    left: 12px;
    font-size: 2.4rem;
  }
  .q_and_a dd {
    font-size: 1.4rem;
    line-height: 1.5em;
    padding: 12px 50px 12px 45px;
  }
  .q_and_a dd::before {
    top: 12px;
    left: 14px;
    font-size: 2.4rem;
  }

  span.q_and_a__button::before,
  span.q_and_a__button::after {
    width: 24px;
    right: 15px;
    top: 25px;
  }
  .home .sec_link {
    padding: 0 10px;
    margin-top: 100px;
  }
  .home .link_membership,
  .home .link_contact {
    width: 100%;
	  max-width: none;
    margin: 0 0 10px 0;
	  padding: 16px 0 20px;
  }

}

@media only screen and (max-width: 500px) {
  .home .sec_about__video01 iframe {
    width: 100%;
    height: 200px;
  }

}
@media only screen and (max-width: 350px) {
  .home .sec_about__video01 iframe {
    width: 100%;
    height: 150px;
  }

}

/* PAGE
------------------------------------*/
.page .containar {
  max-width: 900px;
}
.page article {
  margin: 70px auto;
}

.ttl01 {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.1em;
}
.ttl01 span {
  font-size: 1.6rem;
  font-weight: 400;
}
.ttl02 {
  border-bottom: 1px solid #707070;
  font-size: 2.4rem;
  line-height: 1.5em;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.hr01 {
  border: none;
  border-top: 2px solid #949AA4;
  margin: 0;
}
.hr02 {
  border: none;
  border-top: 1px solid #949AA4;
  margin: 0;
}
.link_btn {
  width: 100%;
  text-align: center;
  margin: 70px 0 20px 0;
}
.link_btn a {
  display: inline-block;
  background-color: #000000;
  background-image: url(../img/icon_next.svg);
	background-repeat: no-repeat;
	background-size: 7px 14px;
	background-position: right 26px center;
	border: none;
  height: 70px;
  width: 330px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 27px 0;
}
.level1 {
  font-size: 1.5rem;
  line-height: 1.7em;
  color: #333333;
  padding-left: 30px;
  text-indent: -15px;
  margin-top: 30px;
}
.level2 {
  font-size: 1.5rem;
  line-height: 1.7em;
  color: #333333;
  padding-left: 30px;
  text-indent: -15px;
  margin: 10px 0 0 30px;
}
.list_no {
  display: inline-block;
  width: 15px;
}
.company_name {
  text-align: right;
  margin-bottom: 30px;
}
.revision_date {
  text-align: right;
}
.transaction_act {
  width: 100%;
}
.transaction_act th {
  border: 1px solid #000000;
  width: 30%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 10px 15px;
}
.transaction_act td {
  border: 1px solid #000000;
  font-size: 1.5rem;
  line-height: 1.5em;
  padding: 10px 15px;
}

@media only screen and (max-width: 767px) {
  .page article {
    margin: 50px auto;
  }
  .ttl01 {
    font-size: 2.8rem;
  }
  .page.transaction-act .ttl01 {
    font-size: 2.0rem;
  }
  .link_btn a {
    width: 100%;
  }
  .level2 {
    margin: 10px 0 0 0;
  }
  .company_name {
    text-align: left;
  }
  .transaction_act th {
    border-bottom: none;
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
  .transaction_act td {
    border-top: none;
    display: block;
    width: 100%;
    margin-bottom: 2px;
  }
}

/* 404
------------------------------------*/
.page404 .containar {
  max-width: 900px;
}
.page404 article {
  margin: 50px auto 80px auto;
}
.page404 h1 {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.page404 p {
  text-align: center;
}

/* PAGE 早期入会特典
------------------------------------*/

body.page.basic_auth {
  background-color: #000000;
}
.page.basic_auth .content {
  padding: 0;
}
.page .video_box {
  width: 100%;
  margin: 10px auto 70px auto;
}
.page .video_box div {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.page .video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 767px) {
}

/* MEMBER REGISTRATION
------------------------------------*/
.membership2
.membership2 input[type="text"],
.membership2 input[type="email"],
.membership2 input[type="tel"],
.membership2 select,
.membership2 textarea {
  background-color: #FFFFFF;
  border: 1px solid #949AA4;
  border-radius: 2px;
  width: 100%;
  font-size: 1.5rem;
  padding: 16px 14px;
}


/* WP FORM
------------------------------------*/

.mw_wp_form {
  margin-top: 40px;
}
.mw_wp_form .form_title{
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.mw_wp_form .form_required {
  background-color: #000000;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 1px 18px;
  margin-left: 16px;
}
.mw_wp_form .form_item {
  margin-bottom: 30px;
}
.mw_wp_form .form_item2 {
  margin-bottom: 40px;
}
.mw_wp_form .form_items {
  margin-bottom: 12px;
}
.mw_wp_form .form_item.item_course {
  max-width: 600px;
  margin-bottom: 12px;
}
.mw_wp_form form input[type="text"],
.mw_wp_form form input[type="email"],
.mw_wp_form form input[type="tel"],
.mw_wp_form select,
.mw_wp_form textarea {
  background-color: #FFFFFF;
  border: 1px solid #949AA4;
  border-radius: 2px;
  width: 100%;
  font-size: 1.5rem;
  padding: 16px 14px;
}
.mw_wp_form textarea {
  width: 100%;
  height: 160px;
  line-height: 1.2em;
}
.mw_wp_form select::-ms-expand {
	display: none;
}
.mw_wp_form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../img/icon_select.svg);
	background-repeat: no-repeat;
	background-size: 17px 9px;
	background-position: right 18px center;
  width: auto;
	min-width: 275px;
	padding: 16px 32px 16px 14px;
}
.mw_wp_form input[type="checkbox"] {
	position: relative;
	margin: 0 15px 0 0;
	cursor: pointer;
}
.mw_wp_form input[type="checkbox"]:before {
	position: absolute;
	z-index: 400;
	top: -4px;
	left: 0.1875rem;
	width: 20px;
	height: 10px;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	        transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: rotate(-45deg) scale(0, 0);
	        transform: rotate(-45deg) scale(0, 0);
	border: 4px solid #000000;
	border-top-style: none;
	border-right-style: none;
}
.mw_wp_form input[type="checkbox"]:checked:before {
	-webkit-transform: rotate(-45deg) scale(1, 1);
	        transform: rotate(-45deg) scale(1, 1);
}
.mw_wp_form input[type="checkbox"]:after {
	position: absolute;
	top: -5px;
	left: 0;
	width: 20px;
	height: 20px;
	content: '';
	cursor: pointer;
	border: 1px solid #707070;
  border-radius: 2px;
	background: #FFFFFF;
}
.mw_wp_form input[type="radio"] {
	width: 21px;
	height: 21px;
	vertical-align: top;
	margin: 0 9px 0 0;
}
.mw_wp_form input[type="radio"]{
  display: none;
}
.mw_wp_form input[type="radio"] + span{
  position:relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 30px;
}
.mw_wp_form input[type="radio"] + span::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 50%;
}
.mw_wp_form input[type="radio"]:checked + span::after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #000000;
  border-radius: 50%;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.mwform-radio-field {
  display: inline-block;
  margin: 0 60px 10px 0;
}
.mwform-radio-field-text {
  font-size: 1.4rem;
  line-height: 21px;
}
.mw_wp_form .form_btn {
  width: 100%;
  text-align: center;
  margin: 50px 0 20px 0;
}
.mw_wp_form .form_btn input[type="submit"].sendBtn {
  background-color: #000000;
  background-image: url(../img/icon_next.svg);
	background-repeat: no-repeat;
	background-size: 7px 14px;
	background-position: right 26px center;
	border: none;
  height: 70px;
  width: 330px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 27px 0;
}
.mw_wp_form .form_btn input[type="submit"].sendBtn:disabled {
  background-color: #A7A7A7;
}
.mw_wp_form .returnLink {
  display: block;
  font-size: 1.4rem;
  margin: 25px auto;
  color: #000000;
}
.form_agree {
  background-color: #EEEEEE;
  border-radius: 2px;
  text-align: center;
  padding: 30px 0 40px;
  margin-top: 50px;
}
.form_agree__text {
  font-weight: 700;
  margin-bottom: 18px;
}
.form_agree__agree {
  padding-left:2em;
  text-indent:-1em;
}
.form_agree__agree a {
  color: #1A0DAB;
  text-decoration: underline;
}
.mw_wp_form .form_link {
  line-height: 1.3em;
  color: #FF0000;
  text-decoration: underline;
}
.mw_wp_form .form_separator {
  border: none;
  border-top: 1px solid #949AA4;
  margin: 12px 0 18px 0;
}
.mw_wp_form .form_separator {
  border: none;
  border-top: 1px solid #949AA4;
  margin: 12px 0 18px 0;
}
.mw_wp_form_complete {
  display: none;
}
.mw_wp_form input.size-s {
  width: 180px !important;
}
.mw_wp_form .form_mark {
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 11px;
}
.mw_wp_form .error {
  font-size: 1.4rem !important;
  margin: 5px 0 0 0;
}
.mw_wp_form_confirm .form_items {
  border-top: 1px dotted #707070;
  min-height: 15px;
  width: 100%;
  font-size: 1.5rem;
  padding-top: 12px;
  margin-bottom: 5px;
}
.mw_wp_form_confirm .border_none {
  border-top: none;
  padding-top: 5px;
}
.mw_wp_form_confirm .form_separator,
.mw_wp_form_confirm .form_link,
.mw_wp_form_confirm .form_agree {
  display: none;
}

@media only screen and (max-width: 767px) {
  .mw_wp_form form input[type="text"],
  .mw_wp_form form input[type="email"],
  .mw_wp_form select {
    width: 100%;
  }
  .form_agree {
    text-align: left;
    padding: 20px 16px 25px 16px;
  }
  .mw_wp_form .form_btn input[type="submit"].sendBtn {
    width: 100%;
  }
}



/* 固定ページ記事拡張スタイル
------------------------------------*/

.page .content h2 {
  border-bottom: 1px solid #707070;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.page .content h3 {
  border-bottom: 1px solid #707070;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.page .content h4 {
  border-bottom: 1px solid #707070;
  font-size: 1.8rem;
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.page .content p {
  font-size: 1.5rem;
  line-height: 1.7em;
}

@media only screen and (max-width: 767px) {
  .page .content h2 {

  }
}

/* 動画リスト
------------------------------------*/

.session_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.session_list::after {
  display: block;
  content:"";
  width: 32%;
}
.session_list > li {
  max-width: 371px;
  width: 32%;
  margin-bottom: 50px;
}
.session_list > li img {
  width: 100%;
  height: auto;
	box-shadow: 0px 0px 16px rgba(0,0,0,1);
}
.session_list > li h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-top: 20px;
}
.session_list > li h3 span {
  font-size: 1.2rem;
  color: #999999;
}
.session_list__category {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
.session_list__category li a {
  display: inline-block;
  background-color: #25282E;
  min-width: 93px;
  text-align: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  padding: 3px 5px;
  margin-right: 10px;
	line-height: 1em;
}
.session_list .teater_box {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.session_list .teater_box img {
  border-radius: 50%;
  width: 54px;
  height: 54px;
  object-fit: cover;
  margin-right: 12px;
}
.session_list .teater_box__text {
  width: calc(100% - 54px - 12px);
}
.teater_box__text h4 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #FFFFFF
}
.teater_box__text h4 span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #999999
}
@media only screen and (max-width: 767px) {
  .session_list > li {
    max-width: 100%;
    width: 100%;
  }
}


/* single 動画
------------------------------------*/
.single.movie,
.single.teacher {
  background-color: #070708;
  letter-spacing: 0.1em;
}
.single.movie .wrap {
  max-width: 1236px;
}
.single.movie .containar {
  max-width: 1200px;
}
.single.movie .containar article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 30px 0 0 0;
}
.video_main {
  max-width: 850px;
  width: 100%;
  margin-right: 18px;
}
.video_side {
  min-width: 300px;
  width: 300px;
}
.video_main__category {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.video_main__category li a {
  display: inline-block;
  background-color: #25282E;
  min-width: 93px;
  text-align: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  padding: 3px 5px;
  margin-right: 10px;
	line-height: 1em;
}
.video_main h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 16px;
  color: #FFFFFF;
  line-height: 1.3em;
}
.video_main h1 span {
  font-size: 1.8rem;
  font-weight: 400;
  color: #999999;
}
.single .video_box {
  width: 100%;
}
.single .video_box div {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
  margin-top: 10px;
}
.single.movie .video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single.movie .login_message {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.0em;
  color: #FFFFFF;
  padding: 150px 10px;
  margin-top: 10px;
}
.single.movie .login_message a {
  display: inline-block;
  background-color: #C83232;
  border-radius: 3px;
  width: 297px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 15px 10px;
  margin-top: 30px;
}
.single.movie .content {
  background-color: #191B20;
  padding: 20px;
  margin: 30px 0;
}
.single.movie .content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5em;
}
.single.movie .content h2 span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #999999;
}
.single.movie .content hr {
  border: none;
  border-top: 1px solid #FFFFFF;
  width: 24px;
  margin: 16px 0;
}
.single.movie .content p {
  font-size: 1.2rem;
  line-height: 2em;
  color: #FFFFFF;
  white-space: pre-wrap;
}
.single.movie .content p a {
  color: #FFFFFF;
  text-decoration: underline;
}
.video_side .signup_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.video_side .signup_box a {
  background-color: #C83232;
  width: calc(100% - 105px - 13px);
  text-align: center;
  font-size: 1.6rem;
  color: #FFFFFF;
  padding: 16px;
	transition: background-color 0.5s ease;
	border-radius: 3px;
}
.video_side .signup_box a:hover {
	background-color: #D94848;
}
.video_side .signup_box a span {
  font-size: 1.2rem;
}
.video_side .signup_box div {
  width: 105px;
}
.video_side .signup_box div p {
  text-align: right;
  font-size: 1.2rem;
  color: #FFFFFF;
}
.video_side .signup_box div p span {
  font-size: 1.0rem;
  margin-left: 2px;
}

.video_side .teater_box {
  display: flex;
  align-items: center;
}
.video_side .teater_box img {
  border-radius: 50%;
  width: 87px;
  height: 87px;
  object-fit: cover;
  margin-right: 20px;
}
.video_side .teater_box__text {
  width: calc(100% - 87px - 20px);
}
.teater_box h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3em;
  color: #FFFFFF;
	padding-top: 6px;
}
.teater_box h3 span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #999999
}
.teater_category {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4px;
}
.teater_category li a {
  display: inline-block;
  background-color: #25282E;
  min-width: 93px;
  text-align: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  padding: 3px 5px;
  margin-bottom: 3px;
	line-height: 1em;
}
.video_side .video_list {
  margin-top: 30px;
}
.video_side .video_list li a {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  margin-bottom: 6px;
  transition: 0.8s all;
}
.video_side .video_list li a.is-active,
.video_side .video_list li a:hover {
  background-color: #25282E;
}
.video_list__icon {
  position: relative;
  width: 48px;
  text-align: center;
}
.video_list__icon::before {
  content: url(../img/icon_video_link.svg);
  position: absolute;
  top: -1px;
  left: 22px;
}
.video_list__icon span {
  display: inline-block;
  background-color: #25282E;
  border-radius: 50%;
  width: 23px;
  height: 23px;
}
.video_side .video_list li a.is-active .video_list__icon span,
.video_side .video_list li a:hover .video_list__icon span {
  background-color: #070708;
}

.video_list__title {
  width: calc(100% - 48px - 63px);
}
.video_list__free {
  display: inline-block;
  background-color: #C83232;
  border-radius: 17px;
  width: 95px;
  text-align: center;
  font-size: 1.0rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 4px;
  margin-bottom: 6px;
}
.video_list__title h3 {
  font-size: 1.4rem;
  line-height: 1.5em;
  color: #FFFFFF;
}
.video_list__title h3 span {
  font-size: 1.0rem;
  color: #999999;
}
.video_list__playtime {
  width: 63px;
  text-align: center;
  font-size: 1.4rem;
  color: #939393;
}
.teacher_sessions {
  padding: 70px 0 60px 0;
}
.teacher_sessions h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 60px;
}
.teacher_sessions h2:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.teacher_sessions h2 span {
  display: inline-block;
  background: #070708;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.teacher_sessions h2 label {
  font-size: 1.5rem;
}
.other_category {
  background: #181B21;
  padding-top: 100px;
}
.other_category:last-of-type {
  padding-bottom: 150px;
  margin-bottom: -150px
}
.other_category h2 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-bottom: 60px;
}
.other_category h2:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.other_category h2 span {
  display: inline-block;
  background: #181B21;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.other_category h2 label {
  font-size: 1.5rem;
}
.other_category .session_list__category li a {
  background-color: #000000;
}
.other_category__more {
  width: 100%;
  text-align: center;
  margin-top: 60px;
}
.other_category__more a {
  display: inline-block;
  background-color: transparent;
  background-image: url(../img/icon_next.svg);
	background-repeat: no-repeat;
	background-size: 7px 14px;
	background-position: right 26px center;
	border: 1px solid #999999;
  height: 70px;
  width: 330px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 27px 0;
}

@media only screen and (max-width: 767px) {
  .single.movie .containar article {
    flex-wrap: wrap;
    margin: 19px 0 0 0;
  }
  .video_main,
  .video_side {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .single.movie .content {
    padding: 20px 16px;
    margin: 30px 0;
  }
  .video_main h1 {
    font-size: 1.8rem;
    line-height: 1.3em;
  }
  .video_main h1 span {
    font-size: 1.3rem;
  }
  .single.movie .video_box,
  .single.movie .containar article .content {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .single.movie .containar article .content {
    padding: 20px 10px;
    margin-top: 0;
  }
  .single.movie .content h2 {
    margin-bottom: 10px;
  }
  .teater_category {
    justify-content: flex-start;
  }
  .teater_category li {
    margin-right: 7px;
  }
  .teacher_sessions {

  }
  .teacher_sessions h2 {
    margin-bottom: 50px;
  }
  .teacher_sessions h2 span {
    width: 100%;
  }
  .other_category {
    padding-top: 70px;
  }
  .other_category__more {
    margin-top: 20px;
  }
  .other_category__more a {
    width: 100%;
  }

}


/* single 講師
------------------------------------*/
.single.teacher {
  background-color: #070708;
}
.single.teacher .wrap {
  max-width: 1136px;
}
.single.teacher .containar {
  max-width: 1100px;
}
.single.teacher .containar article {
  padding: 25px 0 0 0;
}
.single.teacher .containar article p {
  font-size: 1.2rem;
  line-height: 2.0em;
  color: #FFFFFF;
}
.teacher_main {
  width: 100%;
  height: auto;
}
.single.teacher .teater_box {
  display: flex;
  align-items: center;
  margin: 50px 0 30px 0;
}
.single.teacher .teater_box img {
  border-radius: 50%;
  width: 87px;
  height: 87px;
  object-fit: cover;
  margin-right: 20px;
}
.single.teacher .teater_box__text {
  width: calc(100% - 87px - 20px);
}
.single.teacher h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5em;
  color: #FFFFFF
}
.single.teacher h1 span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #999999
}
.single.teacher .teater_category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 12px;
}
.single.teacher .teater_category li a {
  display: inline-block;
  background-color: #25282E;
  min-width: 93px;
  text-align: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  padding: 3px 5px;
  margin-right: 7px;
}
.teacher_image {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 50px;
}
.teacher_image img {
  max-width: 476px;
  width: 44%;
}
.teacher_image p {
  max-width: 584px;
  width: 53%;
}
.single.teacher .teacher_sessions {
  background-color: #181B21;
  margin: 130px 0 -150px 0;
  padding-bottom: 150px;
}
.single.teacher .teacher_sessions h2 span {
  background: #181B21;
}
.teacher_sessions__list > li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}
.teacher_sessions__list > li > a {
  max-width: 371px;
  width: 34%;
}
.teacher_sessions__list > li img {
  width: 100%;
  height: auto;
}
.teacher_sessions__list_text {
  max-width: 689px;
  width: 63%;
}
.teacher_sessions__category {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.teacher_sessions__category li a {
  display: inline-block;
  background-color: #070708;
  min-width: 93px;
  text-align: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  padding: 0 5px;
  margin-right: 10px;
}
.teacher_sessions__list h3 {
  font-size: 2.4rem;
  line-height: 1.2em;
  color: #FFFFFF;
}
.teacher_sessions__list h3 span {
  font-size: 1.6rem;
  color: #999999;
}
.teacher_sessions__list hr {
  border: none;
  border-top: 1px solid #FFFFFF;
  width: 24px;
}
.teacher_sessions__more {
  width: 100%;
  text-align: right;
  margin-top: 20px;
}
.teacher_sessions__more a {
  display: inline-block;
  background-image: url(../img/icon_secssion_link.svg);
	background-repeat: no-repeat;
	background-size: 18px 18px;
	background-position: right 13px center;
  border: 1px solid #999999;
  width: 227px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 47px;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px) {

  .single.teacher {
    background-color: #000000;
  }
  .single.teacher .teater_box {
    margin: 30px 0 20px 0;
  }
  .teacher_image {
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .teacher_image img ,
  .teacher_image p {
    max-width: 100%;
    width: 100%;
  }
  .teacher_image img {
    margin-bottom: 20px;
  }
  .sp_reverse img {
    order: 1;
  }
  .sp_reverse p {
    order: 2;
  }
  .single.teacher .teacher_sessions {
    background-color: #181B21;
    margin: 70px 0 -200px 0;
    padding-bottom: 100px;
  }
  .teacher_sessions__list > li {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .teacher_sessions__list > li > a {
    max-width: 100%;
    width: 100%;
  }
  .teacher_sessions__list li img {
    max-width: 100%;
    width: 100%;
  }
  .teacher_sessions__list_text {
    max-width: 100%;
    width: 100%;
    margin-top: 10px;
  }
  .teacher_sessions__list h3 {
    font-size: 1.7rem;
  }
  .teacher_sessions__list h3 span {
    font-size: 1.2rem;
  }
  .teacher_sessions__more {
    margin-top: 30px;
  }
  .teacher_sessions__more a {
    width: 100%;
    line-height: 64px;
  }
}

/* taxonomy 動画カテゴリ一覧
------------------------------------*/
.taxonomy {
  background-color: #070708;
  letter-spacing: 0.1em;
}
.taxonomy h1 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin: 60px 0 70px 0;
}
.taxonomy h1:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.taxonomy h1 span {
  display: inline-block;
  background: #070708;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.taxonomy h1 label {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {

  .taxonomy h1 {
    margin: 40px 0 50px 0;
  }
  .taxonomy h1 span {
    width: 100%;
  }
}

/* search 検索一覧
------------------------------------*/
.search {
  background-color: #070708;
  letter-spacing: 0.1em;
}
.search h1 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin: 60px 0 70px 0;
}
.search h1:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.search h1 span {
  display: inline-block;
  background: #070708;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.search h1 label {
  font-size: 1.5rem;
}
.search_form {
  text-align: center;
  width: 100%;
}
.search_form input[type=text] {
  border-radius: 3px 0 0 3px;
  background-color: #25282E;
  max-width: 700px;
  width: 60%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 16px 19px;
}
.search_form input[type=submit] {
  background-color: #25282E;
  background-image: url(../img/icon_search.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 3px 3px 0;
  width: 50px;
  height: 51px;
  margin-right: 20px;
}


.search_conunt {
  border-left: 7px solid #25282E;
  line-height: 60px;
  font-size: 1.5rem;
  color: #FFFFFF;
  padding-left: 15px;
  margin: 35px 0 20px 0;
}
.search_conunt span {
  font-size: 3.0rem;
  font-weight: 700;
  margin-right: 7px;
}

@media only screen and (max-width: 767px) {

  .search h1 {
    margin: 40px 0 50px 0;
  }
  .search h1 span {
    width: 100%;
  }
  .search_form input[type=text] {
    width: calc(100% - 50px);
  }
  .search_form input[type=submit] {
    margin-right: 0;
  }

}

/* PREMIUM
------------------------------------*/
.premium,
.pack,
.online_live {
  background-color: #070708;
  letter-spacing: 0.1em;
}
.premium .containar,
.pack .containar {
  max-width: 1200px;
}
.premium h1,
.pack h1,
.online_live h1 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #B79E4D;
  margin: 60px 0 70px 0;
}
.premium h1:before,
.pack h1:before,
.online_live h1::before {
  content: "";
  display: block;
  border-top: solid 1px #B79E4D;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.premium h1 span,
.pack h1 span,
.online_live h1 span {
  display: inline-block;
  background: #070708;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.premium h1 label,
.pack h1 label,
.online_live h1 label {
  font-size: 1.5rem;
}
.premium p.premium_text00,
.premium .swpm-post-no-access-msg,
.pack p.premium_text00,
.pack .swpm-post-no-access-msg,
.online_live p.premium_text00,
.online_live .swpm-post-no-access-msg {
  border: 1px solid #B79E4D;
  max-width: 500px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #B79E4D;
  padding: 24px;
  margin: 0 auto 30px auto;
}
.premium p.premium_text01 {
  text-align: center;
  font-size: 2.0rem;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.premium p.premium_text02 {
  text-align: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  line-height: 2.0em;
  margin-bottom: 70px;
}
.sec_available {
  background-color: #25282E;
  padding: 25px 0;
  margin-bottom: 70px;
}
.sec_available ul li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 25px 0;
}
.sec_available ul li a {
  position: relative;
}
.sec_available ul li a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-image: url(../img/icon_video.png);
  background-size: cover;
  width: 52px;
  height: 52px;
}

.sec_available ul li a img {
  max-width: 371px;
  width: 100%;
}
.sec_available ul li div {
  width: calc(100% - 371px - 40px);
}
.sec_available ul li div h2 {
  background-color: #070708;
  width: 235px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 40px;
  color: #FFFFFF;
}
.sec_available ul li div h3 {
  font-size: 2.4rem;
  color: #FFFFFF;
  line-height: 1.2em;
  margin-top: 20px;
}
.sec_available ul li div p {
  font-size: 1.4rem;
  color: #999999;
  white-space: pre-wrap;
}
.sec_available ul li div h4 {
  border-top: 1px solid #333333;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  padding-top: 10px;
  margin-top: 12px;
}
.sec_available ul li div h4 span {
  font-weight: 400;
  color: #999999;
}

.premium .sec_list h2 {
  border-left: 8px solid #25282E;
  font-size: 2.4rem;
  color: #FFFFFF;
  line-height: 1.1em;
  padding: 2px 12px;
  margin-bottom: 30px;
}
.premium .sec_list h2 span {
  font-size: 1.4rem;
  color: #999999;
}
.premium_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.premium_list::after {
display: block;
content:"";
width: 32%;
}
.premium_list > li {
  max-width: 371px;
  width: 32%;
  margin-bottom: 50px;
}
.premium_list > li img {
  width: 100%;
  height: auto;
}
.premium_list > li h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-top: 20px;
}
.premium_list > li p {
  font-size: 1.2rem;
  color: #999999;
}
.premium.application .content,
.premium.confirm .content,
.premium.send .content {
  max-width: 700px;
  padding: 20px 0 0 0;
  margin: 0 auto;
}
.premium .form_title {
  border-bottom: 1px solid #464646;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  padding-bottom: 12px;
}
.premium .form_item {
  font-size: 1.5rem;
  color: #FFFFFF;
  line-height: 1.5em;
  margin-top: 10px;
}
.premium .form_item.readonly input[type=text] {
  pointer-events: none;
  background-color: #000000;
  color: #FFFFFF;
}
.premium .mw_wp_form .form_btn input[type="submit"].sendBtn {
  background-color: #8B783B;
}
.premium .mw_wp_form_confirm .form_item {
  border-top: none;
  min-height: 22px;
  width: 100%;
  font-size: 1.5rem;
  padding-top: 0;
}
.premium .mw_wp_form .returnLink {
  color: #FFFFFF;
}
.premium .link_btn a {
  background-color: #8B783B;
}

@media only screen and (max-width: 767px) {

  .premium h1,
  .pack h1 {
    margin: 40px 0 50px 0;
  }
  .premium h1 span,
  .pack h1 span {
    width: 100%;
  }
  .premium p.premium_text00,
  .pack p.premium_text00 {
    max-width: 100%;
    width: 100%;
    padding: 16px;
  }
  .premium p.premium_text02 {
    text-align: left;
    margin-bottom: 50px;
  }
  .sec_available {
    margin-bottom: 50px;
  }
  .sec_available ul li {
    flex-flow: wrap;
    margin: 25px 0;
  }
  .sec_available ul li a img {
    max-width: 100%;
    width: 100%;
  }
  .sec_available ul li div {
    width: 100%;
  }
  .sec_available ul li div h2 {
    width: 100%;
    margin-top: 20px;
  }
  .premium_list > li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
  .premium.application .content,
  .premium.confirm .content,
  .premium.confirm .send {
    padding: 0;
  }
  .premium .mw_wp_form .form_btn input[type="submit"].sendBtn {
    background-color: #8B783B;
  }
}


/* PREMIUM動画
------------------------------------*/
.single.premium_video,
.single.pack_video {
  background-color: #070708;
  letter-spacing: 0.1em;
}
.single.premium_video .containar,
.single.pack_video .containar {
  max-width: 900px;
}
.premium_video h1,
.pack_video h1 {
  position: relative;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #B79E4D;
  margin: 60px 0;
}
.premium_video h1:before,
.pack_video h1:before {
  content: "";
  display: block;
  border-top: solid 1px #B79E4D;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.premium_video h1 span,
.pack_video h1 span {
  display: inline-block;
  background: #070708;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.premium_video h1 label,
.pack_video h1 label {
  font-size: 1.5rem;
}
.premium_video h2,
.pack_video h2 {
  font-size: 2.0rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.premium_video p,
.pack_video p {
  font-size: 1.4rem;
  color: #FFFFFF;
  line-height: 2.0em;
  white-space: pre-wrap;
}
.premium_video .video_box,
.pack_video .video_box {
  width: 100%;
}
.premium_video ul.video_list,
.pack_video ul.video_list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}
.premium_video .video_list li,
.pack_video .video_list li {
  max-width: 440px;
  width: 49%;
  margin-bottom: 50px;
}
.premium_video .video_box div,
.pack_video .video_box div {
  position: relative;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden;
}
.premium_video .video_box iframe,
.pack_video .video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.premium_video h3,
.pack_video h3 {
  font-size: 1.52rem;
  color: #FFFFFF;
  margin: 20px 0 6px 0;
}
.premium_video .video_list p,
.pack_video .video_list p {
  font-size: 1.2rem;
  color: #999999;
  line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
  .premium_video h1,
  .pack_video h1 {
    margin: 40px 0 50px 0;
  }
  .premium_video h1 span,
  .pack_video h1 span {
    width: 100%;
  }
  .premium_video .video_list li,
  .pack_video .video_list li {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }
}


/* PACK
------------------------------------*/
.pack h1 {
  color: #FFFFFF;
}
.pack h1:before {
  border-top: solid 1px #FFFFFF;
}

/* PACK動画
------------------------------------*/
.pack_video h1 {
  color: #FFFFFF;
}
.pack_video h1:before {
  border-top: solid 1px #FFFFFF;
}
@media only screen and (max-width: 767px) {
}

/* ワークショップ
------------------------------------*/
.single.work_shop {
  background-color: #070708;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
.single.work_shop h1 {
  border-bottom: 1px solid #707070;
  text-align: center;
  font-size: 2.0rem;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.single.work_shop .content p {
  font-size: 1.4rem;
}
.single.work_shop .content p a {
  color: #FFFFFF;
  text-decoration: underline;
}
.single.work_shop .content p strong {
  font-weight: 700;
}
.single.work_shop .video_box {
  margin-top: 50px;
}
.single.work_shop .video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single.work_shop .content h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-top: 10px;
}
.single.work_shop .content p.workshop_video_explanation {
  text-align: center;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .single.work_shop .content h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 5px;
  }
  .single.work_shop .content p.workshop_video_explanation {
    text-align: left;
    font-size: 1.4rem;
  }
}

/* オンラインライブ
------------------------------------*/
.page.online_live .containar {
  max-width: 1200px;
  color: #FFFFFF;
}
.wrap1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.online_live h1 {
  color: #FFFFFF;
  margin: 60px 0 0 0;
}
.online_live h1:before {
  border-top: solid 1px #FFFFFF;
}
.page.online_live .content h2 {
  position: relative;
  border: none;
  text-align: center;
  font-size: 3.0rem;
  line-height: 1.2em;
  color: #FFFFFF;
  margin: 100px 0 50px 0;
}
.page.online_live .content h2:before {
  content: "";
  display: block;
  border-top: solid 1px #333333;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.page.online_live .content h2 span {
  display: inline-block;
  background: #070708;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.page.online_live .content h2 label {
  font-size: 1.5rem;
}
.online_live .infomation_box {
  text-align: center;
}
.infomation_box__image {
  max-width: 593px;
  width: 100%;
  height: auto;
}
.page.online_live .content p.infomation_box__text01 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 20px 0 15px 0;
}
.page.online_live .content p.infomation_box__text02 {
  font-size: 1.4rem;
  text-decoration: underline;
}
.page.online_live .content p.infomation_box__text03 {
  font-size: 2.0rem;
  font-weight: 700;
  color: #FF0000;
  margin: 25px 0 0 0;
}
.online_live__outline_box {
  background-color: #25282E;
  padding: 40px 25px;
  margin: 70px auto 100px auto;
}
.page.online_live .content p.outline_box__title {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
}
.outline_box__ceparator {
  border: none;
  border-top: 1px solid #FFFFFF;
  width: 25px;
  margin: 30px auto 0 auto;
}
.page.online_live .content p.outline_box__text {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.0em;
  letter-spacing: 0;
  margin-top: 30px;
}
.page.online_live .content p.outline_box__signature {
  text-align: center;
  font-size: 1.4rem;
  color: #999999;
  line-height: 2.14em;
  margin-top: 40px;
}
.page.online_live .date_time_box {
  background-color: #25282E;
  padding: 20px 20px 25px 30px;
  margin: 0 auto 130px auto;
}
.page.online_live p.date_time_box__price {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.28em;
}
.page.online_live p.price_outline {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 35px;
}
.page.online_live .price_box {
  background-color: #25282E;
  padding: 25px 20px 30px 20px;
  margin: 20px auto 0 auto;
}
.page.online_live p.price_box__price {
  text-align: center;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 0;
  margin-bottom: 20px;
}
.page.online_live p.price_box__price::before {
  content: url(../img/ticket.svg);
  display: inline-block;
  vertical-align: bottom;
  width: 34.58px;
  height: 30.28px;
  margin-right: 20px;
}
.page.online_live p.price_box__price span {
  font-size: 1.6rem;
}
.page.online_live p.price_box__text {
  text-align: center;
  font-size: 1.4rem;
}
.page.online_live .content h3 {
  border: 1px solid #FFFFFF;
  width: 300px;
  text-align: center;
  font-size: 1.5rem;
  padding: 15px;
  margin: 0 auto;
}
.page.online_live p.application_text01 {
  font-size: 1.4rem;
  line-height: 2.0em;
  margin: 35px 0 65px;
}
.application_link {
  display: block;
  background-color: #C83232;
  border-radius: 3px;
  width: 450px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 30px;
  margin: 0 auto 70px auto;
  transition: background-color 0.5s ease;
}
.application_link:hover {
  background-color: #D94848;
}

.applicationform_link {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  color: #05BCFF;
  text-decoration: underline;
}
.page.online_live p.application_text02 {
  text-align: center;
  font-size: 1.4rem;
}
.page.online_live .precautions {
  list-style-type: disc;
  margin-left: 20px;
}
.page.online_live .precautions li {
  font-size: 1.4rem;
  line-height: 2.0em;
}
.page.online_live h2.contact_title {
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  text-align: center;
  font-size: 2.4rem;
  padding: 20px 0;
  margin: 120px 0 40px
}
.page.online_live h2.contact_title:before {
  content: "";
  border-top: none;
  width: 0;
  height: 0;
}
.page.online_live p.contact_text {
  font-size: 1.4rem;
  line-height: 2.0em;
}
.page.online_live p.contact_text a {
  color: #05BCFF;
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .page.online_live .wrap {
    padding: 0;
  }
  .page.online_live .content p.infomation_box__text02 {
    text-align: left;
    margin: 0 16px;
  }
  .page.online_live .content p.infomation_box__text03 {
    text-align: left;
    margin: 15px 16px;
  }
  .online_live__outline_box {
    padding: 40px 16px;
    margin: 50px auto 70px auto;
  }
  .page.online_live .content p.outline_box__text {
    text-align: left;
  }
  .page.online_live .content h2 {
    margin: 70px 0 30px 0;
  }
  .page.online_live .content h2 span {
    width: 100%;
  }
  .page.online_live .date_time_box {
    margin: 0 auto 60px auto;
  }
  .date_time_box__price span {
    display: block;
  }
  .page.online_live .price_box {
    padding: 25px 16px;
  }
  .page.online_live p.price_box__text {
    text-align: left;
  }
  .page.online_live .content h3 {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
  .page.online_live p.application_text01 {
    margin: 35px 16px 50px 16px;
  }
  .application_link {
    width: calc(100% - 32px);
    margin: 0 16px 70px 16px;
  }
  .page.online_live .precautions {
    width: calc(100% - 48px);
    margin: 0 16px 0 32px;
  }
  .page.online_live p.contact_text {
    margin: 0 16px;
  }
}
