@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Contents
========================================================================== */
#page, .container {
  font-family: Meiryo, メイリオ, sans-serif !important;
}

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 800px) {
  .full_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.max_width {
  max-width: 1900px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  max-width: 1130px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 800px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.btn_width {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

/*===============================================================

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 5vw;
    padding-bottom: 20vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*===============================================================

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 100px;
}

.content + .headline {
  margin-top: 100px;
}

.headline + .content {
  margin-top: 50px;
}

.content .content + *,
.content * + .content {
  margin-top: 70px;
}

.content_title + .content {
  margin-top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
} /* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 10vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 3vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
} /* for SP */
/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid_wrp .grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
.grid_wrp .grid .grid_wrp {
  margin-top: -20px;
}
.grid_wrp .grid .grid {
  margin-top: 20px;
}
.grid_wrp .grid_1_1 {
  width: 100%;
}
.grid_wrp .grid_2_1 {
  width: calc((100% - 40px) / 2);
}
.grid_wrp .grid_3_1 {
  width: calc((100% - 40px * 2) / 3); /* 40px * 2 = 80px */
}
.grid_wrp .grid_3_2 {
  width: calc(100% - (100% - 40px * 2) / 3 - 40px);
}
.grid_wrp .grid_4_1 {
  width: calc((100% - 40px * 3) / 4); /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - 40px * 2) / 5); /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - 40px * 5) / 6); /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - 40px * 2) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - 40px * 3) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - 40px * 2) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

/*===============================================================

	thiscontents_nav

===============================================================*/
.thiscontents_nav {
  width: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	navigation	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	// thiscontents_nav	ここまで
  -------------------------------------------------------------*/
}
.thiscontents_nav .navigation_wrp {
  width: 100%;
  text-align: left;
  top: 0;
  left: 0;
  height: 60px;
  background: #111;
  z-index: 999;
  padding: 0 10px;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav {
    display: none;
  }
}
.thiscontents_nav .navigation {
  max-width: 1030px;
  position: relative;
  margin: 0 auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents_nav .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
.thiscontents_nav .navigation li {
  line-height: 1.5;
  font-size: 15px;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #999;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 15px;
  margin-right: 15px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.thiscontents_nav .navigation .localnav li:first-child {
  padding-left: 0;
  border-left: 0px;
}
.thiscontents_nav .navigation .localnav li.blank a {
  background: url(/special/common/images/asset/icon-blank-pc.gif) no-repeat right top; /* white	 */
  background: url(/special/common/images/asset/icon-blank-pc_bk.gif) no-repeat right top; /* black	 */
  padding-right: 20px;
}
.thiscontents_nav .navigation .sns {
  position: absolute;
  top: 0;
  right: 0;
}
.thiscontents_nav .navigation .sns li {
  margin-left: 10px;
}
.thiscontents_nav .navigation .sns li.twitter a,
.thiscontents_nav .navigation .sns li.instagram a,
.thiscontents_nav .navigation .sns li.facebook a {
  width: 30px;
  height: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: 30px 30px;
  background-position: 0 0;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.thiscontents_nav .navigation .sns li.twitter a {
  background-image: url(/special/common/images/asset/icon_twitter.png);
}
.thiscontents_nav .navigation sns li.instagram a {
  background-image: url(/special/common/images/asset/icon_instagram.png);
}
.thiscontents_nav .navigation .sns li.facebook a {
  background-image: url(/special/common/images/asset/icon_facebook.png);
}
.thiscontents_nav .navigation .sns li.twitter,
.thiscontents_nav .navigation .sns li.twitter img,
.thiscontents_nav .navigation .sns li.facebook,
.thiscontents_nav .navigation .sns li.facebook img {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav .navigation .navigation_wrp {
    display: none;
  }
}
/*===============================================================

	linebtn

===============================================================*/
.linebtn {
  position: absolute;
  top: -1000px;
}

/*===============================================================

	sp_menu

===============================================================*/
.sp_menu {
  display: none;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	menu-trigger
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu	 sp_sns
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu navigation
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu body	
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	// sp_menu	ここまで
  -------------------------------------------------------------*/
}
@media screen and (max-width: 1030px) {
  .sp_menu {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50px;
    left: 0;
    z-index: 200;
    background: #000;
  }
  .sp_menu .inner {
    position: relative;
    width: 100%;
  }
  .sp_menu .inner .title {
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    margin-left: 10px;
  }
  .sp_menu .menu {
    width: 100px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1200;
    background: none;
    color: #fff;
    text-align: center;
    border-top: solid 0 #000;
  }
  .sp_menu .menu a {
    display: block;
    position: relative;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    text-align: right;
    padding-right: 40px;
  }
  .sp_menu .active .menu {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .sp_menu .nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
  .sp_menu .nav .nav_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 140px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_menu .nav .nav_container::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .sp_menu .menu {
    width: 80px;
    height: 40px;
  }
}
@media screen and (max-width: 320px) {
  .sp_menu .menu {
    width: 40px;
    height: 40px;
  }
  .sp_menu .menu a {
    width: 40px;
    height: 40px;
    text-indent: 100vw;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu {
    /* animation */
  }
  .sp_menu .menu-trigger, .sp_menu .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_menu .menu-trigger a {
    position: relative;
    font-size: 14px;
  }
  .sp_menu .menu-trigger span {
    position: absolute;
    right: 7px;
    width: 25px;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
  }
  .sp_menu .menu-trigger span:nth-of-type(1) {
    top: 10px;
  }
  .sp_menu .menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .sp_menu .menu-trigger span:nth-of-type(3) {
    bottom: 10px;
  }
  .sp_menu.active .menu-trigger span:nth-of-type(1) {
    top: 9px;
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .sp_menu.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
  .sp_menu.active .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .sp_sns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1000;
    overflow: hidden;
  }
  .sp_menu .sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sp_menu .sp_sns .sns li.twitter,
  .sp_menu .sp_sns .sns li.instagram,
  .sp_menu .sp_sns .sns li.facebook,
  .sp_menu .sp_sns .sns li.line {
    width: 40px;
  }
  .sp_menu .sp_sns .sns li.twitter a, .sp_menu .sp_sns .sns li.instagram a, .sp_menu .sp_sns .sns li.facebook a, .sp_menu .sp_sns .sns li.line a {
    background-image: url(/special/common/images/asset/sp_btn_twitter.png);
    background-color: #33ccff;
    background-position: 5px center;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    padding: 0;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    display: block;
    width: 40px;
    height: 40px;
  }
  .sp_menu .sp_sns .sns li.instagram a {
    background-size: 40px 40px;
    background-position: center center;
  }
  .sp_menu .sp_sns .sns li.twitter a {
    background-image: url(/special/common/images/asset/sp_btn_twitter.png);
    background-color: #33ccff;
  }
  .sp_menu .sp_sns .sns li.instagram a {
    background-image: url(/special/common/images/asset/sp_btn_instagram.png);
    background-color: #33ccff;
  }
  .sp_menu .sp_sns .sns li.facebook a {
    background-image: url(/special/common/images/asset/sp_btn_facebook.png);
    background-color: #3b5998;
  }
  .sp_menu .sp_sns .sns li.line a {
    background-image: url(/special/common/images/asset/sp_btn_line.png);
    background-color: #00c300;
  }
  .sp_menu .sp_sns .sns li.socialplus {
    float: left;
    margin-left: 5px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .navigation {
    background-color: #000;
  }
  .sp_menu .navigation .localnav li {
    width: 100%;
    text-align: left;
    background: #fff;
  }
  .sp_menu .navigation .localnav li a {
    position: relative;
    display: block;
    color: #333;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    padding: 3vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 4vw;
    line-height: 1.5;
  }
  .sp_menu .navigation .localnav li a:hover {
    text-decoration: none;
  }
  .sp_menu .navigation .localnav li a::after {
    position: absolute;
    content: " ";
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    left: auto;
    right: 18px;
    margin: auto;
    border-top: solid 1px #999;
    border-left: solid 1px #999;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 1030px) {
  .sp_menu .body {
    text-align: center;
    padding-bottom: 20px;
    background-color: #000;
    -webkit-box-shadow: rgba(0, 0, 0, 0.701961) 0px 10px 10px 0px;
            box-shadow: rgba(0, 0, 0, 0.701961) 0px 10px 10px 0px;
  }
  .sp_menu .body h3 {
    border-top: solid 1px #e63311;
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }
  .sp_menu .body h3 span {
    color: #e63311;
  }
  .sp_menu .body h4 {
    border-top: solid 1px #e63311;
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
  }
  .sp_menu .body .btn a {
    width: 90%;
    margin: 0 auto;
    display: block;
    color: #fff;
    background: #222;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    border-bottom: solid 2px rgba(0, 0, 0, 0.5);
  }
  .sp_menu .body .notmember h4 {
    color: #e63311;
  }
  .sp_menu .body .notmember .btn a {
    color: #fff;
    background: #e63311;
  }
  .sp_menu .body .recommend ul {
    width: 100%;
    overflow: hidden;
  }
  .sp_menu .body .bnr {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
  .sp_menu .body .bnr img {
    width: 100%;
    height: auto;
  }
  .sp_menu .body .sp_vodlink {
    border-top: solid 1px #e63311;
    padding-top: 10px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 800px) {
  .sp_menu .body .bnr {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
}

/*===============================================================

	sp_tablet用ナビ

===============================================================*/
.nav_wrp {
  width: 100%;
  /*-------------------------------------------------------------
  	SNS
  -------------------------------------------------------------*/
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	navi
  -------------------------------------------------------------*/
  /* navi */
}
@media screen and (max-width: 1030px) {
  .nav_wrp {
    /* sns_share */
  }
  .nav_wrp .sns_share {
    width: 100%;
    height: 5vw;
    z-index: 1000;
    overflow: hidden;
    padding: 0;
    background-color: #fff;
  }
  .nav_wrp .sns_share li.twitter, .nav_wrp .sns_share li.facebook, .nav_wrp .sns_share li.line {
    float: right;
    width: 4vw;
    margin-top: 0.5vw;
    margin-right: 0.7vw;
  }
  .nav_wrp .sns_share li:last-child {
    float: right;
    width: 11vw;
    line-height: 5vw;
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    padding-right: 1vw;
  }
  .nav_wrp .sns_share li.twitter a, .nav_wrp .sns_share li.facebook a, .nav_wrp .sns_share li.line a {
    background-image: url("../images/icon_twitter.png");
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 4vw 4vw;
    padding: 0;
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    display: block;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
  }
  .nav_wrp .sns_share li.twitter a {
    background-image: url("/special/common/images/asset/icon_x.png");
    border-radius: 50%;
  }
  .nav_wrp .sns_share li.line a {
    background-image: url("/special/common/images/asset/icon_line.png");
    border-radius: 50%;
  }
  .nav_wrp .sns_share li.facebook a {
    background-image: url("/special/common/images/asset/icon_facebook.png");
    border-radius: 50%;
  }
}
@media screen and (max-width: 800px) {
  .nav_wrp {
    /* sns_share */
  }
  .nav_wrp .sns_share {
    height: 12vw;
    padding: 0.5vw 0;
  }
  .nav_wrp .sns_share li.twitter, .nav_wrp .sns_share li.facebook, .nav_wrp .sns_share li.line {
    width: 7.5vw;
    padding-top: 1vw;
    padding-right: 1.3vw;
  }
  .nav_wrp .sns_share li:last-child {
    width: 20vw;
    font-size: 3.5vw;
    line-height: 10vw;
  }
  .nav_wrp .sns_share li.twitter a, .nav_wrp .sns_share li.facebook a, .nav_wrp .sns_share li.line a {
    background-size: 7.5vw 7.5vw;
    width: 7.5vw;
    height: 7.5vw;
  }
}
.nav_wrp .navi {
  width: 100%;
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 1030px) {
  .nav_wrp .navi {
    /* grid */
    /*.grid_3_1:nth-child(3n){
    	border-right: 0;
    }*/
    /* deactive */
  }
  .nav_wrp .navi .grid_wrp {
    background-color: #2f2f37;
    margin-top: 0;
  }
  .nav_wrp .navi .grid {
    margin-top: 0;
    margin-right: 0;
    text-align: center;
    background-color: #2f2f37;
    padding: 2vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  .nav_wrp .navi .grid a {
    display: block;
    font-size: 1.5vw;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #fff;
  }
  .nav_wrp .navi .grid a span {
    font-size: 1.3vw;
  }
  .nav_wrp .navi .grid a:before {
    content: "";
    position: absolute;
    top: 40%;
    left: 2vw;
    border: solid 1px #ceb180;
    width: 0.8vw;
    height: 0.8vw;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav_wrp .navi .grid_3_1 {
    width: 33.3333%;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .nav_wrp .navi .grid_3_1:nth-child(n+7) {
    border-bottom: 0;
  }
  .nav_wrp .navi .grid_3_1:nth-child(3n) {
    border-right: 0;
  }
  .nav_wrp .navi .grid.arow_right a:before {
    right: 2vw;
    left: auto;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .nav_wrp .navi .grid.deactive a {
    color: #888;
  }
  .nav_wrp .navi .grid.deactive a:before {
    border: 0;
  }
}
@media screen and (max-width: 800px) {
  .nav_wrp .navi {
    /* grid */
  }
  .nav_wrp .navi .grid {
    padding: 5vw 3vw;
  }
  .nav_wrp .navi .grid a {
    font-size: 3.5vw;
  }
  .nav_wrp .navi .grid a span {
    font-size: 3vw;
  }
  .nav_wrp .navi .grid a:before {
    content: "";
    position: absolute;
    top: 6vw;
    left: 2.5vw;
    border: solid 1px #fff;
    width: 1.5vw;
    height: 1.5vw;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav_wrp .navi .grid_3_1 {
    width: 50%;
    /*width: 33.3333%;*/
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
  .nav_wrp .navi .grid_3_1:nth-child(n+9) {
    border-bottom: 0;
  }
  .nav_wrp .navi .grid_3_1:nth-child(n+4) {
    border-bottom: 1px solid #000;
  }
  .nav_wrp .navi .grid_3_1:nth-child(3n) {
    border-right: 1px solid #000;
  }
  .nav_wrp .navi .grid_3_1:nth-child(2n) {
    border-right: 0;
  }
}

/* nav_wrp */
/*===============================================================

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 70px;
}
.block + .block {
  margin-top: 20px;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 8vw;
  }
  .block + .block {
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline {
  /*margin-bottom: 70px;
  padding-top: 70px;
  border-top: solid 2px #000;*/
  text-align: center;
}
.headline .title {
  font-size: 32px;
  letter-spacing: 0.2em;
}
.headline .lead {
  font-size: 20px;
  line-height: 1.6;
}
.headline .title + .lead {
  margin-top: 15px;
}
.headline .lead + .title {
  margin-top: 10px;
}
.content * + .headline {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .headline {
    margin-bottom: 5vw;
    padding-top: 10vw;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .headline .lead {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 2vw;
  }
  .content * + .headline {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	content_title	
-------------------------------------------------------------*/
.content_title {
  margin-bottom: 30px;
}
.content_title .title {
  font-size: 30px;
}
.content_title .lead {
  font-size: 20px;
  line-height: 1.6;
}
.content_title .title + .lead {
  margin-top: 15px;
}
.content_title .lead + .title {
  margin-top: 10px;
}
.content * + .content_title {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .content_title {
    margin-bottom: 5.5vw;
  }
  .content_title .title {
    font-size: 5vw;
  }
  .content_title .lead {
    font-size: 4vw;
    line-height: 1.5;
  }
  .content_title .title + .lead {
    margin-top: 2vw;
  }
  .content_title .lead + .title {
    margin-top: 2vw;
  }
  .content * + .content_title {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_1	
-------------------------------------------------------------*/
.lv_1 {
  margin-bottom: 20px;
}
.lv_1 .title {
  font-size: 30px;
}
.lv_1 .lead {
  font-size: 20px;
}
.lv_1 .title + .lead {
  margin-top: 5px;
}
.lv_1 .lead + .title {
  margin-top: 10px;
}
.content * + .lv_1 {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .lv_1 {
    margin-bottom: 5vw;
  }
  .lv_1 .title {
    font-size: 5vw;
  }
  .lv_1 .lead {
    font-size: 3.5vw;
    line-height: 1.5;
  }
  .lv_1 .title + .lead {
    margin-top: 1vw;
  }
  .lv_1 .lead + .title {
    margin-top: 1vw;
  }
  .content * + .lv_1 {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 {
  margin-bottom: 10px;
}
.lv_2 .title {
  font-size: 25px;
}
.lv_2 .lead {
  font-size: 18px;
}
.lv_2 .title + .lead {
  margin-top: 5px;
}
.lv_2 .lead + .title {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .lv_2 {
    margin-bottom: 3vw;
  }
  .lv_2 .title {
    font-size: 4.5vw;
  }
  .lv_2 .lead {
    font-size: 3.5vw;
  }
  .lv_2 .title + .lead {
    margin-top: 1vw;
  }
  .lv_2 .lead + .title {
    margin-top: 1vw;
  }
}

/*-------------------------------------------------------------
	lv_3	
-------------------------------------------------------------*/
.lv_3 {
  margin-bottom: 20px;
}
.lv_3 .title {
  font-size: 20px;
}
.lv_3 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_3 {
    margin-bottom: 3vw;
  }
  .lv_3 .title {
    font-size: 4.2vw;
  }
  .lv_3 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_3 .title + .lead {
    margin-top: 1vw;
  }
  .lv_3 .lead + .title {
    margin-top: 0vw;
  }
}

/*-------------------------------------------------------------
	lv_4	
-------------------------------------------------------------*/
.lv_4 {
  margin-bottom: 20px;
}
.lv_4 .title {
  font-size: 18px;
}
.lv_4 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_4 {
    margin-bottom: 3vw;
  }
  .lv_4 .title {
    font-size: 4.2vw;
  }
  .lv_4 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_4 .title + .lead {
    margin-top: 1vw;
  }
  .lv_4 .lead + .title {
    margin-top: 0vw;
  }
}

/*===============================================================

	btn_detail

===============================================================*/
.btn_detail {
  width: 350px;
  margin: 0 auto;
  margin-top: 40px;
}

.btn_detail a {
  position: relative;
  display: block;
  border: 1px solid #000;
  text-align: center;
  color: #000;
  font-size: 20px;
  line-height: 1;
  padding: 25px 0;
  -webkit-transition: linear 0.3s;
  transition: linear 0.3s;
}

.btn_detail a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #000;
  border-left: solid 1px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.btn_detail a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
}

.btn_detail a:hover::after {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
}

.btn_detail_red a {
  background-color: #c91b36;
}

.btn_detail_red a:hover {
  background-color: #e31838;
}

.btn_detail_black a {
  background-color: #000;
}

.btn_detail_black a:hover {
  background-color: #222;
}

/* タブレット以下 */
/* for tablet max-width: 1030px */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
  .btn_detail {
    width: 100%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .btn_detail a {
    font-size: 4.5vw;
    padding: 4vw 0;
  }
} /* for SP max-width: 736px */
/*-------------------------------------------------------------
	flexbtn	
-------------------------------------------------------------*/
.flexbtn {
  width: auto;
  text-align: center;
}

.flexbtn a {
  display: inline-block;
  padding: 15px 40px;
}

/* タブレット以下 */
/* for tablet max-width: 1030px */
/* SP向けレイアウトの指定：～736px */
/* for SP max-width: 736px */
/*===============================================================

	PAGETOP

===============================================================*/
#btn_pagetop {
  width: 100%;
  overflow: hidden;
}

#btn_pagetop a {
  display: block;
  position: fixed;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #d2191a;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
}

#btn_pagetop a:hover {
  background-color: #c00;
}

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP max-width: 736px */
/*===============================================================

	_utils.scss 2021/9/24

===============================================================*/
.align_center {
  text-align: center;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

@media only screen and (max-width: 800px) {
  .sp_align_center {
    text-align: center !important;
  }
  .sp_align_right {
    text-align: right !important;
  }
  .sp_align_left {
    text-align: left !important;
  }
} /* for SP  */
/*===============================================================

	フロート関係

===============================================================*/
.clear {
  width: 100%;
  overflow: hidden;
}

.clearboth {
  clear: both;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
}
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
}

/*===============================================================

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
} /* for SP max-width: 800px */
/*===============================================================

	img fig

===============================================================*/
.fig img,
.fitimg img,
.photo img {
  width: 100%;
  height: auto;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================

	マージン

===============================================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mb40 {
    margin-bottom: 3.74vw;
  }
  .mb50 {
    margin-bottom: 4.67vw;
  }
} /* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media screen and (max-width: 800px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.63vw;
  }
  .mt10 {
    margin-top: 1.25vw;
  }
  .mt15 {
    margin-top: 1.88vw;
  }
  .mt20 {
    margin-top: 2.5vw;
  }
  .mt25 {
    margin-top: 3.13vw;
  }
  .mt30 {
    margin-top: 3.75vw;
  }
  .mt40 {
    margin-top: 5vw;
  }
  .mt50 {
    margin-top: 6.25vw;
  }
  .mt60 {
    margin-top: 7.5vw;
  }
  .mt70 {
    margin-top: 8.75vw;
  }
  .mt80 {
    margin-top: 10vw;
  }
  .mt90 {
    margin-top: 11.25vw;
  }
  .mt100 {
    margin-top: 12.5vw;
  }
  .mb05 {
    margin-bottom: 0.63vw;
  }
  .mb10 {
    margin-bottom: 1.25vw;
  }
  .mb15 {
    margin-bottom: 1.88vw;
  }
  .mb20 {
    margin-bottom: 2.5vw;
  }
  .mb25 {
    margin-bottom: 3.13vw;
  }
  .mb30 {
    margin-bottom: 3.75vw;
  }
  .mb40 {
    margin-bottom: 5vw;
  }
  .mb50 {
    margin-bottom: 6.25vw;
  }
} /* for SP max-width: 800px */
/*===============================================================

	fixed

===============================================================*/
.fixed {
  position: fixed;
  top: 0;
}

.bg_fixed {
  background-attachment: fixed;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
} /* for tablet max-width: 940px */
/* SP向けレイアウトの指定：～800px */
/* for SP */
/*===============================================================

	テーブル

===============================================================*/
.table {
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  border-collapse: separate;
  border-spacing: 0;
}

.table th,
.table td {
  padding: 10px;
  border: solid 1px #ddd;
  border-bottom: 0;
  color: #000;
}

.table th {
  font-weight: bold;
  border-right: 0;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.table td {
  color: #000;
}

.table td + td {
  border-left: 0;
}

.table tr:nth-child(odd) {
  background: #fff;
}

.table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}

/* タブレット */
/* for tablet */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 800px) {
  .table {
    padding: 0;
    margin-top: 0px;
  }
  .table th,
  .table td {
    padding: 3vw;
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .table tr:nth-child(odd),
  .table tr:nth-child(even) {
    background: #fff;
  }
  .table_wrp_scroll {
    overflow-y: scroll;
  }
  .table_wrp_scroll .table {
    min-width: 200vw;
  }
} /* for SP */
/*===============================================================

	フォーム

===============================================================*/
/* タブレット */
/* for tablet */
/* SP */
/* for SP */
/*===============================================================

    txtlink

===============================================================*/
.txtlink {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	txtlink
  ===============================================================*/
}
.txtlink a {
  padding-left: 15px;
  color: #333;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.txtlink a:hover {
  color: #c00;
}
.txtlink a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 7px;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
  border-top: solid 2px #c00;
  border-left: solid 2px #c00;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 800px) {
  .txtlink a {
    padding-left: 4vw;
  }
  .txtlink a:after {
    width: 1.5vw;
    height: 1.5vw;
    top: 1vw;
    bottom: auto;
    left: 0;
    right: auto;
  }
}

/*===============================================================

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================

  	youtube埋め込みレスポンシブ対応

  ===============================================================*/
  /*===============================================================

  	kv

  ===============================================================*/
  /* kv  */
  /*===============================================================

  	section_outline　番組概要

  ===============================================================*/
  /* section_outline */
  /*===============================================================

  	section_intro　イントロダクション

  ===============================================================*/
  /* section_intro */
  /*===============================================================

  	section_story　あらすじ

  ===============================================================*/
  /* section_story */
  /*===============================================================

  	登場人物

  ===============================================================*/
  /* section_cast */
  /*===============================================================

  	oalist

  ===============================================================*/
  /* section_oalist  */
  /*===============================================================

  	section_howto　視聴方法

  ===============================================================*/
  /* section_howto */
  /*===============================================================

  	program_item_list

  ===============================================================*/
  /* section_body content_program_list  */
  /*===============================================================

  	bnr

  ===============================================================*/
  /* bnr */
  /* タブレット */
  /* for tablet */
  /* SP */
  /* SP */
  /*===============================================================

  	copyright

  ===============================================================*/
  /* copyright_wrp */
  /*===============================================================

  	present

  ===============================================================*/
}
.thiscontents * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.thiscontents img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-touch-callout: none;
}
.thiscontents .none {
  display: none;
}
.thiscontents h1, .thiscontents h2, .thiscontents h3, .thiscontents h4, .thiscontents h5, .thiscontents h6 {
  font-weight: bold;
  line-height: 1.6;
}
.thiscontents p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 2;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
.thiscontents a {
  -webkit-transition: all 1s;
  transition: all 1s;
  color: #5a5306;
}
.thiscontents a:hover {
  color: #333;
}
.thiscontents .btn_detail a:hover {
  color: #999;
}
.thiscontents .btn_detail a {
  color: #000;
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 4vw;
    line-height: 2;
  }
}
.thiscontents .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.thiscontents .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.thiscontents .kv {
  width: 100%;
  background-image: url(../images/kv/kv_bg.jpg);
  background-size: cover;
  background-position: bottom;
  /* kv_wrp */
  /* タブレット */
  /* kv_wrp */
  /* SP */
  /* SP */
}
.thiscontents .kv .kv_wrp {
  position: relative;
  width: 95%;
  min-height: 40vw;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.thiscontents .kv .kv_wrp .kv_copyright {
  position: absolute;
  right: -2%;
  bottom: 0;
  font-size: 12px;
  text-align: right;
  color: #ccc;
}
.thiscontents .kv .kv_wrp .kv_ph {
  position: absolute;
  width: 36.571%;
  height: auto;
  bottom: 0;
  left: 0;
  -webkit-animation: fade-in 1s cubic-bezier(0.25, 0.25, 0.75, 0.75) forwards;
          animation: fade-in 1s cubic-bezier(0.25, 0.25, 0.75, 0.75) forwards;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp {
  position: absolute;
  width: 60%;
  height: auto;
  text-align: center;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_ch {
  width: 240px;
  height: auto;
  margin: 0 auto;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_txt {
  font-size: 23px;
  margin-top: 20px;
  text-align: center;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_title {
  width: 110%;
  height: auto;
  margin-top: -10px;
  margin-left: -40px;
  -webkit-animation: fade-in 2s linear forwards;
          animation: fade-in 2s linear forwards;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp {
  width: 75%;
  height: auto;
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp img {
  display: block;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp a:hover {
  opacity: 0.8;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr {
  width: 100%;
  height: auto;
  display: block;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr_info_wrp {
  position: absolute;
  top: -30px;
  right: -50px;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr_info_wrp .kv_bnr_info {
  position: relative;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #39453b;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr_info_wrp .kv_bnr_info span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 65px;
  text-align: center;
  color: #fae8bb;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_extra {
  width: 75%;
  height: auto;
  margin: 0 auto;
  margin-top: 10px;
  position: relative;
}
.thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_extra img {
  display: block;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1030px) {
  .thiscontents .kv {
    /* for tablet */
  }
  .thiscontents .kv .kv_wrp {
    min-height: 45vw;
  }
  .thiscontents .kv .kv_wrp .kv_ph {
    width: 40%;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_ch {
    width: 200px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_txt {
    font-size: 2vw;
    margin-top: 10px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_title {
    margin-left: -25px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp {
    width: 85%;
    margin-top: 10px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr_info_wrp {
    top: -30px;
    right: -50px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr_info_wrp .kv_bnr_info {
    width: 60px;
    height: 60px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_wrp .kv_bnr_info_wrp .kv_bnr_info span {
    width: 60px;
    font-size: 12px;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_bnr_extra {
    width: 85%;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .kv {
    background-image: url(../images/kv/kv_bg_sp.jpg);
  }
  .thiscontents .kv .kv_wrp {
    width: 100%;
    min-height: 125vw;
  }
  .thiscontents .kv .kv_wrp .kv_copyright {
    font-size: 2.3vw;
    right: 0;
  }
  .thiscontents .kv .kv_wrp .kv_ph {
    width: 100%;
    left: -18%;
  }
  .thiscontents .kv .kv_wrp .kv_ch {
    width: 40vw;
    margin: 0 auto;
    padding-top: 3vw;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp {
    width: 38%;
    top: 5vw;
    right: -2vw;
    -webkit-transform: none;
            transform: none;
  }
  .thiscontents .kv .kv_wrp .kv_txt_wrp .kv_title {
    width: 90%;
    margin: 0;
  }
  .thiscontents .kv .kv_bnr {
    width: 100%;
    margin-top: 0;
  }
  .thiscontents .kv .kv_bnr img {
    display: block;
  }
  .thiscontents .kv .popbox {
    position: relative;
    text-align: right;
    color: #fae8bb;
    margin-top: -25px;
  }
  .thiscontents .kv .popbox .popbox_body {
    background-color: #39453b;
  }
  .thiscontents .kv .popbox .popbox_body .read {
    font-size: 2.5vw;
    font-weight: bold;
  }
  .thiscontents .kv .popbox .popbox_body .popbox_inner {
    padding: 1vw 2vw;
  }
  .thiscontents .kv .popbox .popbox_arw {
    position: relative;
    width: 100%;
    height: 25px;
    margin: 0;
    overflow: hidden;
  }
  .thiscontents .kv .popbox .popbox_arw:after {
    position: absolute;
    z-index: 5;
    content: "";
    margin: auto;
    right: 1vw;
    top: -15px;
    bottom: -40px;
    width: 15px;
    height: 15px;
    background: #39453b;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.thiscontents .section_outline {
  background: url("../images/bg04.jpg");
  /* dd */
  /* utline_movie */
  /* record */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP*/
}
.thiscontents .section_outline .program_img {
  margin-top: 40px;
}
.thiscontents .section_outline dl {
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}
.thiscontents .section_outline dt {
  width: 10em;
  float: left;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  vertical-align: middle;
}
.thiscontents .section_outline dd {
  padding: 20px;
  padding-left: 11em;
  border-top: solid 1px rgba(0, 0, 0, 0.12);
  font-size: 18px;
}
.thiscontents .section_outline dd a:hover {
  text-decoration: underline;
}
.thiscontents .section_outline dd .ch_link {
  display: block;
  padding: 15px 0 15px 65px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 50px;
}
.thiscontents .section_outline dd .ch_link.ch_1 {
  background-image: url("/special/common/channel_logo/jidaigeki_4k.jpg");
}
.thiscontents .section_outline dd .ch_link.ch_2 {
  background-image: url("/special/common/channel_logo/jcom_premier.jpg");
  margin-top: 10px;
}
.thiscontents .section_outline dd .ch_link.ch_3 {
  background-image: url("../images/logo_jcom_stream.jpg");
}
.thiscontents .section_outline dd p {
  margin-top: 20px;
}
.thiscontents .section_outline dl + .program_img {
  margin-top: 80px;
}
.thiscontents .section_outline .youtube {
  margin-top: 40px;
}
.thiscontents .section_outline .outline_movie p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.thiscontents .section_outline .outline_movie .youtube {
  margin-top: 10px;
}
.thiscontents .section_outline .record {
  float: right;
}
.thiscontents .section_outline .record a {
  display: block;
  height: 36px;
  width: 115px;
  background: #e60012;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  line-height: 36px;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.thiscontents .section_outline .record a:hover {
  text-decoration: none;
  background: #d00101;
}
.thiscontents .section_outline .record a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 12px;
  height: 12px;
  border: solid 7px #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_outline {
    /* outline_movie */
  }
  .thiscontents .section_outline .outline_movie p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_outline {
    /* dd */
    /* outline_movie */
    /* record */
  }
  .thiscontents .section_outline .program_img {
    margin-top: 5vw;
  }
  .thiscontents .section_outline dl {
    margin-top: 5vw;
  }
  .thiscontents .section_outline dt {
    width: 5em;
    font-size: 4vw;
    padding: 3vw 0;
  }
  .thiscontents .section_outline dd {
    font-size: 4.3vw;
    padding: 3vw 0;
    padding-left: 5em;
  }
  .thiscontents .section_outline dd .ch_link {
    display: block;
    padding: 0 0 0 15vw;
    background-size: 12vw;
  }
  .thiscontents .section_outline dd .ch_link.ch_2 {
    margin-top: 2vw;
  }
  .thiscontents .section_outline dd p {
    margin-top: 3vw;
    line-height: 1.6;
  }
  .thiscontents .section_outline dl + .program_img {
    margin-top: 10vw;
  }
  .thiscontents .section_outline .outline_movie p {
    font-size: 4vw;
  }
  .thiscontents .section_outline .outline_movie .youtube {
    margin-top: 1vw;
  }
  .thiscontents .section_outline .record a {
    display: block;
    height: auto;
    width: 25px;
    background: #fff;
    border-radius: 5px;
    color: #e60012;
    font-size: 6px;
    line-height: 1;
    font-weight: normal;
    position: relative;
    padding-left: 0;
    padding-top: 28px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  .thiscontents .section_outline .record a:hover {
    text-decoration: none;
    background: #fff;
  }
  .thiscontents .section_outline .record a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border: solid 7px #e60012;
    border-radius: 50%;
  }
}
.thiscontents .section_intro {
  background: url("../images/bg02.jpg");
  background-attachment: fixed;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .section_intro .intro_title {
  font-size: 40px;
  font-weight: 700;
  margin-top: 40px;
}
.thiscontents .section_intro .intro_img {
  margin-top: 40px;
}
.thiscontents .section_intro p {
  margin-top: 40px;
}
.thiscontents .section_intro p + p {
  margin-top: 20px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_intro .intro_title {
    font-size: 26px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_intro .headline {
    margin-top: 0;
  }
  .thiscontents .section_intro .intro_title {
    font-size: 5.5vw;
    margin-top: 0;
  }
  .thiscontents .section_intro .grid_wrp {
    margin-top: 0;
  }
  .thiscontents .section_intro .fitimg {
    width: 100vw;
    margin-left: -5vw;
  }
  .thiscontents .section_intro .youtube {
    margin-top: 5vw;
  }
}
.thiscontents .section_story {
  background-image: url(../images/img_event.png), url("../images/bg01.jpg");
  background-repeat: no-repeat, repeat;
  background-position: bottom right 1.5%, top center;
  background-size: 22% auto, auto auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .section_story .grid_wrp {
  margin-top: 0;
}
.thiscontents .section_story .img_title {
  margin-top: 20px;
}
.thiscontents .section_story .story {
  margin-top: 40px;
}
.thiscontents .section_story .story p + p {
  margin-top: 20px;
}
.thiscontents .section_story .story dl {
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
.thiscontents .section_story .story dt {
  width: 7em;
  float: left;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.thiscontents .section_story .story dd {
  padding: 15px;
  padding-left: 8em;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}
.thiscontents .section_story .youtube {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_story {
    background-position: bottom center, top center;
    background-size: 50% auto, auto auto;
  }
  .thiscontents .section_story .grid_wrp {
    margin-top: 0;
  }
  .thiscontents .section_story .grid_wrp .fitimg {
    width: 100vw;
    margin-left: -5vw;
  }
  .thiscontents .section_story .grid_wrp .grid + .grid {
    margin-top: 0;
  }
  .thiscontents .section_story .story {
    margin-top: 5vw;
    margin-bottom: 20vw;
  }
  .thiscontents .section_story .story dt {
    width: 100%;
    float: none;
    padding: 15px 0 0 0;
    font-size: 4vw;
    font-weight: bold;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }
  .thiscontents .section_story .story dd {
    padding: 0px 0 15px 0;
    border-top: solid 0px rgba(0, 0, 0, 0.1);
    font-size: 4vw;
    line-height: 1.5;
  }
  .thiscontents .section_story .youtube {
    margin-top: 0;
  }
}
.thiscontents .section_cast {
  background: url("../images/bg02.jpg");
  background-attachment: fixed;
  /* cast_txt */
  /*cast_movie */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .section_cast .content + .content {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.thiscontents .section_cast .cast_txt {
  text-align: center;
  margin-top: 20px;
  /* grid_wrp */
}
.thiscontents .section_cast .cast_txt + .cast_txt {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.thiscontents .section_cast .cast_txt .grid_wrp {
  margin-top: -20px;
  /* cast_name */
}
.thiscontents .section_cast .cast_txt .grid_wrp .grid:nth-child(n+2) {
  margin-top: 40px;
}
.thiscontents .section_cast .cast_txt .grid_wrp .cast_name {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.thiscontents .section_cast .cast_txt .grid_wrp .cast_name span {
  font-size: 16px;
}
.thiscontents .section_cast .cast_txt .grid_wrp + .headline {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.thiscontents .section_cast .cast_txt .grid_wrp + .grid_wrp {
  margin-top: 0;
}
.thiscontents .section_cast .cast_txt .grid_wrp .grid:nth-child(n+1) {
  margin-top: 60px;
}
.thiscontents .section_cast .cast_txt .grid_wrp .staff_name {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.thiscontents .section_cast .cast_txt .grid_wrp .staff_name span {
  font-size: 16px;
}
.thiscontents .section_cast .cast_txt .grid_wrp p + p {
  line-height: 1.6;
  margin-top: 10px;
}
.thiscontents .section_cast .cast_movie .cast_movie_txt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  padding-top: 10px;
}
.thiscontents .section_cast .cast_movie .cast_movie_txt span {
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_cast {
    /* cast_txt */
    /*cast_movie */
  }
  .thiscontents .section_cast .cast_txt {
    margin-top: 0;
    /* grid_wrp */
  }
  .thiscontents .section_cast .cast_txt + .cast_txt {
    margin-top: 8vw;
    padding-top: 0;
  }
  .thiscontents .section_cast .cast_txt .headline {
    padding-top: 0;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp {
    margin-top: -5vw;
    /* cast_name */
    /* staff */
    /* staff_name */
  }
  .thiscontents .section_cast .cast_txt .grid_wrp + .grid_wrp {
    margin-top: 7vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .grid_3_1,
  .thiscontents .section_cast .cast_txt .grid_wrp .grid_3_1:nth-child(3n) {
    width: 48%;
    margin-right: 0;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .grid_3_1:nth-child(2n) {
    margin-right: 0;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .grid:nth-child(n+4) {
    margin-top: 5vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .cast_name {
    font-size: 5.5vw;
    margin-top: 2vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .cast_name span {
    font-size: 4vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .grid:nth-child(n+1) {
    margin-top: 6vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .staff .grid_3_1 {
    width: 100%;
    margin-right: 0;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .staff p + p {
    font-size: 4vw;
    margin-top: 2vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .staff_name {
    font-size: 5.5vw;
  }
  .thiscontents .section_cast .cast_txt .grid_wrp .staff_name span {
    font-size: 4vw;
  }
  .thiscontents .section_cast .cast_txt + .headline {
    margin-top: 8vw;
    padding-top: 8vw;
  }
  .thiscontents .section_cast .cast_movie .cast_movie_txt {
    font-size: 4.5vw;
  }
  .thiscontents .section_cast .cast_movie .cast_movie_txt span {
    font-size: 3vw;
  }
}
.thiscontents .section_oalist {
  background: url("../images/bg01.jpg");
  /* タブレット */
  /* for tablet */
  /* SP */
  /* SP */
}
.thiscontents .section_oalist dl {
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}
.thiscontents .section_oalist dt {
  width: 11em;
  float: left;
  padding: 20px;
  padding-top: 35px;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.thiscontents .section_oalist dd {
  padding: 20px;
  padding-left: 12em;
  font-size: 18px;
  line-height: 3;
}
.thiscontents .section_oalist dd span {
  font-weight: 700;
  margin-left: 5px;
}
.thiscontents .section_oalist dt + dd {
  border-top: solid 1px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 800px) {
  .thiscontents .section_oalist dl {
    margin-top: 5vw;
  }
  .thiscontents .section_oalist dt {
    width: 100%;
    font-size: 4vw;
    padding: 3vw 0;
    padding-top: 5vw;
  }
  .thiscontents .section_oalist dd {
    width: 100%;
    font-size: 4.3vw;
    line-height: 1.5;
    padding: 3vw 0;
    padding-left: 0;
  }
}
.thiscontents .section_howto {
  background: url("../images/bg02.jpg") fixed;
  text-align: center;
  padding-bottom: 40px;
  /* howto_ch */
  /* howto_link */
  /* howto_course */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents .section_howto .headline + .content {
  margin-top: 20px;
}
.thiscontents .section_howto .howto_ch {
  background-color: #d8d9ce;
  padding: 50px 40px;
  border-radius: 10px;
  /* grid */
}
.thiscontents .section_howto .howto_ch .grid_wrp {
  margin-top: -10px;
}
.thiscontents .section_howto .howto_ch .grid {
  background-color: #fff;
  padding: 30px;
  text-align: center;
}
.thiscontents .section_howto .howto_ch .grid h4 {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 5px;
}
.thiscontents .section_howto .howto_ch .grid .howto_4k {
  border-bottom: 5px solid #a6852d;
}
.thiscontents .section_howto .howto_ch .grid .howto_hivision {
  border-bottom: 5px solid #53a7dd;
}
.thiscontents .section_howto .howto_ch .grid p {
  font-size: 22px;
  margin-top: 8px;
}
.thiscontents .section_howto .howto_ch .grid p + p {
  font-size: 15px;
}
.thiscontents .section_howto .howto_ch .grid .read {
  font-size: 18px;
  margin-top: 0;
}
.thiscontents .section_howto .howto_link {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-top: 40px;
  /* a*/
}
.thiscontents .section_howto .howto_link a {
  position: relative;
  display: inline-block;
  color: #333;
  text-decoration: none;
  padding-right: 30px;
}
.thiscontents .section_howto .howto_link a:hover {
  text-decoration: underline;
}
.thiscontents .section_howto .howto_link a:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.thiscontents .section_howto .howto_course {
  margin-top: 50px;
}
.thiscontents .section_howto .howto_course .howto_course_title {
  font-size: 28px;
  font-weight: 800;
}
.thiscontents .section_howto .howto_course .img {
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-top: 20px;
}
.thiscontents .section_howto .howto_course p {
  font-size: 14px;
  text-align: left;
  margin-top: 0;
}
.thiscontents .section_howto img {
  display: block;
}
.thiscontents .section_howto a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_howto {
    /* howto_ch */
  }
  .thiscontents .section_howto .howto_ch .grid {
    padding: 30px 20px;
  }
  .thiscontents .section_howto .howto_ch .grid h4 {
    font-size: 2.2vw;
  }
  .thiscontents .section_howto .howto_ch .grid p {
    line-height: 1.5;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_howto {
    padding-bottom: 4vw;
    /* howto_ch */
    /* howto_link */
    /* howto_course */
  }
  .thiscontents .section_howto .headline + .content {
    margin-top: 2vw;
  }
  .thiscontents .section_howto .howto_ch {
    padding: 5vw;
  }
  .thiscontents .section_howto .howto_ch .grid {
    padding: 4vw;
  }
  .thiscontents .section_howto .howto_ch .grid.grid {
    margin-top: 5vw;
  }
  .thiscontents .section_howto .howto_ch .grid h4 {
    font-size: 4vw;
    display: block;
  }
  .thiscontents .section_howto .howto_ch .howto_4k {
    border-bottom: 3px solid #a6852d;
  }
  .thiscontents .section_howto .howto_ch .howto_hivision {
    border-bottom: 3px solid #53a7dd;
  }
  .thiscontents .section_howto .howto_ch p {
    font-size: 4vw;
    font-weight: bold;
  }
  .thiscontents .section_howto .howto_ch .read {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .thiscontents .section_howto .howto_link {
    font-size: 3.5vw;
    margin-top: 4vw;
  }
  .thiscontents .section_howto .howto_link a {
    padding-right: 3vw;
  }
  .thiscontents .section_howto .howto_link a:after {
    width: 6px;
    height: 6px;
    right: 0;
  }
  .thiscontents .section_howto .howto_course {
    margin-top: 6vw;
  }
  .thiscontents .section_howto .howto_course .howto_course_title {
    font-size: 4vw;
    line-height: 1.8;
  }
  .thiscontents .section_howto .howto_course .img {
    width: calc(100% + 2.4vw);
    margin-left: -1.2vw;
    margin-top: 4vw;
  }
  .thiscontents .section_howto .howto_course p {
    font-size: 2.5vw;
    margin-top: 1vw;
  }
}
.thiscontents .section_master_list {
  background: url("../images/bg01.jpg");
}
.thiscontents .section_master_list .section_body {
  background: #fff;
  /* content_program_list */
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP max-width: 736px */
  /*===============================================================

  	program_item_list

  ===============================================================*/
  /* program_item_list */
  /*-------------------------------------------------------------
  	show_more_btn	
  -------------------------------------------------------------*/
  /* show_more_btn a */
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP */
  /*===============================================================

  	no_data_box

  ===============================================================*/
  /* no_data_box */
}
.thiscontents .section_master_list .section_body .content_program_list {
  padding: 60px 0;
}
.thiscontents .section_master_list .section_body .content_program_list .program_list_title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.thiscontents .section_master_list .section_body .content_program_list .program_list_lead {
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
}
.thiscontents .section_master_list .section_body .content_program_list .program_item_list {
  min-height: 300px;
  background: url("/special/common/images/asset/loader_white.gif") no-repeat center center;
  margin-top: 20px;
}
.thiscontents .section_master_list .section_body .content_program_list .program_item_list.loaded {
  background: none;
}
@media screen and (max-width: 1100px) {
  .thiscontents .section_master_list .section_body {
    /* fcontent_program_list */
  }
  .thiscontents .section_master_list .section_body .content_program_list {
    padding: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_master_list .section_body {
    /* content_program_list */
  }
  .thiscontents .section_master_list .section_body .content_program_list {
    padding: 4vw;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_master_list .section_body {
    /* content_program_list */
  }
  .thiscontents .section_master_list .section_body .content_program_list {
    padding: 0 5vw 10vw;
  }
  .thiscontents .section_master_list .section_body .content_program_list .program_list_title {
    font-size: 5.5vw;
  }
  .thiscontents .section_master_list .section_body .content_program_list .program_list_lead {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
}
.thiscontents .section_master_list .section_body .program_item_list {
  /* program_item */
}
.thiscontents .section_master_list .section_body .program_item_list .program_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0 15px;
  border-bottom: solid 1px #eee;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP*/
  /*-------------------------------------------------------------
  	program_item_list 文字	
  -------------------------------------------------------------*/
  /* title */
  /* rimoroku */
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP */
}
.thiscontents .section_master_list .section_body .program_item_list .program_item:hover {
  background: #e1e1e1;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item img {
  width: 100%;
  height: auto;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .thumb_block {
  width: 160px;
  border: solid 1px #e7e7e7;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .noimage img {
  width: 100%;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .info_block {
  width: calc(100% - 300px);
  padding-left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku {
  width: 115px;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_master_list .section_body .program_item_list .program_item .thumb_block {
    width: 36%;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .noimage img {
    height: 20vw;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .info_block {
    width: calc(60% - 25px);
    min-height: 10vw;
    padding-left: 0;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku {
    width: 25px;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .txt {
    height: auto;
    margin-top: 0;
    margin-bottom: auto;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_master_list .section_body .program_item_list .program_item {
    position: relative;
    padding: 10px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .noimage img {
    height: 19vw;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .info_block {
    width: 60%;
    min-height: 19vw;
    padding-left: 0;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 25px;
  }
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .title {
  font-size: 16px;
  line-height: 1.5;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .title a {
  color: #000;
  text-decoration: none;
  position: relative;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .title a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto;
  border: solid 2px #867572;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg) translate(0px, -2px);
          transform: rotate(-45deg) translate(0px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .date {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .channel_name {
  font-size: 13px;
  line-height: 1;
  color: #666;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a {
  display: block;
  height: 36px;
  width: 115px;
  background: #e60012;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 36px;
  font-weight: bold;
  position: relative;
  padding-left: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a:hover {
  text-decoration: none;
  background: #d00101;
}
.thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 12px;
  height: 12px;
  border: solid 7px #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_master_list .section_body .program_item_list .program_item {
    /* title */
    /* rimoroku a */
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .title a::after {
    content: none;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .date {
    font-size: 13px;
    line-height: 1.8;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .channel_name {
    font-size: 13px;
    line-height: 1;
    color: #666;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a {
    display: block;
    height: auto;
    width: 35px;
    background: #fff;
    border-radius: 5px;
    color: #e60012;
    font-size: 10px;
    line-height: 1;
    font-weight: normal;
    position: relative;
    padding-left: 0;
    padding-top: 28px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a:hover {
    text-decoration: none;
    background: #fff;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border: solid 7px #e60012;
    border-radius: 50%;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .rimoroku a span {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_master_list .section_body .program_item_list .program_item .title {
    font-size: 3.8vw;
    line-height: 1.4;
    height: 10.5vw;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1vw;
  }
  .thiscontents .section_master_list .section_body .program_item_list .program_item .date,
  .thiscontents .section_master_list .section_body .program_item_list .program_item .channel_name {
    font-size: 3.8vw;
    padding-right: 30px;
    line-height: 1.4;
  }
}
.thiscontents .section_master_list .section_body .show_more_btn {
  margin-top: 40px;
}
.thiscontents .section_master_list .section_body .show_more_btn a {
  display: block;
  margin: 0 auto;
  width: 400px;
  text-align: center;
  border: solid 1px #999;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  padding: 15px 0;
}
.thiscontents .section_master_list .section_body .show_more_btn a:hover {
  text-decoration: none;
  background: #333;
  color: #fff;
  border: solid 1px #333;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_master_list .section_body {
    /* show_more_btn */
  }
  .thiscontents .section_master_list .section_body .show_more_btn {
    margin-top: 3.88vw;
    padding-top: 3.88vw;
  }
  .thiscontents .section_master_list .section_body .show_more_btn a {
    width: 38.83vw;
    font-size: 1.55vw;
    padding: 1.46vw 0;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_master_list .section_body {
    /* show_more_btn */
  }
  .thiscontents .section_master_list .section_body .show_more_btn {
    margin-top: 5vw;
    padding-top: 5vw;
  }
  .thiscontents .section_master_list .section_body .show_more_btn a {
    width: 54.35vw;
    font-size: 4vw;
    padding: 2.5vw 0;
  }
}
.thiscontents .section_master_list .section_body .no_data_box {
  background: #fafafa;
  padding: 60px 0;
  text-align: center;
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP*/
}
.thiscontents .section_master_list .section_body .no_data_box p {
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_master_list .section_body .no_data_box {
    padding: 10vw 0;
  }
  .thiscontents .section_master_list .section_body .no_data_box p {
    font-size: 4vw;
  }
}
.thiscontents .bnr {
  width: auto;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 60px;
}
.thiscontents .bnr a {
  display: block;
}
.thiscontents .bnr a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .thiscontents .bnr {
    margin-top: 8vw;
  }
}
.thiscontents .copyright_wrp {
  width: 100%;
  padding: 30px auto;
  background-color: #f2f2f2;
  /* タブレット */
  /* for tablet */
  /* SP */
  /* SP */
}
.thiscontents .copyright_wrp .copyright {
  font-size: 12px;
  color: #666;
  text-align: center;
  padding: 30px 0;
}
@media screen and (max-width: 800px) {
  .thiscontents .copyright_wrp .copyright {
    font-size: 3vw;
    padding: 5vw 0;
  }
}
.thiscontents .present.disabled {
  /* タブレット */
  /* for tablet */
  /* SP */
  /* SP */
}
.thiscontents .present.disabled img {
  -webkit-filter: grayscale(50%) contrast(80%) brightness(80%);
  filter: grayscale(50%) contrast(80%) brightness(80%);
}
.thiscontents .present.disabled p {
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .thiscontents .present.disabled p {
    margin-top: 5vw;
  }
}

/*===============================================================

	section_recommend_plan

===============================================================*/
.section_recommend_plan {
  position: relative;
  z-index: 8;
  background: #fff;
  /* section_title */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	content_plan
  -------------------------------------------------------------*/
  /* content_plan */
  /*===============================================================

  	btn_round

  ===============================================================*/
  /* btn_round */
  /*===============================================================

  	btn_round_gray

  ===============================================================*/
  /* btn_round_gray */
  /*===============================================================

  	btn_round_white

  ===============================================================*/
  /* btn_round_white */
  /*===============================================================

  	btn_round_pink

  ===============================================================*/
  /* btn_round_pink */
  /*===============================================================

  	btn_round_yellow

  ===============================================================*/
  /* btn_round_yellow */
  /*===============================================================

  	btn_round_orange

  ===============================================================*/
  /* btn_round_orange */
  /*===============================================================

  	btn_round_blank

  ===============================================================*/
  /* btn_round_blank */
}
.section_recommend_plan .section_title {
  text-align: center;
  /* lead */
}
.section_recommend_plan .section_title .title {
  font-size: 36px;
  line-height: 1.4;
  margin-top: 25px;
}
.section_recommend_plan .section_title .lead {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 20px;
  font-weight: normal;
}
.section_recommend_plan .section_title .lead a {
  text-decoration: underline;
  color: #fb4c32;
}
.section_recommend_plan .section_title .lead a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan {
    /* section_title */
  }
  .section_recommend_plan .section_title .sub {
    font-size: 3.5vw;
    margin-top: 3.74vw;
  }
  .section_recommend_plan .section_title .title {
    font-size: 24px;
    margin-top: 2.34vw;
  }
  .section_recommend_plan .section_title .lead {
    font-size: 1.87vw;
    margin-top: 1.87vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan {
    /* section_title */
  }
  .section_recommend_plan .section_title .sub {
    font-size: 3.8vw;
    margin-top: 4vw;
  }
  .section_recommend_plan .section_title .title {
    font-size: 5.5vw;
    margin-top: 2.34vw;
  }
  .section_recommend_plan .section_title .lead {
    font-size: 2.8vw;
    margin-top: 1.5vw;
  }
}
.section_recommend_plan .content_plan {
  text-align: center;
  margin-top: 50px;
  /* タブレット */
  /* for tablet */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	content_plan title_block
  -------------------------------------------------------------*/
  /* title_block */
  /*-------------------------------------------------------------
  	content_plan body_block
  -------------------------------------------------------------*/
  /* body_block */
  /*-------------------------------------------------------------
  	content_plan bottom_block
  -------------------------------------------------------------*/
  /* bottom_block */
  /*-------------------------------------------------------------
  	content_plan plan_table
  -------------------------------------------------------------*/
  /* plan_table */
  /*-------------------------------------------------------------
  	content_plan caption
  -------------------------------------------------------------*/
  /* caption */
  /*-------------------------------------------------------------
  	content_plan block_select_course
  -------------------------------------------------------------*/
  /* block_select_course */
}
.section_recommend_plan .content_plan + .section_title {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan {
    margin-top: 5vw;
  }
  .section_recommend_plan .content_plan + .section_title {
    margin-top: 10vw;
  }
}
.section_recommend_plan .content_plan .title_block {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 15px 60px;
  background: #f2f2f2;
  text-align: center;
  margin: 0 auto;
  border-radius: 30px;
  /* title */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .content_plan .title_block .title {
  font-size: 24px;
  font-weight: 800;
  position: relative;
  padding: 0 20px;
}
.section_recommend_plan .content_plan .title_block .title::after, .section_recommend_plan .content_plan .title_block .title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 3px;
  height: 35px;
  background: #fb4c32;
}
.section_recommend_plan .content_plan .title_block .title::after {
  left: 0;
  -webkit-transform: rotate(-30deg) translateY(2px);
  transform: rotate(-30deg) translateY(2px);
}
.section_recommend_plan .content_plan .title_block .title::before {
  right: 0;
  -webkit-transform: rotate(30deg) translateY(2px);
  transform: rotate(30deg) translateY(2px);
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .content_plan .title_block {
    padding: 2vw 5vw;
    border-radius: 2.8vw;
    /* title */
  }
  .section_recommend_plan .content_plan .title_block .title {
    font-size: 2.24vw;
    padding: 0 1.87vw;
  }
  .section_recommend_plan .content_plan .title_block .title::after, .section_recommend_plan .content_plan .title_block .title::before {
    width: 2px;
    height: 3.27vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan .title_block {
    padding: 2vw 7vw 4vw 7vw;
    border-radius: 5vw 5vw 0 0;
    /* title */
  }
  .section_recommend_plan .content_plan .title_block .title {
    font-size: 3.3vw;
    padding: 0 4vw;
    /* title_block_course */
  }
  .section_recommend_plan .content_plan .title_block .title::after, .section_recommend_plan .content_plan .title_block .title::before {
    width: 1px;
    height: 9vw;
  }
  .section_recommend_plan .content_plan .title_block .title.title_block_course {
    padding: 2vw 3vw 4vw 3vw;
  }
  .section_recommend_plan .content_plan .title_block .title.title_block_course .title {
    font-size: 3.3vw;
    padding: 0 4vw;
  }
  .section_recommend_plan .content_plan .title_block .title.title_block_course .title::after,
  .section_recommend_plan .content_plan .title_block .title.title_block_course .title::before {
    width: 1px;
    height: 5vw;
  }
}
.section_recommend_plan .content_plan .body_block {
  position: relative;
  z-index: 1;
  background: #f2f2f2;
  padding: 70px 100px;
  border-radius: 30px 30px 0 0;
  margin-top: 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .content_plan .body_block {
    width: 100vw;
    padding: 60px 100px;
    margin: 0 calc(50% - 50vw);
    margin-top: 20px;
    border-radius: 0;
  }
  .section_recommend_plan .content_plan .body_block.body_block_course {
    padding: 60px 6vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan .body_block {
    padding: 10vw 6vw;
    margin-top: 5vw;
    border-radius: 0;
  }
  .section_recommend_plan .content_plan .body_block.body_block_course {
    padding: 6vw 6vw 10vw 6vw;
  }
}
.section_recommend_plan .content_plan .bottom_block {
  position: relative;
  z-index: 1;
  background: #f2f2f2;
  padding: 60px 100px 70px 100px;
  border-radius: 0 0 30px 30px;
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* left_block p */
  /* right_block */
  /* btns */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .content_plan .bottom_block .left_block {
  text-align: left;
}
.section_recommend_plan .content_plan .bottom_block .left_block .title {
  font-size: 26px;
  font-weight: bold;
}
.section_recommend_plan .content_plan .bottom_block .left_block p {
  margin-top: 30px;
}
.section_recommend_plan .content_plan .bottom_block .left_block p a {
  text-decoration: underline;
  color: #fb4c32;
}
.section_recommend_plan .content_plan .bottom_block .left_block p a:hover {
  opacity: 0.7;
}
.section_recommend_plan .content_plan .bottom_block .right_block p {
  font-size: 20px;
}
.section_recommend_plan .content_plan .bottom_block .right_block .btn_round {
  margin-top: 30px;
}
.section_recommend_plan .content_plan .bottom_block .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 20px;
}
.section_recommend_plan .content_plan .bottom_block .btns .btn_round {
  min-width: 360px;
  margin: 0 20px;
}
.section_recommend_plan .content_plan .bottom_block.bottom_block_course {
  padding: 60px 0;
}
.section_recommend_plan .content_plan .bottom_block .lead {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .content_plan .bottom_block {
    width: 100vw;
    padding: 60px 100px;
    margin: 0 calc(50% - 50vw);
    margin-top: 2px;
    border-radius: 0;
    padding: 5.61vw 9.35vw 6.54vw 9.35vw;
    border-radius: 0 0 2.8vw 2.8vw;
    /* left_block  */
    /* right_block */
    /* btns */
  }
  .section_recommend_plan .content_plan .bottom_block .left_block .title {
    font-size: 2.43vw;
  }
  .section_recommend_plan .content_plan .bottom_block .left_block p {
    margin-top: 2.8vw;
  }
  .section_recommend_plan .content_plan .bottom_block .right_block p {
    font-size: 1.87vw;
  }
  .section_recommend_plan .content_plan .bottom_block .right_block .btn_round {
    margin-top: 2.8vw;
  }
  .section_recommend_plan .content_plan .bottom_block .btns .btn_round {
    min-width: 40vw;
  }
  .section_recommend_plan .content_plan .bottom_block .lead {
    font-size: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan .bottom_block {
    padding: 10vw 6vw;
    border-radius: 0;
    border-radius: 0 0 2.8vw 2.8vw;
    /* left_block */
    /* right_block */
    /* btns */
  }
  .section_recommend_plan .content_plan .bottom_block .left_block {
    width: 100%;
  }
  .section_recommend_plan .content_plan .bottom_block .left_block .title {
    font-size: 3.8vw;
  }
  .section_recommend_plan .content_plan .bottom_block .left_block p {
    margin-top: 2.8vw;
  }
  .section_recommend_plan .content_plan .bottom_block .right_block {
    width: 100%;
    text-align: center;
    margin-top: 8vw;
  }
  .section_recommend_plan .content_plan .bottom_block .right_block p {
    font-size: 3vw;
  }
  .section_recommend_plan .content_plan .bottom_block .right_block .btn_round {
    margin-top: 3vw;
  }
  .section_recommend_plan .content_plan .bottom_block .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    margin-top: 5vw;
    padding: 0;
    width: 100%;
  }
  .section_recommend_plan .content_plan .bottom_block .btns .btn_round {
    min-width: inherit;
    max-width: 80vw;
    width: 100%;
    margin: 0 0;
    padding: 0;
  }
  .section_recommend_plan .content_plan .bottom_block .btns .btn_round + .btn_round {
    margin-top: 5vw;
  }
  .section_recommend_plan .content_plan .bottom_block .lead {
    font-size: 3.2vw;
  }
}
.section_recommend_plan .content_plan .plan_table {
  width: 100%;
  /* th */
  /* td */
  /* icon_plus */
  /* td.all */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .content_plan .plan_table th, .section_recommend_plan .content_plan .plan_table td {
  text-align: center;
  padding: 20px;
}
.section_recommend_plan .content_plan .plan_table th {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.section_recommend_plan .content_plan .plan_table th.net {
  background: #489cff;
  width: 28%;
  border-radius: 15px 0 0 0;
}
.section_recommend_plan .content_plan .plan_table th.tv {
  background: #fb4aa8;
  width: 72%;
  border-radius: 0 15px 0 0;
}
.section_recommend_plan .content_plan .plan_table td {
  /* tv */
}
.section_recommend_plan .content_plan .plan_table td.net {
  background: #e4f0ff;
  width: 28%;
  font-size: 26px;
  font-weight: bold;
  color: #489cff;
  position: relative;
}
.section_recommend_plan .content_plan .plan_table td.tv {
  background: #fee4f2;
  width: 72%;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.section_recommend_plan .content_plan .plan_table td.tv strong {
  font-size: 26px;
  color: #fb4aa8;
}
.section_recommend_plan .content_plan .plan_table .icon_plus {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  top: 0;
  bottom: 0;
  right: -25px;
  margin: auto;
  border-radius: 50px;
}
.section_recommend_plan .content_plan .plan_table .icon_plus::after, .section_recommend_plan .content_plan .plan_table .icon_plus::before {
  content: "";
  width: 24px;
  height: 4px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.section_recommend_plan .content_plan .plan_table .icon_plus::before {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.section_recommend_plan .content_plan .plan_table .all {
  background: #fff;
  border-radius: 0 0 15px 15px;
  font-weight: 600;
  /* price */
}
.section_recommend_plan .content_plan .plan_table .all .period {
  font-size: 20px;
}
.section_recommend_plan .content_plan .plan_table .all .price {
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
}
.section_recommend_plan .content_plan .plan_table .all .price strong {
  font-size: 70px;
  color: #fb4c32;
}
.section_recommend_plan .content_plan .plan_table .all .price_after {
  font-size: 20px;
}
.section_recommend_plan .content_plan .plan_table .all span {
  display: inline-block;
  position: relative;
}
.section_recommend_plan .content_plan .plan_table .all sup {
  font-size: 75%;
  position: absolute;
  top: -16px;
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .content_plan .plan_table {
    /* th */
    /* td */
    /* icon_plus */
    /* all */
  }
  .section_recommend_plan .content_plan .plan_table th, .section_recommend_plan .content_plan .plan_table td {
    padding: 1.87vw;
  }
  .section_recommend_plan .content_plan .plan_table th {
    font-size: 1.87vw;
  }
  .section_recommend_plan .content_plan .plan_table th.net {
    border-radius: 1.4vw 0 0 0;
  }
  .section_recommend_plan .content_plan .plan_table th.tv {
    border-radius: 0 1.4vw 0 0;
  }
  .section_recommend_plan .content_plan .plan_table td.net {
    font-size: 2.43vw;
  }
  .section_recommend_plan .content_plan .plan_table td.tv {
    font-size: 1.5vw;
  }
  .section_recommend_plan .content_plan .plan_table td.tv strong {
    font-size: 2.43vw;
  }
  .section_recommend_plan .content_plan .plan_table .icon_plus {
    width: 4.67vw;
    height: 4.67vw;
    border-radius: 4.67vw;
    right: -2.335vw;
  }
  .section_recommend_plan .content_plan .plan_table .icon_plus::after, .section_recommend_plan .content_plan .plan_table .icon_plus::before {
    width: 2.24vw;
    height: 0.37vw;
  }
  .section_recommend_plan .content_plan .plan_table .all {
    border-radius: 0 0 1.4vw 1.4vw;
    /* price */
  }
  .section_recommend_plan .content_plan .plan_table .all .period {
    font-size: 1.87vw;
  }
  .section_recommend_plan .content_plan .plan_table .all .price {
    font-size: 2.24vw;
  }
  .section_recommend_plan .content_plan .plan_table .all .price strong {
    font-size: 6.54vw;
  }
  .section_recommend_plan .content_plan .plan_table .all .price_after {
    font-size: 1.87vw;
  }
  .section_recommend_plan .content_plan .plan_table .all sup {
    top: -0.75vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan .plan_table {
    /* th */
    /* td */
    /* icon_plus */
    /* all */
  }
  .section_recommend_plan .content_plan .plan_table th, .section_recommend_plan .content_plan .plan_table td {
    padding: 3vw;
  }
  .section_recommend_plan .content_plan .plan_table th {
    font-size: 3vw;
  }
  .section_recommend_plan .content_plan .plan_table th.net {
    border-radius: 1.4vw 0 0 0;
    width: 40%;
  }
  .section_recommend_plan .content_plan .plan_table th.tv {
    border-radius: 0 1.4vw 0 0;
    width: 60%;
  }
  .section_recommend_plan .content_plan .plan_table td.net {
    font-size: 3vw;
    width: 40%;
  }
  .section_recommend_plan .content_plan .plan_table td.net.tv {
    width: 60%;
    font-size: 2vw;
  }
  .section_recommend_plan .content_plan .plan_table td.net.tv strong {
    font-size: 3vw;
  }
  .section_recommend_plan .content_plan .plan_table .icon_plus {
    width: 6vw;
    height: 6vw;
    border-radius: 6vw;
    right: -3vw;
  }
  .section_recommend_plan .content_plan .plan_table .icon_plus::after, .section_recommend_plan .content_plan .plan_table .icon_plus::before {
    width: 3vw;
    height: 2px;
  }
  .section_recommend_plan .content_plan .plan_table .all {
    border-radius: 0 0 1.4vw 1.4vw;
    /* price */
  }
  .section_recommend_plan .content_plan .plan_table .all .period {
    font-size: 2.8vw;
  }
  .section_recommend_plan .content_plan .plan_table .all .price {
    font-size: 3.5vw;
  }
  .section_recommend_plan .content_plan .plan_table .all .price strong {
    font-size: 10vw;
  }
  .section_recommend_plan .content_plan .plan_table .all .price_after {
    font-size: 2.5vw;
    margin-top: 2vw;
  }
  .section_recommend_plan .content_plan .plan_table .all sup {
    top: -3vw;
  }
}
.section_recommend_plan .content_plan .caption {
  margin-top: 20px;
  text-align: left;
  font-weight: 600;
  /* SP */
  /* SP */
}
.section_recommend_plan .content_plan .caption p {
  text-indent: -1em;
  padding-left: 1em;
}
.section_recommend_plan .content_plan .caption li {
  font-size: 16px;
}
.section_recommend_plan .content_plan .caption a {
  text-decoration: underline;
  color: #fb4c32;
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan .caption {
    margin-top: 5vw;
  }
  .section_recommend_plan .content_plan .caption P {
    font-size: 3vw;
  }
  .section_recommend_plan .content_plan .caption li {
    font-size: 3vw;
  }
}
.section_recommend_plan .content_plan .block_select_course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* block_course  */
  /* タブレット */
  /* 1300px */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .content_plan .block_select_course .block_course {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  padding-bottom: 30px;
  width: 60%;
  margin: 0 auto;
  /*display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;*/
  /* title */
  /* lead */
  /* btn_round_pin */
}
.section_recommend_plan .content_plan .block_select_course .block_course .title {
  position: relative;
  text-align: center;
  background: #e40677;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.5;
  padding: 25px 20px;
  border-radius: 12px;
}
.section_recommend_plan .content_plan .block_select_course .block_course .title strong {
  font-size: 32px;
}
.section_recommend_plan .content_plan .block_select_course .block_course .title::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 5px solid #e40677;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-width: 20px;
  -webkit-transform: translate(3px, 0);
  transform: translate(3px, 0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_recommend_plan .content_plan .block_select_course .block_course .service_name {
  margin-top: 40px;
  font-size: 30px;
  font-weight: bold;
}
.section_recommend_plan .content_plan .block_select_course .block_course .fitimg {
  margin-top: 20px;
}
.section_recommend_plan .content_plan .block_select_course .block_course .lead {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
}
.section_recommend_plan .content_plan .block_select_course .block_course .lead strong {
  color: #e40677;
}
.section_recommend_plan .content_plan .block_select_course .block_course .caption {
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}
.section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink {
  margin-top: 40px;
}
.section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink a {
  font-size: 16px;
}
@media screen and (max-width: 1300px) {
  .section_recommend_plan .content_plan .block_select_course {
    /* block_course  */
  }
  .section_recommend_plan .content_plan .block_select_course .block_course {
    background: #fff;
    border-radius: 1.54vw;
    padding: 1.54vw;
    padding-bottom: 2.31vw;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* title */
    /* lead */
    /* btn_round_pink */
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title {
    position: relative;
    text-align: center;
    background: #e40677;
    color: #fff;
    font-weight: bold;
    font-size: 2vw;
    line-height: 1.5;
    padding: 1.92vw 0.5vw;
    border-radius: 0.92vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title strong {
    font-size: 2.46vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title::after {
    content: "";
    position: absolute;
    bottom: -2.5vw;
    margin: auto;
    width: 0.77vw;
    height: 0.77vw;
    border-top: 0.38vw solid #e40677;
    border-bottom: 0.38vw solid transparent;
    border-left: 0.38vw solid transparent;
    border-right: 0.38vw solid transparent;
    border-width: 1.54vw;
    -webkit-transform: translate(3px, 0);
    transform: translate(3px, 0);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .service_name {
    margin-top: 3.08vw;
    font-size: 2.1vw;
    font-weight: bold;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .fitimg {
    margin-top: 1.54vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .lead {
    margin-top: 1.15vw;
    font-weight: bold;
    font-size: 1.5vw;
    line-height: 1.6;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .lead strong {
    color: #e40677;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .caption {
    text-align: center;
    font-size: 0.92vw;
    font-weight: normal;
    margin-top: 0.38vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink {
    margin-top: 3.08vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink a {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .content_plan .block_select_course {
    /* block_course */
  }
  .section_recommend_plan .content_plan .block_select_course .block_course {
    width: 80%;
    border-radius: 1.87vw;
    padding: 1.87vw;
    padding-bottom: 2.8vw;
    /* title */
    /* btn_round_pink */
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title {
    font-size: 2.43vw;
    padding: 2.34vw 2vw;
    border-radius: 1.12vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title strong {
    font-size: 2.99vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title::after {
    bottom: -3vw;
    width: 0.93vw;
    height: 0.93vw;
    border-top: 0.47vw solid #e40677;
    border-bottom: 0.47vw solid transparent;
    border-left: 0.47vw solid transparent;
    border-right: 0.47vw solid transparent;
    border-width: 1.87vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .service_name {
    margin-top: 3.74vw;
    font-size: 2.6vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .fitimg {
    margin-top: 1.87vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .lead {
    margin-top: 1.4vw;
    font-size: 1.8vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .caption {
    font-size: 1.12vw;
    margin-top: 0.47vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink {
    width: 100%;
    margin-top: 3.74vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink a {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .content_plan .block_select_course {
    display: block;
    /* block_course */
  }
  .section_recommend_plan .content_plan .block_select_course .block_course {
    width: 100%;
    max-width: 80vw;
    margin: 0 auto;
    border-radius: 2.72vw;
    padding: 2.72vw;
    padding-bottom: 4.08vw;
    /* title */
    /* btn_round_pink */
  }
  .section_recommend_plan .content_plan .block_select_course .block_course + .section_recommend_plan .content_plan .block_select_course .block_course {
    margin-top: 8vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title {
    font-size: 4vw;
    padding: 3.4vw 6.52vw;
    border-radius: 1.63vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title strong {
    font-size: 5vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .title::after {
    bottom: -5vw;
    width: 1.36vw;
    height: 1.36vw;
    border-top: 0.68vw solid #e40677;
    border-bottom: 0.68vw solid transparent;
    border-left: 0.68vw solid transparent;
    border-right: 0.68vw solid transparent;
    border-width: 2.72vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .service_name {
    margin-top: 5.43vw;
    font-size: 5vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .fitimg {
    margin-top: 2.72vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .lead {
    margin-top: 2.04vw;
    font-size: 3vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .caption {
    font-size: 3.5vw;
    margin-top: 0.68vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink {
    max-width: inherit;
    margin-top: 5.43vw;
  }
  .section_recommend_plan .content_plan .block_select_course .block_course .btn_round_pink a {
    font-size: 3.2vw;
  }
}
.section_recommend_plan .btn_round {
  max-width: 360px;
  margin: 0 auto;
  /* a */
  /* icon_blank */
  /* icon_sim */
  /* icon_newmember */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  color: #000;
  font-weight: bold;
  border: solid 2px #fb4c32;
  color: #fb4c32;
  background: #fff;
  border-radius: 100px;
  font-size: 20px;
  line-height: 1.2;
  padding: 20px;
}
.section_recommend_plan .btn_round a:hover {
  text-decoration: none;
  background: rgba(251, 76, 50, 0.1);
}
.section_recommend_plan .btn_round span {
  display: inline-block;
}
.section_recommend_plan .btn_round .icon_blank {
  width: 15px;
  height: 15px;
  margin-left: 15px;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.section_recommend_plan .btn_round .icon_blank img {
  vertical-align: top;
}
.section_recommend_plan .btn_round .icon_sim {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.section_recommend_plan .btn_round .icon_sim img {
  vertical-align: top;
}
.section_recommend_plan .btn_round .icon_newmember {
  width: 20px;
  height: 20px;
  margin-right: 15px;
}
.section_recommend_plan .btn_round .icon_newmember img {
  vertical-align: top;
}
.section_recommend_plan .btn_round .subtxt {
  font-size: 12px;
  padding-bottom: 4px;
  display: block;
  text-align: center;
}
.section_recommend_plan .btn_round + .section_recommend_plan .btn_round {
  margin-top: 15px;
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .btn_round {
    max-width: 35rem;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round {
    max-width: 100%;
  }
  .section_recommend_plan .btn_round a {
    border-radius: 100px;
    font-size: 4vw;
    padding: 5vw;
  }
  .section_recommend_plan .btn_round .icon_blank {
    width: 4vw;
    height: 4vw;
    margin-left: 3vw;
  }
  .section_recommend_plan .btn_round .icon_newmember {
    width: 4vw;
    height: 4vw;
    margin-right: 3vw;
  }
  .section_recommend_plan .btn_round .subtxt {
    font-size: 2.5vw;
    padding-bottom: 1vw;
  }
  .section_recommend_plan .btn_round + .section_recommend_plan .btn_round {
    margin-top: 3vw;
  }
}
.section_recommend_plan .btn_round_gray {
  /* a */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round_gray a {
  padding: 12px 20px;
  border: solid 2px #d0d0d0;
  color: #333;
  background: #fff;
}
.section_recommend_plan .btn_round_gray a:hover {
  opacity: 0.7;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round_gray a {
    border-radius: 100px;
    font-size: 4vw;
    padding: 3vw 5vw;
  }
}
.section_recommend_plan .btn_round_white {
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round_white a {
  border: solid 2px #fff;
  color: #fb4c32;
  background: #fff;
}
.section_recommend_plan .btn_round_white a:hover {
  opacity: 0.7;
  background: #fff;
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round_white a {
    border-radius: 100px;
    font-size: 4vw;
    padding: 3vw 5vw;
  }
}
.section_recommend_plan .btn_round_pink {
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round_pink a {
  padding: 12px 20px;
  border: solid 2px #e40677;
  color: #fff;
  background: #e40677;
}
.section_recommend_plan .btn_round_pink a:hover {
  opacity: 0.7;
  background: #e40677;
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round_pink a {
    border-radius: 100px;
    font-size: 4vw;
    padding: 3vw 5vw;
  }
}
.section_recommend_plan .btn_round_yellow {
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round_yellow a {
  padding: 12px 20px;
  border: solid 2px #f5d200;
  background: #f5d200;
  color: #333;
}
.section_recommend_plan .btn_round_yellow a:hover {
  text-decoration: none;
  border: solid 2px rgba(245, 210, 0, 0.7);
  background: rgba(245, 210, 0, 0.7);
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round_yellow a {
    border-radius: 100px;
    font-size: 4vw;
    padding: 3vw 5vw;
  }
}
.section_recommend_plan .btn_round_orange {
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round_orange a {
  padding: 12px 20px;
  border: solid 2px #fb4c32;
  background: #fb4c32;
  color: #fff;
}
.section_recommend_plan .btn_round_orange a:hover {
  text-decoration: none;
  border: solid 2px rgba(251, 76, 50, 0.7);
  background: rgba(251, 76, 50, 0.7);
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round_orange a {
    border-radius: 100px;
    font-size: 4vw;
    padding: 3vw 5vw;
  }
}
.section_recommend_plan .btn_round_blank {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* SP */
}
.section_recommend_plan .btn_round_blank a {
  position: relative;
}
.section_recommend_plan .btn_round_blank a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: auto;
  background: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg) no-repeat center center/contain;
}
@media screen and (max-width: 1030px) {
  .section_recommend_plan .btn_round_blank a {
    font-size: 2vw;
    padding: 2vw;
  }
  .section_recommend_plan .btn_round_blank a::after {
    right: 2.5vw;
    width: 2vw;
    height: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_plan .btn_round_blank a {
    font-size: 4vw;
    padding: 3.5vw;
  }
  .section_recommend_plan .btn_round_blank a::after {
    right: 5vw;
    width: 4vw;
    height: 4vw;
  }
}

/* section_recommend_plan */
/*===============================================================

	noto sans

===============================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("/special/common/webfont/NotoSansCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("/special/common/webfont/NotoSansCJKjp-Bold_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 800;
  src: url("/special/common/webfont/NotoSansCJKjp-Black_subset.woff") format("woff");
}
.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/*===============================================================

	noto serif

===============================================================*/
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: normal;
  font-weight: 400;
  src: url("/special/common/webfont/NotoSerifCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: bold;
  font-weight: 700;
  src: url("/special/common/webfont/NotoSerifCJKjp-Bold_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-style: bold;
  font-weight: 800;
  src: url("/special/common/webfont/NotoSerifCJKjp-Black_subset.woff") format("woff");
}
.noto_serif {
  font-family: "Noto Serif Japanese", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}