@charset "UTF-8";

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

body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-Serif;
    font-size: 14px;
    color: #231815;
    line-height: 1.5em;
}

a {
    text-decoration: none;
}

img {
   max-width: 100%;
}

/* header */

#wrapper {
    background: #231815;
}

#wrapper header:after {
    content: "";
    clear: both;
    display: block;
}

#wrapper header ol {
    text-align: center;
}

#wrapper header ol li {
    display: inline-block;
}

#wrapper header ol li img{
    height: 11px;
    width: 11px;
}

#wrapper header ol li:first-child {
    margin-left: 0;
}

#wrapper header ol li:last-child {
    margin-right: 0;
}

.group_name{
    display: block;
    width: 115px;
}

/* menu */

#menu-cb {
    display: none;
}

#menubar ul li {
    font-family: 'Noto Sans JP';
    font-weight: 700;
    font-size: 110%;
    letter-spacing: 0.1em;
}

#menubar ul li a{
    color: #ffffff;
}

#menubar ul li span {
    font-family: 'Noto Sans JP';
    font-weight: 500;
    font-size: 80%;
    letter-spacing: 0em;
}

/* title */

.ttl_area aside {
    padding: 20px 0;
}

/* Facebook embed */
.UtaiTrip_bnnr figcaption{
    color: #19448e;
    font-size: 90%;
    text-align: center;
}

/* article */

section {
    border-top: solid 1px #231815;
}

section h2:before {
    display: block;
    content: "";
    border-top: solid 10px #231815;
    margin-left: -15px;
    margin-top: -10px;
    margin-bottom: 5px;
}

section h3 {
    margin-bottom: 2em;
}

section h4 {
    margin-bottom: 2em;
}

section h5 {
    background: url(../images/list.svg) no-repeat;
    padding-left: 20px;
}

section hr {
    background: url(../images/line.svg) no-repeat;
    border: none;
    height: 4px;
    margin-bottom: 50px;
}

section a {
    color: #000000;
}

section a:hover{
    color: #666666;
}

/* about */
.about h3{
    background: url(../images/lesson.svg) no-repeat;
    margin-bottom: 0.5em;
    padding-left: 15px;
}

/* lesson */

.lesson p {
    margin-bottom: 0.5em;
    padding-top: 1em;
}

.lesson h3{
    background: url(../images/lesson.svg) no-repeat;
    margin-bottom: 0.5em;
    padding-left: 15px;
}

.lesson dl{
    margin-bottom: 1em;
}

.lesson ul {
    margin-left: 2em;
}

.lesson ul li{
    display: inline-block;
}

.lesson ul li:before{
    content: "・";
}

.lesson_menu{
    margin-left: 1em;
}

.notes{
    padding-bottom: 2em;
}

/* noh */

.noh ul li {
    list-style: none;
}

.noh ul li figcaption {
    font-size: 85%;
}

/* profile */

.profile .content ul {
    margin-bottom: 2em;
}

.profile .content ul li {
    list-style: none;
}

.profile .content dl{
    margin-bottom: 2em;
}

/* archive */
.flyer li {
    list-style: none;
}

.access {
    margin-left: 1.5em;
}

.access li {
    list-style-image: url(../images/item.svg);
    margin-bottom: 1em;
}

.info {
    margin-bottom: 30px;
}

.info dd {
    margin-bottom: 10px;
}

summary {
    cursor: pointer;
    padding-bottom: 1em;
    text-indent: -1em;
}

summary::-webkit-details-marker {
  background: url(../images/lesson.svg) no-repeat top/4px;
  color: transparent;
}

/* footer */
footer {
    background: #231815;
    color: #ffffff;
    font-size: 90%;
    padding: 1em 0;
    text-align: center;
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #999999;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ---------- iPhone ---------- */
@media(max-width:567px) {

/* header */
    #wrapper header {
        height: 90px;
    }

    #wrapper header ol {
        padding-top:10px;
        padding-bottom: 10px;
        position: absolute;
        width: 100%;
    }

    #wrapper header ol li {
        margin: 0 2.5%;
    }

    #wrapper header ol li:nth-child(5),
    #wrapper header ol li:nth-child(7){
        margin-right: 5%;
    }

    .group_name {
        padding-top: 45px;
        padding-left: 1em;
        position: absolute;
    }

/* menu */
    #menubar {
        background-color: #231815;
        box-sizing: border-box;
        height: 100%;
        position: fixed;
        left: -200px;
        transition: transform 0.3s linear 0s;
        width: 200px;
        z-index: 1000;
    }

    #menu-icon {
        border: 1px solid #ffffff;
        border-radius: 3px;
        color: #ffffff;
        cursor: pointer;
        display: block;
        position: absolute;
        right: 10px;
        top: 50px;
        font-size: 90%;
        height: 20px;
        text-align: center;
        width: 60px;
    }

    #menu-background {
        background: #000000;
        display: block;
        height: 100%;
        opacity: 0;
        position: fixed;
        right: 0;
        transition: all 0.3s linear 0s;
        width: 100%;
        z-index: -1;
    }

    #menu-cb:checked ~ #menubar {
        transform: translate(200px);
    }

    #menu-cb:checked ~ #menu-background {
        opacity: 0.5;
        z-index: 999;
    }

    #drawer-menu nav ul {
        border-top: solid 1px #CCCCCC;
    }

    #drawer-menu nav ul li a {
        border-bottom: solid 1px #CCCCCC;
        display: block;
        padding: 1.5em 1em;
    }

    #menubar ul li a:hover {
        background: #fffbda;
        color: #231815;
    }

    #drawer-menu nav ul li span {
        margin-left: 1.5em;
    }

/* title */
    .site_ttl {
        position: absolute;
    }

    .site_ttl img {
        margin-left: 28%;
        margin-top: 2%;
        width: 50%;
    }

    .ttl_area aside {
        padding-left:1em;
        padding-left: 1em;
    }

/* Facebook embed */
    .fb-container,
    #fb-root{
      width: 100%;
    }

    .fb-page,
    .fb-page span,
    .fb-page iframe,
    .fb-page blockquote{
      width: 330px !important;
      max-height: 600px !important;
    }

    .UtaiTrip_bnnr{
        padding-top: 2em;
        margin-bottom: 2em;
    }

/* article */
    section h2:before {
        width: 120px;
    }

    section h2 {
        margin-bottom: 2em;
        padding-top:10px;
        padding-left: 1em;
    }

    .about h2 img{
        width: 260px;
    }

    .lesson h2 img,
    .profile h2 img,
    .noh h2 img,
    .archive h2 img{
        width: 120px;
    }

    .content {
        padding: 0 1em;
        margin-bottom: 3em;
    }

    .about p,
    .profile p,
    .noh p,
    .archive p{
        margin-bottom: 2em;
    }

/* about */
    .about figure{
        margin-left: 1em;
        margin-bottom: 1em;
        width: 110px;
    }

/* noh */
    .noh ul {
        margin: 0 auto 0 auto;
        width: 236px;
    }

    .noh ul li {
        margin-bottom: 1em;
    }

/* profile */
    .profile figure ul {
        display: table;
        margin: 0 auto 2em auto;
        width: 90%;
        max-width: 324px;
    }

    .profile figure li {
        display: table-cell;
    }

    .profile figure img {
        max-width: 100%;
    }

/* archive */
    .flyer {
        margin-bottom: 3em;
    }

    .flyer li {
        margin-bottom: 1em;
    }

    .flyer figcaption {
        font-size: 85%;
    }

    .stage{
        text-align: center;
    }

    .stage img {
        margin: 5px;
    }
}

/* ---------- iPhone landscape / iPad ---------- */
@media(min-width: 568px) and (max-width:1023px){

/* header */
    #wrapper header {
        height: 100px;
    }

    #wrapper header ol {
        padding-top:10px;
        padding-bottom: 20px;
    }

    #wrapper header ol li {
        margin: 0 3.8%;
    }

    #wrapper header ol li:nth-child(5),
    #wrapper header ol li:nth-child(7){
        margin-right: 6%;
    }

    .group_name {
        float: left;
        padding-left: 1em;
        width: 100px;
    }

/* menu */
    #menu-icon {
        display: none;
    }

    #drawer-menu {
        float: right;
        text-align: right;
        padding-right: 1em;
    }

@media(min-width: 415px) and (max-width:666px){
    #drawer-menu{
        font-size: 90%;
        width: 75%;
    }
}

@media(min-width: 667px) and (max-width:1023px){
    #drawer-menu{
        font-size: 90%;
        width: 80%;
    }
}

    #drawer-menu li {
        display: inline-block;
        text-align: left;
    }

@media(min-width: 568px) and (max-width:666px){
    #drawer-menu li {
        margin-left: 3%;
    }
}

@media(min-width: 667px) and (max-width:1023px){
    #drawer-menu li {
        margin-left: 5.5%;
    }
}

    #drawer-menu li a {
        display: block;
    }

    #drawer-menu li a:hover {
        background: #231815 !important;
        color: #fffbda;
    }

    #drawer-menu li span{
        display: block;
    }

/* title */
    .site_ttl {
        position: absolute;
    }

    .ttl_area aside {
        padding-left:1em;
    }

@media(min-width: 568px) and (max-width:666px){
    .site_ttl img {
        margin-left: 40%;
        margin-top: 3%;
        width: 60%;
    }
}

@media(min-width: 667px) and (max-width:735px){
    .site_ttl img {
        margin-left: 48%;
        margin-top: 5%;
        width: 75%;
    }
}

@media(min-width: 736px) and (max-width:1023px){
    .site_ttl img {
        margin-left: 55%;
        margin-top: 4%;
        width: 80%;
    }
}

/* Facebook embed */
    .fb-container{
        max-width: 500px !important;
    }

    .fb-page,
    .fb-page span,
    .fb-page iframe,
    .fb-page blockquote{
      width: 500px !important;
      max-height: 600px !important;
    }

    .UtaiTrip_bnnr{
        padding-top: 2em;
        padding-bottom: 2em;
        padding-left:1em;
        width: 500px;
    }


/* article */
    section h2:before {
        width: 140px;
    }

    section h2 {
        margin-bottom: 2em;
        padding-top:10px;
        padding-left: 1em;
    }

    .about h2 img{
        width: 280px;
    }

    .lesson h2 img,
    .profile h2 img,
    .noh h2 img,
    .archive h2 img{
        width: 140px;
    }

    .content {
        padding: 0 1em;
        margin-bottom: 3em;
    }

    .about p,
    .profile p,
    .noh p,
    .archive p{
        margin-bottom: 2em;
    }

/* about */
    .about figure {
        margin-left: 1em;
        margin-bottom: 1em;
        width: 120px;
    }

/* noh */
    .noh ul {
        margin: 0 auto 0 auto;
        width: 520px;
    }

    .noh ul li {
        display: inline-block;
        margin-bottom: 1em;
    }

    .landscape li {
        margin-right: 1em;
    }

    .portrait li:first-child {
        margin-right: 90px;
    }

/* profile */
    .profile {
        display: table;
    }

    .prof_title {
        display: table-cell;
        width: 190px;
    }

    .profile figure ul {
        padding-left: 1em;
    }

    .profile figure li {
        list-style: none;
        margin-bottom: 1em;
    }

    .profile .content {
        display: table-cell;
        padding-top: 3em;
        vertical-align: top;
    }

/* archive */
    .flyer {
        display: table;
        margin-bottom: 3em;
    }

    .flyer li {
        display: table-cell;
        list-style: none;
        margin-bottom: 1em;
    }

    .flyer li img {
        width: 95%;
    }

    .flyer figcaption {
        font-size: 85%;
    }

    .stage {
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 390px;
    }

    .stage img {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .side-r {
        text-align: right;
    }
    
    .side-c{
        text-align: center;
    }
}

/* ---------- PC ---------- */
@media(min-width:1024px){

/* header */
    #wrapper header {
        margin: 0 auto;
        width: 960px;
    }

    #wrapper header ol {
        padding-top:20px;
        padding-bottom: 20px;
    }

    #wrapper header ol li {
        margin: 0 40px;
    }

    #wrapper header ol li:nth-child(5),
    #wrapper header ol li:nth-child(7){
        margin-right: 60px;
    }

/* menu */
    #menu-icon{
        display: none;
    }

    #menubar ul {
        float: right;
        text-align: right;
        width: 750px;
    }

    #menubar ul li {
        display: inline-block;
        font-size: 120%;
        font-weight: bold;
        margin-right: 65px;
        text-align: left;
    }

    #menubar ul li:last-child{
        margin-right: 0;
    }

    #menubar ul li span {
        display: block;
        margin-top:4px;
    }

    #menubar li a {
        display: block;
    }

    #menubar li a:hover {
        background: #231815 !important;
        color: #fffbda;
    }

    .group_name {
        float: left;
        padding-top: 10px;
        padding-left: 25px;
        padding-right: 20px;
        padding-bottom: 20px;
        border-right: solid 1px #ffffff;
    }

/* title */
    .ttl_area {
        border-right: solid 1px #231815;
        border-left: solid 1px #231815;
        margin: 0 auto;
        width: 960px;
    }

    .site_ttl {
        position: absolute;
    }

    .site_ttl img {
        margin-left: 175px;
        margin-top: 20px;
        width: 255px;
    }

    .ttl_area aside {
        margin-left: 195px;
    }

/* Facebook embed */

    .fb-container{
        width: 500px !important;
    }

    .UtaiTrip_bnnr{
        margin-bottom: 2em;
        padding-top: 2em;
        width: 500px;
    }

/* article */
    article {
        width: 962px;
        margin: 0 auto;
    }

    section {
        border-right: solid 1px #231815;
        border-left: solid 1px #231815;
    }

    section h2:before {
        width: 150px;
    }

    section h2 {
        margin-bottom: 2em;
        padding-top:10px;
        padding-left:15px;
    }

    .about h2 img{
        width: 280px;
    }

    .lesson h2 img,
    .profile h2 img,
    .noh h2 img,
    .archive h2 img{
        width: 150px;
    }

    .content {
        padding: 0 1em;
        padding-bottom: 3em;
    }

    .about p,
    .profile p,
    .noh p,
    .archive p{
        margin-bottom: 2em;
    }

    .noh h2,
    .lesson h2,
    .archive h2 {
        display: table-cell;
    }

    .about figure{
        display: table-cell;
    }

    .content {
        display: table-cell;
        padding-top: 35px;
        padding-bottom: 3em;
        padding-left: 30px;
        vertical-align: top;
    }

    .event p,
    .profile p,
    .noh p {
        margin-bottom: 2em;
    }

/* about */
    .about_body{
        display: table;
    }

    .about figure{
        padding-left:20px;
        padding-right: 15px;
        vertical-align: top;
        width: 130px;
    }

    .about .content{
        padding-top: 0;
        vertical-align: top;
    }

/* noh */
    .noh {
        display: table;
        width: 960px;
    }

    .noh ul li {
        display: inline-block;
        margin-bottom: 1em;
    }

    .landscape li {
        margin-right: 1em;
    }

    .portrait li:first-child {
        margin-right: 85px;
    }

/* profile */
    .profile {
        display: table;
        width: 960px;
    }

    .prof_title {
        display: table-cell;
        padding-bottom: 3em;
    }

    .profile figure ul {
        padding-left: 20px;
    }

    .profile figure li {
        list-style: none;
        margin-bottom: 1em;
    }


/* archive */
    .archive {
        display: table;
        width: 960px;
    }

    .flyer {
        margin-bottom: 3em;
    }

    .flyer li {
        display: inline-block;
        list-style: none;
    }

    .flyer li:first-child {
        margin-right: 1em;
    }

    .flyer figcaption {
        font-size: 80%;
    }

    .stage {
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
        width: 390px;
    }
    
    .stage img {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .side-r {
        text-align: right;
    }
    
    .side-c{
        text-align: center;
    }
}