.magazineindex_title h1,
.magazineindex_title h2,
.magazineindex_title h3,
.magazineindex_title h4,
.magazineindex_title h5,
.magazineindex_title h6 {
  font-size: 6rem;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .magazineindex_title {
    text-align: center;
  }
  .magazineindex_title h1,
  .magazineindex_title h2,
  .magazineindex_title h3,
  .magazineindex_title h4,
  .magazineindex_title h5,
  .magazineindex_title h6 {
    font-size: 5rem;
  }
}
.magazineindex_pickup {
  margin-top: 72px;
  padding: 55px 0 100px;
  background-color: #f9a80d;
}
@media screen and (max-width: 767px) {
  .magazineindex_pickup {
    margin-top: 32px;
    padding: 38px 0 80px;
  }
}
.magazineindex_pickup_catch {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .magazineindex_pickup_catch {
    text-align: center;
  }
}
.magazineindex_slide_wrap {
  position: relative;
}
.magazineindex_slide_wrap a:hover{
  text-decoration: none;
}
.magazineindex_slide_next,
.magazineindex_slide_prev {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 29px;
  height: 55px;
  margin: auto !important;
}
.magazineindex_slide_next a,
.magazineindex_slide_prev a {
  display: block;
  width: 29px;
  height: 55px;
  font-size: 0;
}
.magazineindex_slide_next a:hover,
.magazineindex_slide_prev a:hover {
  text-decoration: none;
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_next,
  .magazineindex_slide_prev {
    display: none;
  }
}
.magazineindex_slide_prev {
  left: -49px;
}
.magazineindex_slide_prev a {
  background: url(/magazine/img/index_icon02.png) 0 0 no-repeat;
  background-size: 100% 100%;
}
.magazineindex_slide_next {
  right: -49px;
}
.magazineindex_slide_next a {
  background: url(/magazine/img/index_icon03.png) 0 0 no-repeat;
  background-size: 100% 100%;
}
.magazineindex_slide_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  margin-top: 30px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_wrap {
    margin-top: 32px;
  }
}
.magazineindex_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: start;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
}
.magazineindex_slide li {
  width: 100%;
}
.magazineindex_slide li a {
  display: block;
}
.magazineindex_slide li a:hover {
  text-decoration: none;
}
.magazineindex_slide_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  width: 100%;
  background-color: #fff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_inner {
    display: block;
  }
}
.magazineindex_slide_textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  padding: 40px 40px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_textarea {
    width: 100%;
    padding: 25px 30px 30px;
  }
}
.magazineindex_slide_head{
    display: flex;
    justify-content: space-between;
}
.magazineindex_slide_catch {
  position: relative;
  margin-left: -8px;
  color: #8c6500;
  font-weight: 700;
  font-size: 1.6rem;
}
.magazineindex_slide_catch:after,
.magazineindex_slide_catch:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
.magazineindex_slide_catch:before {
  left: -40px;
  width: 32px;
  height: 0;
  margin: auto 0;
  border-top: 1px solid #999;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.magazineindex_slide_catch:after {
  left: -18px;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transform: rotate(45deg) scale(0) translate(-20px, 20px);
  transform: rotate(45deg) scale(0) translate(-20px, 20px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.magazineindex_slide_inner:hover .magazineindex_slide_catch:before {
  border-top-color: #000;
}
.magazineindex_slide_inner:hover .magazineindex_slide_catch:after {
  opacity: 1;
  -webkit-transform: rotate(45deg) scale(1) translate(0, 0);
  transform: rotate(45deg) scale(1) translate(0, 0);
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_catch {
    margin-left: 0;
    font-size: 1.2rem;
  }
}
.magazineindex_slide_date{
    margin: 0;
    color: #000;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_date{
    font-size: 1.3rem;
  }
}

.magazineindex_slide_name {
  margin-top: 30px;
  font-weight: 700;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_name {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
.magazineindex_slide_copy {
  margin-top: 30px;
  color: #666;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_copy {
    margin-top: 15px;
    font-size: 1.3rem;
  }
}
.magazineindex_slide_img {
  overflow: hidden;
  width: 50%;
}
.magazineindex_slide_img img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.magazineindex_slide_inner:hover .magazineindex_slide_img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .magazineindex_slide_img {
    width: 100%;
  }
}
.magazineindex_tab {
  padding: 80px 0;
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .magazineindex_tab {
    padding: 50px 0 60px;
  }
}
.magazineindex_tab_handle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  -ms-flex-align: end;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  align-items: flex-end;
}
.magazineindex_tab_handle li {
  width: 100%;
  max-width: 180px;
  margin: 0 20px;
}
.magazineindex_tab_handle li a {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
  font-size: 1.8rem;
}
.magazineindex_tab_handle li a.is-current {
  border-color: #333;
}
.magazineindex_tab_handle li a:hover {
  border-color: #333;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .magazineindex_tab_handle li {
    max-width: 105px;
    margin: 0 15px;
  }
}
.magazineindex_tab_content_item.is-active {
  display: block;
}
.magazineindex_item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin: 20px -20px 0;
  text-align: center;
  font-size: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.magazineindex_item_wrap.opt-5clm {
  margin: 20px -15px 0;
}
@media screen and (max-width: 767px) {
  .magazineindex_item_wrap {
    margin: 40px 0 0 -10px;
  }
  .magazineindex_item_wrap.opt-5clm {
    margin: 40px 0 0 -10px;
  }
}
.magazineindex_item {
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33%;
  margin-top: 40px;
  padding: 0 20px;
  vertical-align: top;
}
.opt-5clm .magazineindex_item {
  width: 20%;
  margin-top: 30px;
  padding: 0 15px;
}
.opt-5clm .magazineindex_item:before {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  font-family: Oswald, sans-serif;
  line-height: 1;
  pointer-events: none;
}
.opt-5clm .magazineindex_item:first-child:before {
  content: "1";
}
.opt-5clm .magazineindex_item:nth-child(2):before {
  content: "2";
  opacity: 0.85;
}
.opt-5clm .magazineindex_item:nth-child(3):before {
  content: "3";
  opacity: 0.7;
}
.opt-5clm .magazineindex_item:nth-child(4):before {
  content: "4";
  opacity: 0.55;
}
.opt-5clm .magazineindex_item:nth-child(5):before {
  content: "5";
  opacity: 0.55;
}
.opt-5clm .magazineindex_item a:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 10px;
  width: 24px;
  height: 24px;
  background: url(/magazine/img/index_bg01.png) 0 0 no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.magazineindex_item a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .opt-5clm .magazineindex_item {
    width: 33.33%;
    margin-top: 30px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .magazineindex_item {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 15px;
    padding: 0 0 0 10px;
  }
  .magazineindex_item:first-child {
    margin-top: 0;
  }
  .opt-5clm .magazineindex_item {
    width: 100%;
    margin-top: 30px;
    padding: 0 0 0 10px;
  }
}
.magazineindex_item_inner {
  background-color: #fff;
}
.magazineindex_item_img {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 66.28%;
}
.magazineindex_item_img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.magazineindex_item a:hover .magazineindex_item_img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.magazine_text {
  position: relative;
  padding: 22px 30px 28px;
  background-color: #fff;
  text-align: left;
}
.magazine_text:before {
  content: "";
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  margin: auto;
  background-color: #f9a80d;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.opt-5clm .magazine_text:before {
  background-color: #fff;
}
.magazineindex_item a:hover .magazine_text:before {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .magazine_text {
    padding-bottom: 26px;
  }
}
.magazine_text_head{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.magazine_text_category {
  position: relative;
  color: #8c6500;
  font-weight: 700;
  font-size: 1.3rem;
}
.magazine_text_category:after,
.magazine_text_category:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
.magazine_text_category:before {
  left: -40px;
  width: 32px;
  height: 0;
  margin: auto 0;
  border-top: 1px solid #999;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.magazine_text_category:after {
  left: -18px;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transform: rotate(45deg) scale(0) translate(-20px, 20px);
  transform: rotate(45deg) scale(0) translate(-20px, 20px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.magazine_text_date{
    font-size: 1.3rem;
    color: #000;
    margin: 0;
}
.magazineindex_item:hover .magazine_text_category:before {
  border-top-color: #000;
}
.magazineindex_item:hover .magazine_text_category:after {
  opacity: 1;
  -webkit-transform: rotate(45deg) scale(1) translate(0, 0);
  transform: rotate(45deg) scale(1) translate(0, 0);
}
@media screen and (max-width: 767px) {
  .magazine_text_category {
    font-size: 1.2rem;
  }
}
.magazine_text_catch {
  position: relative;
  margin-top: 11px;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .magazine_text_catch {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}
.magazine_text_copy {
  position: relative;
  margin-top: 18px;
  color: #666;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .magazine_text_copy {
    margin-top: 12px;
  }
}
.magazineindex_button.theme-reverse {
  position: relative;
  max-width: 240px;
  margin: 60px auto 0;
}
.magazineindex_button.theme-reverse:after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  background: url(/magazine/img/index_icon01.png) 0 0 no-repeat;
  background-size: 100% 100%;
}
.magazineindex_button.theme-reverse a {
  min-height: 46px;
  color: #222;
  font-size: 1.3rem;
}
.magazineindex_button.theme-reverse a:after {
  border-color: #222;
}
@media screen and (max-width: 767px) {
  .magazineindex_button.theme-reverse {
    margin-top: 40px;
  }
}
.magazineindex_ranking {
  margin-bottom: -80px;
  padding: 80px 0;
  background-color: #f9a80d;
}
@media screen and (max-width: 767px) {
  .magazineindex_ranking {
    margin-bottom: -70px;
    padding: 60px 0;
  }
}
.magazineindex_ranking_catch {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .magazineindex_ranking_catch {
    text-align: center;
  }
}
