@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
html, body {
  font-family: "Lato","Zen Kaku Gothic New",sans-serif;
  font-size: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  color: #656E58;
  font-weight: 400;
}

body {
  background: #FFFFFF;
}

@media screen and (max-width: 813px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    min-width: calc(100% );
  }
}
a {
  color: #17769E;
  transition: .3s ease-in-out;
  outline: none;
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:active {
  color: #656E58;
}

a:hover {
  opacity: 0.8;
  color: #656E58;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: none;
}

::selection {
  background: #656E58;
  color: #FFFFFF;
}

::-moz-selection {
  background: #656E58;
  color: #FFFFFF;
}

/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */
.hamburger, nav.globalMenuSp {
  display: none;
}

@media screen and (max-width: 813px) {
  #navi_wrapper {
    display: none;
  }

  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 5;
    right: -2px;
    top: -2px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 42px;
    height: 3px;
    left: 15px;
    border-radius: 2px;
    background: #656E58;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 20px;
  }

  .hamburger span:nth-child(2) {
    top: 34px;
  }

  .hamburger span:nth-child(3) {
    top: 48px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    background: none;
    border: none;
  }

  .hamburger.active span:nth-child(2) {
    width: 0px;
  }

  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    background: #656E58;
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    -o-transform: translateY(12px);
    transform: translateY(12px);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-16px) rotate(90deg);
    -ms-transform: translateY(-16px) rotate(90deg);
    -o-transform: translateY(-16px) rotate(90deg);
    transform: translateY(-16px) rotate(90deg);
  }
}
.globalMenuSp {
  display: inline;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 100%;
  color: #fff;
  background: rgba(73, 77, 68, 0.9);
  text-align: right;
  width: calc(100% - 60px);
  opacity: 0;
  transition: all 1s ease;
  padding: 60px 30px 30px;
  height: 100vh;
}

.globalMenuSp ul {
  padding-top: 20px;
}

.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

.globalMenuSp ul li a {
  display: inline-block;
  width: 100%;
  color: #fff;
  padding: 0.3em 0px;
  margin: 0;
  text-decoration: none;
  font-size: 1.8em;
}

.globalMenuSp .top_sns a:first-child img {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
  opacity: 100;
  left: 0;
  transition: all 1s ease;
}

h2 {
  font-family: Lato;
  font-size: 52px;
  font-weight: 300;
  line-height: normal;
  margin: 10px 0;
}

h3 {
  margin: 10px 0;
}

h4 {
  margin: 10px 0;
}

h5 {
  margin: 10px 0;
}

h6 {
  margin: 10px 0;
}

p {
  line-height: 1.8em;
  margin: 10px 0;
}

ul {
  padding: 0;
}

.button {
  font-size: 20px;
  max-width: 320px;
  color: #FFFFFF;
  min-height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer !important;
  background: #656E58;
  padding: 10px 30px 10px 10px;
  margin: 0px auto 30px;
  border: 1px solid #656E58;
  text-decoration: none;
}
@media screen and (max-width: 813px) {
  .button {
    font-size: 1.2em;
    max-width: 80%;
  }
}

.button:hover {
  background: #FFFFFF;
  color: #656E58;
}

.button2 {
  font-size: 20px;
  max-width: 330px;
  color: #656E58;
  min-height: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer !important;
  background: white;
  padding: 10px 30px 10px 10px;
  margin: 0px auto 30px;
  border: 1px solid #656E58;
  border-image: initial;
  text-decoration: none;
}
@media screen and (max-width: 813px) {
  .button2 {
    max-width: 60%;
  }
}
.button2 .arrow {
  stroke: #656E58;
}

.arrow {
  fill: transparent;
  stroke: #FFFFFF;
  position: absolute;
  top: center;
  right: 20px;
  transition: all .3s ease;
}

.arrow polyline, .arrow line {
  stroke-width: 2px;
}

a:hover .arrow, a:hover .arrow line {
  stroke: #656E58;
  right: 15px;
  transition: all .3s ease;
}

a.text_link {
  color: #FFFFFF;
  line-height: 34px;
  margin: 0 12px 0 auto;
  position: relative;
  display: inline-block;
  text-align: right;
  padding-right: 60px;
  float: right;
  clear: both;
}
a.text_link .arrow {
  right: 0;
  stroke: #656E58;
}

a.text_link:hover .arrow, a.text_link:hover .arrow line {
  stroke: #FFFFFF;
  right: -10px;
  transition: all .3s ease;
}

header {
  backdrop-filter: blur(6.75px);
  width: 100%;
  max-width: 100vw;
  display: block;
  position: fixed;
  top: 0px;
  z-index: 999;
  height: 140px;
  background: url(images/header_bg.png) center bottom/100% no-repeat rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 813px) {
  header {
    height: 80px;
    overflow: visible;
  }
}

#head {
  position: relative;
  margin: 0 auto;
  overflow: visible;
}
@media screen and (max-width: 813px) {
  #head {
    width: calc(100% - 8vw);
    min-width: calc(100% - 8vw);
    padding: 0px 4vw 10px 4vw;
  }
}
#head h1 {
  opacity: 1;
  position: relative;
  text-align: center;
  transition: 0.3s;
  padding: 28px 0 5px 0;
  margin: 0 auto;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  #head h1 {
    text-align: left;
    margin: 0;
  }
}
@media screen and (max-width: 813px) {
  #head h1 {
    display: block;
    text-align: center;
    padding: 8px 50px 6px 0px;
  }
}
#head h1 a {
  display: inline-block;
}
#head h1 img {
  width: 292px;
  margin-left: 80px;
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  #head h1 img {
    margin-left: 20px;
    width: 70% !important;
    max-height: 60px !important;
  }
}
@media screen and (max-width: 813px) {
  #head h1 img {
    width: 80%;
  }
}
#head h1 span {
  font-size: 16px;
  font-weight: 400;
  color: #656E58;
  margin-left: 10px;
}
@media screen and (max-width: 813px) {
  #head h1 span {
    display: block;
    text-align: center;
  }
}
#head .head_sns {
  display: block;
  position: absolute;
  top: 10px;
  right: 0px;
}
#head .head_sns a {
  padding-right: 10px;
}
#head .head_sns img {
  width: 40px;
  height: 40px;
  margin: 5px;
}
@media screen and (max-width: 813px) {
  #head .head_sns {
    display: none;
  }
}

#head nav {
  color: #656E58;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.66px;
  text-align: center;
  margin: 0px auto;
}
@media screen and (max-width: 900px) {
  #head nav {
    text-align: left;
    margin: 0;
  }
}

#head nav a {
  color: #656E58;
  display: inline-block;
  line-height: 30px;
  position: relative;
  opacity: 1 !important;
  padding: 10px 15px 5px 15px;
  text-decoration: none;
  transition: 0.4s;
}
@media screen and (max-width: 1000px) {
  #head nav a {
    padding: 10px 10px 5px 10px;
  }
}

@media screen and (max-width: 900px) {
  #head nav a:first-child {
    display: none;
  }
}
nav a:hover {
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  color: #656E58;
  transition: all  0.3s ease;
}

nav a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: #656E58;
  transform: scale(0, 1);
  transition: 0.3s;
}

nav a:hover:before {
  transform: scale(1);
}

#slider {
  position: relative;
  display: block;
  height: 700px;
  background: url(images/mv.png) 50%/cover no-repeat;
}
@media screen and (max-width: 813px) {
  #slider {
    height: 600px;
  }
}

.top_sns {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.top_sns a {
  padding-right: 10px;
}
.top_sns img {
  width: 40px;
  height: 40px;
  margin: 5px;
}

.scrolldown1 {
  position: absolute;
  left: 50%;
  bottom: 50px;
  height: 40px;
  z-index: 5;
}

.scrolldown1 span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 1;
  }
}
#main {
  padding-top: 140px;
  width: 100%;
  position: relative;
  clear: both;
  float: none;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 813px) {
  #main {
    padding-top: 80px;
  }
}

.container {
  background: #F4F4E6;
}

.inner {
  width: 1060px;
  padding: 50px 20px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .inner {
    width: calc(1000px - 40px);
    padding: 50px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .inner {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 813px) {
  .inner {
    width: calc(100% - 40px);
    min-width: calc(100% - 40px);
    padding: 20px;
    margin-bottom: 20px;
  }
}

.new_schedule .inner {
  width: 980px;
  background: #FFFFFF;
  margin: 0px auto;
}
@media screen and (max-width: 1300px) {
  .new_schedule .inner {
    width: calc(980px - 80px);
    padding: 20px 40px;
  }
}
@media screen and (max-width: 1000px) {
  .new_schedule .inner {
    width: calc(100% - 40px);
    padding: 20px;
  }
}
@media screen and (max-width: 900px) {
  .new_schedule .inner {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 813px) {
  .new_schedule .inner {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 900px) {
  .new_schedule .live_list li {
    margin-bottom: 40px;
  }
}
.new_schedule .live_list p {
  font-size: 0.9em;
}

.head_animation {
  transition: 0.3s;
  height: 100px !important;
}
@media screen and (max-width: 813px) {
  .head_animation {
    height: 70px !important;
  }
}
.head_animation h1 {
  padding-top: 6px !important;
  padding-bottom: 2px !important;
}
@media screen and (max-width: 813px) {
  .head_animation h1 {
    padding-top: 8px !important;
  }
}
.head_animation h1 img {
  transition: 0.3s;
}
@media screen and (max-width: 900px) {
  .head_animation h1 img {
    width: 292px !important;
  }
}
@media screen and (max-width: 813px) {
  .head_animation h1 img {
    width: 70% !important;
    max-height: 60px !important;
  }
}
.head_animation #navi_wrapper {
  padding-top: 0px !important;
}
.head_animation #navi_wrapper a {
  padding-top: 0px !important;
  padding-bottom: 3px !important;
}

.news {
  clear: both;
  width: 480px;
}
@media screen and (max-width: 1000px) {
  .news {
    width: 100%;
  }
}
@media screen and (max-width: 813px) {
  .news {
    width: 100%;
  }
}

.news_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 900px) {
  .news_wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.blog_list {
  list-style: none;
  margin-bottom: 20px;
}
.blog_list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  align-self: stretch;
  border-bottom: 1px solid #F4F4E6;
  margin-bottom: 20px;
  text-decoration: none;
  color: #656E58;
}
.blog_list a img {
  width: 130px;
  height: auto;
  margin-bottom: 20px;
}
.blog_list a:hover {
  opacity: 0.8;
}
.blog_list a .date, .blog_list a:hover .date {
  color: #656E58 !important;
}
.blog_list .blog_contents {
  display: inline;
}
@media screen and (max-width: 813px) {
  .blog_list .blog_contents {
    display: block;
  }
}
.blog_list .blog_contents h3 {
  font-weight: normal;
}
@media screen and (max-width: 813px) {
  .blog_list .blog_contents h3 {
    margin: 7px 0;
  }
}

.date {
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  /* 161.111% */
  margin: 0;
  display: block;
}
.date span {
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  border-radius: 46px;
  border: #656E58 1px solid;
  line-height: 30px;
  padding: 2px 10px;
  margin-left: 10px;
}
@media screen and (max-width: 813px) {
  .date {
    font-size: 1em;
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
  }
}

.live_list span {
  margin-left: 0px !important;
  margin-right: 10px;
  background: #F4F4E6;
  border: none !important;
  padding: 2px 15px !important;
}

.top_profile {
  background: #F4F4E6;
  position: relative;
  margin-bottom: 0px;
  padding: 50px 0;
}
@media screen and (max-width: 813px) {
  .top_profile {
    margin-bottom: 0px;
  }
}
.top_profile .inner {
  padding: 0;
  display: flex;
  margin-bottom: 0;
}
@media screen and (max-width: 813px) {
  .top_profile .inner {
    flex-direction: column;
  }
}
.top_profile .profile_img img {
  width: 480px;
}
@media screen and (max-width: 900px) {
  .top_profile .profile_img img {
    width: 350px;
    padding-top: 50px;
  }
}
@media screen and (max-width: 813px) {
  .top_profile .profile_img img {
    display: block;
    width: 100%;
    padding-top: 20px;
  }
}
.top_profile .profile_info {
  padding: 40px;
}
@media screen and (max-width: 813px) {
  .top_profile .profile_info {
    padding: 20px 0;
  }
}
.top_profile .profile_info h2 {
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.top_profile .profile_info h2 img {
  width: 230px;
  margin-right: 25px;
}
@media screen and (max-width: 813px) {
  .top_profile .profile_info h2 img {
    display: block;
    width: 70%;
    margin: 0px 0 10px 0;
  }
}
.top_profile .profile_info P {
  font-size: 18px;
  margin-bottom: 30px;
}

.profile_detail .top_profile {
  background: #FFFFFF url("images/img_profile02.png") right bottom no-repeat;
  background-size: 40%;
}
@media screen and (max-width: 813px) {
  .profile_detail .top_profile {
    background-size: 100%;
  }
}
.profile_detail .top_profile .profile_img img {
  width: 380px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .profile_detail .top_profile .profile_img img {
    width: 300px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 813px) {
  .profile_detail .top_profile .profile_img img {
    display: block;
    width: 100%;
    padding-top: 00px;
  }
}
.profile_detail .top_profile .profile_info {
  padding: 0px 0 0 40px;
}
@media screen and (max-width: 1300px) {
  .profile_detail .top_profile .profile_info {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 813px) {
  .profile_detail .top_profile .profile_info {
    padding: 30px 0px 0 0;
  }
}

@media screen and (max-width: 900px) {
  .youtube {
    width: 100%;
    padding: 0px;
    margin-bottom: 50px;
  }
}
.youtube .inner {
  width: 700px;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0 auto !important;
}
@media screen and (max-width: 1300px) {
  .youtube .inner {
    width: calc(600px - 40px);
    padding: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .youtube .inner {
    width: calc(540px - 40px);
    padding: 0 20px;
  }
}
@media screen and (max-width: 900px) {
  .youtube .inner {
    width: 100%;
    padding: 0px;
  }
}
.youtube iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
}
@media screen and (max-width: 813px) {
  .youtube iframe {
    margin-bottom: 20px;
  }
}
.youtube iframe:last-child {
  margin-bottom: 0px;
}

.youtube_btn {
  margin-bottom: 80px;
}

.top_discography {
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .top_discography {
    width: 250px;
  }
}
@media screen and (max-width: 900px) {
  .top_discography {
    width: 100%;
  }
}
.top_discography .inner {
  margin-bottom: 0;
}
.top_discography h2 {
  text-align: center;
}
.top_discography .discography {
  list-style: none;
}
.top_discography .discography li {
  height: auto;
  text-align: center;
  margin-bottom: 30px;
}
.top_discography .discography li a {
  text-decoration: none;
  color: #656E58;
}
.top_discography .discography li img {
  width: 100%;
  height: auto;
  border: #F4F4E6 1px solid;
}
.top_discography .discography li p {
  margin: 0 0 10px 0;
}
.top_discography .discography .next-arrow, .top_discography .discography .prev-arrow {
  display: block;
  width: 50px;
  height: 30px;
  stroke: #656E58;
  fill: transparent;
  position: absolute;
  top: 150px;
  transition: all .3s ease;
}
@media screen and (max-width: 813px) {
  .top_discography .discography .next-arrow, .top_discography .discography .prev-arrow {
    display: none !important;
  }
}
.top_discography .discography .next-arrow {
  right: -50px;
}
.top_discography .discography .prev-arrow {
  left: -50px;
}

#footer {
  width: 100%;
}
#footer a {
  text-decoration: none;
}
#footer .footer_up {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 813px) {
  #footer .footer_up {
    flex-direction: column;
  }
}
#footer .footer_lesson, #footer .footer_shop {
  position: relative;
  width: 50%;
  height: 160px;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 813px) {
  #footer .footer_lesson, #footer .footer_shop {
    width: 100%;
    border-bottom: #FFFFFF 1px solid;
  }
}
#footer .footer_lesson h3, #footer .footer_shop h3 {
  color: #FFFFFF !important;
  font-size: 46px;
  margin: 0;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.38px;
  position: relative;
}
#footer .footer_lesson h3 .arrow, #footer .footer_shop h3 .arrow {
  position: relative;
  top: -10px;
  right: -20px;
}
#footer .footer_lesson p, #footer .footer_shop p {
  margin: 0;
  padding-right: 20px;
}
#footer .footer_lesson:hover, #footer .footer_shop:hover {
  opacity: 0.8;
}
#footer .footer_lesson:hover .arrow, #footer .footer_shop:hover .arrow {
  right: -30px;
  stroke: #FFFFFF;
}
#footer .footer_lesson {
  border-right: #FFFFFF 1px solid;
  background: url("images/lesson_bg.png") no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 813px) {
  #footer .footer_lesson {
    border-right: none;
  }
}
#footer .footer_lesson div {
  display: block;
  width: 460px;
  float: right;
  padding: 10px 0 10px 30px;
}
@media screen and (max-width: 1000px) {
  #footer .footer_lesson div {
    width: auto;
  }
}
@media screen and (max-width: 900px) {
  #footer .footer_lesson div {
    width: calc(100% - 80px);
    float: none;
    padding: 20px 40px;
  }
}
#footer .footer_shop {
  background: url("images/shop_bg.png") no-repeat center;
  background-size: cover;
}
#footer .footer_shop div {
  display: block;
  width: 460px;
  float: left;
  padding: 10px 0 10px 30px;
}
@media screen and (max-width: 1000px) {
  #footer .footer_shop div {
    width: auto;
  }
}
@media screen and (max-width: 900px) {
  #footer .footer_shop div {
    width: calc(100% - 80px);
    float: none;
    padding: 20px 40px;
  }
}
#footer .footer_contact {
  background: url("images/contact_bg.png") no-repeat center;
  background-size: cover;
  width: 100%;
  color: #FFFFFF;
  padding: 50px 0;
  text-align: center;
}
#footer .footer_contact h3 {
  margin: 0;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.38px;
  position: relative;
  font-size: 52px;
}
#footer .footer_contact p {
  margin-bottom: 25px;
}

address {
  line-height: 40px;
  color: #656E58;
  background: #FFFFFF;
  width: 100%;
  text-align: center;
  font-size: .8em;
  font-style: normal;
}
@media screen and (max-width: 813px) {
  address {
    line-height: 50px;
  }
}

#pagetop {
  float: none;
  clear: both;
  width: 40px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
#pagetop img {
  width: 50px;
}

.contents_wrap {
  background: #F4F4E6;
}
.contents_wrap .page_title h2 {
  font-size: 52px;
  margin: 60px 0;
  text-align: center;
}
@media screen and (max-width: 813px) {
  .contents_wrap .page_title h2 {
    margin: 30px 0;
    font-size: 2.6em;
  }
}
.contents_wrap .page_title ul {
  display: block;
  margin: -30px 0 20px 0;
  text-align: center;
}
@media screen and (max-width: 813px) {
  .contents_wrap .page_title ul {
    margin: 10px 0;
  }
}
.contents_wrap .page_title ul li {
  display: inline-block;
  margin-bottom: 14px;
  line-height: 20px;
}
.contents_wrap .page_title ul a {
  color: #656E58;
  border-radius: 46px;
  border: solid 1px #656E58;
  padding: 1px 25px;
  margin-right: 8px;
  text-decoration: none;
}
.contents_wrap .page_title ul a:hover {
  background: #656E58;
  color: #FFFFFF;
}

.contents {
  background: #FFFFFF;
  width: calc(1200px - 140px);
  padding: 70px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 1300px) {
  .contents {
    width: 900px;
    padding: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .contents {
    width: calc(100% - 60px);
    padding: 50px 30px;
  }
}
@media screen and (max-width: 813px) {
  .contents {
    width: calc(100% - 60px);
    padding: 60px 30px;
    min-width: calc(100% - 40px);
    padding: 20px;
    margin-bottom: 60px;
  }
}

#pagenavi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid #656E58;
}

.pagenaviprev, .pagenavinext {
  width: calc(50% - 30px);
}
@media screen and (max-width: 813px) {
  .pagenaviprev, .pagenavinext {
    width: calc(50% - 20px);
  }
}

.pagenaviprev dt, .pagenavinext dt {
  font-family: Lato;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 10px;
}

.pagenaviprev dd, .pagenavinext dd {
  margin-inline-start: 0px;
  padding: 5px 0;
}
.pagenaviprev dd span, .pagenavinext dd span {
  display: block;
}

.pagenaviprev {
  border-right: 1px solid #656E58;
}

.pagenaviprev a, .pagenavinext a {
  color: #656E58;
  text-decoration: none;
}

.pagenaviprev {
  text-align: right;
  padding-right: 30px;
}
@media screen and (max-width: 813px) {
  .pagenaviprev {
    padding-right: 20px;
  }
}

.pagenavinext {
  text-align: left;
  padding-left: 30px;
}
@media screen and (max-width: 813px) {
  .pagenavinext {
    padding-left: 20px;
  }
}

.wp-pagenavi {
  position: relative;
  width: 100%;
  font-size: 16px;
  text-align: center;
}

.wp-pagenavi span.current {
  margin-right: 6px;
  border: 1px solid #656E58;
  background: #656E58;
  height: 40px;
  line-height: 40px;
  width: 40px;
  color: #FFF;
  font-weight: bold;
  display: inline-block;
  padding: 0;
  border: 1px solid #656E58 !important;
}

.wp-pagenavi .pages {
  margin-right: 20px;
  display: inline-block;
  border: none;
}

.pagenumber, .wp-pagenavi .page, .nextpostslink, .pagenaviiouspostslink, .wp-pagenavi .last, .wp-pagenavi .extend {
  margin: 3px;
}

.wp-pagenavi a {
  color: #656E58;
  border: 1px solid #656E58 !important;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-decoration: none;
  display: inline-block;
  padding: 0 !important;
}

.wp-pagenavi a.last {
  width: auto;
}

.wp-pagenavi a:hover {
  background: #656E58;
  color: #FFF;
}

.wp-pagenavi span {
  border: none !important;
}

.wp-pagenavi .last, .wp-pagenavi .first {
  border: none !important;
}

.wp-pagenavi a.last:hover {
  background: #FFF;
  color: #656E58;
  text-decoration: underline;
}

.nextpostslink .arrow, .previouspostslink .arrow {
  stroke: #656E58;
}

.nextpostslink, .previouspostslink {
  position: relative;
  font-size: 0;
  border: none;
}

a.nextpostslink, a.previouspostslink {
  border: none !important;
  width: 50px;
}

a.nextpostslink:hover, a:hover.previouspostslink {
  background: none;
  color: #FFF;
}

.nextpostslink .arrow {
  position: absolute;
  top: 10px;
  left: 5px;
}

.previouspostslink .arrow {
  transform: rotate(180deg) scale(1, -1);
  position: absolute;
  top: 10px;
  left: -5px;
}

.blog_pagenavi {
  margin-top: -20px;
  margin-bottom: 40px;
}

#blogdetail_wrap {
  margin: 0px auto 30px auto;
  position: relative;
  display: flex;
}
@media screen and (max-width: 813px) {
  #blogdetail_wrap {
    max-width: 100%;
    width: 100%;
    position: relative;
    flex-direction: column;
  }
}

.detail_main {
  width: 72%;
  max-width: 100%;
  padding-right: 3%;
}
@media screen and (max-width: 813px) {
  .detail_main {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }
}
.detail_main .tit_date_cat {
  display: block;
  margin-bottom: 30px;
}
.detail_main .tit_date_cat h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 15px 0 !important;
  padding: 0;
  border: none;
  background: #FFFFFF;
}
.detail_main .tit_date_cat h1 a {
  color: #656E58;
}
.detail_main .tit_date_cat .date {
  font-family: Lato;
  font-size: 18px;
  display: inline;
  margin-bottom: 0px;
}
.detail_main .tit_date_cat ul {
  display: inline;
  margin-left: 15px;
}
.detail_main .tit_date_cat .title_category li {
  display: inline-block;
}
.detail_main .tit_date_cat .title_category li a {
  font-size: 16px;
  color: #656E58;
  border-radius: 46px;
  border: solid 1px #656E58;
  padding: 1px 20px;
  margin-right: 8px;
  text-decoration: none;
}
.detail_main img {
  max-width: 100%;
  height: auto !important;
}
.detail_main strong {
  font-weight: 700;
}
.detail_main p {
  margin-bottom: 40px;
}
.detail_main h1 {
  font-size: 32px;
  font-weight: 700;
  padding: 16px 15px;
  border-top: solid 3px #656E58;
  margin-bottom: 15px;
  background: #F4F4E6;
}
.detail_main h2 {
  font-size: 28px;
  font-weight: 700;
  padding: 12px 15px;
  border-top: solid 3px #656E58;
  margin-bottom: 10px;
  background: #F4F4E6;
}
.detail_main h3 {
  font-size: 24px;
  font-weight: 700;
  padding: 10px 15px;
  border-top: solid 2px #656E58;
  margin-bottom: 10px;
  background: #F4F4E6;
}
.detail_main h4 {
  font-size: 22px;
  font-weight: 700;
  border-left: solid 4px #656E58;
  padding: 6px 0 6px 16px;
  margin-bottom: 15px;
  background: #F4F4E6;
}
.detail_main h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.detail_main h5:before {
  content: "ー";
  padding-right: 6px;
}
.detail_main h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.detail_main .column {
  background: #F4F4E6;
  padding: 30px;
  margin-bottom: 30px;
}
.detail_main .column p {
  margin-bottom: 20px;
}
.detail_main .column p:last-child {
  margin-bottom: 0px;
}
.detail_main ul, .detail_main ol {
  margin-bottom: 30px;
}
.detail_main ol li {
  list-style-type: decimal;
  line-height: 2.5em;
  list-style-position: inside;
}
.detail_main ul li {
  list-style: disc;
  line-height: 2em;
  list-style-position: inside;
}

.detail_main.information {
  width: 100%;
  padding-right: 0%;
}

.detail_main.index {
  width: 100%;
  padding-right: 0%;
}

.comment-respond {
  background: none;
}

.comment-reply-title, .comment-reply-title a {
  background: none !important;
  border-top: none !important;
  padding: 10px 5px !important;
  font-size: 18px !important;
  color: #656E58;
}

.logged-in-as, .form-submit {
  margin-bottom: 10px !important;
}

.comment-form-comment {
  margin-bottom: 10px !important;
}

.comment-notes {
  margin-bottom: 10px !important;
}

.comment-form-author, .comment-form-comment {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px !important;
}

.comment-form-author input[type=text], .comment-form-comment textarea {
  width: 100%;
  border: 1px solid #656E58;
  padding: 12px 10px;
  border-radius: 5px;
}

.children {
  margin-left: 20px;
}

.form-submit input[type=submit] {
  display: block;
  width: 250px;
  margin: 20px auto 60px;
  position: relative;
  padding: 20px 10px;
  border: 1px solid #656E58;
  font-size: 16px;
  text-align: center;
  background-color: #656E58;
  cursor: pointer;
  color: #FFFFFF;
}

.form-submit input[type=submit]:hover {
  background: #FFFFFF;
  color: #656E58;
}

.comment-list li {
  list-style: none !important;
}
.comment-list .says {
  display: none;
}
.comment-list .comment-author a, .comment-list .comment-author cite {
  color: #656E58 !important;
  text-decoration: none !important;
  font-style: normal !important;
  font-weight: 700;
}
.comment-list .comment-meta a {
  color: #656E58 !important;
  text-decoration: none !important;
  font-style: normal;
}
.comment-list p {
  margin-bottom: 10px;
}
.comment-list .reply {
  border: 1px solid #656E58;
  padding: 3px 10px;
  display: inline;
}
.comment-list .reply a {
  color: #656E58 !important;
  text-decoration: none !important;
}

.comment-body {
  border-bottom: solid 1px #F4F4E6;
  padding-bottom: 20px;
}

a.link {
  text-decoration: underline;
}

a.link:hover {
  text-decoration: none;
}

.wp-block-buttons a {
  text-decoration: none !important;
}

.wp-block-pullquote {
  border-top: 3px solid;
  border-bottom: 3px solid;
  margin-bottom: 30px;
  padding: 2em 0;
  text-align: center;
}

.wp-block-pullquote p, .wp-block-quote p {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wp-block-table table {
  margin-bottom: 30px;
}

.wp-block-table table th, .wp-block-table table td {
  border: 1px solid #656E58;
  padding: 10px !important;
}

.wp-block-quote {
  border-left: 0.25em solid #656E58;
  margin: 0 0 1.75em;
  padding-left: 1em;
}

.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.wp-block-gallery {
  margin-bottom: 30px;
}

.gb-block-notice {
  background: #e6e6e6 !important;
  padding: 30px !important;
  border-radius: 0 !important;
}

.gb-notice-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #656E58 !important;
  padding: 0 !important;
}

.gb-notice-title p {
  font-size: 20px;
  font-weight: 700 !important;
}

.gb-notice-text {
  background: #e6e6e6 !important;
  border: none !important;
  padding: 0 !important;
}

.gb-notice-text p {
  margin-bottom: 30px;
  font-size: 1em !important;
  line-height: 2;
}

.is-provider-youtube {
  margin-bottom: 30px;
}

.is-provider-youtube figcaption {
  margin-top: 0.5em;
  margin-bottom: 1em;
  color: #656E58;
  font-size: 16px;
  text-align: center;
}

.detail_category {
  display: inline-block;
  margin-bottom: 0 !important;
}

.detail_category li {
  font-size: 14px;
  border: 1px solid #656E58;
  padding: 4px 10px;
  margin: 0 12px 6px 0;
  display: inline-block;
  line-height: 1em !important;
}

.ispage .detail_category {
  padding-bottom: 20px;
}

.detail_category li a {
  text-decoration: none;
  color: #656E58;
}

.detail_side {
  width: 25%;
}
@media screen and (max-width: 813px) {
  .detail_side {
    width: 100%;
  }
}
.detail_side img {
  width: 100%;
  height: auto;
}

.entries_list, .categories_list {
  margin-bottom: 0px;
  background: rgba(244, 244, 230, 0.5);
  padding: 15px;
}
@media screen and (max-width: 813px) {
  .entries_list, .categories_list {
    padding: 25px;
  }
}

.entries_list h3, .categories_list h3 {
  font-family: Lato;
  font-size: 24px;
  font-weight: 400;
}

.entries_list dl {
  position: relative;
  margin: 14px 0;
}

.entries_list dt {
  margin-bottom: 10px;
  font-size: 14px;
}

.entries_list dd {
  margin-left: 0;
}

.entries_list ul {
  list-style: none;
}

.entries_list li {
  border-bottom: solid 1px #FFFFFF;
}

.entries_list a {
  text-decoration: none;
  color: #656E58;
}

.categories_list ul {
  margin: 10px 0 10px 0;
}

.categories_list ul li {
  display: inline-block;
  padding: 8px 0;
  margin-right: 10px;
}
.categories_list ul li a {
  font-size: 14px;
  xcolor: #656E58;
  border-radius: 46px;
  border: solid 1px #656E58;
  padding: 1px 20px;
  text-decoration: none;
}
.categories_list ul li a:hover {
  background: #656E58;
  color: #FFFFFF;
}

.categories_list a {
  text-decoration: none;
  color: #656E58;
}

.live_list h3 {
  font-weight: 700;
  font-size: 20px;
}
.live_list p {
  margin-bottom: 20px;
}
.live_list img {
  width: 260px !important;
  height: auto;
  margin-right: 20px;
}
.live_list .button {
  display: none;
}
@media screen and (max-width: 813px) {
  .live_list a {
    display: inline;
    border: none;
  }
  .live_list img {
    width: 100% !important;
    margin-right: 0px;
  }
  .live_list .button {
    display: flex;
    margin-bottom: 70px;
  }
}

.live_head img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.live_head h3 {
  font-weight: 700;
  font-size: 26px;
}

.live_detail .page_title {
  margin: 0 auto;
  width: calc(1200px);
}
@media screen and (max-width: 1300px) {
  .live_detail .page_title {
    width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  .live_detail .page_title {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 813px) {
  .live_detail .page_title {
    width: calc(100% - 60px);
  }
}
.live_detail .page_title .blog_contents {
  margin: 40px 0;
  text-align: center;
}
.live_detail .page_title h2 {
  font-size: 36px;
  margin: 0px 0;
}
@media screen and (max-width: 813px) {
  .live_detail .page_title h2 {
    margin: 20px 0;
    font-size: 2em;
  }
}
@media screen and (max-width: 813px) {
  .live_detail #blogdetail_wrap {
    flex-direction: column-reverse !important;
  }
}
.live_detail .detail_main {
  flex-basis: auto;
  width: 100%;
}
@media screen and (max-width: 813px) {
  .live_detail .detail_main {
    width: 100%;
  }
}
.live_detail .detail_side {
  flex-basis: 32%;
  min-width: 32%;
}
@media screen and (max-width: 813px) {
  .live_detail .detail_side {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-bottom: 30px;
  }
  .live_detail .detail_side img {
    width: 50%;
  }
}
.live_detail .map {
  display: inline-block;
  line-height: 24px;
  padding: 2px 10px;
  border: 1px solid #656E58;
  background: #656E58;
  color: #FFFFFF;
  font-size: 14px;
  text-decoration: none;
}
.live_detail .map:hover {
  background: #FFFFFF;
  color: #656E58;
}

.discography_list {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(auto);
}
@media screen and (max-width: 813px) {
  .discography_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.discography_list li {
  height: auto;
  display: block;
  margin: 0px 20px 20px 20px;
  text-align: center;
}
@media screen and (max-width: 813px) {
  .discography_list li {
    margin: 0px 10px 20px 10px;
  }
}
.discography_list li a {
  text-decoration: none;
  color: #656E58;
}
.discography_list li img {
  width: 100%;
  height: auto;
  border: #F4F4E6 1px solid;
}

.discography_tit {
  display: block;
  border-bottom: 2px #F4F4E6 solid;
  margin-bottom: 30px;
}
.discography_tit h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 15px 0 !important;
  padding: 0;
  border: none;
  background: #FFFFFF;
}

.discography_detail .detail_side {
  flex-basis: 40%;
  min-width: 40%;
}
@media screen and (max-width: 813px) {
  .discography_detail .detail_side {
    width: 100%;
  }
}
.discography_detail .detail_side img {
  border: #F4F4E6 1px solid;
}
@media screen and (max-width: 813px) {
  .discography_detail .detail_side img {
    width: 100%;
  }
}

.lesson_head {
  margin-bottom: 50px;
}
@media screen and (max-width: 813px) {
  .lesson_head {
    margin-bottom: 30px;
  }
}
.lesson_head a:first-child {
  margin-right: 3%;
}
@media screen and (max-width: 813px) {
  .lesson_head a:first-child {
    margin-right: 0%;
    margin-bottom: 20px;
  }
}
.lesson_head a:hover {
  opacity: 0.75;
}
.lesson_head a {
  display: inline-block;
  width: 48%;
}
@media screen and (max-width: 813px) {
  .lesson_head a {
    display: block;
    width: 100%;
  }
}
.lesson_head a img {
  width: 100%;
}

.lesson_contents {
  margin-bottom: 80px;
}
.lesson_contents h3 {
  position: relative;
  padding: 20px 20px 20px 40px;
  background: #F4F4E6;
  font-size: 26px;
  margin-bottom: 25px;
}
.lesson_contents h3::before {
  content: "";
  position: absolute;
  background: #656E58;
  width: 5px;
  height: 60%;
  top: 25%;
  left: 16px;
}
.lesson_contents h4 {
  font-size: 20px;
}
.lesson_contents .button {
  max-width: 380px;
}

.lesson_contents:last-child {
  margin-bottom: 0px;
}

.lesson_info01 {
  clear: both;
  float: none;
  margin-bottom: 20px;
}
.lesson_info01 img {
  float: right;
  margin: 0 0 40px 40px;
  width: 370px;
}
@media screen and (max-width: 1000px) {
  .lesson_info01 img {
    margin: 0 0 20px 20px;
    width: 35%;
  }
}
@media screen and (max-width: 813px) {
  .lesson_info01 img {
    float: none;
    margin: 0 0 20px 0px;
    width: 100%;
  }
}

.lesson_info02 {
  clear: both;
  float: none;
  margin-bottom: 20px;
}
.lesson_info02 img {
  float: left;
  margin: 0 40px 40px 0;
  width: 370px;
}
@media screen and (max-width: 1000px) {
  .lesson_info02 img {
    margin: 0 20px 20px 0;
    width: 35%;
  }
}
@media screen and (max-width: 813px) {
  .lesson_info02 img {
    float: none;
    margin: 0 0 20px 0px;
    width: 100%;
  }
}

#info01, #info02 {
  padding-top: 100px;
  margin-top: 100px;
  height: 100px;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

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

dt, dd {
  margin-left: 0;
}

.table {
  margin: 20px auto 40px  auto;
  max-width: 80%;
}
@media screen and (max-width: 813px) {
  .table {
    max-width: 100%;
  }
}
.table th {
  border: 1px solid #656E58;
  background: #F4F4E6;
  padding: 10px 25px;
  text-align: center;
  width: 120px;
}
@media screen and (max-width: 813px) {
  .table th {
    padding: 10px 25px;
    display: block;
    width: calc(100% - 50px);
    font-size: 1.2em;
    text-align: left;
    margin-top: -1px;
  }
}
.table td {
  border: 1px solid #656E58;
  background: #FFFFFF;
  padding: 10px 20px;
}
@media screen and (max-width: 813px) {
  .table td {
    padding: 15px 25px;
    display: block;
    width: calc(100% - 50px);
    margin-top: -1px;
  }
}

.profile_list {
  margin-bottom: 50px;
}
.profile_list .artist {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #C1C5BB;
  margin-bottom: 10px;
}
@media screen and (max-width: 813px) {
  .profile_list .artist {
    display: inline-block;
    border-bottom: 2px solid #C1C5BB;
  }
}
.profile_list .artist:last-of-type {
  border-bottom: 1px solid #C1C5BB;
}
@media screen and (max-width: 813px) {
  .profile_list .artist:last-of-type {
    border-bottom: 2px solid #C1C5BB;
  }
}
.profile_list h4 {
  width: 23%;
}
@media screen and (max-width: 813px) {
  .profile_list h4 {
    width: 100%;
  }
}
.profile_list .musiclist {
  width: 77%;
  margin-bottom: 5px;
}
@media screen and (max-width: 813px) {
  .profile_list .musiclist {
    width: 100%;
  }
}
.profile_list dl {
  display: flex;
  margin: 10px 0;
}
.profile_list dl dt {
  width: 7em;
  line-height: 1.6;
  font-weight: 700;
}
.profile_list dl dd {
  width: 100%;
  line-height: 1.6;
}

.profile_list:last-of-type {
  margin-bottom: 0px;
}

.wpforms-confirmation-container-full {
  background: none !important;
  border: none !important;
  text-align: center;
}

.wpforms-field-label {
  color: #656E58 !important;
}

.contact_submit {
  background: #656E58 !important;
  padding: 10px 80px !important;
  font-size: 18px !important;
  text-align: center !important;
  margin: 0 auto !important;
  display: block;
}

.contact {
  width: calc(900px);
}
@media screen and (max-width: 1000px) {
  .contact {
    width: calc(100% - 60px);
    padding: 50px 30px;
  }
}

.talk_h2 {
  font-size: 34px;
}
@media screen and (max-width: 900px) {
  .talk_h2 {
    font-size: 42px;
  }
}

.talk_group {
  background: #F4F4E6;
}

.talk_area {
  background: #FFFFFF;
  padding: 20px;
}
