@charset "UTF-8";
* {
    box-sizing: border-box;
}

main {
  padding: 0px !important;
}

.wrap {
  width: 100%;
}

ul {
  padding-left: 20px;
}

.br-mb {
  display: none;
}

.fixed-header .site-logo-image {
  width: 200px;
}

#navi .navi-in a {
  font-weight: bold;
  font-size: 0.8em;
}

#navi .navi-in > ul > li > a {
  padding: 0 0.8em;
}

.header .header-in {
  min-height: initial;
}

.header-container {
  border-bottom: 1px solid #000;
}

.header-container-in {
  width: 100%;
  padding: 0 0 0 20px;
}

.menu-pc li:hover {
  background-color: #999 !important;
}

.menu-pc li:last-child a {
  background-color: #333;
  color: #fff !important;
}

.menu-pc li:last-child a:hover {
  background-color: #999 !important;
  color: #000 !important;
}

.sub-menu li a:hover {
  background-color: #333 !important;
  color: #fff !important;
}

.sub-menu li a:hover:last-child a {
  background-color: #999;
  color: #000 !important;
  border-radius: initial;
}

.sub-menu li a:hover:last-child a:hover {
  background-color: #333 !important;
  color: #fff !important;
}
#menu-item-968 a {
  background-color: #fff !important;
  color: #000 !important;
}
#menu-item-968 a:hover {
  background-color: #000 !important;
  color: #fff !important;
}

/* new top menu test */
.top-nav2{
  background:#0e573b;
  color:#fff;
  text-align: center;
}
.top-nav2 ul{
  list-style: none;
  display: flex;
  justify-content: center;
}
.top-nav2 ul ul{
  display: block;
}
.top-nav2 ul li{
  position: relative;
}
.top-nav2 li+li{
    position: relative;
}
.top-nav2 .ul1 li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.top-nav2 ul li a{
  display: block;
  text-decoration: none;
  color: #fff;
  padding:20px 35px;
  transition:all .3s;
}
.top-nav2 ul li li a{
  padding:10px 35px;
}
.top-nav2 ul li a:hover{
  color:#999; 
}
.top-nav2 ul li.has-child::after{
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  top:20px;
  right:20px;
}
.top-nav2 li.has-child ul{
  position: absolute;
  left:0;
  top:62px;
  z-index: 4;
  background:#fff;
  width:190px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  padding-left: 0px;
  border: solid 3px #A68A65;
  line-height: 1.3;
}
/* 吹き出し */
.top-nav2 li.has-child ul::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 30px;
  top: -15px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #A68A65;
  border-left: 15px solid transparent;
}
.top-nav2 li.has-child ul::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 30px;
  top: -12px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  border-left: 15px solid transparent;
}
.top-nav2 li.has-child ul li::before {
  content:  ""; 
  display:  inline-block; 
  position: absolute;
  width: 15px;
  height: 15px;
  top: -3px;
  left: 15px;
  background-color: #A68A65;
}
.top-nav2 li.has-child ul li:first-child::before {
  top: 12px;
}
/*hoverしたら表示*/
.top-nav2 li.has-child:hover > ul,
.top-nav2 li.has-child ul li:hover > ul,
.top-nav2 li.has-child:active > ul,
.top-nav2 li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
.top-nav2 li.has-child ul li a{
  font-weight: bold;
  text-align: left;
  color: #333;
  border-bottom:solid 1px rgba(255,255,255,0.6);
}
.top-nav2 li.has-child ul li:last-child a{
  border-bottom:none;
}
.top-nav2 li.has-child ul li a:hover,
.top-nav2 li.has-child ul li a:active{
  opacity: 0.8;
}
.top-nav2 li.has-child ul li a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #A68A65;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.top-nav2 li.has-child ul li a:hover::after {
  bottom: -1px;
  visibility: visible;
  opacity: 1;
}


/* new top menu */
.top-nav{
  background:#0e573b;
  color:#fff;
  text-align: center;
}
/*ナビゲーションを横並びに*/
.top-nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
.top-nav ul ul{
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
.top-nav ul li{
  position: relative;
}
.top-nav li+li{
    position: relative;
}
.top-nav li+li::before{
    content: "";
    display: block;
    height: 1em;
    border-left: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
/*ナビゲーションのリンク設定*/
.top-nav ul li a{
  display: block;
  text-decoration: none;
  color: #fff;
  padding:20px 35px;
  transition:all .3s;
}
.top-nav ul li li a{
  padding:10px 35px;
}
.top-nav ul li a:hover{
  color:#999; 
}
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
.top-nav ul li.has-child::after{
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  top:20px;
  right:20px;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
.top-nav li.has-child ul{
  position: absolute;
  left:0;
  top:62px;
  z-index: 4;
  background:#0e573b;
  width:180px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  padding-left: 0px;
}
/*hoverしたら表示*/
.top-nav li.has-child:hover > ul,
.top-nav li.has-child ul li:hover > ul,
.top-nav li.has-child:active > ul,
.top-nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
.top-nav li.has-child ul li a{
  color: #fff;
  border-bottom:solid 1px rgba(255,255,255,0.6);
}
.top-nav li.has-child ul li:last-child a{
  border-bottom:none;
}
.top-nav li.has-child ul li a:hover,
.top-nav li.has-child ul li a:active{
  background:#a68a65;
}
/*==3階層目*/
/*3階層目の位置*/
.top-nav li.has-child ul ul{
  top:0;
  left:182px;
  background:#66ADF5;
}
.top-nav li.has-child ul ul li a:hover,
.top-nav li.has-child ul ul li a:active{
  background:#448ED3;
}
/* new End */

#footer-banner {
  width: 100%;
  margin-top:30px;
  margin-bottom:30px;
  background-color: #fff;
  text-align: center;
}
.footer-banner {
  max-width: 1024px;
  margin: auto !important;
  display: inline-flex;
  justify-content: center;
}
.footer-banner .youtube {
  margin: 20px;
  padding: 10px;
}
.footer-banner .youtube:hover {
  opacity: 0.8;
}
.youtube-list {
  width: 800px;
  margin: auto !important;
}
.youtube-list h5 {
  text-align: center;
  margin: 20px 0;
}
.youtube-list-box {
  border-bottom: 2px solid #a68a65;
  margin-top: 10px;
  display: flex;
}
.youtube-list-left {
  width: calc(100% / 2);
}
.youtube-list-right {
  width: calc(100% / 2);
}
.youtube-list-left h6 {
  font-size: 1.1em;
}

#footer-banner2 {
  width: 100%;
  margin-top:30px;
  margin-bottom:30px;
  background-color: #fff;
  text-align: center;
}
.footer-banner2 {
  width: 800px;
  margin: auto !important;
}
.footer-banner2 h5 {
  font-size: 1.3em;
  text-align: center;
  color: #A68A65;
  margin: 10px 0;
  position: relative;
  padding: 0 65px;
  text-align: center;
}
.footer-banner2 h5:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #A68A65;
}
.footer-banner2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
.footer-banner2 img {
  width: 200px;
  height: auto;
  border: 1px solid #376cb0;
}

.footer {
  padding: 0;
}
.footer-bottom {
  padding: 30px 0 0;
}
.navi-footer-in > .menu-footer li:first-child {
    border-left: none;
}
.navi-footer-in > .menu-footer li:last-child {
    border-right: none;
}
.copyright {
  background-color: black;
  padding: 15px 0;
  margin-top: 30px;
}

#site_menu {
  position: relative;
  text-align: center;
  background: #0e573b;
  height: 83px;
}
.site_menu {
  margin-top:5px;
  display: inline-flex;
}
.site_menu a {
  text-decoration: none;
}
.site_menu ul {
  display: flex;
  background: #f2f2f2;
  height: 42px;
  padding-right: 10px;
  padding-left: 0px;
  margin-top: 10px;
  border-radius: 0px 50px 50px 0px ;
}
.site_menu ul a {
  color: #333;
  font-size: 0.9em;
  font-weight: bold;
  text-decoration: none;
}
.site_menu ul li:first-child {
  border-left: none;
}
.site_menu ul a:hover {
  text-decoration: underline;
}
.site_menu li {
  list-style: none;
  float:left;
  margin: 5px 10px;
/*  margin-top:-8px;*/
  padding-left:15px;
/*  border-left: 1px solid #B4B4B4;*/
}
.site_menu li:after {
  padding-left: 20px;
}
.site_menu img {
  margin-top: -4px;
  width: auto;
  height: auto;
}

/* top 見出し用 */ 
h4 {
  line-height: 2;
  font-size: 1.5em;
}
h5 {
  color: #0e573b;
  font-size: 1.4em;
}

/* mb 申込みバナー */
.bn {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 15px;
}
.bn img {
  width: 90%;
}

/* スライダー */
#mv {
  width: 100%;
  background-color: #0E573B;
}
.mv {
  position: relative;
}
.mv img{
  background: #fff;
}
.slick-prev{ left: 0!important; } 
.slick-next{ right: 0!important; }
.top-slider{
  width:80%;
  margin: 0 auto;
}
.slick-dots li.slick-active button:before {
  color: #a68a65 !important;
}
.slick-prev:before, .slick-next:before {
  color: #fff !important;
}

/* zoom 広告 */
.zoom {
  width: 400px;
  margin: auto;
  display: flex;
  margin-top: 20px;
}

/* タブ */
#tab-top {
  width: 100%;
  margin-top: 50px;
}
.tab-top {
  width: 100%;
  border-bottom: 2px solid #0E573B;
}
.tab-top ul {
  display: flex;
  justify-content: center
}
.tab-top li {
  list-style-type: none;
}
.tab-top li a {
  justify-content: center;
  width: 150px;
  font-size: 0.9em;
  display: flex;
  text-decoration: none;
  color: #fff;
  line-height: 30px;
  height: 0;
  padding: 0 15px;
  border-bottom: 30px solid #808080;
  border-right: 20px solid transparent;
}
.tab-top .tab-selected {
  border-bottom: 30px solid #0E573B;
  border-right: 20px solid transparent;
}

/* スケジュール */
#schedule {
  width: 100%;
  margin:20px 0;
  background-color: #fff;
  text-align: center;
  font-weight: bold;
}
.schedule {
  margin: auto;
  margin-top: 20px;
  padding: 20px 10px;
  width: 800px;
  border: 3px solid #0E573B;
}
.vschedule {
  border: 3px solid #a68a65;
}
#schedule .slick-prev:before, #schedule .slick-next:before {
    color: #0E573B !important;
}
.schedule p {
  font-size: 0.7em;
}
.schedule .nendo {
  background-color: #0e573b;
  color: #fff;
  width: 100px;
  padding: 3px 8px;
}
.schedule_table {
  margin: 5px;
  font-size: 0.9em;
  display: inline-flex;
  width: 370px;
}
.schedule_table table {
  border-collapse: separate;
}
.schedule_table table th{
  background-color: #333;
  color: #fff;
}
.schedule_table table thead td{
  background-color: #a68a65;
  color: #fff;
  border: solid 0.5px #eee !important;
}
.schedule_table tbody td{
  text-align: left;
  border-left: solid 0.5px #eee !important;
  border-bottom: solid 0.5px #eee !important;
}
.fa-star {
  color: #0e573b;
}
.challenge{
  background-color: #0e573b;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 300px;
/*  max-width: 300px;*/
  margin: 10px auto;
}
.challenge:hover {
  opacity: 0.9;
}
.challenge::after{
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  right: 1.5em;
  color: #fff;
}
.challenge:active{
  top: 4px;
  box-shadow: 0 0 0 #C62828;
}
.challenge-over{
  opacity: 0.6;
  background-color: #0e573b;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 300px;
  margin: 10px auto;
}

.doc-request{
  background-color: #0e573b;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 300px;
/*  max-width: 300px;*/
  margin: 10px auto;
}
.doc-request:hover {
  opacity: 0.9;
}
.doc-request::after{
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  right: 1.5em;
  color: #fff;
}
.doc-request:active{
  top: 4px;
  box-shadow: 0 0 0 #C62828;
}
.doc-request-over{
  opacity: 0.6;
  background-color: #a68a65;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 8px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 300px;
  margin: 10px auto;
}

/* test contents */
#contents {
  width: 100%;
  margin:30px 0;
}
.contents {
  margin: auto;
  width: 800px;
  text-align: center;
}
.contents p{
  width: 100%;
  text-align: left;
  font-size: 0.8em;
  font-weight: bold;
}
.contents h4 {
  line-height: 1.5;
  letter-spacing: 0.3em;
}
.contents h6 {
  color: #A68A65;
}
.contents_title {
  color: #0e573b;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}
.contents_title:before, .contents_title:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 300px;
  height: 3px;
  background-color: #0e573b;
}
.contents_title:before {
  left:0;
}
.contents_title:after {
  right: 0;
}
.contents-box {
  width: 100%;
  display: inline-flex;
  list-style: none;
}
.contents-box img {
  height: 250px;
  display: block;
}
.contents-box li {
  text-align: left;
  width: 50%;
}
.contents-box p {
  padding-left: 45px;
  line-height: 1.2;
}
.goukaku {
  width: 800px;
  text-align: center;
  border-collapse: separate;
  margin: auto;
}
.goukaku td {
  border: solid 0.5px #dedede !important;
}
.goukaku .brown {
  font-weight: bold;
  width: 100px;
}
.contents_table {
  margin-top: 10px;
  font-weight: bold;
/*  min-width: 800px;*/
  width: 800px;
  overflow-x: scroll;
}
.contents_table table {
  width: 1600px;
  max-width: 1600px;
  border-collapse: separate;
  padding: 0;
}
.v_contents_table table {
  width: 1300px;
  max-width: 1300px;
}
.contents_table table td {
  border: solid 0.5px #c6c6c6 !important;
}
.contents_table .small {
  font-size: 0.8em;
  text-align: left;
  padding-left: 10px;
}
.black {
  background-color: #333;
  color: #fff;
}
.green {
  background-color: #0e573b;
  color: #fff;
}
.brown {
  background-color: #a68a65;
  color: #fff;
}
.white {
  background-color: #fff;
  color: #000;
}
.tate {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: pre;
}
.tate-ue {
  vertical-align: top;
  padding-top: 20px;
}
.right-line {
  border-right: solid 0.5px #eee !important;
  height: 60px;
}
.fa-circle {
  color: #a68a65;
}
.contents_video {
  width: 450px;
  margin: auto;
  margin-top: 20px;
}
.frame_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 動画の比率　*/
  overflow: hidden;
}
.frame_wrap .arrow,
.frame_wrap .arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%,-50%);
}
.frame_wrap .arrow {
  width: 56px;
  height: 40px;
  border-radius: 30%;
  background-color: #FF1A00;
  pointer-events: none;
  opacity: 0.9;
}
.frame_wrap .arrow::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff; /* 矢印色　*/
}
.frame_wrap img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  border: 1px solid #f2f2f2;
  transform: translateY(-50%);
}
.frame_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#list-jitsugi {
  width: 100%;
  text-align: center;
  position: relative;
}
.list-jitsugi {
  padding: 20px 10px 20px 0; 
  margin: auto;
  width: 800px;
  background-color: #0E573B;
}
.list-jitsugi h4 {
  color: #fff;
  line-height: 1;
}
.list-jitsugi h5 {
  color: #fff;
  font-size: 0.8em;
  margin-bottom: 10px;
  line-height: 3;
}
.list-jitsugi h6 {
  color: #A68A65;
}
.list-jitsugi-box {
  position: relative;
  color: #fff;
}
.list-jitsugi-box a {
  text-decoration: none;
  color: #fff;
}
.list-jitsugi ul{
  list-style: none;
  display: flex;
  overflow-x: auto;
}
.list-jitsugi li{
  width: 80px !important;
  height: 110px !important;
  text-align: center;
  margin-right: 10px;
  border: 3px solid #A68A65;
}
.list-jitsugi li:hover {
  background: #4D4D4D;
  color: #fff;
}
.list-kyu {
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  top: 30%;
  left: 20%;
}
.list-kyu10 {
  left: 15%;
}
.list-kyu-alpha {
  position: absolute;
  color: #A68A65;
  font-size: 0.6em;
  top: 60px;
  left: 8%;
}
.list-kyu-alpha10 {
  left: 5%;
}
.kubun_box:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  transform: translateY(-0.4em);
}
.slist_box a {
  text-decoration: none;
  color: #333;
}
#jitsugi-detail {
  width: 100%;
  text-align: center;
  position: relative;
}
.jitsugi-detail {
  padding: 20px 0; 
  margin: auto;
  width: 800px;
}
.jitsugi-detail h1 {
  text-align: center;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 5px;
  border-top: 2px solid #725328;
  border-bottom: 1px solid #725328;
  background-color: #fff;
  color: #725328;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
#jitsugi-btn {
  text-align: right;
}
.jitsugi-btn {
  width: 200px;
}
.jitsugi-detail h2 {
  text-align: left;
  font-size: 1.3em;
  margin: 20px 0 5px 0;
  padding: 4px 15px;
  border-left: solid 6px #0E573B;
  font-size: 1em;
  letter-spacing: 0.3em;
}
.kaisetsu {
  padding: 10px;
  text-align: left;
}
.doga ul {
  list-style: none;
  display: flex;
  justify-content: center
}
.doga ul li {
  margin-left: 10px;
}
.gakufu {
  position: relative;
  width: 100%;
  padding: 141% 0 0 0;
}
.gakufu iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#list-gakka {
  width: 100%;
  text-align: center;
  position: relative;
}
.list-gakka {
  padding: 20px 10px 20px 0;
  margin: auto;
  width: 800px;
  background-color: #4D4D4D;
}
.list-gakka h4 {
  color: #fff;
  line-height: 1;
}
.list-gakka h5 {
  color: #fff;
  font-size: 0.8em;
  margin-bottom: 10px;
  line-height: 3;
}
.list-gakka h6 {
  color: #A68A65;
}
.list-gakka-box {
  position: relative;
  color: #fff;
}
.list-gakka-box a {
  text-decoration: none;
  color: #fff;
}
.list-gakka ul{
  list-style: none;
  display: flex;
  overflow-x: auto;
}
.list-gakka li{
  width: 90px;
  height: 110px;
  text-align: center;
  margin-right: 10px;
  border: 3px solid #A68A65;
}
.list-gakka li:hover {
  background: #0E573B;
  color: #fff;
}
.list-gkyu {
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  top: 30%;
  left: 30%;
}
.list-gkyu-alpha {
  position: absolute;
  color: #A68A65;
  font-size: 0.6em;
  top: 60px;
  left: 20%;
}
.list-top-v ul{
  padding-left: 50px;
}
.list-top-v li{
  width: 115px !important;
  margin-right: 50px;
}
.list-kyu-v {
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  top: 30%;
  left: 33%;
}
.list-kyu-alpha-v {
  position: absolute;
  color: #A68A65;
  font-size: 0.6em;
  top: 60px;
  left: 25%;
}

#list {
  width: 100%;
  background-color: #F4F2E6;
  text-align: center;
  position: relative;
/*
  background-image: url(img/onkyo4.png); 
  background-position: bottom -10px right -10px;
  background-size: 30% auto;
  background-repeat: no-repeat;
*/
/*  position: relative; registが後ろにいってしまう*/
/* tab の表示のためmarginなし */
}
.tab{
  display: block;
  margin: auto;
  width: 40%;
}
.lists {
  margin: auto;
  padding-top: 30px;
  position: relative;
}
.list span {
  font-size: 1.7em;
}
.lists p {
  background-color: #333;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: bold;
  position: absolute;
  padding-top: 5px;
  width: 500px;
  height: 40px;
  left: 30%;
  top: -80px;
}
.list{
  display: inline-flex;
  text-align: center;
  margin-bottom: 20px;
  z-index: 1;
}
.list_level a,.list_level a:hover,.list_level a:visited{
    color: inherit;
}
.level_link {
  text-decoration: none;
}
.list_level li {
  font-size: 14px;
  font-weight: bold;
  width: 100px;
  margin: 1px;
  height: 50px;
  background-color: #fff;
  color: #0e573b;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list_level li:hover {
  background: #0e573b;
  color: #fff;
}
.list_level_selected {
  background: #0e573b !important;
  color: #fff !important;
}
.level_tab_v li {
  width: 120px !important;
}
.left-top {
  border-radius: 8px 0 0 0;
}
.right-top {
  border-radius: 0 8px 0 0;
}
.left-bottom {
  border-radius: 0 0 0 8px;
}
.right-bottom {
  border-radius: 0 0 8px 0;
}

/* price */
#price {
  width: 100%;
  margin-top:30px;
}
.price {
  margin: auto;
  width: 800px;
  text-align: center;
}
.p-right {
  text-align: right !important;
  font-weight: normal !important;
}
.p-left {
  text-align: left;
}
.price_table table {
  width: 100%;
  min-width: 800px;
  margin-bottom: 0;
  border-collapse: separate;
}
.ryoukin {
  font-size: 0.9em;
  line-height: 1.1;
}
.ryoukin-little {
  font-size: 0.4em;
}
.kotei {
  position: sticky;
  left: 0;
  &:before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 0.5px solid #eee;
  }
  z-index: 1;
}
.price_table td {
  border: solid 0.5px #eee !important;
  width: calc(100% / 7);
}
.price_table table tr:nth-child(odd){
  background-color:#F4F2E6;
}
.price_table tr:nth-child(even){
  background-color:white;
}
.price_table .brown {
  border-right: unset;
}
.price h4 {
  line-height: 1.5;
  letter-spacing: 0.3em;
}
.price h6 {
  color: #A68A65;
}

/* attention */
#attn {
  width: 100%;
  margin-top:30px;
}
.attn {
  margin: auto;
  width: 800px;
  text-align: center;
}
.attn h6 {
  margin: 10px 0;
  padding: 4px 15px;
  border-left: solid 6px #0E573B;
  color: #000000;
  font-size: 1em;
  text-align: left;
  background-color: #ededed;
  letter-spacing: 0.3em;
}
.attn ul {
  position: relative;
  text-align: left;
}
.attn ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;
}
.attn ul li::before {
  font-family: FontAwesome !important;
  content: "\f138" !important;
  position: relative;
  right: 0.3em !important;
  color: #A68A65 !important;
}
.attn ul li ul li {
  list-style: inside !important; 
  padding: 0.2em 0;
}
.attn ul li ul li::before {
  content: "" !important;
}

/* merit */
#merit {
  width: 100%;
  margin-top:50px;
}
.merit {
  text-align: center;
  margin: auto;
  padding: 5px 10px;
  width: 800px;
  border: 3px solid #0e573b;
  border-radius: 10px;
}

#results {
  width: 100%;
  margin-top:30px;
  margin-bottom:30px;
  background-color: #fff;
  text-align: center;
}
.results {
  margin: auto;
  width: 800px;
  text-align: center;
}
.results li{
  width: 120px;
  height: 220px;
  background: #f2f2f2;
  border-radius: 8px;
  color: #333;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  margin-right: 20px;
  background-image: url(img/kyu3.png); 
  background-position: 50% 5%;
  background-size: 60% auto;
  background-repeat: no-repeat;
}
.results-box {
  position: relative;
}
.results-kyu {
  position: absolute;
  font-size: 1.3em;
  color: #0e573b; 
  top: 15px;
  left: 40%;
}
.results-name {
  text-align: center;
  margin-top: 50px;
}
.results-score {
  font-size: 1.2em;
  color: #0e573b; 
}
.results-line {
  border-bottom: solid 1px silver;
}
.result-title {
  width: 50px;
  font-size: 0.6em;
  color: #fff;
  background: #a68a65;
  border-radius: 3px;
  margin-top: 10px;
  margin-left: 10px;
}
.result-text {
  font-size: 0.8em;
  color: #333;
  margin-left: 10px;
  text-align: left;
}

#message {
  width: 100%;
  text-align: center;
  position: relative;
}
.message {
  padding: 30px 10px;
  margin: auto;
  width: 800px;
  background-color: #0E573B;
}
.message h4 {
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.3em;
}
.message h6 {
  color: #A68A65;
}
.message-all {
  width: 600px;
  font-size: 0.8em;
  margin: auto;
  text-align: left;
  color: #fff;
  padding-top: 20px;
}
.message ul {
  width: 100%;
  display: inline-flex;
  list-style: none;
  margin-top:20px;
  padding-left: 7px;
  overflow-x: auto;
}
.message li {
  margin: 10px 8px;
  position:relative;
  width:240px;
  height:260px;
  background:#FFFFFF;
  padding:10px;
  text-align:center;
  border:3px solid #A68A65;
  color:#333333;
  font-size:14px;
  font-weight:bold;
}
.message img {
  width: 100px;
  height: 100px;
  display: flex;
  margin: auto;
}
.msg {
  margin-top: 10px;
  font-size: 0.8em;
  text-align: left;
}

#more {
  width: 100%;
  margin-top:40px;
  padding-top:30px;
  padding-bottom:50px;
  background-color: #F4F2E6;
  text-align: center;
}
#more ul {
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: -60px;
  margin-inline-end: 0px;
  font-weight: bold;
  list-style-position: inside;
  list-style-image: url(https://classicmusic.tokyo/rd/wp-content/themes/cocoon-child-master-road/img/more.png);
}	
.more{
  display: block;
  margin: auto;
  position: relative;
}
/*---------------------------------
アコーディオンボックス
--------------------------------*/
.morebox{
  width: auto;
  font-size:8px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:auto;
}

.morebox label{
  width: 500px;
  font-size: 16px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #fff; 
  position: relative;
  display: block;
  padding:8px;
/*  margin: 10px;*/
  margin: auto;
  margin-top: 10px;
  border-radius: 10px;
  cursor: pointer;
  color: #0e573b;
}
.morebox label:hover{
}
.morebox input{
  display: none;
}
.morebox label:after{
  color: #0e573b;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}
.morebox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}
.morebox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}
.morebox input:checked ~ div{
  height: auto;
  padding: 18px; /* 開いた部分の枠内の余白 */
  border-radius: 8px;
  background: #f1eae4; /* 開いた部分の背景色 */
  background: #fff; /* 開いた部分の背景色 */
  opacity: 1;
}
.morebox input:checked ~ label {
  background: #fff; /* クリック後のラベルの背景色 */
  color: #0e573b;
}
.morebox-under{
  font-size: 15px; /* 開いた部分の文字サイズ */
  color: #333; /* 開いた部分の文字色 */
  width: 60%;
  margin: auto;
  margin-top:10px;
  text-align: left;
}

#news-top {
  width: 100%;
  margin-top:30px;
  margin-bottom:30px;
  background-color: #fff;
  text-align: center;
}
.news-top {
  width: 700px;
  margin: auto !important;
}
.news-top h4 {
  line-height: 1;
}
.news-top h6 {
  color: #A68A65;
}
.news-top a {
  text-decoration: none;
  color: #333;
}
.news-top a:hover {
  color: #A68A65;
}
.news-top-more {
  display: flex;
  justify-content: right;
  font-size: 0.7em;
  font-weight: bold;
}
.news-top-more::after {
  content: '\025b6';
  font-size: 100%;
}
.news-top-box {
  border: 3px solid #A68A65;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 3.5;
  padding: 10px;
}
.news-top-box dt {
  width: 30%;
  float: left;
  text-align: left;
  margin-left: 10px;
  border-right: 1px dotted #A68A65;
}
.news-top-box dd {
  text-align: left;
  border-top:1px dotted #A68A65;
}
.news-top-box dd:first-child {
  border: none;
}
.news-top-box dt:first-child + dd
{
    border:none;
}
.news-top-link {
  margin-left: 10px;
}
#contest-top {
  width: 100%;
  margin-top:30px;
  margin-bottom:30px;
  background-color: #fff;
  text-align: center;
}
.contest-top {
  border: 3px solid #A68A65;
  width: 700px;
  margin: auto;
  padding: 30px;
}
.contest-top h4 {
  line-height: 1;
}
.contest-top h6 {
  color: #A68A65;
}
.contest-top a {
  text-decoration: none;
  color: #333;
}
.contest-top p {
  font-weight: 900;
  line-height: 1.3;
}
.contest-top ul {
  width: 100%;
  display: inline-flex;
  list-style: none;
  margin-top:20px;
  overflow-x: auto;
}
.contest-top li {
  margin: 10px 8px;
  position:relative;
  width:180px;
  height: auto;
  background:#FFFFFF;
  padding:10px;
  text-align:center;
  color:#333333;
  font-size:14px;
  font-weight:bold;
}
.contest-top img {
  width: 180px;
  height: 180px;
  display: flex;
  margin: auto;
  border: 1px solid #A68A65;
  border-top: 3px solid #A68A65;
}
.contest-top-text {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 0.8em;
  text-align: left;
  line-height: 1.3;
}
.contest-more {
  border: 1px solid #A68A65;
  padding: 5px 25px 5px 10px;
}
.contest-more:hover {
  background: #0E573B;
  color: #fff;
}
.contest-more::after{
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  right: 2.5em;
  color: #A68A65;
}

#news {
  width: 100%;
  margin-top:30px;
  margin-bottom:30px;
  background-color: #fff;
  text-align: center;
}
.news {
  width: 800px;
  margin: auto !important;
  display: inline-flex;
}
.news-box {
  vertical-align: top;
}
.news-list {
  display: inline-flex;
}
.news ul {
  margin-left: 100px;
}
.news li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2.5;
  width: 500px;
  border-bottom: solid 1px silver;
  position: relative;
}
.news li:first-child {
  border-top: solid 1px silver;
}
.news-more {
  text-decoration: none;
  color: #333;
  font-size: 0.7em;
  border-bottom: solid 1px #333;
}
.news-more::after{
  content: '\025b6';
  color: #0e573b;
}
.news-date {
  color: #c0c0c0;
  width: 150px;
}
.news-link {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  font-size: 0.9em;
  margin-left: 20px;
  margin-top: 2px;
}
.news-link::after{
  content: '\025b6';
  color: #0e573b;
  position: absolute;
  right: 10px;
}
/*
.news li a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  display: block;
  text-align: left;
}
*/

#contest {
  width: 100%;
  background-color: #f0f0f0;
  text-align: center;
  font-weight: bold;
  padding-bottom: 30px;
  padding-top: 30px;
}
.contest{
  margin-top: 30px;
  background-color: #f0f0f0;
}
.contest ul {
  width: 800px;
  margin: auto;
  position: relative;
  list-style: none;
}
.contest li{
  width: 150px;
  height: 180px;
  background: #fff;
  border-radius: 8px;
  color: #333;
  text-align: center;
  padding:20px 10px;
}
.contest a{
  font-weight: bold;
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
}
.contest p {
  text-align: center;
  color: #0e573b;
  line-height: 1.1;
  padding-bottom:10px;
}
.contest span {
  font-size: 0.8em;
}
.contest-text {
  line-height: 1.3;
  text-align: left;
}
.contest-next {
  color: #0e573b;
  text-align: right;
}
.contest-next::after{
  content: '\025b6';
}
/* list　タブ 実技 */
#level {
  width: 100%;
  margin-top:30px;
  background-color: #fff;
  text-align: center;
  border-bottom: 6px solid #0e573b;
  position: relative;
  z-index: 1;
}
.level{
  display: inline-flex;
  text-align: center;
  bottom: -13px;
  margin-top: 20px;
  position: relative;
}
.list_level_tab a,.list_level_tab a:hover,.list_level_tab a:visited{
    color: inherit;
}
.list_level_tab li {
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 0 8px 0 0;
/*  border-bottom: 1px solid #0e573b;*/
  width: 80px;
  margin: 3px;
  height: 40px;
  background-color: #b4b4b4;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.level_tab_kyu {
  font-size: 0.6em;
  position: relative;
  bottom: -3px;
}
.list_level_tab li:hover {
  background: #0e573b;
  color: #fff;
}
.list_level_tab_selected {
  background: #0e573b !important;
  color: #fff !important;
}
/* list　タブ 学科 */
#level_g {
  width: 100%;
  margin-top:30px;
  background-color: #fff;
  text-align: center;
  border-bottom: 6px solid #a68a65;
  position: relative;
  z-index: 1;
}
.level_g{
  display: inline-flex;
  text-align: center;
  bottom: -13px;
  margin-top: 20px;
  position: relative;
}
.list_level_tab_g a,.list_level_tab_g a:hover,.list_level_tab_g a:visited{
    color: inherit;
}
.list_level_tab_g  li {
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 0 8px 0 0;
/*  border-bottom: 1px solid #a68a65;*/
  width: 90px;
  margin: 3px;
  height: 40px;
  background-color: #b4b4b4;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list_level_tab_g li:hover {
  background: #a68a65;
  color: #fff;
}
.list_level_tab_g_selected {
  background: #a68a65 !important;
  color: #fff !important;
}

#song_list {
  width: 100%;
  padding-top:20px;
  background-color: #F4F2E6;
  text-align: center;
  padding-bottom:30px;
}
.slist {
  width: 90%;
  margin-bottom: 20px;
  margin: auto;
  display:flex;
  flex-wrap: wrap;
}
.slist_box {
  width: calc(100% / 2 - 20px);
  margin: 10px 10px;
}
.slist .kubun {
  padding-left: 20px;
  text-align: left;
  font-weight: bold;
  border-left: 4px solid #0e573b;
  color: #0e573b;
  margin-top: 30px;
  font-size: 1.1em;
}
.slist_sub {
  width: 100%;
  margin-bottom: 20px;
  margin: auto;
  display:flex;
  flex-wrap: wrap;
}
.kubun_box {
  width: calc(100% / 2 - 20px);
  margin: 10px 10px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px  solid #0e573b;
  font-size: 0.9em;
  font-weight: bold;
  text-align: left;
  padding: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.v_box {
  cursor: default;
}
.kubun_box p {
  padding-top:5px;
}
.kubun_box .fa {
  color: #0e573b;
  font-size: 1.5em;
}
.song_cmprs {
  border-bottom: 2px dotted #f2f2f2;
  font-size: 1.1em;
}
.slist-btn {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  position: relative;
  justify-content: center;
  display: flex;
}
.kubun_box .btns {
  margin-top: auto;
}

#gsong_list {
  width: 100%;
  background-color: #f2f2f2;
  text-align: center;
  position: relative;
  top: -29px;
  padding-bottom:30px;
}
.gslist {
  width: 90%;
  margin: auto;
  margin-bottom: 20px;
  margin-top: 20px;
  position: relative;
  top: 30px;
}
.gslist .year {
  font-size: 1.1em;
  padding-left: 20px;
  text-align: left;
  font-weight: bold;
  border-left: 4px solid #0e573b;
  color: #0e573b;
  margin-top: 30px;
}
.gslist .Kamoku {
  font-size: 1.0em;
  padding-left: 30px;
  text-align: left;
  font-weight: bold;
  color: #0e573b;
}
.gslist .Kamoku::before {
  font-family: FontAwesome !important;
  content: "\f138" !important;
  position: relative;
  right: 0.3em !important;
  color: #0E573B !important;
}
.glist-ul li {
  display: inline-block;
  margin-right: 10px;
  width: calc(100% / 4 - 20px);
}
.gakka-slider {
  padding-left: 0px
}
.gakka-slider li{
  position: relative;
  height: auto;
}
.gakka-slider img {
  border: 1px solid #0e573b;
}
.gakka-slider p{
  color: #0e573b;
  font-size: 1.3em;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.gakka-slider .slick-prev:before {
  color: #0e573b !important;
}
 
.gakka-slider .slick-next:before {
  color: #0e573b !important;
}
.gsong_list {
  display: flex;
  justify-content: center;
}
.gsong_list img {
  border: 1px solid silver;
  position: relative;
}
.gsong_img_box {
  width: calc(100% / 4 - 20px);
  border-radius: 8px;
  padding: 10px;
  margin: 20px;
  background-color: #fff;
}
.gsong_img_box .kubun {
  display: block;
  width: max-content;
  margin: auto;
  margin-bottom:10px;
  padding: 1px 15px;
  border-radius: 10px;
  background-color: #333;
  color: #fff;
  font-size: 0.6em;
}
.gdownload-btn {
  border: none !important;
  width: 80%;
}
.gakka_url {
  width: calc(100% / 4 - 10px);
  margin-top: 20px;
  margin-left: 20px;
}
.gakka_url_kyu {
  font-weight: bold;
  font-size: 1.2em;
}
.gakka_reference {
  text-align: left;
  margin: 20px;
  color: #0E573B;
}
.g-img {
  width: 100px;
  height: auto;
}
.g-img:hover {
  transform: scale(1.3);
  transition-duration: 0.5s;
}
.gakka-slider li{
  padding:8px;
}

#goCart, #govCart {
  -webkit-appearance: none;
  background-color: #f5f8fa;
  color: #333;
  padding: 11px;
  width: 50%;
  margin: auto;
  margin-top: 20px;
  cursor: pointer;
  border: 1px solid #f1eae4;
}
#cart_list {
  width: 100%;
  margin-top:30px;
  background-color: #fff;
  text-align: center;
}
.clist {
  width: 90%;
  margin-bottom: 20px;
  margin: auto;
}
.clist_table {
  width: 100%;
  text-align: left;
}
.clist_table th {
  padding-left:10px;
  background-color: #f1eae4;
}
.clist_table tr:nth-child(odd) {
  background-color:#fff;
}
.clist_table tr:nth-child(even) {
  background-color:#fff;
}
.cline {
  border-bottom: 1px solid #f1eae4 !important;
}

.clist .age {
  text-align: left;
  padding-left: 20px;
  font-weight: bold;
  border-bottom: 2px solid #006837;
  margin-top: 30px;
}
#cart_list input[type='submit'] {
  width: 50%;
  border: 1px solid #f1eae4;
}
.cart_table {
  width: 100%;
  text-align: left;
}
.cart_table th {
  padding-left:10px;
  background-color: #f1eae4;
  width: 30%;
}
.cart_table tr:nth-child(odd) {
  background-color:#fff;
}
.cart_table tr:nth-child(even) {
  background-color:#fff;
}
.total {
  border-top: 4px double #f1eae4 !important;
}
.discount {
  color: red;
}
.cart_table2 {
  text-align: left;
  padding-left:10px;
}
.cart_table2 td{
  border-left: 1px solid #f1eae4 !important;
}
.cart_table2 th {
  padding-left:10px;
  width: 30%;
}
.cart {
  width: 80%;
  margin: auto;
  margin-top: 20px;
}
.cart h3 {
  border-bottom: solid 3px #0e573b;
  position: relative;
  text-align:center;
  margin-bottom: 2px;
}
.cart h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #9a5b26;
  bottom: -3px;
  width: 20%;
}
.cart table {
  border: 1px solid #f1eae4;
}
.cart th {
  background-color:#f1eae4;
}
.cart td {
  padding-left: 10px;
}
.cart input[type="submit"]{
  margin-top: 10px;
  border: 1px solid #f1eae4;
}
#cart_list table, th, td {
  border: none !important;
}
#cart_list td {
  padding: 10px;
}
.payjp-card-list {
  display: block;
  flex-direction: column;
  align-items: center;
}
.payjp-card {
  margin-bottom:10px;
  padding: 10px;
  width: 320px;
  border-radius: 4px;
  display: flex;
  border: 2px solid #0088F4;
}
.time-select {
  display: inline-block;
  width: 150px;
  margin-top: 5px;
  margin-right: 5px;
}

#category {
  width: 90%;
  margin: auto;
}
#category .list {
  background-color: #fff;
  display: block;
}
.archive-title {
  margin-top:80px;
  border-bottom: solid 2px #0e573b;
}

.result {
  background-color:#ffff9d;
  margin: 15px;
  font-weight: bold;
}

/* 投稿ページ */
#single {
  width: 90%;
  margin: auto;
}
.entry-title {
  margin-top:80px;
  border-bottom: solid 2px #0e573b;
}
.entry-date {
  font-size: 0.7em !important;
}
.entry-card-snippet {
  text-align: left;
  font-size: 1.1em;
}
.cat-label.cat-label-17, .cat-link.cat-link-17 {
  font-size: 0.8em;
}

/* 技能検定について　*/
#about {
  width: 90%;
  margin: auto;
}

/* ながれについて　*/
.summary-menu {
  text-align: center;
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.summary-menu li +li{
  padding: 0 10px 0 10px;
}
.summary-menu li:first-child{
  padding: 0 10px 0 10px;
}
.summary-menu a {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.summary-menu a:hover {
  color: #A68A65;
}
.summary-menu a::before {
  font-family: FontAwesome !important;
  content: "\f138" !important;
  position: relative;
  right: 0.3em !important;
  color: #0E573B !important;
}
#step {
  width: 100%;
  margin: auto;
  margin-top:30px;
}
.step {
  margin: auto;
  width: 800px;
  text-align: center;
}
.stepbar {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.step-box {
  border: 1px solid #A68A65;
  border-bottom: transparent;
  padding: 0 10px;;
}
.stepbar .step-box .triangle {
  content: "";
  display: block;
  width: 0;
  border: solid 2em transparent;
  border-top-color: #A68A65;
  margin: 0 auto;
}
.step-txt {
  text-align: left;
  display: flex;
  padding-bottom:10px;
}
.stepbar .step-box .steptitle span {
  display: block;
  font-weight: bold;
  margin: 1em auto;
}
.stepbar .step-box .title {
  font-size: 1.2em;
  font-weight: bold;
}
.stepbar .step-box .txt {
  width: 90%;
  display: block;
  margin: 2em auto;
  font-size: 0.9em;
}
.stepbar:first-of-type .triangle:first-of-type {
  display: none;
}
.stepbar:last-of-type .step-box:last-of-type {
  border-bottom: 1px solid #A68A65;
}

/* qa */
.qa {
  margin: auto;
  width: 800px;
  text-align: center;
}
.qa h1 {
  color: #0e573b;
  font-size: 1.4em;
}
.qa h2 {
  width: 100%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 5px;
  border-top: 2px solid #725328;
  border-bottom: 1px solid #725328;
  background-color: #fff;
  color: #725328;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
.faq-title h4 {
  border: unset;
  font-size: 1.0em !important;
  text-align: left;
}
.toc-content {
  text-align: left;
}
[data-accordion] > [data-control]:after {
  color: #0E573B;
}
.faq-content p {
  text-align: left;
  padding-left: 10px;
}

/* summary */
.summary {
  margin: auto;
  width: 800px;
}
.summary h1 {
  color: #0e573b;
  font-size: 1.4em;
  text-align: center;
  margin: 30px 0;
}
.summary h2 {
  text-align: center;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 5px;
  border-top: 2px solid #725328;
  border-bottom: 1px solid #725328;
  background-color: #fff;
  color: #725328;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
.summary ul {
  list-style: none;
}
.summary h3 {
  text-align: left;
  font-size: 1.1em;
  color: #725328;
  margin: 10px 0;
  padding: 4px 15px;
  border-left: solid 6px #0E573B;
  color: #000000;
  font-size: 1em;
  background-color: #eee;
  letter-spacing: 0.3em;
}
.summary ul {
  line-height: 1.3;
}
.information-box {
    background: #f3fafe;
    border: 1px solid #bde4fc;
}
.alert-box {
    background: #fdf2f2;
    border: 1px solid #f6b9b9;
}

/* contact */
.contact {
  margin: auto;
  width: 800px;
  text-align: left;
  padding-left: 5px;
}

/* thanks */
.thanks {
  margin: auto;
  width: 800px;
  text-align: left;
}
.thanks h1 {
  margin: 30px 0;
  padding: 4px 15px;
  border-left: solid 6px #0E573B;
  border-bottom: solid 1px #0E573B;
  color: #000000;
  text-align: left;
}

/* reference */
.reference {
  margin: auto;
  width: 800px;
  text-align: center;
  margin-top: 20px;
}
.nando {
  justify-content: end;
  display: flex;
}
.reference h1 {
  color: #0e573b;
  font-size: 1.4em;
}
.reference h2 {
  width: 100%;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 5px;
  border-top: 2px solid #725328;
  border-bottom: 1px solid #725328;
  background-color: #fff;
  color: #725328;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
.reference_table table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
}
.reference_table table td {
  border: solid 0.5px #dedede !important;
}

/* cart */
#select_list {
  width: 100%;
  margin: auto;
  margin-top:30px;
  background-color: #fff;
  text-align: center;
}
.SelectCart {
  width: 50%;
  margin: auto;
}
#select_list select {
  padding: 11px;
  border: 2px solid #0e573b;
  border-radius: 4px;
  font-size: 18px;
  width: 100%;
}
#select_list p {
    padding-top: 11px;
}

.errmsg {
    color: #FF1A00 !important;
    font-weight: bold;
}
#autoin_def {
    display:none;
}

/* cart step */
.progressbar {
  width: 80%;
  margin: auto;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.progressbar .item {
    position: relative;
    width: 30%;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #F5F5F5;
    color: #999999;
}
.progressbar .item:nth-child(2) {
    width: 40%;
}
.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid #F5F5F5;
    margin: auto;
}
.progressbar .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}
.progressbar .small {
  font-size: 0.7em;
}

@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }
  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
  .contents_table {
    width: 100%;
    font-size: 1.1em;
  }
  .price_table {
    overflow-x: scroll;
    font-size: 1.2em;
  }
  .reference_table {
    overflow-x: scroll;
    font-size: 1.2em;
  }
}

/* active */
.progressbar .item.active {
    z-index: 1;
    background: #A68A65;
    color: #FFF;
}
.progressbar .item.active:not(:last-child)::after {
    border-left-color: #A68A65;
}
.progressbar .item.active:not(:last-child)::before {
    border-left: none;
}

/* 管理画面 */
.edit-contents {
    width: 95%;
    margin: 3px auto;
}
.edit-table {
    width: 95%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    margin: 3px auto;
}
.edit-table-box {
    width: 95%;
    margin-bottom: 2px;
    margin: 3px auto;
}
.edit-table-box,.edit-table-box td,.edit-table-box th{
    border: none ;
    vertical-align: bottom;
}
.edit-table-box p{
  font-size: 0.8em;
}
.edit-table p{
  font-size: 0.8em;
}
.edit-level {
    width: 30%;
    margin:auto;
    margin-bottom: 20px;
}
.attention {
    color: #FF1A00;
}
.edit-padding {
    padding: 20px;
}
.modal {
  display: none;
}
  
.modal.is-open {
  display: block;
}

/* 講師採点ページ */
.ytvideo {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; //16:9の比率の場合
  overflow: hidden; margin-top: 30px;
  margin-bottom: 30px
}
.ytvideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}
#editboxes input[type="number"]{
  width: 100px;
}
#editboxes textarea{
  margin-top: 10px;
}
#editboxes input[type="submit"]{
  margin-top: 10px;
}
#goMarking{
  padding: 2px 7px;
}

@media screen and (max-width: 540px) {
  .content {
    margin-top: 0;
  }
  .mb-top {
    background-color: #0E573B;
  }
  .mb-top img {
/*    border-bottom: solid 1px #eee;*/
  }
  #mb-top img {
    width: 100%;
  }
  .mv {
    padding-bottom: 5px;
  }
  .slick-slide:focus {
    outline: none;
  }
/*
  .slick-initialized .slick-slide {
    margin-top: 20px;
  }
*/
  #list, #results, #news, #contest, #schedule, #merit, #message, #more, #contest,  #site_menu_mb {
    font-size: 0.9em;
  }
  .br-mb {
    display: block;
  }
  ul {
    padding-left: 0;
    width: 100% !important;
  }
  .zoom {
    width: 95%;
  }
/*
.header-container {
display: none;
}
*/
  .top-nav2 ul li a {
    font-size: 0.7em;
    padding: 20px 18px;
    transition: all .3s;
  }
  .top-nav2 ul li.has-child::after{
    top:16px;
    right:6px;
  }
  .top-nav2 li.has-child ul{
    width:160px !important;
  }
  .top-nav2 li.has-child ul li::before {
    width: 5px;
    height: 5px;
    left: 15px;
  }
  .top-nav2 {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .tab-top li a {
    font-size: 0.7em;
    width: 120px;
  }
  .site_menu_mb {
    display: flex;
    font-size: 0.7em;
    justify-content: center;
    align-items: center;
  }
  .site_menu_mb img{
    width: 100px;
    height: auto;
    margin-left: 5px;
  }
  .site_menu_mb_box {
    width: auto;
    background: #f2f2f2;
    border-radius: 10px ;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px;
  }
  .site_menu_mb_box a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  .site_menu_mb span {
    padding-right:5px;
    line-height: 2.5;
  }
  .site_menu_mb .line {
    border-right: 1px solid #B4B4B4;
  }

  .top-slider{
    width:98%;
  }
  h4 {
    line-height: 1.5;
    font-size: 1.3em;
  }
  h5 {
    color: #0e573b;
    font-size: 1.1em;
  }


  .schedule {
    width: 98%;
/*    font-size: 0.9em;*/
  }
  .schedule .nendo {
    display: block;
    margin: auto;
    font-size: 0.8em;
  }
  .schedule_table {
    font-size: 1.2em;
    display: block;
    width: 100%;
    margin: 0;
  }
  .challenge{
    width: 300px;
  }
  .contents {
    width: 98%;
    font-size: 0.9em;
  }
  .contents-slide img {
    width: 500px;
    height: auto;
    max-width: 800px;
  }
  .contents-slide {
  overflow-x: scroll;
  }
  .contents_title:before, .contents_title:after {
    width: 80px;
    height: 3px;
  }
  .contents-box {
    display: block;
  }
  .contents-box img {
    margin: auto;
  }
  .contents-box p {
    padding-left: 20px;
  }
  .contents-box li {
    width: 100%;
  }
  .contents_video {
    width: 100%;
  }
  .goukaku {
    width: 100%;
  }
  .contents_table {
    width: 100%;
    font-size: 1.1em;
  }
  .contents_table table {
    min-width: 600px;
  }
  .price_table table {
    min-width: 600px;
  }
  .price_table {
    font-size: 1.2em;
    overflow-x: scroll;
  }
  .reference_table {
    font-size: 1.2em;
    overflow-x: scroll;
  }
  .reference_table table {
    min-width: 600px;
  }
  .ryoukin {
    font-size: 0.8em;
  }
  .list-jitsugi {
    width: 100%;
  }
  .list-jitsugi ul{
    margin-left:10px;
  }
  .list-jitsugi li{
    flex-shrink: 0;
    list-style: none;
  }
  #jitsugi-btn {
    text-align: center;
  }
  .jitsugi-detail {
    width: 95%;
  }
  .doga ul {
    display: inline-block;
  }
  .doga ul li {
    margin-left: 0px;
  }
  .list-kyu {
    left: 30%;
  }
  .list-kyu10 {
    left: 24%;
  }
  .list-kyu-alpha {
    left: 16%;
  }
  .list-kyu-alpha10 {
    left: 12%;
  }
  .list-gakka {
    width: 100%;
  }
  .list-gakka ul{
    margin-left:10px;
  }
  .list-gakka li{
    flex-shrink: 0;
    list-style: none;
  }
  .gakka_url {
    width: 100%;
    margin: 0;
  }
  #gakka-slider li{
    padding: 0;
  }
  .glist-ul li {
    width: calc(100% / 2 - 20px);
    text-align: left
  }
  .tab{
    width: 60%;
  }
  .lists p {
    left: 10% !important;
    width:80%;
  }
  .list_level li {
    width: 50px;
  }
  #list {
    background-size: 50% auto;
  }
  .level_tab_v li {
    width: 60px !important;
  }
  .step {
    width: 98%;
    font-size: 0.9em;
  }
  .qa {
    width: 98%;
    font-size: 0.9em;
  }
  .summary {
    width: 98%;
    font-size: 0.9em;
  }
  .thanks {
    width: 98%;
    font-size: 0.9em;
  }
  .contact {
    width: 98%;
  }
  .reference {
    width: 98%;
  }
  .price {
    width: 98%;
    font-size: 0.9em;
  }
  .attn {
    width: 98%;
    font-size: 0.9em;
  }
  .attn ul {
    padding-left: 5px;
  }
  .merit {
    width: 98%;
    font-size: 0.9em;
  }
  .results {
    width: 98%;
  }
  .message {
    width: 98%;
  }
  .message-all {
    width: 90%;
  }
  .message li {
    width:240px;
    height:280px;
    flex-shrink: 0;
    list-style: none;
  }
  #more {
    padding-bottom:70px;
    background-position: right 3% bottom;
    background-size: 20% auto;
  }
  .more {
    width:95%;
    justify-content: center;
  }
  #more ul {
    margin-inline-start: 0px;
    font-size: 1.2em;
    list-style-position: outside;
    list-style-image: url(https://classicmusic.tokyo/rd/wp-content/themes/cocoon-child-master-road/img/more.png);
  }	
  .morebox label{
    width: 90%;
  }
  .morebox-under{
    width: 95%;
    text-align: left;
  }
  .news-top {
    width: 95%;
  }
  .news-top-box {
    font-size: 0.6em;
  }
  .news {
    width:100%;
    display: block;
  }
  .news li {
    width: 90%;
    margin: auto;
    display: block;
    text-align: left;
  }
  .news ul {
    margin-left: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .news-list {
    width:98%;
    display: block;
  }
  .news-date {
    width: 90%;
    font-size: 0.8em;
  }
  .news-link {
    width: 90%;
    font-size: 1.0em;
  }
  .footer-banner .youtube {
    width: 300px;
    margin: 0;
  }
  .footer-banner {
    width: 95%;
    display: block;
  }
  .footer-banner2 {
    width: 95%;
    display: block;
  }
  .footer-banner2 img {
    width: 300px;
  }
  .youtube-list {
    width: 100%;
    display: block;
  }
  .youtube-list-box {
    display: block;
    margin: auto;
  }
  .youtube-list-left {
    padding-left: 10px;
    width: 100%;
  }
  .youtube-list-right {
    width: 100%;
  }
  .contest-top{
    width: 98%;
    margin: auto;
  }
  .contest-top li {
    flex-shrink: 0;
    list-style: none;
  }
  .contest-top img {
    width: 150px;
    height: 150px;
  }
  .contest{
    width: 98%;
    margin: auto;
    margin-top: 10px;
  }
  .contest li{
    width: 140px;
    height: 170px;
    padding:10px 10px;
  }
  .level ul{
    margin-left:10px;
  }
  .level {
    margin: auto;
/*    bottom: -12px;*/
  }
  .list_level_tab {
    padding-right: 0;
  }
  .list_level_tab li {
    width: calc(100% / 5 - 10px);
    bottom: 2px;
  }
  .list_level_tab_g li {
    width: calc(100% / 4 - 10px);
    bottom: 2px;
  }
  .slist {
    display: block;
    width: 100%;
  }
  .slist_box {
    width: 90%;
  }
  .slist_sub {
    display: block;
  }
  .slist-btn {
    width: 60%;
  }
  .kubun_box {
    width:100%;
    border-radius: 15px;
  }
  .gsong_list {
    display: block;
  }
  .gsong_img_box {
    position: relative;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
  }
  .gsong_list img {
    width: 100%;
  }
  .gsong_img_box .kubun {
    font-size: 0.9em;
    border-radius: 15px;
    padding: 0 30px;
  }
  .gdownload-btn {
    width: 60% !important;
  }
  #category .a-wrap {
    margin-bottom: 50px;
  }
  #select_list {
    width: 95%;
  }
  .clist {
    overflow-x: auto; /* tableタグのはみ出た要素を隠す */
    white-space: nowrap; /* テキストの折り返しなし */
/*    width: 300px;*/
    width: 95%;
  }
  .clist_table {
/*    width: 500px;*/
    width: 120%;
  }
  .SelectCart {
    width: 100%;
  }
  .clist input[type='submit'] {
    width: 100%;
  }
  .cart_table {
    border-collapse: collapse;
    white-space: nowrap;
    overflow-x: scroll;
  }
  .cart {
    width: 95%;
    margin: auto;
  }
  .table-area {
    width: 95%;
    margin: 0 auto;
    overflow-x: scroll;
  }
/*
  .cart table{
	width: 100%;
	min-width: 800px;
  }
  .cart input[type='submit'] {
    width: 95%;
  }
*/
  #cart_list input[type='submit'] {
    width: 95%;
  }
  .cart p{
    font-size: 0.8em;
  }
  #goCart {
    width: 95%;
  }
  .cart_table th,
  .cart_table td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
  .cart td {
    padding-left: 3px;
  }
  .cart_table select {
    display: block;
  }
  input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="time"], input[type="url"], textarea, select{
    font-size: 0.8em;
}
  .stepbar .step-box .triangle {
    content: "";
    display: block;
    width: 0;
    border: solid 1em transparent;
    border-top-color: #A68A65;
    margin: 0 auto;
  }

  /* cart step */
  .progressbar {
    width: 100%;
  }

  /* 管理画面 */
  .edit-table-box th,
  .edit-table-box td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
  /*オンキョウ統一メニュー*/
  .portal {
    margin: 55px 35px 15px 35px;
  }
  .portal a {
    text-decoration: none;
    /* color: #ffb03f; */
    color: #fff;
  }
  .portal ul {
    /* border: solid 2px #ffb03f; */
    border: solid 2px #fff;
    padding: 0.5em;
    position: relative;
    margin-top: 2em;
  }
  .portal ul li {
    line-height: 1.5;
    padding: 0.5em 0 0.5em 1.4em;
    border-bottom: dashed 1px silver;
    list-style-type: none !important;
  }
  .portal ul li:last-of-type {
    border-bottom: none;
  }
  .portal ul li:before {
    font-family: FontAwesome;
    content: "\f138";
    position: absolute;
    left: 0.5em;
    color: #fff;
  }
  .portal ul li:after {
    /*タイトルタブ*/
    /* background: #ffb03f; */
    background: #fff;
    color: #000;
    font-weight: bold;
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: "オンキョウメニュー";
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 768px) {
  #site_menu img {
    display: none;
  }
  #ad-slider-container{
    display: none;
  }
  .lists p {
    left: 20%;
  }
  .list_level_tab li {
    width: calc(100% / 5 - 10px);
  }
  .list_level_tab_g li {
    width: calc(100% / 4 - 10px);
  }
  .list-jitsugi {
    width: 100%;
  }
  .list-jitsugi li{
    flex-shrink: 0;
    list-style: none;
  }
  .list-gakka {
    width: 100%;
  }
  .list-gakka li{
    flex-shrink: 0;
    list-style: none;
  }
  .list-top-v ul{
    padding-left: 20px;
  }
  .list-top-v li{
    width: 115px !important;
    margin-right: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .mobile-menu-buttons, .menu-button > a {
    background-color: #343534;
    color: #fff !important;
  }
  .menu-content {
    background-color: #343534;
    color: #fff;
  }
  .menu-content > a {
    color: #fff;
  }
  ul.menu-drawer {
    background-color: #f2f2f2;
    padding: 0 !important;
  }
  ul.menu-drawer li {
    border-bottom: dashed 1px #0e573b;
  }
  ul.menu-drawer li::before {
    font-family: FontAwesome;
    content: "\f054";
    position: absolute;
    right: 35px;
    font-size: 0.8em;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: #0e573b;
    padding: 0.8em;
  }
  ul.menu-drawer a {
    padding-left: 35px;
    color: #000;
  }
  .portal ul {
    /* border: solid 2px #ffb03f; */
    border: solid 2px #fff;
    padding: 0.5em;
    position: relative;
    margin-top: 2em;
    list-style: none;
  }
  .portal {
    margin: 55px 35px 15px 35px;
  }
  .site_menu ul a {
    font-size: 0.6em;
  }
}

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

