.genre_list {
  margin-top: 1.33vw;
}

.genre_list__left {
  width: 50vw;
  float: left;
}

.genre_list__right {
  width: 50vw;
  float: right;
  padding-top: 2.66vw;
}

.genre_list__left_item {
  display: block;
  width: 100%;
  margin-top: 6.66vw;
}

.genre_list__right_item {
  display: block;
  width: 100%;
  margin-top: 6.66vw;
}

.genre_list__image {
  display: block;
  width: 42.67vw;
  height: 37.33vw;
  margin-left: 2.66vw;
}

.genre_list__text_box {
  position: relative;
  display: block;
  width: 42.66vw;
  height: 42.66vw;
  margin-left: 5.33vw;
  margin-top: -2.66vw;
  background-color: #ffffff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.genre_list__text_box__title {
  font-family: HiraKakuProN-W6;
  font-size: 3.2vw;
  line-height: 1.67;
  text-align: center;
  color: #000000;
  padding-top: 2.66vw;
  display: block;
  height: 5.33vw;
}

.genre_list__text_box__content {
  font-family: HiraKakuProN-W3;
  font-size: 2.66vw;
  line-height: 1.4;
  text-align: left;
  color: #222222;
  padding: 4vw 2.66vw 0 2.66vw;
  display: block;
  height: 22.66vw;
}

.genre_list__text_box__link {
  position: absolute;
  padding: 1.33vw 2.66vw 1.33vw 2.66vw;
  display: block;
  width: 100%;
  bottom: 0;
}

.genre_list__text_box__link a {
  display: block;
  font-family: HiraKakuProN-W3;
  font-size: 2.66vw;
  line-height: 1.4;
  width: 100%;
  background-color: #ffffff;
  letter-spacing: 0.26vw;
  border: 1px solid #222222;
  padding: 1.33vw;
  text-align: center;
  color: #222222;
}

.method_tabs {
    padding-bottom: 20px;
    background-color: white;
    width: 100%;
    margin: 20px auto 0;
}
.method_tab_item {
    width: calc(100%/3);
    height: 50px;
    line-height: 1rem;
    font-size: 0.7rem;
    text-align: center;
    color: white;
    font-weight: bold;
    font-family: HiraKakuPro-W6;
    display: block;
    float: left;
    vertical-align: middle;
    transition: all 0.2s ease;
    padding-top: 1rem;
    position: relative;
}
.method_tab_item.two-row {
    padding-top: 0.5rem;
}
.method_tab_item:nth-child(2) {
    background-color: #eeaaaa;
}
.method_tab_item:nth-child(4) {
    background-color: #88ddbb;
}
.method_tab_item:nth-child(6) {
    background-color: #88ccdd;
}
.method_tab_item:hover {
    opacity: 0.75;
}
input[name="method_tab_item"] {
    display: none;
}
.method_content {
    display: none;
    padding: 20px 10px 0;
    clear: both;
    overflow: hidden;
}
#basic-method-tab:checked ~ #basic-method,
#karaoke-method-tab:checked ~ #karaoke-method,
#professional-method-tab:checked ~ #professional-method {
    display: block;
}
.method_tabs input:checked + .method_tab_item {
    color: #212121;
    background-color: #fff;
}
.method_tabs input:checked + .method_tab_item:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    display: inline-block;
    width: 80%;
    height: 1px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
}
.method_tabs input:checked + .method_tab_item:nth-child(2):before {
    background-color: #eeaaaa;
}
.method_tabs input:checked + .method_tab_item:nth-child(4):before {
    background-color: #88ddbb;
}
.method_tabs input:checked + .method_tab_item:nth-child(6):before {
    background-color: #88ccdd;
}
