@charset "UTF-8";
/* ---------- reset --------- */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800);
html, body {
  margin: 0;
  padding: 0;
  font-style: normal;
}

div, p, table, tbody, thead, th, tr, td, form, fieldset, input, textarea, blockquote, header, footer, nav, article, section, dl, dt, dd, ul, ol, li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.0;
  font-style: normal;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul, li {
  list-style: none;
}

caption, th {
  text-align: left;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

fieldset, img {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

button, textarea, select, input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ---------- font --------- */
html {
  font-family: 'Open Sans',"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-size: 62.5%;
  line-height: 1.8;
  font-feature-settings: "palt";
}

body {
  font-size: 1.4rem;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* ---------- common --------- */
.sp {
  display: block !important;
}

.pc {
  display: none !important;
}

.inner_wrapper {
  display: block;
  position: relative;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
a:focus {
  outline: none;
}

a, input[type=radio], input[type=checkbox], input[type=submit], button, select {
  cursor: pointer;
}

img {
  width: 100%;
}

.google-map-box, .youtube-box {
  position: relative;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
}

.google-map-box iframe, .youtube-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }

  .pc {
    display: block !important;
  }

  .inner_wrapper {
    margin: 0 auto;
    width: 90%;
  }
}
@media screen and (min-width: 1100px) {
  .inner_wrapper {
    width: 1024px;
  }
}
/* ----------- flex-box setting ----------- */
.row {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.row-wrap {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-space {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.row-space-wrap {
  -js-display: flex;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.row > div, .row > li,
.row-space > div, .row-space > li,
.row-wrap > div, .row-wrap > li,
.row-space-wrap > div, .row-space-wrap > li {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .row-sp {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
  }

  .row-wrap-sp {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .row-space-sp {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .row-space-wrap-sp {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .row-sp > div, .row-sp > li,
  .row-wrap-sp > div, .row-wrap-sp > li,
  .row-space-sp > div, .row-space-sp > li,
  .row-space-wrap-sp > div, .row-space-wrap-sp > li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
section.post-box .post-body img.alignnone {
      width: 100%;
}
section.post-box .post-body img.alignleft {
      width: 100%;
}
pre, xmp, plaintext, listing {
	white-space: pre-line;
}
}
@media screen and (min-width: 768px) {
  .column-space-pc {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .row-pc {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
  }

  .row-space-pc {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .row-space-wrap-pc {
    -js-display: flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .row-pc > div, .row-pc > li,
  .row-space-pc > div, .row-space-pc > li,
  .row-space-wrap-pc > div, .row-space-wrap-pc > li {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
/* ---------- background --------- */
body {
  background: url(../../img/bk-home_sp.png) no-repeat center 120px;
  background-size: contain;
}

#wrap {
  background: url(../../img/bk-wrap.png);
}

.home #wrap {
  background: url(../../img/bk-wrap.png);
}

@media screen and (min-width: 768px) {
  body {
    background: url(../../img/bk_pc2.png) no-repeat center 140px;
    background-size: contain;
  }

  body.home {
    background: url(../../img/bk-home_pc2.png) no-repeat center 140px;
    background-size: contain;
  }
}
@media screen and (min-width: 1500px) {
  body {
    background: url(../../img/bk_pc.png) no-repeat center 140px;
    background-size: auto;
  }

  body.home {
    background: url(../../img/bk-home_pc.png) no-repeat center 140px;
    background-size: auto;
  }
}
/* ----------- layout ----------- */
/* header + footer */
header {
  position: fixed;
  z-index: 102;
  width: 100%;
  height: 70px;
  background: #FFF;
  display: block;
  -moz-box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
}
header h1 img {
  width: auto;
  height: 60px;
  margin: 10px 0 0 10px;
}

.navi {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  padding: 90px 20px 100px;
  position: relative;
}
.navi ul {
  padding-bottom: 30px;
}
.navi li {
  background: url(../../img/line.png) repeat-x bottom;
}
.navi li a {
  font-weight: bold;
  display: block;
  line-height: 52px;
  height: 52px;
  width: 100%;
  background: url(../../img/arrow-nav_sp.png) no-repeat right center;
  background-size: 8px 15px;
}
.navi .btn a img {
  width: 53%;
  display: block;
  margin: 0;
}
.navi .i img {
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 47%;
}

footer {
  background: #1a1a1a;
  color: #FFF;
}
footer ul {
  padding: 25px 25px 19px;
}
footer ul li {
  margin: 0 15px 6px 0;
  display: inline-block;
}
footer ul li a {
  color: #FFF;
  line-height: 1.0;
}
footer .copy {
  border-top: #424242 solid 1px;
  padding: 15px 25px;
}
footer .copy h1 {
  font-size: 1.8rem;
}
footer .copy span {
  font-size: 1.2rem;
}

.pagetop {
  position: fixed;
  bottom: 130px;
  right: 20px;
  cursor: pointer;
}
.pagetop img {
  width: 48px;
  height: auto;
}

@media screen and (min-width: 768px) {
  header {
    position: static;
    height: auto;
    -moz-box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.2);
  }
  header .row-space-pc {
    -webkit-align-items: center;
    align-items: center;
  }
  header h1 {
    width: 32%;
  }
  header h1 img {
    width: 100%;
    height: auto;
    margin: 3px 0 0 0;
  }
  header nav {
    background: url(../../img/line.png) repeat-x top center;
  }
  header nav ul {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: #000 solid 4px;
    text-align: center;
  }
  header nav li {
    display: inline-block;
    padding: 0 1.8%;
  }
  header nav li a {
    margin: 0;
    line-height: 60px;
    height: 60px;
    font-weight: bold;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }
  header nav li a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    border-bottom: #f9eb21 solid 6px;
  }

  .btn-apply a {
    background: url(../../img/btn-apply_pc.png) no-repeat top left;
    background-size: 160px 104px;
    width: 160px;
    height: 48px;
    display: block;
  }
  .btn-apply a:hover {
    background: url(../../img/btn-apply_pc.png) no-repeat bottom left;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  .home header nav li:nth-child(1) a {
    border-bottom: #f9eb21 solid 6px;
  }

  footer {
    padding: 20px 0 0;
  }
  footer h1 {
    width: 21%;
  }
  footer h1 img {
    width: 100%;
  }
  footer .row-space-pc {
    -webkit-align-items: center;
    align-items: center;
  }
  footer ul {
    padding: 0;
    flex: 1;
    text-align: right;
  }
  footer ul li {
    padding: 0 0 0 2%;
    margin: 0;
    display: inline-block;
  }
  footer ul li a {
    font-size: 1.1rem;
  }
  footer .copy {
    padding: 15px 0;
    text-align: center;
  }
  footer .copy span {
    font-size: 1.0rem;
  }

  .pagetop {
    bottom: 120px;
    right: 5%;
  }
  .pagetop img {
    width: 66px;
  }
}
@media screen and (min-width: 960px) {
  header h1 {
    width: auto;
  }
  header nav li {
    padding: 0 2.2%;
  }

  .btn-apply a {
    background-size: auto;
    width: 233px;
    height: 70px;
  }

  footer h1 {
    width: auto;
  }
  footer ul li {
    padding: 0 0 0 3%;
  }
  footer ul li a {
    font-size: 1.3rem;
  }

  .pagetop {
    right: 8%;
  }
}
@media screen and (min-width: 1100px) {
  header nav li {
    padding: 0 2.5%;
  }

  .pagetop {
    right: 10%;
  }
}
/* contents */
#container {
  padding: 100px 0 0;
}

.num {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background: #f9eb21;
  padding: 0 15px;
  line-height: 26px;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* index */
#top-header {
  padding: 0;
  position: relative;
  overflow: visible;
}
#top-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 20px 15px;
}
#top-header h1 span {
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
}
#top-header .entry-list-box {
  position: relative;
}
#top-header ul.entry-tab-nav {
  padding: 0 20px;
  letter-spacing: -.4em;
}
#top-header ul.entry-tab-nav li {
  display: inline-block;
  letter-spacing: normal;
  width: 100%;
}
#top-header ul.entry-tab-nav li a {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
  line-height: 32px;
  -moz-border-radius-topleft: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-topright: 6px;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
}
#top-header ul.entry-tab-nav li:nth-child(1) a {
  background: #f9eb21;
  color: #000;
}
#top-header ul.entry-tab-nav li:nth-child(2) a {
  background: #858585;
}
#top-header ul.entry-tab-nav li:nth-child(3) a {
  background: #666666;
}
#top-header ul.entry-tab-nav li:nth-child(4) a {
  background: #444444;
}
#top-header ul.entry-tab-nav li:nth-child(5) a {
  background: #222222;
}
#top-header .entry-tab-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 10px 20px 20px;
  margin: 0 20px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius-bottomleft: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
#top-header .entry-tab-box ul {
  max-height: 260px;
  display: block;
  overflow-y: scroll;
  padding-right: 10px;
}
#top-header .entry-tab-box li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: url(../../img/line.png) repeat-x bottom;
}
#top-header .entry-tab-box li:last-child {
  background: transparent;
  margin-bottom: 0;
  padding-bottom: 0;
}
#top-header .entry-tab-box li .pic {
  width: 32%;
}
#top-header .entry-tab-box li .pic img {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
#top-header .entry-tab-box li .txt {
  flex: 1;
  padding-left: 15px;
}
#top-header .entry-tab-box li .txt .author {
  padding-bottom: 10px;
}
#top-header .entry-tab-box li .txt .avatar {
  width: 25%;
}
#top-header .entry-tab-box li .txt .author-name {
  padding-left: 10px;
  font-size: 1.3rem;
}
#top-header .entry-tab-box li .txt h2 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal;
}
#top-header .entry-tab-box li .txt a {
  text-decoration: underline;
}
#top-header .btn {
  width: 45%;
  margin: 40px 20px;
}
#top-header .i {
  position: absolute;
  bottom: -54px;
  right: 0;
  width: 190px;
  z-index: 10;
}

.next-event-box h2 {
  background: #000;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 40px;
  text-align: center;
}
.next-event-box .next-event {
  background: #efefef;
  padding: 20px;
  position: relative;
}
.next-event-box .next-event .date {
  padding: 0 0 10px;
  -webkit-align-items: center;
  align-items: center;
}
.next-event-box .next-event .date span {
  line-height: 1.0;
}
.next-event-box .next-event .date .num {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #f9eb21;
  font-size: 1.4rem;
  padding: 15px;
  font-weight: bold;
}
.next-event-box .next-event .date .wareki {
  font-size: 1.6rem;
  font-weight: bold;
  width: 15%;
}
.next-event-box .next-event .date .day {
  font-size: 5.0rem;
  font-weight: 800;
  text-align: center;
}
.next-event-box .next-event .date .youbi {
  font-size: 2.0rem;
  font-weight: 800;
  color: #b50000;
}
.next-event-box .next-event .date .time {
  color: #000;
  font-size: 1.4rem;
  font-weight: 600;
}
.next-event-box .next-event .theme span.tt {
  flex: 1;
}

.bk-wt {
  background: #FFF;
  padding: 40px 0 0;
}

.bk-gray {
  background: #e9e9e9;
  padding: 40px 0 0;
}

.top-content-box {
  padding: 0 25px 40px;
}
.top-content-box h1 {
  border-bottom: #000 solid 2px;
  padding: 0 0 10px;
  margin: 0 0 20px;
  font-size: 2.2rem;
  font-weight: 800;
  position: relative;
}
.top-content-box h1 span.small {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  margin: 5px 0 0;
}
.top-content-box h1 .more {
  position: absolute;
  right: 0;
  top: 0;
}
.top-content-box h1 .more a {
  font-size: 1.4rem;
}
.top-content-box h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.top-content-box .date {
  color: #515151;
  font-size: 1.2rem;
}
.top-content-box .youtube img {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}
.top-content-box .youtube .youtube-box {
  margin-bottom: 10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.top-content-box#top-schedule li {
  background: url(../../img/line.png) repeat-x bottom;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.top-content-box#top-schedule li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  background: transparent;
}
.top-content-box ul.niconico-slider .pic img,
.top-content-box ul.works-slider .pic img,
.top-content-box ul.instructor-slider .pic img {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  margin-bottom: 10px;
}
.top-content-box ul.niconico-slider .pic .youtube-box,
.top-content-box ul.works-slider .pic .youtube-box,
.top-content-box ul.instructor-slider .pic .youtube-box {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.top-content-box ul.instructor-slider li {
  text-align: center;
}
.top-content-box .banner-box1 .pic img {
  margin-bottom: 15px;
}
.top-content-box .banner-box2 .pic {
  width: 48%;
}
.top-content-box .banner-box2 .pic img {
  margin-bottom: 15px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.cat.catname1 {
  color: #f4901e;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: #f4901e solid 4px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  #container {
    padding: 60px 0 0;
  }

  #top-header {
    height: 560px;
  }
  #top-header h1 {
    margin: 0 0 15px;
  }
  #top-header .entry-list-box {
    width: 74%;
    height: auto;
  }
  #top-header ul.entry-tab-nav {
    padding: 0 20px 0 0;
  }
  #top-header ul.entry-tab-nav li {
    width: 48px;
    margin-left: -8px;
    display: inline-block;
    position: relative;
  }
  #top-header ul.entry-tab-nav li a {
    line-height: 40px;
  }
  #top-header ul.entry-tab-nav li a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  #top-header ul.entry-tab-nav li:nth-child(1) {
    z-index: 5;
  }
  #top-header ul.entry-tab-nav li:nth-child(2) {
    z-index: 4;
  }
  #top-header ul.entry-tab-nav li:nth-child(3) {
    z-index: 3;
  }
  #top-header ul.entry-tab-nav li:nth-child(4) {
    z-index: 2;
  }
  #top-header ul.entry-tab-nav li:nth-child(5) {
    z-index: 1;
  }
  #top-header ul.entry-tab-nav li.ui-state-active {
    z-index: 6;
  }
  #top-header .entry-tab-box {
    padding: 40px 28px 40px 40px;
    margin: 0;
    height: 460px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  #top-header .entry-tab-box ul {
    max-height: 380px;
    padding-right: 12px;
  }
  #top-header .entry-tab-box li .pic {
    width: 25%;
  }
  #top-header .entry-tab-box li .txt {
    padding-left: 30px;
  }
  #top-header .entry-tab-box li .txt .author {
    padding-bottom: 10px;
    -webkit-align-items: center;
    align-items: center;
  }
  #top-header .entry-tab-box li .txt .avatar {
    width: 42px;
  }
  #top-header .entry-tab-box li .txt .author-name {
    padding-left: 10px;
  }
  #top-header .entry-tab-box li .txt .date {
    font-size: 1.3rem;
  }
  #top-header .entry-tab-box li .txt h2 {
    font-weight: bold;
  }
  #top-header .entry-tab-box li .txt a {
    text-decoration: none;
  }
  #top-header .i {
    position: absolute;
    top: auto;
    bottom: -21px;
    right: -60px;
    width: 300px;
    z-index: 10;
  }

  .next-event-box {
    width: 22%;
  }
  .next-event-box h1 {
    background: #000;
    color: #FFF;
    font-size: 1.6rem;
    line-height: 40px;
    text-align: center;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
    -moz-border-radius-topright: 6px;
    -webkit-border-top-right-radius: 6px;
    border-top-right-radius: 6px;
  }
  .next-event-box h2 {
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
    -moz-border-radius-topright: 6px;
    -webkit-border-top-right-radius: 6px;
    border-top-right-radius: 6px;
  }
  .next-event-box .next-event {
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 20px 20px;
    position: relative;
  }
  .next-event-box .next-event .num {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    font-size: 1.2rem;
    text-align: center;
    padding: 0;
  }
  .next-event-box .next-event .date {
    padding: 0 0 10px;
    text-align: center;
  }
  .next-event-box .next-event .date span {
    display: block;
  }
  .next-event-box .next-event .date .wareki {
    width: auto;
  }
  .next-event-box .next-event .date .time {
    padding: 6px 0 0;
  }

  .bk-wt {
    padding: 70px 0 0;
  }
  .bk-wt.b-shadow {
    -moz-box-shadow: 0px -1px 3px 2px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px -1px 3px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0px -1px 3px 2px rgba(0, 0, 0, 0.4);
  }

  .bk-gray {
    padding: 70px 0 0;
  }

  .top-content-box {
    padding: 0 0 70px;
  }
  .top-content-box h1 {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
  .top-content-box h1.row-pc {
    -webkit-align-items: center;
    align-items: center;
  }
  .top-content-box h1 img {
    width: auto;
    margin-left: auto;
  }
  .top-content-box h1 span.small {
    font-size: 1.3rem;
    margin-left: 15px;
  }
  .top-content-box h1 .more {
    position: static;
    margin-left: auto;
  }
  .top-content-box h2 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .top-content-box .youtube img {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    display: block;
    margin-bottom: 15px;
  }
  .top-content-box .youtube .youtube-box {
    margin-bottom: 15px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .top-content-box#top-movie {
    width: 47%;
  }
  .top-content-box#top-schedule {
    width: 47%;
  }
  .top-content-box#top-schedule li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .top-content-box#top-schedule li p {
    padding: 5px 0 0;
  }
  .top-content-box .slider-wrap1 {
    width: 89%;
    display: block;
    margin: 0 auto;
  }
  .top-content-box .slider-wrap2 {
    width: 100%;
    display: block;
    margin: 0 auto;
    overflow: hidden;
  }
  .top-content-box .slider-wrap2 .bx-viewport {
    overflow: visible !important;
  }
  .top-content-box ul.niconico-slider .pic img,
  .top-content-box ul.works-slider .pic img,
  .top-content-box ul.instructor-slider .pic img {
    margin-bottom: 15px;
  }
  .top-content-box ul.niconico-slider .pic .youtube-box,
  .top-content-box ul.works-slider .pic .youtube-box,
  .top-content-box ul.instructor-slider .pic .youtube-box {
    margin-bottom: 15px;
  }
  .top-content-box ul.works-slider h2 {
    font-size: 1.4rem;
  }
  .top-content-box ul.works-slider .btn-amazon {
    margin: 20px 0 0;
  }
  .top-content-box ul.instructor-slider {
    width: 100%;
    margin: 0 auto;
  }
  .top-content-box ul.instructor-slider li {
    text-align: center;
  }
  .top-content-box .banner-box1 {
    padding-bottom: 30px;
  }
  .top-content-box .banner-box1 .pic {
    width: 32%;
  }
  .top-content-box .banner-box1 .pic img {
    margin-bottom: 0;
	border-radius: 8px;
    border: 1px solid;
  }
  .top-content-box .banner-box2 {
    padding-bottom: 60px;
  }
  .top-content-box .banner-box2 .pic {
    width: 19%;
  }
  .top-content-box .banner-box2 .pic img {
    margin-bottom: 0;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
  }

  .cat.catname1 {
    color: #f4901e;
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: #f4901e solid 4px;
    display: inline-block;
  }
}
@media screen and (min-width: 960px) {
  #top-header .i {
    position: absolute;
    top: auto;
    bottom: -26px;
    right: -90px;
    width: 360px;
    z-index: 10;
  }
}
@media screen and (min-width: 1100px) {
  #top-header ul.entry-tab-nav li {
    width: 68px;
    margin-left: -12px;
  }
  #top-header .i {
    bottom: -31px;
    right: -120px;
    width: 420px;
  }

  .next-event-box .next-event {
    padding: 25px 20px 20px;
  }
}
/* page */
.page-ttl {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 20px 10px;
}
.page-ttl span {
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px;
}

.archive-box .archive-box-wrap {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 20px 40px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.archive-box h1 {
  margin-bottom: 10px;
}
.archive-box .archive-nav-box {
  margin-bottom: 30px;
  background: url(../../img/line.png) repeat-x bottom;
}
.archive-box .archive-nav-ttl {
  font-size: 1.4rem;
  font-weight: 500;
}
.archive-box .archive-nav {
  padding: 6px 0 24px;
}
.archive-box .archive-nav li {
  width: 49%;
}
.archive-box .archive-nav li a {
  font-size: 1.2rem;
  margin-bottom: 6px;
  display: block;
  text-align: center;
  background: #dddddd;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.archive-box .archive-nav li a.on {
  background: #f9eb21;
}
.archive-box .archive-nav::before {
  content: "";
  display: block;
  width: 24%;
  order: 1;
}
.archive-box .archive-nav::after {
  content: "";
  display: block;
  width: 24%;
}
.archive-box .post-list {
  background: url(../../img/line.png) repeat-x bottom;
  padding: 0 0 10px;
}
.archive-box .post-list li {
  padding-bottom: 20px;
}
.archive-box .post-list .pic {
  width: 32%;
}
.archive-box .post-list .pic img {
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.archive-box .post-list .txt {
  flex: 1;
  padding-left: 15px;
}
.archive-box .post-list .txt .author {
  padding-bottom: 6px;
}
.archive-box .post-list .txt .avatar {
  width: 25%;
}
.archive-box .post-list .txt .author-name {
  padding-left: 10px;
  font-size: 1.3rem;
}
.archive-box .post-list .txt h2 {
  font-size: 1.4rem;
  line-height: 1.5;
}
.archive-box .post-list .txt a {
  text-decoration: underline;
}
.archive-box .btn-more-load {
  background: url(../../img/line.png) repeat-x bottom;
  line-height: 46px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
}
.archive-box .btn-more-load:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.archive-box .alm-btn-wrap button {
  display: block;
  background: transparent;
  border: none;
  background: url(../../img/line.png) repeat-x bottom;
  line-height: 46px;
  width: 100%;
  height: 46px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
}
.archive-box .alm-btn-wrap button:focus {
  outline: none;
}
.archive-box .alm-btn-wrap button:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.archive-box .alm-btn-wrap button.done {
  display: none;
}
.archive-box .apply-exp-box h2 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.archive-box .apply-exp-box h3 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.archive-box .apply-exp-box p {
  padding-bottom: 20px;
}
.archive-box .apply-exp-box strong {
  font-weight: bold;
}
.archive-box .apply-exp-box .red {
  color: #b50000;
}
.archive-box .apply-exp-box .btn {
  margin-bottom: 20px;
  width: 50%;
}

.page-box .page-box-wrap {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 20px 40px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.page-box .page-box-wrap img{
	width: auto !important;
}


.author-list {
  padding: 20px 0 0;
}
.author-list li {
  margin-bottom: 40px;
}
.author-list .pic-box {
  padding-bottom: 20px;
}
.author-list .pic-box .pic {
  width: 43%;
}
.author-list .pic-box .name-box {
  flex: 1;
  padding-left: 20px;
}
.author-list h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.author-list h2 span {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding-top: 10px;
}
.author-list .katagaki {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.btn-blog a {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f9eb21;
  border: #000 solid 2px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding: 0 30px 0 10px;
  line-height: 30px;
  position: relative;
  display: inline-block;
  font-weight: bold;
}
.btn-blog a::before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

section.post-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  margin: 0 20px 40px;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
section.post-box h1 {
  background: url(../../img/line.png) repeat-x bottom;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 800;
  padding-bottom: 10px;
  margin: 10px 0 20px;
  display: block;
}
section.post-box h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
section.post-box .date {
  color: #515151;
  font-size: 1.2rem;
}
section.post-box .cat {
  margin-left: 15px;
}
section.post-box .sns a {
  background-image: url(../../img/btn-sns.png);
  background-repeat: no-repeat;
  background-size: 70px 32px;
  width: 32px;
  height: 32px;
  display: block;
}
section.post-box .sns a.fb {
  background-position: top left;
}
section.post-box .sns a.tw {
  background-position: top right;
  margin-left: 10px;
}
section.post-box .post-body {
  background: url(../../img/line.png) repeat-x bottom;
  padding-bottom: 20px;
}
section.post-box .post-body p {
  padding-bottom: 20px;
}
section.post-box .post-body img {
  height: auto;
      width: auto;
  margin-bottom: 10px;
}
section.post-box .post-body strong {
  font-weight: bold;
}
section.post-box .post-body h2 {
  font-size: 1.6rem;
}
section.post-box .post-body .red {
  color: red;
}
section.post-box .questionnair-box, section.post-box .event-movie-box {
  padding-bottom: 20px;
}
section.post-box .questionnair-box li, section.post-box .event-movie-box li {
  background: url(../../img/line.png) repeat-x bottom;
  padding: 20px 0;
}
section.post-box .questionnair-box li h2, section.post-box .event-movie-box li h2 {
  font-size: 1.6rem;
}
section.post-box .questionnair-box li p, section.post-box .event-movie-box li p {
  word-wrap: break-word;
}
section.post-box .post-footer {
  padding: 30px 0;
}
section.post-box .post-footer table {
  margin-bottom: 20px;
}

.article-list {
  background: url(../../img/line.png) repeat-x bottom;
  padding: 20px 0 30px;
  margin-bottom: 10px;
}
.article-list .apply-btn-box {
  margin: 20px 0 0;
}
.apply-btn-box a {
  background: url(../../img/btn-apply2_pc.png) no-repeat top left;
  background-size: 160px 104px;
  width: 160px;
  height: 48px;
  display: block;
}
.apply-btn-box a:hover {
  background: url(../../img/btn-apply2_pc.png) no-repeat bottom left;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.apply-btn-box2 a {
  background: url(../../img/btn-apply_pc.png) no-repeat top left;
  background-size: 160px 104px;
  width: 160px;
  height: 48px;
  display: block;
}
.apply-btn-box2 a:hover {
  background: url(../../img/btn-apply_pc.png) no-repeat bottom left;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.apply-btn-box p {
  font-weight: 700;
  color: #B50000;
  font-size: 20px;
}
.apply-btn-box2 p {
  font-weight: 700;
  color: #B50000;
  font-size: 28px;
}
.article-list.noborder {
  background: transparent;
  padding: 0;
  margin: 0;
}
.article-list.noborder .btn {
  margin: 20px 0 0;
  width: 50%;
}
.article-list h2 {
  font-size: 1.8rem !important;
  line-height: 1.5;
  margin: 10px 0 !important;
}
.article-list table {
  border-collapse: collapse;
  margin-bottom: 10px;
}
.article-list table tr:last-child {
  color: #b50000;
  font-weight: bold;
}
.article-list a.more {
  color: #515151;
  position: relative;
  display: inline-block;
  padding-left: 12px;
  text-decoration: underline;
}
.article-list a.more::before {
  content: '';
  width: 0;
  height: 0;
  border: solid 4px transparent;
  border-left: solid 6px #515151;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}
.article-list ul.related-post-list {
  padding: 5px 0 20px;
}
.article-list ul.related-post-list li a {
  color: #b50000;
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: underline;
  line-height: 1.5;
}

.article-list .meta,
.post-header .meta {
  padding-bottom: 20px;
}
.article-list .meta .row-sp,
.post-header .meta .row-sp {
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 20px;
}
.article-list .meta .row-sp .pic,
.post-header .meta .row-sp .pic {
  width: 30%;
}
.article-list .meta .row-sp h2,
.post-header .meta .row-sp h2 {
  margin: 0 0 0 20px !important;
}

ul.video-post-list {
  padding-bottom: 20px;
}
ul.video-post-list li a {
  color: #b50000;
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: underline;
  line-height: 1.5;
}
ul.video-post-list.row {
  padding-bottom: 0;
}
ul.video-post-list.row li {
  width: 48%;
}
ul.video-post-list.row li:first-child {
  margin-right: 4%;
}
ul.video-post-list.row li img {
  margin-bottom: 6px;
}
ul.video-post-list.row li .youtube-box {
  margin-bottom: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
ul.video-post-list.row li a em {
  color: #000;
  text-decoration: underline;
  font-weight: bold;
}

.pagenavi {
  background: url(../../img/line.png) repeat-x bottom;
  padding: 20px 0;
}
.pagenavi a {
  display: block;
  color: #4660a4;
  text-decoration: underline;
}
.pagenavi a:hover {
  text-decoration: none;
}

.sns-box {
  padding: 20px 0;
}
.sns-box .btn-sns {
  width: 49%;
}

.author-box {
  padding: 0 0 20px;
}
.author-box.row {
  -webkit-align-items: center;
  align-items: center;
}
.author-box .avatar {
  width: 16%;
}
.author-box .name {
  flex: 1;
  padding-left: 10px;
  font-size: 1.2rem;
}
.author-box .name .author-name {
  background: #b50000;
  padding: 0 14px;
  line-height: 22px;
  color: #FFF;
  text-align: center;
  display: inline-block;
  font-size: 1.2rem;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.paragraph {
  padding-bottom: 20px;
}
.paragraph.border {
  background: url(../../img/line.png) repeat-x bottom;
  margin-bottom: 40px;
}
.paragraph h2 {
  font-size: 2.0rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.paragraph h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.paragraph .red {
  color: #b50000;
}
.paragraph p {
  padding-bottom: 20px;
}
.paragraph p strong {
  font-size: 1.6rem;
}

.apply-box .red {
  color: #b50000;
}
.apply-box .caution {
  padding-bottom: 20px;
}
.apply-box .note {
  border-top: #c9c9c9 solid 1px;
  font-size: 1.2rem;
  padding: 30px 0;
}
.apply-box .row-pc {
  padding-bottom: 20px;
}
.apply-box .dd input {
  padding: 0 5px;
  font-size: 120%;
  width: 100%;
  line-height: 36px;
  background: #ffffff;
  border: #505050 solid 1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.apply-box .dd textarea {
  padding: 0 5px;
  font-size: 120%;
  width: 100%;
  height: 180px;
  background: #ffffff;
  border: #505050 solid 1px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.apply-box .dd em {
  display: block;
}
.apply-box .dd input[type=radio] {
  display: none;
}
.apply-box .dd .wpcf7-list-item-label {
  padding: 0 20px 0 30px;
  margin: 0 0 0 -12px;
  line-height: 20px;
  display: block;
  position: relative;
}
.apply-box .dd .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: #505050 solid 1px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.apply-box .dd input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #505050;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

#confirm_button {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  background: #231815;
  width: 54%;
  line-height: 66px;
  font-weight: 500;
  border: none;
  position: relative;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  margin: 0 auto 40px;
}

#submit_button {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  background: #ff79b4;
  width: 54%;
  line-height: 66px;
  font-weight: 500;
  border: none;
  position: relative;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

#back_button {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: block;
  background: #795f5f;
  width: 54%;
  line-height: 66px;
  font-weight: 500;
  border: none;
  position: relative;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding: 20px 0 0;
  }
  .breadcrumbs a {
    font-size: 1.2rem;
  }

  #main {
    width: 74%;
    padding-bottom: 60px;
  }

  #side {
    width: 22%;
    padding-bottom: 60px;
  }
  #side .next-event-box {
    width: 100%;
    margin-bottom: 20px;
  }

  .page-ttl {
    margin: 0;
  }
  .page-ttl.border {
    padding-bottom: 10px;
    border-bottom: solid 2px #000;
  }

  .archive-box .archive-box-wrap {
    padding: 45px;
    margin: 0 0 40px;
  }
  .archive-box h1 {
    margin-bottom: 30px;
  }
  .archive-box .archive-nav-box {
    margin-bottom: 30px;
    background: transparent;
  }
  .archive-box .archive-nav {
    padding: 6px 0 24px;
  }
  .archive-box .archive-nav li {
    width: 130px;
    display: inline-block;
  }
  .archive-box .archive-nav li a {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  .archive-box .archive-nav li a.on, .archive-box .archive-nav li a:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    background: #f9eb21;
  }
  .archive-box .post-list {
    background: url(../../img/line.png) repeat-x bottom;
    padding: 0 0 20px;
  }
  .archive-box .post-list::after {
    content: "";
    display: block;
    width: 31%;
  }
  .archive-box .post-list li {
    width: 31%;
    padding-bottom: 40px;
  }
  .archive-box .post-list .pic {
    width: 100%;
  }
  .archive-box .post-list .pic img {
    height: 130px;
    width: 100%;
    object-fit: cover;
  }
  .archive-box .post-list .txt {
    display: block;
    padding-left: 0;
    padding-top: 10px;
  }
  .archive-box .post-list .txt .author {
    padding-bottom: 10px;
    -webkit-align-items: center;
    align-items: center;
  }
  .archive-box .post-list .txt .avatar {
    width: 42px;
  }
  .archive-box .post-list .txt .date {
    display: block;
  }
  .archive-box .post-list .txt .author-name {
    padding-left: 10px;
    font-size: 1.3rem;
  }
  .archive-box .post-list .txt h2 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .archive-box .post-list .txt a {
    text-decoration: none;
  }
  .archive-box .btn-more-load {
    line-height: 75px;
  }
  .archive-box .alm-btn-wrap button {
    line-height: 75px;
    height: 75px;
  }
  .archive-box .apply-exp-box h2 {
    margin-bottom: 30px;
  }
  .archive-box .apply-exp-box h3 {
    margin-bottom: 30px;
  }
  .archive-box .apply-exp-box p {
    padding-bottom: 30px;
  }
  .archive-box .apply-exp-box .btn-apply a {
    margin-bottom: 30px;
  }

  .article-list {
    padding: 0 0 40px;
    margin-bottom: 40px;
    position: relative;
  }

  .article-list .apply-btn-box {
    margin: 0;
    position: absolute;
    top: 80px;
    right: 0;
  }
  .apply-btn-box2 {
    margin: 0;
  }
  .apply-btn-box a,
  .apply-btn-box2 a {
    background-size: auto;
    width: 233px;
    height: 70px;
  }

  .article-list:last-child {
    margin-bottom: 0;
  }
  .article-list .btn-apply {
    margin: 20px 0 0;
  }
  .article-list ul.related-post-list {
    padding: 15px 0 25px;
  }

  .article-list .meta,
  .post-header .meta {
    padding-bottom: 0;
  }
  .article-list .meta .row-sp,
  .post-header .meta .row-sp {
    width: 30%;
  }
  .article-list .meta .row-sp .pic,
  .post-header .meta .row-sp .pic {
    width: 100%;
  }
  .article-list .meta .txt,
  .post-header .meta .txt {
    flex: 1;
    padding-left: 20px;
  }

  .post-header h1.page-ttl {
    background: transparent;
  }

  ul.video-post-list.row li {
    width: 30%;
    margin-right: 20px;
  }
  ul.video-post-list.row li:first-child {
    margin-right: 20px;
  }

  section.post-box {
    padding: 45px;
    margin: 0 0 40px;
  }
  section.post-box h1 {
    font-size: 2.2rem;
  }
  section.post-box .sns a {
    background-size: 94px 43px;
    width: 43px;
    height: 43px;
  }
  section.post-box .post-body {
    padding-bottom: 30px;
  }
  section.post-box .post-body p {
    padding-bottom: 30px;
  }
  section.post-box .post-body img {
    margin-bottom: 0;
  }
  section.post-box .post-body h2 {
    font-size: 2.0rem;
  }
  section.post-box .questionnair-box, section.post-box .event-movie-box {
    padding-bottom: 30px;
  }
  section.post-box .questionnair-box li, section.post-box .event-movie-box li {
    padding: 30px 0 60px;
  }

  .pagenavi {
    padding: 30px 0;
    font-weight: bold;
  }
  .pagenavi a {
    display: inline-block;
  }
  .pagenavi .prev a {
    padding-left: 10px;
  }
  .pagenavi .next a {
    padding-right: 10px;
  }

  .sns-box {
    padding: 30px 0 50px;
  }
  .sns-box .btn-sns {
    width: auto;
    display: inline-block;
    padding-right: 15px;
  }
  .sns-box .btn-sns img {
    width: auto;
  }

  .author-box {
    padding: 0 0 20px;
  }
  .author-box .avatar {
    width: 12%;
  }
  
.author-box .avatar img {
	width: auto;
}

  
  .author-box .name {
    flex: 1;
    padding-left: 15px;
    font-size: 1.6rem;
  }
  .author-box .name .author-name {
    background: #b50000;
    padding: 0 14px;
    line-height: 22px;
    color: #FFF;
    text-align: center;
    display: inline-block;
    font-size: 1.2rem;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }

  .author-list {
    padding: 40px 0 0;
  }
  .author-list li {
    margin-bottom: 60px;
  }
  .author-list .pic-box {
    width: 34%;
    padding-bottom: 0;
  }
  .author-list .pic-box .pic {
    width: 100%;
  }
  .author-list .pic-box .name-box {
    display: block;
    padding-left: 0;
    padding-top: 20px;
  }
  .author-list .txt {
    flex: 1;
    padding-left: 20px;
  }

  .btn-blog a {
    padding: 0 30px 0 10px;
    line-height: 40px;
    width: 100px;
    margin: 0 auto;
    display: block;
  }

  .paragraph.border {
    padding-top: 40px;
  }
  .paragraph h2 {
    margin-bottom: 30px;
  }
  .paragraph h3 {
    margin-bottom: 30px;
  }
  .paragraph p {
    padding-bottom: 30px;
  }
  .paragraph img {
    width: 83%;
    max-width: 560px;
    display: block;
    margin: 50px auto 0;
  }

  .apply-box .caution {
    padding-bottom: 40px;
  }
  .apply-box .note {
    padding: 30px 0;
  }
  .apply-box .row-pc {
    padding: 15px 0;
  }
  .apply-box .dt {
    width: 28%;
  }
  .apply-box .dd {
    flex: 1;
  }
  .apply-box .dd input {
    line-height: 30px;
  }

  #confirm_button {
    width: 43%;
    line-height: 60px;
    margin: 20px 0 50px 28%;
  }

  #btns-conf2 {
    margin: 20px 10% 50px;
  }

  #submit_button {
    width: 48%;
    line-height: 60px;
    margin-bottom: 0;
  }

  #back_button {
    width: 48%;
    line-height: 60px;
  }

  .side-box {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
  }
  .side-box h1 {
    font-size: 2.6rem;
    border-bottom: #000 solid 2px;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .side-box h1 span {
    font-size: 1.3rem;
    padding-left: 15px;
  }
  .side-box ul.works-list {
    border-bottom: #000 solid 2px;
  }
  .side-box ul.works-list li {
    background: url(../../img/line.png) repeat-x bottom;
    padding: 0 20px 30px;
    margin-bottom: 30px;
  }
  .side-box ul.works-list li:last-child {
    background: transparent;
    margin-bottom: 0;
  }
  .side-box ul.works-list li .pic img {
    -moz-box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
  }
  .side-box ul.works-list li h2 {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .side-box .btn-more {
    padding: 20px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
  }
}
