@charset "UTF-8";
* {
  box-sizing: border-box;
}
body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  min-width: auto;
  padding-top: 125px;
}
p,a {
  font-size: clamp(15px, 0.9vw, 18px);
  letter-spacing: 0.08rem;
}
.deco-none {
  color: inherit;
  text-decoration: none;
}
.sp {
  display: none;
}

.fixed-contact-wrapper {
  position: fixed;
  display: flex;
  width: 5rem;
  justify-content: center;
  background-color: #5B6BC3;
  color: #fff;
  z-index: 9999;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.fixed-contact-text {
  position: relative;
  writing-mode: vertical-rl;
  padding-top: 70px;
  padding-bottom: 40px;
  font-size: 140%;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.fixed-contact-text::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #FFD264;
  border-radius: 50%;
  top: 20px;
  left: 4px;
  
}
@keyframes infiniteSlide {
  0% {
    transform: rotate(45deg) translate(0%, 0%);
  }
  19.9999% {
    transform: rotate(45deg) translate(200%, -200%);
  }
  20% {
    transform: rotate(45deg) translate(-200%, 200%);
  }
  40% {
    transform: rotate(45deg) translate(0%, 0%);
  }
  
}
.fixed-contact-text::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #5B6BC3;
  border-right: 2px solid #5B6BC3;
  transform: rotate(45deg);
  position: absolute;
  top: 31px;
  left: 34%;
  animation: infiniteSlide 2s ease infinite forwards;
}
/* ハンバーガメニューのデザイン */
.hamburger-icon {
  display: none;
  position: relative;
	background:#FFF;
	cursor: pointer;
  width: 50px;
  height: 50px;
  border: 2px solid #FFB500;
	border-radius: 50%;
}

.hamburger-icon span {
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
	background: #FFB500;
  width: 45%;
}
.hamburger-icon span:nth-of-type(1) {
	top:15px;	
}

.hamburger-icon span:nth-of-type(2) {
	top:23px;
}

.hamburger-icon span:nth-of-type(3) {
	top:31px;
}
/*activeクラスが付与されると線が回転して×に*/

.hamburger-icon.active span:nth-of-type(1) {
  top: 18px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.hamburger-icon.active span:nth-of-type(2) {
  opacity: 0;/*真ん中の線は透過*/
}

.hamburger-icon.active span:nth-of-type(3){
  top: 30px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#header{
    padding-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}
.l-wrapper {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.l-header-sub {
  width: 1600px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px 0 30px;
}
.site-desc {
  color: #fff;
  font-size: clamp(11px, 2.6vw, 14px);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  min-height: 30px;
  align-items: center;
}
.brand-color {
  background-color: #FFB500;
  margin-bottom: 10px;
}

.tel-button {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
}
.tel-button::before {
  content: url(../images/icon-call.svg);
  width: 24px;
  padding-right: 15px;
}
.tel-button .-sub {
  font-size: clamp(11px, 2.6vw, 14px);
}
.text-center {
  text-align: center;
}

.blobal-nav ul {
  display: flex;
  align-items: stretch;
}

.blobal-nav ul li {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  position: relative;
}

.blobal-nav ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 60%;
  top: 20%;
  left: -1.5rem;
  border-left: 1px dashed #000;
}

.header-anchor {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 15px;
}

.header-anchor:hover {
  text-decoration: none;
}
.tooltip {
  position: relative;
  cursor: pointer;
}

/* ツールチップ全体の設定 */
.tooltip::before,
.tooltip::after {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}

/* 吹き出しのひげ部分 */
.tooltip::before {
  content: "";
  border: 10px solid transparent;
  border-bottom-color: #000;
  top: 10px;
  left: 10px;
}
.tooltip::after {
  content: attr(data-tooltip);
  display: block;
  padding: 7px 13px;
  background: #000;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  top: 30px;
  left: 0;
}
.banner-wrapper {
  display: flex;
  position: relative;
  padding: 2rem 5rem;
  background-color: #FFD264;
  margin: 0%!important;
}

.banner-section-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.banner-contain {
  height: 100px;
  object-fit: contain;
}

.lecturer-heading {
  text-align: center;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.08em;
  padding: 4rem 0 3rem;
}

#search-lecturer .block-body {
  padding: 0;
  color: #fff;
}

#search-lecturer table tr th {
  padding: 12px 0;
}

#search-lecturer .query-and-submit {
  background-color: #FFB500;
}

.block-body table, .block-body table tbody {
  width: 100%;
}
#search-lecturer table {
    margin-bottom: 40px;
}

#search-lecturer input[type=text] {
  height: 26px;
  width: 240px;
}

.owl-carousel {
  display: block;
  width: calc(100% - 420px);
  padding-left: 2rem;
}

.owl-carousel li {
  height: 100%;
  width: 100%;
  position: relative;
}

.owl-carousel li a {
  height: 100%;
  width: 100%;
  display: block;
}

.owl-carousel li a img {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.genre-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.s {
  width: 10px;
  height: 10px;
  background-color: #49b224;
}

.ranking-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 3vw;
  margin-top: 80px;
}

.ranking-item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 15vw) / 6);
  max-width: 200px;
  min-width: 150px;
}

.ranking-button {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  margin-top: 80px;
  background-color: #FFB500;
  padding: 1.5rem 6rem;
  color: #FFF;
  cursor: pointer;
}
.swiper-container {
    margin-top: 90px;
}
.produce-swiper {
  overflow: visible;
  padding-bottom: 6rem;
}

.strength-title {
  position: relative;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.strength-title::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 2px;
  background-color: #FFB500;
  bottom: 0;
  left: 0;
}
.strength-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.strength-text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.strength-head {
  width: 40%;
}

.strength-desc {
  width: 55%;
  font-size: clamp(15px, 1vw, 18px);
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding-bottom: 10px;
}

.strength-heading {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.08em;
  margin-left: -0.1vw;
  color: #2C2C2C;
  padding-bottom: 1rem;
}
.strength-desc {
  line-height: 2;
}

.strength-icon {
  position: relative;
  width: 14vw;
  height: 14vw;
  max-width: 256px;
  max-height: 256px;
  border: 4px solid #FFB500;
  border-radius: 48%;
  overflow: hidden;
  top: 55px;
  left: 30%;
}

.strength-balloon {
  position: absolute;
  display: inline-block;
  padding: 14px 40px;
  min-width: 300px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #FFB500;
  border-radius: 15px;
}
.strength-balloon:nth-of-type(2){
  top: 0;
  left: 66%;
}
.strength-balloon:nth-of-type(3){
  top: 120px;
  left: 70%;
}

.strength-balloon:before {
  content: "";
  position: absolute;
  top: 59%;
  left: 0%;
  margin-left: -20px;
  border: 10px solid transparent;
  border-top: 25px solid #FFB500;
  transform: rotate(70deg);
}
.produce-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5vw;
}
.produce-slide {
    width: calc((100% - 2.5vw * 3) / 4);
    height: 100%;
    text-align: center;
}
.produce-inner {
    width: 100%;
    height: 0;
    padding-bottom: 64%;
    margin-bottom: 1rem;
    position: relative;
    border: 3px solid #FFB500;
}
.produce-inner img {
    position: absolute;
    top: 0;
    left: 0;
}
.genre-icon-wrapper {
    width: 30%;
    margin: 0 auto;
    filter: invert(65%) sepia(68%) saturate(949%) hue-rotate(359deg) brightness(102%) contrast(106%);
}
.genre-p {
  font-size: clamp(10px, 1vw, 16px);
  margin-top: 1rem;
  text-align: center;
}
a:hover {
    text-decoration: none;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.6rem;
    position: relative;
}
.section-header.-enta {
    align-items: flex-end;
}
.section-header::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #FFD264;
    position: absolute;
    bottom: 0;
    left: 0;
}
.genre-head {
    padding-left: 20px;
}
.genre-inner {
    display: flex;
    width: 40%;
}
.enta-genre-inner {
    display: flex;
    width: 80%;
}
.genre-desc {
    width: 60%;
    font-size: clamp(15px, 1vw, 18px);
    letter-spacing: 0.08em;
    line-height: 1.8;
}

.genre-title {
    font-size: clamp(26px, 1.8vw, 30px);
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.icon {
    width: 40px;
    display: flex;
    align-items: center;
}
.icon-performance {
  width: 50px;
  display: flex;
  align-items: center;
}
.ranking-inner {
    position: relative;
    border-bottom: 1px solid #333;
    padding-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.ranking-num {
  display: flex;
  align-items: baseline;
  color: #BF0000;
  font-weight: 700;
}

.ranking-num span {
  font-size: 2em;
}

.ranking-icon {
  margin-right: 5px;
}
.ranking-image {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 161.8%;
    margin-bottom: 1.5rem;
}
.ranking-image img {
    position: absolute;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}
.fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking-subtitle {
    font-size: 16px;
}
.ranking-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: auto;
}
.to-descPerson {
    position: absolute;
    bottom: 16px;
    right: 10px;
    font-size: 24px;
    display: flex;
    border: 1px solid;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.href-block {
  width: 70%;
  max-width: 360px;
  margin: 80px auto;
  position: relative;
}
.to-rank-archive {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
  padding-right: 50px;
  border-bottom: 1px solid #000;
  font-size: clamp(16px, 1vw, 18px);
}
.to-rank-archive:hover .href-icon {
  transform: translate(30%, -50%);
}

.href-icon {
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  background-color: #fff;
  top: calc(50% - 10px);
  right: 0;
  transform: translate(0px, -50%);
  transition: 0.3s;
}
.href-icon::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 30%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  top: 50%;
  left: 44%;
  transform: translate(-50%,-50%) rotate(45deg);
}


.ranking,
.performance,
.top-column,
.jisseki {
  max-width: 1854px;
  padding: 6rem;
  margin: auto;
}
.strength {
  max-width: 1600px;
  padding-left: 6rem;
  padding-right: 6rem;
  margin: auto;
}
.strength-bg {
  position: relative;
  background: url(../images/texture-wa.webp);
  background-repeat: repeat;
}
.strength-bg::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -1px;
  left: 0;
  background: transparent radial-gradient(closest-side at 50% 50%, #FFFFFFCC 0%, #FFFFFFE9 76%, #FFFFFF 100%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
}
.main-width {
  max-width: calc(1600px - 12rem);
  margin: auto;
}
.genre-en, 
.strength-en,
.performance-en{
    font-family: freight-text-pro, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    font-size: 20px;
    letter-spacing: 0.1em;
}

.pickup {
    padding: 12rem 0;
    background-color: #FFD264;
    position: relative;
}
.pickup-obj {
    font-family: freight-text-pro, serif;
    position: absolute;
    transform: rotate(90deg) translateY(89%) translateX(-22.6%);
    color: #fff;
    font-size: 11vw;
    top: 50%;
}
.specialContents {
    width: 460px;
    padding: 0.8rem 0 0.8rem 1.2rem;
    border-left: 20px solid #FFB500;
    margin-left: 13vw;
    background-color: #fff;
    position: relative;
}
.specialContents::before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-right: 40px solid #FFD264;
  border-bottom: 40px solid transparent;
  right: -1px;
  top: 0;
}
.pickup-title {
    font-size: 20px;
    font-weight: bold;
}
.pickup-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    gap: 3vw;
    margin-top: 80px;
    margin-left: 13vw;
}
.pickup-item{
  padding: 1.4vw 1vw;
  background-color: #fff;
  width: calc(25% - 3vw);
  max-width: 400px;
  border-radius: 10px;
}
.pickup-icon {
    width: 60%;
    height: 0;
    padding-bottom: 60%;
    margin: auto;
    position: relative;
}
.circle-fit {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #CECECE;
    object-fit: cover;
}
.name {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-top: 1.5rem;
}
.works {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 1rem;
}

.column-loop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 3vw;
  margin-top: 80px;
}
.column-item {
  width: calc((100% - 6vw) / 3);
  position: relative;
}
.column-item a {
  position: inherit;
  display: block;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 16%);
  overflow: hidden;
  transition: all 0.6s ease;
}
.hover-anm {
  transition: all 0.6s ease;
}
.hover-anm:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 16%);
  transform: translateY(-10px);
}
.column-item a:hover {
  transform: translateY(-10px);
}
.column-item a::before {
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(0,0,0));
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.column-image {
    height: 100%;
}
.column-title {
    color: #fff;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 20px;
    left: 0;
}
.switch-wrapper{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.switch-tab {
  position: relative;
  border: 2px solid #FFB500;
  border-radius: 50px;
  background-color: white;
  padding: 0.5rem 2.5rem;
  color: #FFB500;
  cursor: pointer;
}

.performance-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 3vw;
    margin-top: 80px;
}
.performance-item{
  width: calc((100% - 3vw) / 2);
}
.performance-item a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    padding: 2rem;
    border: 1vw solid #FFD264;
    background-color: #fff;
    border-radius: 10px;
}
.perfect-circle {
    position: relative;
    width: 25%;
    height: 0;
    border-radius: 50%;
    padding-bottom: 25%;
    overflow: hidden;
}
.perfect-circle img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.performance-inner {
    width: calc(70% - 15px);
}
.performance-subtitle {
    font-size: 14px;
    font-weight: 400;
}
.performance-name {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFB500;
}
.performance-desc {
    margin-top: 10px;
    font-size: 15px;
    letter-spacing: 0.08em;
}
.flex-bg {
  background-color: #FFD264;
  padding: 6rem;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#news {
  display: flex;
  flex-direction: column;
  width: 40%;
  background-color: #FFF5DC;
  border: none;
  outline:none;
  padding: 4vw;
  border-radius: 50px;
}
#voice-of-staff {
  width: 55%;
  background-color: #FFF5DC;
  border: none;
  padding: 4vw 6vw;
  border-radius: 50px;
}
#voice-of-staff p {
  font-size: 15px;
  float: none!important;
  width: 100%;
  line-height: 2;
  letter-spacing: 0.1em;
}
.news-heading,
.voice-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  padding-bottom: 1rem;
}

#footer p,
#footer a {
  font-size: 13px;
}
#footer-nav {
  width: 65%;
}
#footer-nav a {
  font-size: 90%;
}
#footer-middle-left,
#footer-bottom ul li, #footer-nav ul li,
#footer-nav, p#copyright {
  float: none;
}

.middle-inner,
.bottom-inner {
  display: flex;
  justify-content: center;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 6rem;
}

.bottom-inner {
  justify-content: space-between;
}
.bottom-inner ul {
  display: flex;
}

.flex-start {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.sp-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px;
}

#main {
  margin-bottom: 0;
}

.date a{
  font-size: 16px;
}
.to-newsArchive {
  position: relative;
  padding-right: 1rem;
}

.news-p {
  text-align: right;
  margin-top: auto;
  padding-right: 4vw;
}
.to-newsArchive:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: #FFB500;
  border-radius: 50%;
  left: 100%;
  top:50%;
  transform: translate(0%, -50%);
}
.to-newsArchive::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  left: 106%;
  top:50%;
  transform: translate(0%, -50%) rotate(45deg);
}

.call-button {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.15em;
  border: none;
  border-radius: 50px;
  margin-top: 60px;
  background-color: #FFB500;
  padding: 1.2rem 6rem;
  color: #FFF;
  cursor: pointer;
}

.call-anchor {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  font-size: 2vw;
  color: #FFB500;
  position: relative;
}

.call-anchor::before {
  content: url(../images/icon-call.svg);
  width: 28px;
  padding-right: 14px;
  color: #FFB500;
  filter: invert(65%) sepia(68%) saturate(949%) hue-rotate(359deg) brightness(102%) contrast(106%);
}
.call-anchor::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 2px;
  background-color: #FFB500;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.js-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}
.js-fade.active {
  opacity: 1;
  transform: translateY(0px);
}
.js-fade:nth-of-type(1) {
  transition-delay: 0.2s;
}
.js-fade:nth-of-type(2) {
  transition-delay: 0.4s;
}
.js-fade:nth-of-type(3) {
  transition-delay: 0.6s;
}
.js-fade:nth-of-type(4) {
  transition-delay: 0.8s;
}
.js-fade:nth-of-type(5) {
  transition-delay: 1.0s;
}
.js-fade:nth-of-type(6) {
  transition-delay: 1.2s;
}
.js-fade:nth-of-type(7) {
  transition-delay: 1.4s;
}
.js-fade:nth-of-type(8) {
  transition-delay: 1.6s;
}
.js-fade:nth-of-type(9) {
  transition-delay: 1.8s;
}
.js-fade:nth-of-type(10) {
  transition-delay: 2.0s;
}
.js-fade:nth-of-type(11) {
  transition-delay: 2.2s;
}
.js-fade:nth-of-type(12) {
  transition-delay: 2.4s;
}
.js-fade:nth-of-type(13) {
  transition-delay: 2.6s;
}
.js-fade:nth-of-type(14) {
  transition-delay: 2.8s;
}
.js-fade:nth-of-type(15) {
  transition-delay: 3.0s;
}
.js-fade:nth-of-type(16) {
  transition-delay: 3.2s;
}
.js-slide {
  opacity: 0;
  transform: translateX(30px);
  transition: 0.8s ease;
}
.js-slide.active {
  opacity: 1;
  transform: translateX(0px);
}

#footer-nav table th {
  padding-top: 15px;
}

#monomane-list,
#jagling-list,
#magic-show-list {
  display: none;
}
#monomane-list.active,
#jagling-list.active,
#magic-show-list.active {
  display: flex;
}

.switch-tab.active::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFB500;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 415px) {
  #toiawase {
    margin: 30px 0;
  }
  .index #content {
    width: 100%;
    background: #fff;
    overflow: hidden;
    float: none;
  }
  #content .block h3.block-heading-lv3 {
    text-align: center;
    color: #fff;
    font-size: 18px;
  }
  #content .block h3.block-heading-lv3-caption {
    height: auto;
    border: 0
  }
  #content .block h3.block-heading-lv3-caption span:first-child {
    display: inline-block;
    padding: 4px 20px!important;
    background: #fc8300;
    color: #fff;
    text-shadow: 1px 1px 2px #b7660d;
    text-align: center;
    font-size: 1pc;
    box-sizing: border-box
  }
  #content .block h3.block-heading-lv3-caption span:last-child {
    display: inline-block;
    padding: 4px 20px;
    background: #f5f5f5;
    font-size: 1pc;
    font-weight: 400;
    color: red
  }
  #search-lecturer {
    background: #FFD264;
    border: 4px solid #FFFFFF;
    padding: 0 3.2rem 6rem;
  }
  #lecturer-category {
    padding: 3rem;
    outline: none;
  }
  #lecturer-category .block-body {
    padding: 0;
  }
  #lecturer-category ul li {
    width: calc((100% - 140px) / 8);
    height: calc((100vw - 6rem - 160px) / 8);
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
  }
  #lecturer-category ul li:last-child:after {
    content: none
  }
  #lecturer-category ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    background-color: #fff;
    border-radius: 10px;
  }
  #lecturer-category ul li a:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.16) ;
  }
  #search-lecturer {
    max-width: 768px;
    width: 40%;
    font-size: 14px;
    outline: none;
  }
  #search-lecturer th {
    width: 88px
  }
  #search-lecturer table tr td {
    padding: 1.6vh 0;
  }
  #search-lecturer td select {
    padding: 5px;
    border: none;
    height: 6vh;
  }
  #search-lecturer input[type=text] {
    width: calc(100% - 60px);
    padding: 5px;
    height: 5vh;
  }
  #search-lecturer .query-and-submit a {
    height: 5vh;
    line-height: 5vh;
    font-size: 16px;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
  #contents-list {
    clear: both;
    margin-bottom: 20px;
    padding: 20px 20px 0;
    background: #f5f5f5;
    overflow: hidden
  }
  #contents-list li {
    float: left;
    width: 300px;
    height: 10pc;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box
  }
  #contents-list li:nth-child(3n+2) {
    margin: 0 20px 20px
  }
  #contents-list li a {
    display: block;
    height: 100%;
    padding-top: 118px;
    box-sizing: border-box
  }
  #contents-list li a:hover {
    text-decoration: none
  }
  #contents-list li span {
    display: block;
    height: 40px;
    padding: 7px 0;
    background: #fff;
    text-align: center;
    font-size: 1pc;
    border-top: 2px solid #fc8300;
    box-sizing: border-box
  }
  #contents-list li span.nolink {
    margin-top: 118px
  }
  #contents-list li:first-child {
    background: url(/bundles/eikodemo/images/index/contents-list1.jpg)center/cover no-repeat
  }
  #contents-list li:nth-child(2) {
    background: url(/bundles/eikodemo/images/index/contents-list2.jpg)center top 0/cover no-repeat
  }
  #contents-list li:nth-child(3) {
    background: url(/bundles/eikodemo/images/index/contents-list3.jpg)center/cover no-repeat
  }
  #contents-list li:nth-child(4) {
    background: url(/bundles/eikodemo/images/index/contents-list4.jpg)center top -40px/cover no-repeat
  }
  #contents-list li:nth-child(5) {
    background: url(/bundles/eikodemo/images/index/contents-list5.jpg)center/cover no-repeat
  }
  #contents-list li:last-child {
    background: url(/bundles/eikodemo/images/index/contents-list6.jpg)center top -30px/cover no-repeat
  }
  #special-contents.block {
    outline: 0;
    background: #fff
  }
  #special-contents.block h3.block-heading-lv3-caption span:first-child {
    width: 200px
  }
  #special-contents.block h3.block-heading-lv3-caption span:last-child {
    width: 754px
  }
  #special-contents .block-body {
    padding: 20px 20px 0;
    background: #fff;
    border: 0;
    overflow: hidden
  }
  #content .block {
    max-width: 1920px;
    padding: 6rem;
    margin: 0 auto;
  }
  #content .block-body .teacher-layout {
    overflow: hidden
  }
  #content .block-body .teacher-layout li {
    display: block;
    float: left;
    width: 48%;
    margin: 0 0 20px;
    border: 0;
    box-sizing: border-box;
    overflow: hidden
  }
  #content .block-body .teacher-layout li:nth-child(odd) {
    margin-right: 4%
  }
  #content .block-body .teacher-layout .thumbnail {
    float: left;
    width: 88px;
    margin-right: 20px
  }
  #content .block-body .teacher-layout .thumbnail img.photo {
    margin: 0;
    border: 1px solid #ccc;
    text-align: left
  }
  #content .block-body .teacher-layout .name {
    float: left;
    width: 342px;
    margin-bottom: 8px;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    text-align: left
  }
  #content .block-body .teacher-layout .occupation {
    float: left;
    width: 342px;
    margin-bottom: 10px;
    padding: 0;
    border: 0;
    text-align: left
  }
  #content .block-body .teacher-layout .theme {
    float: left;
    width: 342px;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid #ccc;
    text-align: left
  }
  #recommended.block {
    border: 0;
    margin-bottom: 30px
  }
  #recommended.block h3.block-heading-lv3-caption {
    border: 1px solid #ccc;
    margin-bottom: 20px
  }
  #recommended.block h3.block-heading-lv3-caption span:first-child {
    width: 200px
  }
  #recommended.block h3.block-heading-lv3-caption span:last-child {
    width: 754px
  }
  #recommended-tab ul li {
    display: inline-block;
    padding: 6px 10px 4px;
    margin-right: 6px;
    border: 1px solid #ccc;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    font-size: 15px;
    cursor: pointer
  }
  #recommended-tab ul li.active, #recommended-tab ul li:hover {
    border: 1px solid #ff8787;
    border-bottom: 0;
    color: #ff8787
  }
  #recommended-tab ul li.active {
    position: relative;
    cursor: default
  }
  #recommended-tab ul li.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #fff;
    z-index: 1
  }
  #recommended .block-body {
    padding: 20px 20px 0;
    background: #fff;
    border: 1px solid #ff8787;
    overflow: hidden;
    box-sizing: border-box
  }
  #lecturer-budget li a:hover, #popular-genre li a:hover {
    background: #f5f5f5;
    text-decoration: none
  }
  #lecturer-budget, #popular-genre {
    border: 1px solid #cecdcb;
    box-sizing: border-box
  }
  #banner-wrap {
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden
  }
  #banner-wrap .block {
    display: inline-block;
    margin: 0 14px
  }
  #inquiry, #kiyaku .block-body p {
    margin-bottom: 20px
  }
  #banner-wrap .block:nth-child(2) img {
    height: 70px
  }
  #banner-wrap .block a, #banner-wrap .block img {
    display: block
  }
  #lecturer-budget {
    width: 310px
  }
  #lecturer-budget li a {
    position: relative;
    display: block;
    margin-bottom: 6px;
    padding: 2px 0 2px 10px;
    background: #fff;
    font-size: 1pc
  }
  #lecturer-budget li:first-child a {
    border: 2px solid #e96abe;
    border-left: 24px solid #e96abe
  }
  #lecturer-budget li:nth-child(2) a {
    border: 2px solid #49b224;
    border-left: 24px solid #49b224
  }
  #lecturer-budget li:nth-child(3) a {
    border: 2px solid #fc6327;
    border-left: 24px solid #fc6327
  }
  #lecturer-budget li:nth-child(4) a {
    border: 2px solid #000;
    border-left: 24px solid #000
  }
  #lecturer-budget li:last-child, #lecturer-budget li:last-child a {
    margin-bottom: 0
  }
  #lecturer-budget li a:after {
    content: "";
    position: absolute;
    top: 11px;
    right: 8px;
    width: 0;
    height: 0;
    border: 4px solid transparent
  }
  #lecturer-budget li:first-child a:after {
    border-left: 6px solid #e96abe
  }
  #lecturer-budget li:nth-child(2) a:after {
    border-left: 6px solid #49b224
  }
  #lecturer-budget li:nth-child(3) a:after {
    border-left: 6px solid #fc6327
  }
  #lecturer-budget li:nth-child(4) a:after {
    border-left: 6px solid #000
  }
  #popular-genre {
    float: left;
    width: 630px;
    background: #fff
  }
  #popular-genre.block h3.block-heading-lv3-caption span:first-child {
    width: 200px
  }
  #popular-genre.block h3.block-heading-lv3-caption span:last-child {
    width: 404px
  }
  #popular-genre .block-body {
    padding: 20px 20px 0
  }
  #popular-genre li {
    float: left;
    width: 99pt;
    height: 60px;
    margin: 0 20px 20px 0;
    border: 4px solid #ccc;
    box-sizing: border-box
  }
  #popular-genre li:nth-child(4n) {
    margin-right: 0
  }
  #popular-genre .genre1 {
    border-color: #ff8787
  }
  #popular-genre .genre2 {
    border-color: #f5ad72
  }
  #popular-genre .genre3 {
    border-color: #ebbf10
  }
  #popular-genre .genre4 {
    border-color: #7fda67
  }
  #popular-genre .genre5 {
    border-color: #6fd7ce
  }
  #popular-genre .genre6 {
    border-color: #90b6eb
  }
  #popular-genre .genre7 {
    border-color: #b18eef
  }
  #popular-genre .genre8 {
    border-color: #f18bc9
  }
  #popular-genre li a {
    display: block;
    padding: 14px 0;
    font-size: 1pc;
    text-align: center;
    box-sizing: border-box
  }
  #jisseki {
    clear: both;
    background: #fffdf2
  }
  #jisseki.jisseki-block h3.block-heading-lv3-caption span:first-child {
    padding: 4px 20px !important;
  }
  #jisseki.block h3.block-heading-lv3-caption span:last-child {
    width: 754px;
    max-width: 100%;
  }
  #jisseki .block-body {
    padding: 20px;
    border: 0
  }
  thead {
    height: 80px;
    padding: 1rem;
  }
  #table-flow {
    height: 400px;
    padding: 20px;
    background: #fff;
    font-size: 1pc;
    overflow-y: scroll
  }
  #table-flow table {
    table-layout: fixed;
    width: 100%
  }
  #table-flow tr {
    border-bottom: 1px solid #ccc
  }
  #table-flow th {
    font-weight: 400
  }
  #table-flow td, #table-flow th {
    padding: 7px 0;
    text-align: center
  }
  #table-flow .first {
    font-weight: 700
  }
  #kiyaku {
    float: left;
    width: 626px;
    outline: 0;
    background: #fff
  }
  #kiyaku .block-body {
    height: 204px;
    padding: 20px;
    overflow-y: scroll
  }

  #inquiry {
    overflow: hidden
  }
  #inquiry .pop {
    position: relative;
    float: left;
    width: 140px;
    margin-right: 30px;
    padding: 10px 0;
    border: 4px solid #fc8300;
    border-radius: 8px;
    font-size: 20px;
    line-height: 26px;
    color: #fc8300;
    text-align: center
  }
  #inquiry .pop:after, #inquiry .pop:before {
    position: absolute;
    top: 20px;
    width: 0;
    height: 0;
    content: ""
  }
  #inquiry .pop:before {
    right: -28px;
    border: 9pt solid transparent;
    border-left: 1pc solid #fc8300;
    z-index: 1
  }
  #inquiry .pop:after {
    right: -22px;
    border: 9pt solid transparent;
    border-left: 1pc solid #fff;
    z-index: 2
  }
  #inquiry .text {
    float: left;
    width: 542px;
    font-size: 14px;
    margin-right: 20px;
    line-height: 20px
  }
  #inquiry .tel-wrap {
    float: left;
    width: 15pc
  }
  #inquiry .tel-wrap .tel {
    height: 46px;
    margin: -8px 0 6px;
    font-size: 2pc;
    color: #f30
  }
  #inquiry .tel-wrap .btn {
    display: block;
    padding: 4px 0;
    background: #fc8300;
    border: 1px solid #fc8300;
    border-bottom: 3px solid #d07030;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-size: 1pc
  }
  #inquiry .tel-wrap .btn:hover {
    text-decoration: none
  }
  #appeal-comment {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    font-size: 14px;
    line-height: 24px
  }
  #featured-performers {
    border: 1px solid #cecdcb;
    outline: 0
  }
  #featured-performers.block h3.block-heading-lv3-caption span:first-child {
    width: 15pc
  }
  #featured-performers.block h3.block-heading-lv3-caption span:last-child {
    width: 714px
  }
  #featured-performers .block-body {
    padding: 20px;
    background: #fff;
    border: 0;
    outline: 0
  }
  #recommended-genre.block {
    background: #fff;
    border: 0;
    margin-bottom: 30px
  }
  #recommended-genre.block h3.block-heading-lv3-caption {
    border: 1px solid #ccc;
    margin-bottom: 20px
  }
  #recommended-genre.block h3.block-heading-lv3-caption span:first-child {
    width: 15pc
  }
  #recommended-genre.block h3.block-heading-lv3-caption span:last-child {
    width: 714px
  }
  #recommended-genre .block-body {
    padding: 20px 20px 0;
    background: #fff;
    border: 1px solid #ff8787;
    overflow: hidden;
    box-sizing: border-box
  }
  #recommended-genre ul li {
    padding: 0;
    background: 0
  }
  #recommended-genre-tab ul li {
    display: inline-block;
    padding: 6px 10px 4px;
    margin-right: 6px;
    border: 1px solid #ccc;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    font-size: 15px;
    cursor: pointer
  }
  #recommended-genre #recommended-genre-tab ul li.active, #recommended-genre-tab ul li:hover {
    background: #fff;
    border: 1px solid #ff8787;
    border-bottom: 0;
    color: #ff8787
  }
  #recommended-genre #recommended-genre-tab ul li.active {
    position: relative;
    cursor: default
  }
  #recommended-genre ul li:first-child {
    border-top: 1px solid #ccc
  }
  #recommended-genre ul li:first-child:hover {
    border-top: 1px solid #ff8787
  }
  #recommended-genre-tab ul li.active:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #fff;
    z-index: 1
  }
}

@media screen and (max-width: 414px) {
  .block-heading-lv3 {
    background: #fc8300;
    color: #fff;
    padding: 2px 10px
  }
  .block-heading-lv3-caption {
    background: #f5f5f5
  }
  .block-heading-lv3-caption span:first-child {
    display: inline-block;
    padding: 4px 10px;
    background: #fc8300;
    color: #fff;
    font-size: 14px;
    text-shadow: 1px 1px 2px #b7660d;
    text-align: center
  }
  .block-heading-lv3-caption span:last-child {
    display: inline-block;
    padding: 4px 10px;
    background: #f5f5f5;
    font-size: 14px;
    font-weight: 400;
    color: red
  }
  #search-lecturer .query-and-submit {
    padding: 10px
  }
  #search-lecturer .query-and-submit input {
    margin-bottom: 10px
  }
  #contents-list {
    clear: both;
    margin-bottom: 20px;
    padding: 10px 10px 0;
    background: #f5f5f5;
    overflow: hidden
  }
  #contents-list li {
    float: left;
    width: 100%;
    height: 10pc;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box
  }
  #contents-list li:nth-child(3n+2) {
    margin: 0 0 20px
  }
  #contents-list li a {
    display: block;
    height: 100%;
    padding-top: 118px;
    box-sizing: border-box
  }
  #contents-list li a:hover {
    text-decoration: none
  }
  #contents-list li span {
    display: block;
    height: 40px;
    padding: 7px 0;
    background: #fff;
    text-align: center;
    font-size: 1pc;
    border-top: 2px solid #fc8300;
    box-sizing: border-box
  }
  #contents-list li span.nolink {
    margin-top: 118px
  }
  #contents-list li:first-child {
    background: url(/bundles/eikodemo/images/index/contents-list1.jpg)center/cover no-repeat
  }
  #contents-list li:nth-child(2) {
    background: url(/bundles/eikodemo/images/index/contents-list2.jpg)center top 0/cover no-repeat
  }
  #contents-list li:nth-child(3) {
    background: url(/bundles/eikodemo/images/index/contents-list3.jpg)center/cover no-repeat
  }
  #contents-list li:nth-child(4) {
    background: url(/bundles/eikodemo/images/index/contents-list4.jpg)center top -40px/cover no-repeat
  }
  #contents-list li:nth-child(5) {
    background: url(/bundles/eikodemo/images/index/contents-list5.jpg)center/cover no-repeat
  }
  #contents-list li:last-child {
    background: url(/bundles/eikodemo/images/index/contents-list6.jpg)center top -30px/cover no-repeat
  }
  #popular-genre, .index #special-contents {
    background: #fff
  }
  .index #special-contents .block-body {
    overflow: hidden;
    border: 0
  }
  .index #special-contents ul li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 20px
  }
  .index #special-contents ul li p {
    width: 80%;
    margin: 0 auto
  }
  #recommended-tab ul {
    overflow: hidden;
    padding: 10px
  }
  #recommended-tab ul li {
    display: inline-block;
    width: auto;
    margin: 2px 6px;
    padding: 2px 6px;
    border: 1px solid #ccc;
    border-radius: 5px
  }
  .teacher-layout ul li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 20px
  }
  .teacher-layout img.photo {
    margin: 0 auto 15px
  }
  .teacher-layout li p {
    width: 80%;
    margin: 0 auto
  }
  #recommended .teacher-layout li {
    border: 0;
    margin-bottom: 20px
  }
  #lecturer-budget, #popular-genre {
    border: 1px solid #cecdcb;
    box-sizing: border-box
  }
  #banner-wrap {
    text-align: center
  }
  #lecturer-budget {
    background: #fffdf2;
    outline: 0
  }
  #lecturer-budget li a {
    position: relative;
    display: block;
    margin-bottom: 6px;
    padding: 2px 0 2px 10px;
    background: #fff;
    font-size: 1pc
  }
  #lecturer-budget li a:hover {
    text-decoration: none;
    background: #f5f5f5
  }
  #lecturer-budget li:first-child a {
    border: 2px solid #e96abe;
    border-left: 24px solid #e96abe
  }
  #lecturer-budget li:nth-child(2) a {
    border: 2px solid #49b224;
    border-left: 24px solid #49b224
  }
  #lecturer-budget li:nth-child(3) a {
    border: 2px solid #fc6327;
    border-left: 24px solid #fc6327
  }
  #lecturer-budget li:nth-child(4) a {
    border: 2px solid #000;
    border-left: 24px solid #000
  }
  #lecturer-budget li:last-child, #lecturer-budget li:last-child a {
    margin-bottom: 0
  }
  #lecturer-budget li a:after {
    content: "";
    position: absolute;
    top: 11px;
    right: 8px;
    width: 0;
    height: 0;
    border: 4px solid transparent
  }
  #lecturer-budget li:first-child a:after {
    border-left: 6px solid #e96abe
  }
  #lecturer-budget li:nth-child(2) a:after {
    border-left: 6px solid #49b224
  }
  #lecturer-budget li:nth-child(3) a:after {
    border-left: 6px solid #fc6327
  }
  #lecturer-budget li:nth-child(4) a:after {
    border-left: 6px solid #000
  }
  .index #popular-genre .block-body {
    padding: 10px 10px 0;
    overflow: hidden
  }
  .index #popular-genre li {
    float: left;
    width: 48%;
    height: 60px;
    margin: 0 0 10px;
    border: 4px solid #ccc;
    box-sizing: border-box;
  }
  #jisseki #table-flow, #kiyaku .block-body {
    height: 300px;
    overflow-y: scroll;
  }
  .index #popular-genre li:nth-child(odd) {
    margin-right: 4%
  }
  .index #popular-genre .genre1 {
    border-color: #ff8787
  }
  .index #popular-genre .genre2 {
    border-color: #f5ad72
  }
  .index #popular-genre .genre3 {
    border-color: #ebbf10
  }
  .index #popular-genre .genre4 {
    border-color: #7fda67
  }
  .index #popular-genre .genre5 {
    border-color: #6fd7ce
  }
  .index #popular-genre .genre6 {
    border-color: #90b6eb
  }
  .index #popular-genre .genre7 {
    border-color: #b18eef
  }
  .index #popular-genre .genre8 {
    border-color: #f18bc9
  }
  .index #popular-genre li a {
    display: block;
    padding: 14px 0;
    font-size: 1pc;
    text-align: center;
    box-sizing: border-box
  }
  .index #jisseki #table-flow {
    font-size: 14px;
    line-height: 18px
  }
  .index #jisseki #table-flow th {
    padding: 4px 0
  }
  .index #jisseki #table-flow td {
    padding: 10px 0 1pc
  }
  #featured-performers .block-body, #featured-performers .block-heading-lv3-caption, #inquiry, #recommended-genre .block-heading-lv3-caption, #recommended-genre .teacher-layout, #recommended-genre-tab ul, #voice-of-staff .block-body, #voice-of-staff li {
    overflow: hidden
  }
  #inquiry {
    margin-bottom: 20px
  }
  #inquiry .pop {
    position: relative;
    float: left;
    width: 140px;
    margin-bottom: 24px;
    padding: 8px 0;
    border: 4px solid #fc8300;
    border-radius: 8px;
    font-size: 20px;
    line-height: 26px;
    color: #fc8300;
    text-align: center
  }
  #inquiry .pop:after, #inquiry .pop:before {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    content: "";
    width: 0;
    height: 0
  }
  #inquiry .pop br {
    display: none
  }
  #inquiry .pop:before {
    bottom: -2pc;
    border: 9pt solid transparent;
    border-top: 1pc solid #fc8300;
    z-index: 1
  }
  #inquiry .pop:after {
    bottom: -26px;
    border: 9pt solid transparent;
    border-top: 1pc solid #fff;
    z-index: 2
  }
  #inquiry .text {
    font-size: 14px
  }
  #inquiry .tel-wrap .tel {
    height: 46px;
    margin-bottom: 10px;
    font-size: 2pc;
    color: #f30;
    text-align: center
  }
  #inquiry .tel-wrap .btn {
    display: block;
    width: 60%;
    margin: 0 auto;
    padding: 14px 0;
    background: #fc8300;
    border: 1px solid #fc8300;
    border-bottom: 3px solid #d07030;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    font-size: 1pc
  }
  #appeal-comment {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    font-size: 14px;
    line-height: 24px
  }
  .index #featured-performers .block-body {
    overflow: hidden;
    border: 0
  }
  .index #featured-performers ul li {
    display: block;
    float: none;
    width: 100%;
    margin: 0 0 20px
  }
  .index #featured-performers ul li p {
    width: 80%;
    margin: 0 auto
  }
  #featured-performers .block-heading-lv3-caption span {
    width: 100%;
    text-align: center;
    box-sizing: border-box
  }
  .index #recommended-genre .block-body {
    border: 0
  }
  #recommended-genre-tab ul {
    padding: 10px
  }
  #recommended-genre-tab ul li {
    display: inline-block;
    width: auto;
    margin: 2px 6px;
    padding: 2px 6px;
    border: 1px solid #ccc;
    border-radius: 5px
  }
  #recommended-genre-tab ul li:first-child {
    border: 1px solid #ccc
  }
  #recommended-genre .block-heading-lv3-caption span {
    width: 100%;
    text-align: center;
    box-sizing: border-box
  }
  #recommended-genre .teacher-layout li {
    border: 0;
    background: #fff
  }
  #recommended-genre .teacher-layout img {
    border: 2px solid #fc8300;
    display: block;
    margin: 0 auto 15px
  }
  
}

@media screen and (max-width: 1300px) {
  body{
    padding-top: 110px;
  }
  #logo {
    width: 130px;
    height: 100%;
  }
  .l-wrapper {
    padding-top: 1rem;
  }
  .tel-button {
    justify-content: flex-start;
    font-size: 120%;
  }
  .tel-button::before {
    width: 17px;
  }
  .header-anchor {
    text-align: left !important;
  }
  .site-desc {
    color: #fff;
  }
  .l-header-sub {
    background-color: #FFD264;
  }
  .header-flex {
    min-height: 22px;
  }
  #global-nav{
    display: none;
    position: absolute;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    top: 100%;
    right: 0;
  }
  #global-nav.active{
    display: block;
    animation: slideIn 0.4s ease forwards;
  }
  @keyframes slideIn {
    0% {
      right: -100%;
    }
    100% {
      right: 0;
    }
  }
  .blobal-nav ul li:not(:first-child)::before {
    display: none;
  }
  .blobal-nav ul {
    flex-direction: column;
    padding: 30px 60px;
  }
  #lecturer-category ul li {
    width: calc((100% - 60px) / 4);
    height: calc((100vw - 4rem - 80px) / 4);
  }
  .flex {
    flex-direction: column;
  }
  .banner-wrapper{
    flex-direction: column-reverse;
    padding: 2rem;
  }
  #search-lecturer,
  .owl-carousel {
    width: 100%;
  }
  .owl-carousel {
    padding-left: 0;
    height: 360px;
    margin-bottom: 2rem;
  }
  .owl-carousel li a img {
    position: relative;
  }
  #search-lecturer {
    padding: 0 2.4rem 3.6rem;
  }
  .lecturer-heading {
    padding: 3.6rem 0 2.4rem;
  }
  #content .block,
  .ranking, .performance, .top-column, .jisseki, .flex-bg{
    padding: 3rem 2rem;
  }
  #news,
  #voice-of-staff {
    width: 100%;
  }
  .middle-inner, .bottom-inner{
    flex-direction: column;
    padding: 0 20px;
  }
  #footer-middle-left,
  #footer-nav {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-top: 30px;
  }
  #footer-nav ul:first-child {
    margin-bottom: 15px;
  }
  .flex-start {
    flex-wrap: wrap;
  }
  .sp-block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
  }
  .sp-block td{
    padding-right: 30px;
  }
  #footer-nav table th {
    display: block;
    width: 100%;
  }
  .banner-section-inner {
    flex-direction: column;
  }
  .banner-contain {
    height: auto;
    width: 90%;
  }
  .hamburger-icon {
    display: block;
  }

  .blobal-nav ul li {
    margin-bottom: 15px;
    margin-right: 0;
    padding-bottom: 15px;
    border-bottom: 1px dashed;
  }
  .fixed-contact-wrapper {
    width: 3rem;
  }

}
@media screen and (max-width: 980px) {
  .section-header{
    flex-direction: column;
  }
  .genre-inner,
  .genre-desc {
    width: 100%;
  }
  .genre-inner{
    padding-bottom: 1rem;
  }
  .to-descPerson{
    width: 35px;
    height: 35px;
    bottom: 16px;
    right: 5px;
    font-size: 20px;
  }
  .ranking-list {
    margin-top: 50px;
  }
  .ranking-button{
    margin-top: 50px;
  }
  .section-text {
    width: 100%;
  }
  .strength-image {
    width: 100%;
  }
  .strength {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
  }
  .strength-icon {
    left: 35px;
    width: 20vw;
    height: 20vw;
  }
  .strength-balloon:nth-of-type(2) {
    top: 60%;
    left: 30%;
  }
  .strength-balloon:nth-of-type(3) {
    top: 85%;
    left: 35%;
  }
  .produce-swiper{
    padding-bottom: 3rem;
  }
  .pickup{
    padding: 4rem 0 20vw;
  }
  .specialContents,
  .pickup-list{
    margin-top: 50px;
    margin-left: 3vw;
  }
  .pickup-item{
    width: calc(50% - 3vw);
  }
  .pickup-obj {
    transform: rotate(0) translateY(0%) translateX(0%);
    font-size: 24vw;
    top: auto;
    bottom: -12vw;
  }
  .column-loop,
  .performance-list {
    margin-top: 50px;
  }
  .column-item {
    width: calc((100% - 3vw) / 2);
  }
  .enta-genre-inner{
    width: 100%;
  }
  .performance-item{
    width: 100%;
  }
  .switch-wrapper {
    width: 100%;
    margin-top: 1rem;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
  #content{
    width: 100%;
    float: none;
  }
  #lecturer-category {
    outline: none;
  }
  #lecturer-category .block-body {
    padding: 0;
  }
  .strength-icon {
    width: 165px;
    height: 165px;
    left: 10%;
    top: 110px;
  }
  .strength-header,
  .ranking-list {
    flex-direction: column;
  }
  #lecturer-category ul li {
    width: calc((100% - 20px) / 2);
    height: calc((100vw - 4rem - 60px) / 2);
    padding: 0;
    border-bottom: none;
  }
  #lecturer-category ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
    background-color: #fff;
    border-radius: 10px;
  }
  .genre-icon-wrapper{
    width: 40%;
  }
  .js-fade:nth-of-type(2n+1) {
    transition-delay: 0s;
  }
  .js-fade:nth-of-type(2n) {
    transition-delay: 0.2s;
  }
  #search-lecturer{
    outline: none;
    background: #FFD264;
    border: 4px solid #FFFFFF;
    padding: 0 1.4rem 2.6rem;
  }
  .ranking-list{
    padding: 0 3rem;
    gap: 10vw;
  }
  .ranking-item {
    width: 100%;
  }
  .ranking-image{
    padding-bottom: 121.8%;
  }
  .ranking-button{
    padding: 1.2rem 3rem;
  }
  .strength-heading{
    font-size: 45px;
    line-height: 1.2;
    padding-top: 1rem;
  }
  .strength-balloon:nth-of-type(2) {
    top: 65%;
    left: 0%;
  }
  .strength-balloon:nth-of-type(3) {
    top: 121%;
    left: 8%;
  }
  .swiper-container{
    margin-top: 20px;
  }
  .produce-slide {
    width: calc((100% - 2.5vw * 3) / 2);
  }
  .produce-swiper {
    padding-bottom: 2rem;
    overflow: hidden;
  }
  .specialContents{
    width: 95%;
    padding: 0.6rem 0 0.6rem 1rem;
    border-left: 15px solid #FFB500;
    margin-top: 0;
  }
  .name{
    margin-top: 1rem;
  }
  .works {
    margin-top: 0.5rem;
  }
  .pickup-item{
    padding: 4vw 1vw;
  }
  .column-loop{
    gap: 6vw;
  }
  .column-item{
    width: 100%;
  }
  .performance-list{
    padding: 0 1rem;
    gap: 6vw;
  }
  .performance-item {
    width: 100%;
  }
  .performance-item a{
    padding: 1rem;
    justify-content: center;
  }
  .perfect-circle {
    width: 50%;
    padding-bottom: 50%;
  }
  .performance-inner {
    width: 100%;
    text-align: center;
  }
  .switch-wrapper{
    justify-content: center;
  }
  .flex-bg{
    padding: 3rem 2rem;
  }
  .call-button{
    margin-top: 30px;
    padding: 1rem 3.6rem;
  }
  #news, #voice-of-staff{
    padding: 10vw 6vw;
    border-radius: 25px;
  }
  .call-anchor{
    font-size: 5vw;
    padding-bottom: 10px;
  }
  .call-anchor::before{
    position: relative;
    width: 22px;
    padding-right: 8px;
    top: 4px;
  }
  .call-anchor::after{
    width: 50%;
  }
  .owl-carousel {
    height: 250px;
  }
  .lecturer-heading {
    padding: 2.6rem 0 1.4rem;
  }
  #search-lecturer input[type=text] {
    width: calc(100% - 60px);
    padding: 5px;
  }
  #search-lecture .query-and-submit a, #search-lecturer .query-and-submit a{
    height: 26px;
    line-height: 25px;
  }
  .query-and-submit{
    height: 46px;
  }
  #search-lecturer table {
    margin-bottom: 20px;
  }
  .news-p {
    padding-right: 11vw;
    margin-top: 1rem;
  }
  .switch-tab {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  
  .switch-tab.active::before {
    width: 12px;
    height: 12px;
    top: -7px;
  }
  .strength-text {
    flex-direction: column;
    justify-content: flex-start;
  }
  .strength-head,
  .strength-desc {
    width: 100%;
  }
}
