@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_wrp {
  background-color: #191919;
  color: #fff;
  position: relative;
}

.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 80px;
  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: 10vw;
    padding-bottom: 10vw;
    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: #000;
  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: 16px;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #ccc;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 20px;
  margin-right: 20px;
  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;
}
.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: fixed;
    width: 100%;
    height: 40px;
    top: 50px;
    left: 0;
    z-index: 200;
    background: #000;
  }
  .sp_menu .inner {
    position: relative;
    width: 100%;
  }
  .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:hover,
  .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.9);
  }
  .sp_menu .nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.9);
    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: #252525;
  }
  .sp_menu .navigation .localnav li a {
    position: relative;
    display: block;
    color: #fff;
    border-top: solid 1px rgb(0, 0, 0);
    padding: 5vw;
    -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: 6px;
    height: 6px;
    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);
  }
  .sp_menu .deactive a {
    pointer-events: none;
    opacity: 0.2;
  }
}
@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;
  }
}

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

	_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;
}
.headline .title {
  font-size: 40px;
}
.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: 8vw;
    padding-top: 10vw;
    border-top: solid 1px #000;
  }
  .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: 20px;
}
.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_gradation

===============================================================*/
.btn_gradation {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 50px;
}
.btn_gradation a {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 16, 79)), to(rgb(18, 113, 248)));
  background: linear-gradient(to right, rgb(248, 16, 79) 0%, rgb(18, 113, 248) 100%);
  position: relative;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
}
.btn_gradation a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.btn_gradation a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  border: solid 2px #fff;
  width: 9px;
  height: 9px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_gradation a .skew {
  display: inline-block;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  width: 14em;
  margin: auto;
  background-color: #fff;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 2px;
  color: #021E95;
  font-weight: bold;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}
.btn_gradation a .skew .inner {
  -webkit-transform: skewX(15deg);
          transform: skewX(15deg);
}
.btn_gradation a .btn_txt {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}
.btn_gradation a .btn_txt .small {
  font-size: 55%;
}
@media screen and (max-width: 800px) {
  .btn_gradation {
    margin-top: 5vw;
  }
  .btn_gradation a {
    padding: 3.5vw 3vw;
    border-radius: 100vw;
  }
  .btn_gradation a::after {
    right: 6vw;
    width: 2vw;
    height: 2vw;
  }
  .btn_gradation a .skew {
    top: -2.5vw;
    width: 14em;
    font-size: 3.5vw;
    padding-bottom: 1vw;
  }
  .btn_gradation a .btn_txt {
    font-size: 4.5vw;
  }
}

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

	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%;
  font-family: "Noto Sans JP";
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.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: 16px;
  line-height: 1.8;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
.thiscontents a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thiscontents a:hover {
  color: #0099CC;
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
}

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

	J:COM COLOR

===============================================================*/
/*---------------------------------------------------------------
	変数
---------------------------------------------------------------*/
/*---------------------------------------------------------------
	color
---------------------------------------------------------------*/
.jcom_color_primary {
  color: #E83316 !important;
}

.jcom_color_link {
  color: #406FAF !important;
}

.jcom_color_white {
  color: #FFFFFF !important;
}

.jcom_color_tv {
  color: #E40077 !important;
}

.jcom_color_net {
  color: #0085CD !important;
}

.jcom_color_phone {
  color: #00A33E !important;
}

.jcom_color_electricity {
  color: #F18D00 !important;
}

.jcom_color_mobile {
  color: #00A4A8 !important;
}

.jcom_color_gas {
  color: #406FAF !important;
}

.jcom_color_home {
  color: #FA7268 !important;
}

.jcom_color_ssi {
  color: #E60044 !important;
}

.jcom_color_telemedicine {
  color: #00855E !important;
}

.jcom_color_black {
  color: #333333 !important;
}

.jcom_color_member {
  color: #F5D200 !important;
}

.jcom_color_border_gray {
  color: #E2E2E2 !important;
}

.jcom_color_border_dark {
  color: #939393 !important;
}

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

	J:COM HEADLINE

===============================================================*/
/*---------------------------------------------------------------
	共通
---------------------------------------------------------------*/
.jcom_h1,
.jcom_h2,
.jcom_h3,
.jcom_h4,
.jcom_h5,
.jcom_h6,
.jcom_h_md,
.jcom_h_underline {
  position: relative;
  font-weight: bold;
  line-height: 1.4;
}

.jcom_h3,
.jcom_h4,
.jcom_h5,
.jcom_h6,
.jcom_h_md,
.jcom_h_underline {
  text-align: center;
}

/*---------------------------------------------------------------
	jcom_h1
---------------------------------------------------------------*/
.jcom_h1 {
  padding-left: 16px;
  font-size: 32px;
}
.jcom_h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #E83316;
  border-radius: 2px;
}
/*---------------------------------------------------------------
	jcom_h2
---------------------------------------------------------------*/
.jcom_h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
}
.jcom_h2::before, .jcom_h2::after {
  content: "";
  display: inline-block;
  width: 64px;
  height: 4px;
  margin: 0 32px;
  background: #E83316;
  border-radius: 2px;
}
.jcom_h2::before {
  margin-left: 0;
}
.jcom_h2::after {
  margin-right: 0;
}

/*---------------------------------------------------------------
	jcom_h3
---------------------------------------------------------------*/
.jcom_h3 {
  font-size: 26px;
}

/*---------------------------------------------------------------
	jcom_h4
---------------------------------------------------------------*/
.jcom_h4 {
  font-size: 24px;
}

/*---------------------------------------------------------------
	jcom_h5
---------------------------------------------------------------*/
.jcom_h5 {
  font-size: 20px;
}

/*---------------------------------------------------------------
	jcom_h6
---------------------------------------------------------------*/
.jcom_h6 {
  font-size: 18px;
}

/*---------------------------------------------------------------
	jcom_h_md
---------------------------------------------------------------*/
.jcom_h_md {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

/*---------------------------------------------------------------
	jcom_h_underline
---------------------------------------------------------------*/
.jcom_h_underline {
  font-size: 32px;
}
.jcom_h_underline span {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding-bottom: 12px;
}
.jcom_h_underline span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #333;
  border-radius: 100px;
  width: 100%;
  height: 4px;
}

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

	アイコン付き見出し

===============================================================*/
/*---------------------------------------------------------------
	共通
---------------------------------------------------------------*/
h2.jcom_h_icon, h3.jcom_h_icon, h4.jcom_h_icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-align: left;
  font-weight: bold;
  line-height: 1.4;
}
h2.jcom_h_icon img, h3.jcom_h_icon img, h4.jcom_h_icon img {
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 16px;
  width: 40px;
  height: 40px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

h2.jcom_h_icon {
  font-size: 28px;
}
h2.jcom_h_icon img {
  top: -1px;
}

h3.jcom_h_icon {
  font-size: 22px;
}
h3.jcom_h_icon img {
  top: -4px;
}

h4.jcom_h_icon {
  font-size: 20px;
}
h4.jcom_h_icon img {
  top: -6px;
}

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

	ラベル付き見出し

===============================================================*/
/*---------------------------------------------------------------
	共通
---------------------------------------------------------------*/
h3.jcom_h_label,
h4.jcom_h_label {
  text-align: left;
  font-weight: bold;
  line-height: 1.4;
}
h3.jcom_h_label .jcom_h_label_txt,
h4.jcom_h_label .jcom_h_label_txt {
  position: relative;
  display: inline-block;
  background: #E83316;
  border-radius: 4px;
  margin-left: 16px;
  padding: 4px 6px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

h3.jcom_h_label {
  font-size: 22px;
}
h3.jcom_h_label .jcom_h_label_txt {
  top: -4px;
}

h4.jcom_h_label {
  font-size: 20px;
}
h4.jcom_h_label .jcom_h_label_txt {
  top: -2px;
}

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

	J:COM TEXT

===============================================================*/
/*---------------------------------------------------------------
	共通
---------------------------------------------------------------*/
.jcom_text_check,
.jcom_text_check_primary,
.jcom_text_atn,
.jcom_text_qst {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  padding-left: 32px;
}
.jcom_text_check::before,
.jcom_text_check_primary::before,
.jcom_text_atn::before,
.jcom_text_qst::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/*---------------------------------------------------------------
	jcom_text_check
---------------------------------------------------------------*/
.jcom_text_check::before {
  background-image: url(/special/common/images/asset/icn_text/icn_text_check.svg);
}

/*---------------------------------------------------------------
	jcom_text_check_primary
---------------------------------------------------------------*/
.jcom_text_check_primary::before {
  background-image: url(/special/common/images/asset/icn_text/icn_text_check_primary.svg);
}

/*---------------------------------------------------------------
	jcom_text_atn
---------------------------------------------------------------*/
.jcom_text_atn::before {
  background-image: url(/special/common/images/asset/icn_text/icn_text_atn.svg);
}

/*---------------------------------------------------------------
	jcom_text_qst
---------------------------------------------------------------*/
.jcom_text_qst::before {
  background-image: url(/special/common/images/asset/icn_text/icn_text_qst.svg);
}

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

	jcom_link

===============================================================*/
.jcom_link {
  /*---------------------------------------------------------------
  	共通
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_self
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_pdf
  ---------------------------------------------------------------*/
}
.jcom_link_self, .jcom_link_blank, .jcom_link_pdf {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  color: #406FAF !important;
  -webkit-transition: 0.3s opacity ease-out;
  transition: 0.3s opacity ease-out;
  cursor: pointer;
}
.jcom_link_self::after, .jcom_link_blank::after, .jcom_link_pdf::after {
  content: "";
  position: relative;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover) {
  .jcom_link_self:hover, .jcom_link_blank:hover, .jcom_link_pdf:hover {
    opacity: 0.7;
  }
}
.jcom_link_self_black, .jcom_link_blank_black, .jcom_link_pdf_black {
  color: #333333 !important;
}
.jcom_link_self_white, .jcom_link_blank_white, .jcom_link_pdf_white {
  color: #fff !important;
}
.jcom_link_self::after {
  top: 2px;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url(/special/common/images/asset/icn_link/icn_link_self_blue.svg);
}
.jcom_link_self_black::after {
  background-image: url(/special/common/images/asset/icn_link/icn_link_self_black.svg);
}
.jcom_link_self_white::after {
  background-image: url(/special/common/images/asset/icn_link/icn_link_self_white.svg);
}
.jcom_link_blank {
  padding-right: 20px;
}
.jcom_link_blank::after {
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background-image: url(/special/common/images/asset/icn_link/icn_link_blank_blue.svg);
}
.jcom_link_blank_black::after {
  background-image: url(/special/common/images/asset/icn_link/icn_link_blank_black.svg);
}
.jcom_link_blank_white::after {
  background-image: url(/special/common/images/asset/icn_link/icn_link_blank_white.svg);
}
.jcom_link_pdf {
  padding-right: 32px;
}
.jcom_link_pdf::after {
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background-image: url(/special/common/images/asset/icn_link/icn_link_pdf_blue.svg);
}
.jcom_link_pdf_black::after {
  background-image: url(/special/common/images/asset/icn_link/icn_link_pdf_black.svg);
}
.jcom_link_pdf_white::after {
  background-image: url(/special/common/images/asset/icn_link/icn_link_pdf_white.svg);
}

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

	jcom_link_bullet

===============================================================*/
.jcom_link_bullet {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  padding-right: 20px;
  text-decoration: none;
  color: #406FAF !important;
  -webkit-transition: 0.3s opacity ease-out;
  transition: 0.3s opacity ease-out;
  cursor: pointer;
  /*---------------------------------------------------------------
  	jcom_link_bullet_primary
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_black
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_tv
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_net
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_phone
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_electricity
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_mobile
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_gas
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_home
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_ssi
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_telemedicine
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_bullet_left_black
  ---------------------------------------------------------------*/
}
.jcom_link_bullet::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_link.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 7px;
  height: 14px;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
  -webkit-transition: 0.5s -webkit-transform;
  transition: 0.5s -webkit-transform;
  transition: 0.5s transform;
  transition: 0.5s transform, 0.5s -webkit-transform;
}
@media (hover) {
  .jcom_link_bullet:hover {
    opacity: 0.7;
  }
  .jcom_link_bullet:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.jcom_link_bullet_primary {
  color: #E83316 !important;
}
.jcom_link_bullet_primary::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_primary.svg);
}
.jcom_link_bullet_black {
  color: #333333 !important;
}
.jcom_link_bullet_black::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_black.svg);
}
.jcom_link_bullet_tv {
  color: #E40077 !important;
}
.jcom_link_bullet_tv::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_tv.svg);
}
.jcom_link_bullet_net {
  color: #0085CD !important;
}
.jcom_link_bullet_net::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_net.svg);
}
.jcom_link_bullet_phone {
  color: #00A33E !important;
}
.jcom_link_bullet_phone::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_phone.svg);
}
.jcom_link_bullet_electricity {
  color: #F18D00 !important;
}
.jcom_link_bullet_electricity::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_electricity.svg);
}
.jcom_link_bullet_mobile {
  color: #00A4A8 !important;
}
.jcom_link_bullet_mobile::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_mobile.svg);
}
.jcom_link_bullet_gas {
  color: #406FAF !important;
}
.jcom_link_bullet_gas::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_gas.svg);
}
.jcom_link_bullet_home {
  color: #FA7268 !important;
}
.jcom_link_bullet_home::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_home.svg);
}
.jcom_link_bullet_ssi {
  color: #E60044 !important;
}
.jcom_link_bullet_ssi::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_ssi.svg);
}
.jcom_link_bullet_telemedicine {
  color: #00855E !important;
}
.jcom_link_bullet_telemedicine::after {
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_telemedicine.svg);
}
.jcom_link_bullet_left_black {
  padding-right: 0;
  padding-left: 20px;
  color: #333333 !important;
}
.jcom_link_bullet_left_black::after {
  top: 2px;
  right: auto;
  left: 0;
  -webkit-transform: rotate(180deg) translateX(-4px);
          transform: rotate(180deg) translateX(-4px);
  background-image: url(/special/common/images/asset/icn_link/icn_bullet_black.svg);
}
@media (hover) {
  .jcom_link_bullet_left_black:hover::after {
    -webkit-transform: rotate(180deg) translateX(0);
            transform: rotate(180deg) translateX(0);
  }
}

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

	jcom_link_anchor_text

===============================================================*/
.jcom_link_anchor_text {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  padding-right: 24px;
  text-decoration: none;
  color: #333333 !important;
  -webkit-transition: 0.3s opacity ease-out;
  transition: 0.3s opacity ease-out;
  cursor: pointer;
}
.jcom_link_anchor_text::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  background-image: url(/special/common/images/asset/icn_link/icn_link_anchor_text.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 16px;
  height: 16px;
}
@media (hover) {
  .jcom_link_anchor_text:hover {
    opacity: 0.7;
  }
}

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

	jcom_anchor_list

===============================================================*/
.jcom_anchor_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -8px;
}
.jcom_anchor_list_item {
  display: inline-block;
  margin: 0 8px;
}

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

	jcom_link_anchor_panel

===============================================================*/
.jcom_link_anchor_panel {
  /*---------------------------------------------------------------
  	共通
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_anchor_panel_header
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_anchor_panel_body
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_anchor_panel_title
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_anchor_panel_down
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	jcom_link_anchor_panel_up
  ---------------------------------------------------------------*/
}
.jcom_link_anchor_panel_down, .jcom_link_anchor_panel_up {
  position: relative;
  display: block;
  width: 155px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 16px;
  border: 2px solid #E83316;
  color: #333333 !important;
  background: #fff;
  text-align: center;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}
.jcom_link_anchor_panel_down::after, .jcom_link_anchor_panel_up::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: inline-block;
  width: 36px;
  height: 16px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover) {
  .jcom_link_anchor_panel_down:hover, .jcom_link_anchor_panel_up:hover {
    opacity: 0.7;
  }
}
.jcom_link_anchor_panel_header {
  overflow: hidden;
  display: block;
  background: #FFF2F0;
  font-weight: bold;
  min-height: 31px;
  padding: 6px;
  border-radius: 16px 16px 0 0;
  color: #E83316;
}
.jcom_link_anchor_panel_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  font-weight: bold;
  border-radius: 16px;
  min-height: 53px;
}
.jcom_link_anchor_panel_body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 6px;
  background: #fff;
}
.jcom_link_anchor_panel_title {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.jcom_link_anchor_panel_down {
  border-bottom: 21px solid #E83316;
}
.jcom_link_anchor_panel_down::after {
  bottom: -31px;
  background-image: url(/special/common/images/asset/icn_link/icn_anchor_panel_down_primary.svg);
  background-size: 36px 16px;
}
.jcom_link_anchor_panel_down .jcom_link_anchor_panel_body {
  padding: 10px 10px 4px;
}
.jcom_link_anchor_panel_down .jcom_link_anchor_panel_body::after {
  bottom: -5px;
  border-radius: 0 0 5px 5px;
}
.jcom_link_anchor_panel_up {
  border-top: 21px solid #E83316;
}
.jcom_link_anchor_panel_up::after {
  top: -31px;
  background: url(/special/common/images/asset/icn_link/icn_anchor_panel_up_primary.svg);
  background-size: 36px 16px;
}
.jcom_link_anchor_panel_up .jcom_link_anchor_panel_body {
  padding: 4px 10px 10px;
}
.jcom_link_anchor_panel_up .jcom_link_anchor_panel_body::after {
  top: -5px;
  border-radius: 5px 5px 0 0;
}

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

	jcom_btn 共通

===============================================================*/
.jcom_btn_white_primary,
.jcom_btn_primary,
.jcom_btn_member,
.jcom_btn_white_gray,
.jcom_btn_white_dark,
.jcom_btn_back {
  overflow: hidden;
  position: relative;
  display: block;
  max-width: 352px;
  min-height: 58px;
  padding: 14px 40px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  border: 3px solid #fff;
  background: #fff;
  color: #333333;
  border-radius: 100px;
  text-align: center;
  -webkit-transition: 0.3s opacity ease-out;
  transition: 0.3s opacity ease-out;
  cursor: pointer;
  /*---------------------------------------------------------------
  	blnk
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	search
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	other
  ---------------------------------------------------------------*/
}
.jcom_btn_white_primary::after,
.jcom_btn_primary::after,
.jcom_btn_member::after,
.jcom_btn_white_gray::after,
.jcom_btn_white_dark::after,
.jcom_btn_back::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 9px;
  height: 16px;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (hover) {
  .jcom_btn_white_primary:hover,
  .jcom_btn_primary:hover,
  .jcom_btn_member:hover,
  .jcom_btn_white_gray:hover,
  .jcom_btn_white_dark:hover,
  .jcom_btn_back:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.jcom_btn_white_primary_blank::after,
.jcom_btn_primary_blank::after,
.jcom_btn_member_blank::after,
.jcom_btn_white_gray_blank::after,
.jcom_btn_white_dark_blank::after,
.jcom_btn_back_blank::after {
  width: 16px;
}
.jcom_btn_white_primary_search::before,
.jcom_btn_primary_search::before,
.jcom_btn_member_search::before,
.jcom_btn_white_gray_search::before,
.jcom_btn_white_dark_search::before,
.jcom_btn_back_search::before {
  content: "";
  position: absolute;
  left: 24px;
  top: calc(50% - 9px);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.jcom_btn_white_primary_search::after,
.jcom_btn_primary_search::after,
.jcom_btn_member_search::after,
.jcom_btn_white_gray_search::after,
.jcom_btn_white_dark_search::after,
.jcom_btn_back_search::after {
  display: none;
}
.jcom_btn_white_primary_simulation, .jcom_btn_white_primary_member, .jcom_btn_white_primary_service, .jcom_btn_white_primary_mail, .jcom_btn_white_primary_tel,
.jcom_btn_primary_simulation,
.jcom_btn_primary_member,
.jcom_btn_primary_service,
.jcom_btn_primary_mail,
.jcom_btn_primary_tel,
.jcom_btn_member_simulation,
.jcom_btn_member_member,
.jcom_btn_member_service,
.jcom_btn_member_mail,
.jcom_btn_member_tel,
.jcom_btn_white_gray_simulation,
.jcom_btn_white_gray_member,
.jcom_btn_white_gray_service,
.jcom_btn_white_gray_mail,
.jcom_btn_white_gray_tel,
.jcom_btn_white_dark_simulation,
.jcom_btn_white_dark_member,
.jcom_btn_white_dark_service,
.jcom_btn_white_dark_mail,
.jcom_btn_white_dark_tel,
.jcom_btn_back_simulation,
.jcom_btn_back_member,
.jcom_btn_back_service,
.jcom_btn_back_mail,
.jcom_btn_back_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px 10px 20px;
}
.jcom_btn_white_primary_simulation::before, .jcom_btn_white_primary_member::before, .jcom_btn_white_primary_service::before, .jcom_btn_white_primary_mail::before, .jcom_btn_white_primary_tel::before,
.jcom_btn_primary_simulation::before,
.jcom_btn_primary_member::before,
.jcom_btn_primary_service::before,
.jcom_btn_primary_mail::before,
.jcom_btn_primary_tel::before,
.jcom_btn_member_simulation::before,
.jcom_btn_member_member::before,
.jcom_btn_member_service::before,
.jcom_btn_member_mail::before,
.jcom_btn_member_tel::before,
.jcom_btn_white_gray_simulation::before,
.jcom_btn_white_gray_member::before,
.jcom_btn_white_gray_service::before,
.jcom_btn_white_gray_mail::before,
.jcom_btn_white_gray_tel::before,
.jcom_btn_white_dark_simulation::before,
.jcom_btn_white_dark_member::before,
.jcom_btn_white_dark_service::before,
.jcom_btn_white_dark_mail::before,
.jcom_btn_white_dark_tel::before,
.jcom_btn_back_simulation::before,
.jcom_btn_back_member::before,
.jcom_btn_back_service::before,
.jcom_btn_back_mail::before,
.jcom_btn_back_tel::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-inline: 5.4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.jcom_btn_white_primary_simulation::after, .jcom_btn_white_primary_member::after, .jcom_btn_white_primary_service::after, .jcom_btn_white_primary_mail::after, .jcom_btn_white_primary_tel::after,
.jcom_btn_primary_simulation::after,
.jcom_btn_primary_member::after,
.jcom_btn_primary_service::after,
.jcom_btn_primary_mail::after,
.jcom_btn_primary_tel::after,
.jcom_btn_member_simulation::after,
.jcom_btn_member_member::after,
.jcom_btn_member_service::after,
.jcom_btn_member_mail::after,
.jcom_btn_member_tel::after,
.jcom_btn_white_gray_simulation::after,
.jcom_btn_white_gray_member::after,
.jcom_btn_white_gray_service::after,
.jcom_btn_white_gray_mail::after,
.jcom_btn_white_gray_tel::after,
.jcom_btn_white_dark_simulation::after,
.jcom_btn_white_dark_member::after,
.jcom_btn_white_dark_service::after,
.jcom_btn_white_dark_mail::after,
.jcom_btn_white_dark_tel::after,
.jcom_btn_back_simulation::after,
.jcom_btn_back_member::after,
.jcom_btn_back_service::after,
.jcom_btn_back_mail::after,
.jcom_btn_back_tel::after {
  display: none;
}
.jcom_btn_white_primary_service::before, .jcom_btn_white_primary_mail::before, .jcom_btn_white_primary_tel::before,
.jcom_btn_primary_service::before,
.jcom_btn_primary_mail::before,
.jcom_btn_primary_tel::before,
.jcom_btn_member_service::before,
.jcom_btn_member_mail::before,
.jcom_btn_member_tel::before,
.jcom_btn_white_gray_service::before,
.jcom_btn_white_gray_mail::before,
.jcom_btn_white_gray_tel::before,
.jcom_btn_white_dark_service::before,
.jcom_btn_white_dark_mail::before,
.jcom_btn_white_dark_tel::before,
.jcom_btn_back_service::before,
.jcom_btn_back_mail::before,
.jcom_btn_back_tel::before {
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 800px) {
  .jcom_btn_white_primary,
  .jcom_btn_primary,
  .jcom_btn_member,
  .jcom_btn_white_gray,
  .jcom_btn_white_dark,
  .jcom_btn_back {
    width: 100%;
    min-width: 140px;
  }
}

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

	jcom_btn_white_primary

===============================================================*/
.jcom_btn_white_primary {
  border-color: #E83316;
  background: #fff;
  color: #333333 !important;
  /*---------------------------------------------------------------
  	blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	search
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	simulation
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	member
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	service
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	mail
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	tel
  ---------------------------------------------------------------*/
}
.jcom_btn_white_primary::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_bullet_black.svg);
}
.jcom_btn_white_primary_blank::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg);
}
.jcom_btn_white_primary_search::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_search_black.svg);
}
.jcom_btn_white_primary_simulation::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_simulation.svg);
}
.jcom_btn_white_primary_member::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_member_black.svg);
}
.jcom_btn_white_primary_service::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_think_black.svg);
}
.jcom_btn_white_primary_mail::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_mail_black.svg);
}
.jcom_btn_white_primary_tel::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_phone_black.svg);
}

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

	jcom_btn_primary

===============================================================*/
.jcom_btn_primary {
  border-color: #E83316;
  background: #E83316;
  color: #fff !important;
  /*---------------------------------------------------------------
  	blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	search
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	simulation
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	member
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	service
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	mail
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	tel
  ---------------------------------------------------------------*/
}
.jcom_btn_primary::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_bullet_white.svg);
}
.jcom_btn_primary_blank::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_white.svg);
}
.jcom_btn_primary_search::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_search_white.svg);
}
.jcom_btn_primary_simulation::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_simulation_white.svg);
}
.jcom_btn_primary_member::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_member_white.svg);
}
.jcom_btn_primary_service::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_think_white.svg);
}
.jcom_btn_primary_mail::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_mail_white.svg);
}
.jcom_btn_primary_tel::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_phone_white.svg);
}

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

	jcom_btn_member

===============================================================*/
.jcom_btn_member {
  border-color: #F5D200;
  background: #F5D200;
  color: #333333 !important;
  /*---------------------------------------------------------------
  	blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	search
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	simulation
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	member
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	service
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	mail
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	tel
  ---------------------------------------------------------------*/
}
.jcom_btn_member::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_bullet_black.svg);
}
.jcom_btn_member_blank::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg);
}
.jcom_btn_member_search::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_search_black.svg);
}
.jcom_btn_member_simulation::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_simulation_black.svg);
}
.jcom_btn_member_member::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_member_black.svg);
}
.jcom_btn_member_service::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_think_black.svg);
}
.jcom_btn_member_mail::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_mail_black.svg);
}
.jcom_btn_member_tel::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_phone_black.svg);
}

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

	jcom_btn_white_gray

===============================================================*/
.jcom_btn_white_gray {
  border-color: #E2E2E2;
  background: #fff;
  color: #333333 !important;
  /*---------------------------------------------------------------
  	blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	search
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	simulation
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	member
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	service
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	mail
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	tel
  ---------------------------------------------------------------*/
}
.jcom_btn_white_gray::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_bullet_black.svg);
}
.jcom_btn_white_gray_blank::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg);
}
.jcom_btn_white_gray_search::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_search_black.svg);
}
.jcom_btn_white_gray_simulation::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_simulation.svg);
}
.jcom_btn_white_gray_member::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_member_black.svg);
}
.jcom_btn_white_gray_service::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_think_black.svg);
}
.jcom_btn_white_gray_mail::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_mail_black.svg);
}
.jcom_btn_white_gray_tel::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_phone_black.svg);
}

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

	jcom_btn_white_dark

===============================================================*/
.jcom_btn_white_dark {
  border-color: #939393;
  background: #fff;
  color: #333333 !important;
  /*---------------------------------------------------------------
  	blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	search
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	simulation
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	member
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	service
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	mail
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	tel
  ---------------------------------------------------------------*/
}
.jcom_btn_white_dark::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_bullet_black.svg);
}
.jcom_btn_white_dark_blank::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg);
}
.jcom_btn_white_dark_search::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_search_black.svg);
}
.jcom_btn_white_dark_simulation::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_simulation.svg);
}
.jcom_btn_white_dark_member::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_member_black.svg);
}
.jcom_btn_white_dark_service::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_think_black.svg);
}
.jcom_btn_white_dark_mail::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_mail_black.svg);
}
.jcom_btn_white_dark_tel::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_phone_black.svg);
}

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

	jcom_btn_back

===============================================================*/
.jcom_btn_back {
  border-color: #E2E2E2;
  background: #fff;
  color: #333333 !important;
  width: 150px;
  min-width: 150px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
  /*---------------------------------------------------------------
  	blank
  ---------------------------------------------------------------*/
  /*---------------------------------------------------------------
  	simulation
  ---------------------------------------------------------------*/
}
.jcom_btn_back::after {
  left: 24px;
  right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url(/special/common/images/asset/icn_btn/icn_bullet_black.svg);
}
.jcom_btn_back_blank::after {
  background-image: url(/special/common/images/asset/icn_btn/icn_link_blank_black.svg);
}
.jcom_btn_back_simulation {
  padding: 10px 30px 10px 20px;
}
.jcom_btn_back_simulation::before {
  background-image: url(/special/common/images/asset/icn_btn/icn_simulation.svg);
}

/*===============================================================
js_multilinkarea js_linkarea
===============================================================*/
.js_linkarea,
.js_multilinkarea {
  cursor: pointer;
}

/*===============================================================
    js_scroll
===============================================================*/
.js_scroll {
  -webkit-transition: all 1s;
  transition: all 1s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================
    js_fadein
===============================================================*/
.js_fadein {
  opacity: 0;
  /* タブレット */
  /* SP */
}
.js_fadein.is_active {
  opacity: 1;
}
/*===============================================================
    js_fadein_up
===============================================================*/
.js_fadein_up {
  opacity: 0;
  -webkit-transform: translateY(3vw);
          transform: translateY(3vw);
}
.js_fadein_up.is_active {
  opacity: 1;
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

.js_move_up {
  -webkit-transform: translateY(3vw);
          transform: translateY(3vw);
}
.js_move_up.is_active {
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

/*===============================================================
    js_fadein_down
===============================================================*/
.js_fadein_down {
  opacity: 0;
  -webkit-transform: translateY(-3vw);
          transform: translateY(-3vw);
}
.js_fadein_down.is_active {
  opacity: 1;
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

/*===============================================================
    js_fadein_left
===============================================================*/
.js_fadein_left {
  opacity: 0;
  -webkit-transform: translateX(-3vw);
          transform: translateX(-3vw);
}
.js_fadein_left.is_active {
  opacity: 1;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

/*===============================================================
    js_fadein_right
===============================================================*/
.js_fadein_right {
  opacity: 0;
  -webkit-transform: translateX(3vw);
          transform: translateX(3vw);
}
.js_fadein_right.is_active {
  opacity: 1;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

/*===============================================================
    js_fadein_photo
===============================================================*/
.js_fadein_photo {
  overflow: hidden;
}
.js_fadein_photo img {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js_fadein_photo.is_active img {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*===============================================================
	js_gsap_parallax_photo
===============================================================*/
.js_gsap_parallax_photo_reverse,
.js_gsap_parallax_photo {
  background-color: #000;
  overflow: hidden;
}

/*===============================================================
	js_2step
===============================================================*/
.js_2step, .js_2step_down, .js_2step_up {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.js_2step::before, .js_2step_down::before, .js_2step_up::before, .js_2step::after, .js_2step_down::after, .js_2step_up::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #eee;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  z-index: 2;
}
.js_2step::after, .js_2step_down::after, .js_2step_up::after {
  background-color: #fff;
}
.js_2step.is_active::before, .is_active.js_2step_down::before, .is_active.js_2step_up::before, .js_2step.is_active::after, .is_active.js_2step_down::after, .is_active.js_2step_up::after {
  -webkit-transform-origin: 0 right;
          transform-origin: 0 right;
}
.js_2step.is_active::after, .is_active.js_2step_down::after, .is_active.js_2step_up::after {
  left: auto;
  right: 0;
  width: 0%;
}
.js_2step.is_active::before, .is_active.js_2step_down::before, .is_active.js_2step_up::before {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  left: auto;
  right: 0;
  width: 0%;
}

/*===============================================================
	js_2step_up
===============================================================*/
.js_2step_up.is_active::before, .js_2step_up.is_active::after {
  -webkit-transform-origin: top 0;
          transform-origin: top 0;
  top: 0;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  height: 0%;
}

/*===============================================================
	js_2step_down
===============================================================*/
.js_2step_down.is_active::before, .js_2step_down.is_active::after {
  -webkit-transform-origin: bottom 0;
          transform-origin: bottom 0;
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
  width: 100%;
  height: 0%;
}

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

	c_tab_content

===============================================================*/
.c_tab_content {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	c_tab tablist	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	c_tab tabbody	
  -------------------------------------------------------------*/
  /*===============================================================
  //	c_tab
  ===============================================================*/
}
.c_tab_content .tablist {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  min-height: 100px;
  gap: 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_tab_content .tablist::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  z-index: 2;
}
.c_tab_content .tablist button[role=tab] {
  border: solid 2px #fff;
  border-bottom: 0;
  background-color: #000;
  color: #fff;
  border-radius: 20px 20px 0 0;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  padding: 28px;
  border-bottom: 0;
  width: 420px;
  position: relative;
  z-index: 1;
}
.c_tab_content .tablist button[role=tab] .tab_label {
  display: inline-block;
  position: relative;
  pointer-events: none;
}
.c_tab_content .tablist button[role=tab] .tab_label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 16, 79)), to(rgb(18, 113, 248)));
  background: linear-gradient(to right, rgb(248, 16, 79) 0%, rgb(18, 113, 248) 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.c_tab_content .tablist button[role=tab][aria-selected=true] {
  padding: 35px 30px;
  z-index: 3;
}
.c_tab_content .tablist button[role=tab][aria-selected=true] .tab_label {
  position: relative;
}
.c_tab_content .tablist button[role=tab][aria-selected=true] .tab_label::after {
  opacity: 1;
  width: 100%;
}
.c_tab_content .tablist button[role=tab][aria-selected=false]:hover {
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .c_tab_content .tablist {
    min-height: inherit;
    gap: 3vw;
  }
  .c_tab_content .tablist button[role=tab] {
    padding: 4vw 3vw;
    border-radius: 2vw 2vw 0 0;
    font-size: 4vw;
  }
  .c_tab_content .tablist button[role=tab][aria-selected=true] {
    padding: 6vw 3vw;
    z-index: 3;
  }
  .c_tab_content .tablist button[role=tab][aria-selected=true] .tab_label {
    position: relative;
  }
  .c_tab_content .tablist button[role=tab][aria-selected=true] .tab_label::after {
    opacity: 1;
    width: 100%;
  }
}
.c_tab_content .tabbody {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  height: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_tab_content .tabbody .content_width {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.c_tab_content .tabbody .active .content_width {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  height: auto;
}
.c_tab_content .tabbody .tab_title {
  font-size: 3rem;
}
.c_tab_content .tabbody p {
  margin-top: 1em;
}
.c_tab_content .tabbody .tabcontent:nth-child(3) .inner {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .c_tab_content .tabbody {
    border-radius: 0 2vw 3vw 3vw;
  }
  .c_tab_content .tabbody .inner {
    padding: 5vw;
  }
}

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

	c_lineframe_accordion

===============================================================*/
.c_lineframe_accordion {
  border: solid 2px #fff;
  border-radius: 10px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	accordion_header	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	accordion_body	
  -------------------------------------------------------------*/
  /*===============================================================
  	//	c_accordion
  ===============================================================*/
}
.c_lineframe_accordion + .c_lineframe_accordion {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .c_lineframe_accordion + .c_lineframe_accordion {
    margin-top: 5vw;
  }
}
.c_lineframe_accordion .accordion_header {
  border-radius: 10px;
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: #000 !important;
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  padding: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_lineframe_accordion .accordion_header:hover {
  opacity: 0.7;
}
.c_lineframe_accordion .accordion_header .gradetion_line {
  position: relative;
  pointer-events: none;
}
.c_lineframe_accordion .accordion_header .gradetion_line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 16, 79)), to(rgb(18, 113, 248)));
  background: linear-gradient(to right, rgb(248, 16, 79) 0%, rgb(18, 113, 248) 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_lineframe_accordion .accordion_header .question {
  font-size: 140%;
  line-height: 1;
  color: #B31B37;
  padding-right: 0.5em;
}
.c_lineframe_accordion .accordion_header .plus_minus,
.c_lineframe_accordion .accordion_header .icon_arw_down {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  height: 1em;
}
.c_lineframe_accordion .accordion_header .plus_minus {
  width: 30px;
  height: 30px;
  right: 30px;
}
.c_lineframe_accordion .accordion_header .plus_minus::after, .c_lineframe_accordion .accordion_header .plus_minus::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 30px;
  height: 2px;
  background: #fff;
}
.c_lineframe_accordion .accordion_header .plus_minus::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c_lineframe_accordion .accordion_header.opened .icon_arw_down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c_lineframe_accordion .accordion_header.opened .plus_minus::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
@media screen and (max-width: 800px) {
  .c_lineframe_accordion .accordion_header {
    padding: 4vw 5vw;
    padding-right: 2em;
  }
  .c_lineframe_accordion .accordion_header .gradetion_line {
    display: inline-block;
  }
  .c_lineframe_accordion .accordion_header .plus_minus {
    width: 5vw;
    height: 5vw;
    right: 3vw;
  }
  .c_lineframe_accordion .accordion_header .plus_minus::after, .c_lineframe_accordion .accordion_header .plus_minus::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: "";
    width: 5vw;
    height: 2px;
    background: #fff;
  }
  .c_lineframe_accordion .accordion_header .plus_minus::before {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.c_lineframe_accordion .accordion_body {
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_lineframe_accordion .accordion_body .inner {
  border-top: solid 2px #fff;
  padding: 60px 30px;
  padding-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .c_lineframe_accordion .accordion_body .inner {
    padding: 5vw;
  }
}

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

    c_local_menu

===============================================================*/
.c_local_menu {
  position: sticky;
  top: 20px;
  z-index: 100;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.c_local_menu ul {
  background-color: #252525;
  border: solid 1px #333;
  border-radius: 50px;
  padding: 0 20px;
  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;
}
.c_local_menu a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  list-style: 1.2;
  padding: 20px 10px;
  padding-right: 18px;
  position: relative;
}
.c_local_menu a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid 2px #fff;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_local_menu a:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
}
.c_local_menu .deactive a {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 1260px) {
  .c_local_menu {
    margin-left: 30px;
    margin-right: 30px;
  }
  .c_local_menu ul {
    padding: 0 1.59vw;
  }
  .c_local_menu a {
    font-size: 1.27vw;
    padding: 1.59vw 0.79vw;
    padding-right: 1.43vw;
  }
}
@media screen and (max-width: 800px) {
  .c_local_menu {
    display: none;
  }
}

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

    c_local_menu_sp

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

	c_lineup_slider

===============================================================*/
.c_lineup_slider {
  min-height: 330px;
  /* ガター */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  .slider .pager
     -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager a
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  thumb
  ===============================================================*/
  /*===============================================================
  detail_data
  ===============================================================*/
  /*-------------------------------------------------------------
  more_link
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  carousel_slider ここまで
  -------------------------------------------------------------*/
}
.c_lineup_slider.slide_loaded {
  min-height: inherit;
}
.c_lineup_slider .slider {
  position: relative;
  opacity: 0;
}
.c_lineup_slider .slider .slide {
  position: relative;
  text-align: left;
}
.c_lineup_slider .slider .slide a {
  display: block;
}
.c_lineup_slider .slider .slide a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c_lineup_slider .slick-list {
  margin-right: -20px;
}
.c_lineup_slider .slick-slide {
  margin-right: 20px;
}
.c_lineup_slider.pc_no_slide .pager {
  display: none;
}
@media screen and (max-width: 800px) {
  .c_lineup_slider.pc_no_slide .pager {
    display: block;
  }
}
.c_lineup_slider .slider .pager {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  z-index: 5;
}
.c_lineup_slider .slider .prev {
  left: -40px;
}
.c_lineup_slider .slider .next {
  right: -40px;
}
@media screen and (max-width: 800px) {
  .c_lineup_slider .slider .pager {
    width: 8vw;
    height: 8vw;
  }
  .c_lineup_slider .slider .prev {
    left: -4vw;
  }
  .c_lineup_slider .slider .next {
    right: -4vw;
  }
}
.c_lineup_slider .slider .pager a {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #252525;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
}
.c_lineup_slider .slider .pager a:hover {
  opacity: 0.7;
}
.c_lineup_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_lineup_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 800px) {
  .c_lineup_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
}
.c_lineup_slider .thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #000;
}
.c_lineup_slider .thumb.no_photo {
  background-color: #fff;
}
.c_lineup_slider .thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/9;
}
.c_lineup_slider .detail_data {
  margin-top: 15px;
  color: #fff;
}
.c_lineup_slider .detail_data .program_title {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3em;
}
.c_lineup_slider .detail_data .program_date {
  font-size: 14px;
  line-height: 1.6;
  color: #CDCDCD;
  margin-top: 5px;
}
.c_lineup_slider .detail_data .channel_name {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 2px;
  color: #CDCDCD;
}
.c_lineup_slider .detail_data .brand_label {
  margin-top: 8px;
  font-size: 12px;
  list-style: 1;
  padding: 1px 8px 2px 8px;
  border-radius: 2px;
  display: inline-block;
  border: solid 1px #666;
}
.c_lineup_slider .detail_data .brand_label + .brand_label {
  margin-left: 5px;
}
@media screen and (max-width: 800px) {
  .c_lineup_slider .detail_data {
    margin-top: 3vw;
  }
  .c_lineup_slider .detail_data .program_title {
    font-size: 4vw;
  }
  .c_lineup_slider .detail_data .program_date {
    font-size: 3.5vw;
    margin-top: 1vw;
  }
  .c_lineup_slider .detail_data .channel_name {
    font-size: 3.5vw;
    margin-top: 0.5vw;
  }
  .c_lineup_slider .detail_data .brand_label {
    font-size: 3.2vw;
    margin-top: 2vw;
  }
}
.c_lineup_slider .more_link {
  text-align: right;
  margin-top: 20px;
}
.c_lineup_slider .more_link a {
  color: #f00;
  position: relative;
  padding-right: 1em;
}
.c_lineup_slider .more_link a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid 1px #f00;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
          transform: rotate(-45deg) translate(-1px, -1px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_lineup_slider .more_link a:hover {
  opacity: 0.7;
  text-decoration: none;
}
/*===============================================================

    js_popup_tips

===============================================================*/
.js_popup_tips {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: solid 1px #FFCE00;
  border-radius: 1em;
  margin: 0;
  vertical-align: middle;
  position: relative;
  text-align: center;
  -webkit-transform: translate(0px, -0.15em);
          transform: translate(0px, -0.15em);
  margin-left: 0.2em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js_popup_tips:hover {
  opacity: 0.7;
}
.js_popup_tips::after {
  content: "?";
  color: #FFCE00;
  font-size: 70%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: bold;
  -webkit-transform: translateY(-0.2em);
          transform: translateY(-0.2em);
}
/*===============================================================

    js_popup_tips_dialogs

===============================================================*/
.js_popup_tips_dialogs dialog {
  border: none;
  border-radius: 8px;
  padding: 50px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 400px;
  max-width: 800px;
  text-align: center;
  background-color: #000;
  border: solid 1px #FFCE00;
  color: #fff;
}
.js_popup_tips_dialogs .txt {
  text-align: left;
}
.js_popup_tips_dialogs .txt .title {
  font-size: 180%;
  font-weight: bold;
  color: #FFCE00;
}
.js_popup_tips_dialogs .txt * + .title {
  margin-top: 2em;
}
.js_popup_tips_dialogs .txt .subtitle {
  font-size: 140%;
}
.js_popup_tips_dialogs .txt p {
  margin-top: 0.5em;
}
.js_popup_tips_dialogs .txt .caption {
  font-size: 90%;
  margin-top: 1em;
}
.js_popup_tips_dialogs .js_close_modal {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  background-color: #252525;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  border: solid 1px #333;
  border-radius: 5px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.js_popup_tips_dialogs .js_close_modal:hover {
  border: solid 1px #444;
}
.js_popup_tips_dialogs .modal-dialog {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.js_popup_tips_dialogs .modal-dialog.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}
.js_popup_tips_dialogs .modal-dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.js_popup_tips_dialogs .modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 800px) {
  .js_popup_tips_dialogs dialog {
    margin: auto 3vw;
  }
}

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

    block_price_box

===============================================================*/
.block_price_box {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	block_price_box
  ===============================================================*/
}
.block_price_box .title {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  height: 1em;
  position: relative;
}
.block_price_box .title::after, .block_price_box .title::before {
  content: "";
  width: calc((100% - 8em) / 2);
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.block_price_box .title::after {
  left: 0;
}
.block_price_box .title::before {
  right: 0;
}
.block_price_box .block_price {
  margin-top: -10px;
  padding: 30px;
  border: solid 1px #fff;
  border-top: 0;
}
.block_price_box .block_box + .block_box {
  margin-top: 20px;
}
.block_price_box .block_box + .block_box.new {
  margin-top: 48px;
}
.block_price_box .block_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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;
}
.block_price_box .block_box .label_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block_price_box .block_box .icon {
  width: 80px;
  margin-right: 10px;
}
.block_price_box .block_box .label .bar_pop_block {
  position: absolute;
  top: -43px;
  left: -21px;
  width: 118%;
  margin: 0 auto 14px;
}
.block_price_box .block_box .label .bar_pop_block .bar_pop {
  padding-bottom: 8px;
  color: #fff;
  font-weight: normal;
  font-size: 13px;
}
.block_price_box .block_box .label .bar_pop_block .bar_pop .new_label {
  margin-right: 4px;
  padding: 0 4px 1px;
  background: #E93417;
  font-size: 14px;
  line-height: 1;
  border-radius: 0.05rem;
}
.block_price_box .block_box .label .bar_pop_block .bar_pop .bar {
  width: calc(50% - 20px);
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
.block_price_box .block_box .label .bar_pop_block .bar_pop .bar::before {
  content: "";
  width: calc(100% + 20px);
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: calc((100% + 40px) * -1);
}
.block_price_box .block_box .label .bar_pop_block .bar_pop .bar::after {
  content: "";
  width: 20px;
  height: 1.5px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg) translate(-16px, -6px);
          transform: rotate(-45deg) translate(-16px, -6px);
}
.block_price_box .label {
  position: relative;
  min-width: 218px;
  font-size: 16px;
  line-height: 1.2;
}
.block_price_box .label .label_inner {
  padding: 8px 12px;
  background-color: #333;
  font-weight: bold;
  border-radius: 5px;
}
.block_price_box .label.top_pop .pop {
  position: relative;
  font-size: 12px;
  font-weight: bold;
  background-color: #E93817;
  padding: 8px 12px;
  border-radius: 5px 5px 0 0;
}
.block_price_box .label.top_pop .pop::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #E93817 transparent transparent transparent;
}
.block_price_box .label.top_pop .label_inner {
  padding: 14px 12px 8px;
  background-color: #333;
  font-weight: bold;
  border-radius: 0 0 5px 5px;
}
.block_price_box .price {
  font-size: 26px;
  font-size: 16px;
  font-weight: bold;
}
.block_price_box .price .price_en {
  font-size: 46px;
  font-size: 30px;
  padding-left: 10px;
  padding-right: 3px;
  font-weight: 600 !important;
}
.block_price_box .price .tax {
  font-weight: normal;
  font-size: 18px;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .block_price_box .block_price {
    margin-top: -3vw;
    padding: 8vw 5vw;
  }
  .block_price_box .block_box + .block_box {
    margin-top: 8vw;
  }
  .block_price_box .block_box + .block_box.new {
    margin-top: 20vw;
  }
  .block_price_box .label {
    min-width: 100%;
    font-size: 4.5vw;
    line-height: 1.2;
  }
  .block_price_box .label .label_inner {
    padding: 3vw 5vw;
  }
  .block_price_box .label.top_pop .pop {
    font-size: 3.5vw;
    padding: 3vw 5vw;
  }
  .block_price_box .label.top_pop .label_inner {
    padding: 4vw 5vw 3vw;
    background-color: #333;
  }
  .block_price_box .block_box .label_icon {
    width: 100%;
    position: relative;
  }
  .block_price_box .block_box .icon {
    z-index: 5;
    top: -6vw;
    left: -8vw;
    position: absolute;
    width: 16vw;
    margin-right: 0;
  }
  .block_price_box .block_box .label .bar_pop_block {
    top: -12vw;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5vw;
  }
  .block_price_box .block_box .label .bar_pop_block .bar_pop {
    padding-bottom: 2vw;
    font-size: 4vw;
  }
  .block_price_box .block_box .label .bar_pop_block .bar_pop .new_label {
    margin-right: 0;
    padding: 0 1vw 0.5vw;
    font-size: 3.5vw;
  }
  .block_price_box .price {
    width: 100%;
    margin-top: 3vw;
    font-size: 3.5vw;
    line-height: 1.2;
  }
  .block_price_box .price .price_en {
    font-size: 8vw;
    padding: 0 1vw 0 1vw;
    font-weight: 600 !important;
  }
  .block_price_box .price .tax {
    font-size: 3vw;
  }
}

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

	block_itemlist_sp_slider

===============================================================*/
.block_itemlist_sp_slider {
  /*-------------------------------------------------------------
      slider_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      dots	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      // block_itemlist_sp_slider	
  -------------------------------------------------------------*/
}
.block_itemlist_sp_slider .slider_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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.945%;
}
.block_itemlist_sp_slider .slider_wrp .item {
  width: 31.37%;
  height: min(400px, 38vw);
  color: #fff;
  text-align: center;
  background: #000;
  padding: min(40px, 4vw) 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block_itemlist_sp_slider .slider_wrp .item .head {
  font-size: min(30px, 3vw);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.block_itemlist_sp_slider .slider_wrp .item p {
  font-size: min(16px, 1.6vw);
  line-height: 1.7;
  margin-top: 0.6em;
  text-shadow: 0 0 6px rgb(0, 0, 0);
}
.block_itemlist_sp_slider .slider_wrp .item_01 {
  background: #000 url("../images/block_itemlist_sp_slider/enjoy_ph01.jpg") no-repeat bottom center/contain;
}
.block_itemlist_sp_slider .slider_wrp .item_02 {
  background: #000 url("../images/block_itemlist_sp_slider/enjoy_ph02.jpg") no-repeat bottom center/contain;
}
.block_itemlist_sp_slider .slider_wrp .item_03 {
  background: #000 url("../images/block_itemlist_sp_slider/enjoy_ph03.jpg") no-repeat bottom center/contain;
}
@media screen and (max-width: 800px) {
  .block_itemlist_sp_slider .slider_wrp {
    display: block;
    opacity: 0;
    height: 0;
    /* ガター */
  }
  .block_itemlist_sp_slider .slider_wrp.slick-initialized {
    opacity: 1;
    height: auto;
  }
  .block_itemlist_sp_slider .slider_wrp .item {
    width: 80vw;
    height: 100vw;
    padding: 10vw 0;
    margin: 0 2vw;
  }
  .block_itemlist_sp_slider .slider_wrp .item .head {
    font-size: 6vw;
  }
  .block_itemlist_sp_slider .slider_wrp .item p {
    font-size: 4vw;
    text-shadow: 0 0 2vw rgb(0, 0, 0);
  }
}
.block_itemlist_sp_slider .dots li button {
  display: none;
}
@media screen and (max-width: 800px) {
  .block_itemlist_sp_slider .dots {
    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;
    gap: 4vw;
    margin-top: 6vw;
  }
  .block_itemlist_sp_slider .dots li {
    width: 3vw;
    height: 3vw;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: background 0.1s;
    transition: background 0.1s;
  }
  .block_itemlist_sp_slider .dots li.slick-active {
    background: #F83A23;
  }
  .block_itemlist_sp_slider .dots li button {
    display: none;
  }
}

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

    content_shinsta_service_info

===============================================================*/
.content_shinsta_service_info {
  padding: 60px 0 100px;
  text-align: center;
  /*-------------------------------------------------------------
          txt_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
          service_block
      -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  price_txt_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      more_block
  -------------------------------------------------------------*/
  /*===============================================================
  c_lineframe_accordion
  ===============================================================*/
  /*===============================================================
  block_price_box
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info {
    padding: 10vw 5vw;
    padding-bottom: 15vw;
  }
}
.content_shinsta_service_info .txt_block .title {
  font-size: 20px;
  font-weight: bold;
}
.content_shinsta_service_info .txt_block .lead {
  font-size: 16px;
  font-weight: bold;
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info .txt_block .title {
    font-size: 5vw;
  }
  .content_shinsta_service_info .txt_block .lead {
    font-size: 4vw;
  }
}
.content_shinsta_service_info .service_block {
  max-width: 680px;
  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: 0 auto;
  margin-top: 30px;
}
.content_shinsta_service_info .service_block .service {
  padding: 16px;
  border-radius: 12px;
  border: 2px solid #d9161B;
  background: #ffffff;
  color: #333333;
  width: calc((100% - 40px) / 2);
}
.content_shinsta_service_info .service_block .plus {
  width: 40px;
  padding: 8px;
  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;
}
.content_shinsta_service_info .service_block .title {
  font-size: 20px;
  line-height: 2;
  font-weight: bold;
}
.content_shinsta_service_info .service_block .title svg {
  vertical-align: middle;
}
.content_shinsta_service_info .service_block .fig {
  min-height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content_shinsta_service_info .service_block .link {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info .service_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8vw;
  }
  .content_shinsta_service_info .service_block .service {
    width: 100%;
  }
  .content_shinsta_service_info .service_block .plus {
    width: 100%;
    padding: 15px;
  }
  .content_shinsta_service_info .service_block .plus img {
    width: 20px;
  }
  .content_shinsta_service_info .service_block .fig {
    min-height: inherit;
    max-width: 300px;
    margin: 0 auto;
  }
  .content_shinsta_service_info .service_block .link {
    margin-top: 10px;
  }
}
.content_shinsta_service_info .price_txt_block {
  border-top: solid 1px #333;
  margin-top: 80px;
  padding-top: 60px;
}
.content_shinsta_service_info .price_txt_block .title {
  font-size: 20px;
  font-weight: bold;
  color: #E93616;
}
.content_shinsta_service_info .price_txt_block .price {
  max-width: 560px;
  margin: 0 auto;
}
.content_shinsta_service_info .price_txt_block .cashback {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 20px;
}
.content_shinsta_service_info .price_txt_block .caption {
  margin-top: 30px;
  font-size: 14px;
}
.content_shinsta_service_info .price_txt_block .caption a {
  color: #fff;
  text-decoration: underline;
}
.content_shinsta_service_info .price_txt_block .caption a:hover {
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info .price_txt_block {
    margin-top: 10vw;
    padding-top: 8vw;
  }
  .content_shinsta_service_info .price_txt_block .title {
    font-size: 5vw;
  }
  .content_shinsta_service_info .price_txt_block .cashback {
    margin-top: 3vw;
  }
  .content_shinsta_service_info .price_txt_block .caption {
    margin-top: 5vw;
    font-size: 3.5vw;
  }
}
.content_shinsta_service_info .more_block {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 30px;
}
.content_shinsta_service_info .more_block .cta_btn_width {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info .more_block {
    margin-top: 3vw;
  }
  .content_shinsta_service_info .more_block .cta_btn_width {
    margin-top: 5vw;
  }
}
.content_shinsta_service_info .c_lineframe_accordion {
  margin-top: 80px;
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info .c_lineframe_accordion {
    margin-top: 15vw;
  }
}
.content_shinsta_service_info .block_price_box {
  margin-top: 80px;
}
@media screen and (max-width: 800px) {
  .content_shinsta_service_info .block_price_box {
    margin-top: 10vw;
  }
}

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

    content_netflix_set

===============================================================*/
.content_netflix_set {
  padding: 60px 0 100px;
  /*===============================================================
  set_fig_block
  ===============================================================*/
  /*===============================================================
  more_block
  ===============================================================*/
  /*===============================================================
  otoku330_block
  ===============================================================*/
  /*===============================================================
  title_block
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .content_netflix_set {
    padding: 10vw 5vw;
    padding-bottom: 15vw;
  }
}
.content_netflix_set .set_fig_block {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 60px;
  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;
  position: relative;
}
.content_netflix_set .set_fig_block .item {
  background-color: #FDECEE;
  border-radius: 20px;
  width: calc((100% - 30px) / 2);
  padding: 30px;
  text-align: center;
  color: #333;
}
.content_netflix_set .set_fig_block .icon_plus {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.content_netflix_set .set_fig_block .logo {
  max-width: 200px;
  padding: 15px 0;
  margin: 0 auto;
}
.content_netflix_set .set_fig_block .txt {
  min-height: 3em;
  font-size: 20px;
  list-style: 1.3;
  font-weight: bold;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .content_netflix_set .set_fig_block {
    margin-top: 5vw;
  }
  .content_netflix_set .set_fig_block .item {
    border-radius: 5vw;
    width: calc((100% - 5vw) / 2);
    padding: 5vw;
    text-align: center;
    color: #333;
  }
  .content_netflix_set .set_fig_block .icon_plus {
    width: 8vw;
    height: 8vw;
  }
  .content_netflix_set .set_fig_block .logo {
    padding: 3vw 0;
    min-height: 16vw;
  }
  .content_netflix_set .set_fig_block .txt {
    min-height: 3em;
    font-size: 4vw;
    list-style: 1.3;
  }
}
.content_netflix_set .more_block {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 30px;
}
.content_netflix_set .more_block .cta_btn_arw {
  margin-top: 40px;
}
.content_netflix_set .more_block .offer {
  font-size: 16px;
  font-weight: bold;
}
.content_netflix_set .more_block .price {
  font-size: 22px;
  color: #E93616;
  font-weight: bold;
  margin-top: 15px;
}
.content_netflix_set .more_block .price span {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .content_netflix_set .more_block {
    margin-top: 8vw;
  }
  .content_netflix_set .more_block .cta_btn_arw {
    margin-top: 5vw;
  }
  .content_netflix_set .more_block .offer {
    font-size: 16px;
    font-weight: bold;
  }
  .content_netflix_set .more_block .price {
    font-size: 6vw;
    margin-top: 2vw;
  }
  .content_netflix_set .more_block .price span {
    font-size: 3.5vw;
  }
}
.content_netflix_set .otoku330_block {
  text-align: center;
}
.content_netflix_set .otoku330_block .otoku {
  max-width: 600px;
  margin: 0 auto;
}
.content_netflix_set .otoku330_block .lead {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
}
.content_netflix_set .otoku330_block .lead strong {
  display: inline-block;
  background-color: #E93616;
  line-height: 1.5;
}
.content_netflix_set .title_block {
  text-align: center;
  border-top: solid 1px #333;
  margin-top: 80px;
  padding-top: 60px;
}
.content_netflix_set .title_block .title {
  font-size: 25px;
  line-height: 1.4;
}
.content_netflix_set .title_block .title strong {
  font-size: 140%;
}
@media screen and (max-width: 800px) {
  .content_netflix_set .title_block {
    margin-top: 10vw;
    padding-top: 8vw;
  }
  .content_netflix_set .title_block .title {
    font-size: 4.5vw;
  }
  .content_netflix_set .title_block .title strong {
    font-size: 120%;
  }
}

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

    content_netflix_set_box

===============================================================*/
.content_netflix_set_box {
  max-width: 740px;
  margin: 0 auto;
  border: solid 1px #555555;
  text-align: center;
  padding: 0;
  /*===============================================================
  box_body_block
  ===============================================================*/
}
.content_netflix_set_box .box_title_block {
  padding: 20px;
  border-bottom: solid 1px #555555;
}
.content_netflix_set_box .box_title_block .title {
  font-size: 22px;
}
@media screen and (max-width: 800px) {
  .content_netflix_set_box .box_title_block {
    padding: 3vw;
    border-bottom: solid 1px #555555;
  }
  .content_netflix_set_box .box_title_block .title {
    font-size: 5vw;
  }
}
.content_netflix_set_box .box_body_block {
  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: 30px;
  /*-------------------------------------------------------------
  set_fig_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  txt_block
  -------------------------------------------------------------*/
}
.content_netflix_set_box .box_body_block .set_fig_block {
  width: 300px;
}
.content_netflix_set_box .box_body_block .txt_block {
  width: calc(100% - 330px);
}
@media screen and (max-width: 800px) {
  .content_netflix_set_box .box_body_block {
    padding: 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content_netflix_set_box .box_body_block .set_fig_block {
    width: 100%;
  }
  .content_netflix_set_box .box_body_block .txt_block {
    width: 100%;
    margin-top: 5vw;
  }
}
.content_netflix_set_box .box_body_block .set_fig_block {
  margin: 0;
}
.content_netflix_set_box .box_body_block .set_fig_block .item {
  padding: 15px;
  width: calc((100% - 10px) / 2);
  border-radius: 15px;
}
.content_netflix_set_box .box_body_block .set_fig_block .item .txt {
  font-size: 14px;
}
.content_netflix_set_box .box_body_block .set_fig_block .item .logo {
  min-height: 65px;
}
.content_netflix_set_box .box_body_block .set_fig_block .icon_plus {
  width: 30px;
  height: 30px;
}
.content_netflix_set_box .box_body_block .txt_block .lead {
  font-size: 16px;
  font-weight: bold;
}
.content_netflix_set_box .box_body_block .txt_block .price {
  font-size: 20px;
  color: #E93616;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
  border-bottom: solid 1px #E93616;
}
.content_netflix_set_box .box_body_block .txt_block .price span {
  font-size: 14px;
  font-weight: bold;
}
.content_netflix_set_box .box_body_block .txt_block .cta_btn_width {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .content_netflix_set_box .box_body_block .txt_block .price {
    font-size: 5vw;
    margin-top: 3vw;
  }
  .content_netflix_set_box .box_body_block .txt_block .price span {
    font-size: 3.5vw;
  }
  .content_netflix_set_box .box_body_block .txt_block .cta_btn_width {
    margin-top: 5vw;
  }
}

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

    section_tilte

===============================================================*/
.section_tilte {
  text-align: center;
  padding-bottom: 80px;
}
.section_tilte .title {
  font-size: 40px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5), 0 0 50px rgba(0, 255, 255, 0.2);
}
.section_tilte .lead {
  font-size: 25px;
}
@media screen and (max-width: 800px) {
  .section_tilte {
    padding-bottom: 10vw;
  }
  .section_tilte .title {
    font-size: 7vw;
  }
  .section_tilte .lead {
    font-size: 4vw;
  }
}

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

    section_kv

===============================================================*/
.section_kv {
  border-top: solid 8px #E93616;
  color: #fff;
  background-color: #250159;
  background-image: url(/special/tv/seasonal_feature/common/images/kv_bg_img.jpg);
  background-repeat: none;
  background-position: center center;
  background-size: cover;
  height: 350px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_kv .kv_width {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.section_kv .sub_title {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  border: solid 1px #FFF;
  padding: 3px 1em;
  border-radius: 5px;
}
.section_kv .hashtags {
  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;
  gap: 20px;
}
.section_kv .hashtags li {
  background-color: #410A91;
  text-align: center;
  padding: 8px 1em;
  font-size: 17px;
  line-height: 1;
  border-radius: 5px;
}
@media screen and (max-width: 1030px) {
  .section_kv .sub_title {
    font-size: 2.34vw;
    padding: 0.28vw 1em;
  }
  .section_kv .hashtags {
    gap: 1.87vw;
  }
  .section_kv .hashtags li {
    padding: 0.75vw 1em;
    font-size: 1.59vw;
  }
}
@media screen and (max-width: 800px) {
  .section_kv {
    border-top: solid 5px #E93616;
    height: auto;
  }
  .section_kv .sub_title {
    font-size: 4vw;
    padding: 1vw 0.5em;
  }
  .section_kv .title {
    padding: 2vw 0;
  }
  .section_kv .hashtags {
    gap: 1vw;
  }
  .section_kv .hashtags li {
    padding: 2vw 1em;
    font-size: 3.5vw;
  }
}

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

    section_fv_cta

===============================================================*/
.section_fv_cta {
  padding: 40px 30px;
}
.section_fv_cta .cta_btns {
  max-width: 720px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_fv_cta .cta_btn_width {
  width: calc((100% - 30px) / 2) !important;
  margin: 0;
}
@media screen and (max-width: 1030px) {
  .section_fv_cta .cta_btn_width {
    width: calc((100% - 10px) / 2) !important;
    margin: 0;
  }
}
@media screen and (max-width: 800px) {
  .section_fv_cta {
    padding: 3vw;
  }
  .section_fv_cta .cta_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section_fv_cta .cta_btn_width {
    width: calc((100% - 3vw) / 2) !important;
    margin: 0;
  }
  .section_fv_cta .cta_btn_width [class*=cta_btn] {
    border-radius: 3vw;
    padding: 10vw 3vw 8vw;
    width: 100%;
    margin: 0;
    background-position: center top 1vw;
  }
  .section_fv_cta .cta_btn_width .btn_label {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 3em;
  }
  .section_fv_cta .cta_btn_width .btn_label .sub {
    padding-bottom: 3px;
  }
  .section_fv_cta .cta_btn_width [class*=icon_] {
    top: auto;
    bottom: 2vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}

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

    section_cta

===============================================================*/
.section_cta {
  background-color: #000;
  /*===============================================================
  cta_wrp_block
  ===============================================================*/
}
.section_cta .cta_wrp_block {
  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;
  /*-------------------------------------------------------------
  title_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  for_member
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  btn_block
  -------------------------------------------------------------*/
}
.section_cta .cta_wrp_block .cta_block {
  width: calc((100% - 40px) / 2);
  text-align: center;
}
@media screen and (max-width: 800px) {
  .section_cta .cta_wrp_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_cta .cta_wrp_block .cta_block {
    width: 100%;
  }
}
.section_cta .cta_wrp_block .title_block {
  border-top: solid 1px #E93616;
  padding-top: 30px;
  position: relative;
}
.section_cta .cta_wrp_block .title_block .title {
  font-size: 22px;
  font-weight: bold;
  color: #E93616;
}
.section_cta .cta_wrp_block .title_block .icon {
  background-color: #E93616;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  padding: 7px;
  border-radius: 40px;
}
.section_cta .cta_wrp_block .for_member .title_block {
  border-top: solid 1px #FFCE00;
}
.section_cta .cta_wrp_block .for_member .title_block .title {
  color: #FFCE00;
}
.section_cta .cta_wrp_block .for_member .title_block .icon {
  background-color: #FFCE00;
}
@media screen and (max-width: 800px) {
  .section_cta .cta_wrp_block .for_member {
    margin-top: 10vw;
  }
}
.section_cta .cta_wrp_block .btn_block .bnr,
.section_cta .cta_wrp_block .btn_block .cta_btn_width {
  margin-top: 30px;
}
.section_cta .cta_wrp_block .btn_block .bnr a {
  display: block;
}
.section_cta .cta_wrp_block .btn_block .bnr a:hover {
  opacity: 0.7;
}
.section_cta .cta_wrp_block .btn_block .cta_btn_caption {
  margin-top: 0.5em;
}
/*===============================================================

    section_recommend_cp

===============================================================*/
.section_recommend_cp {
  text-align: center;
  background-color: #000;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 50px 0;
  padding-bottom: 80px;
  /*-------------------------------------------------------------
      dots	
  -------------------------------------------------------------*/
}
.section_recommend_cp .title_block .title {
  font-size: 25px;
  font-weight: bold;
}
.section_recommend_cp .bnr_block {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  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;
}
.section_recommend_cp .bnr_block .bnr img {
  height: 180px;
  width: auto;
}
.section_recommend_cp .bnr_block .bnr + .bnr {
  margin-left: 10px;
}
.section_recommend_cp a {
  display: block;
  cursor: pointer;
}
.section_recommend_cp a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1400px) {
  .section_recommend_cp .bnr_block .bnr img {
    height: 12.5vw;
  }
  .section_recommend_cp .bnr_block .bnr + .bnr {
    margin-left: 1vw;
  }
}
@media screen and (max-width: 1030px) {
  .section_recommend_cp {
    padding: 30px;
    padding-bottom: 60px;
  }
  .section_recommend_cp .bnr_block .bnr img {
    height: 12vw;
  }
}
@media screen and (max-width: 800px) {
  .section_recommend_cp {
    padding: 5vw;
    padding-bottom: 10vw;
    /* ガター */
  }
  .section_recommend_cp .slick-track {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section_recommend_cp .slick-list {
    margin-right: -2vw;
  }
  .section_recommend_cp .slick-slide {
    margin-right: 2vw;
  }
  .section_recommend_cp .title_block .title {
    font-size: 5vw;
  }
  .section_recommend_cp .bnr_block {
    margin-top: 0;
    display: block;
  }
  .section_recommend_cp .bnr_block .bnr {
    width: 100%;
    width: 90vw;
    margin-top: 3vw;
  }
  .section_recommend_cp .bnr_block .bnr img {
    width: 100%;
    height: auto;
  }
}
.section_recommend_cp .dots li button {
  display: none;
}
@media screen and (max-width: 800px) {
  .section_recommend_cp .dots {
    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;
    gap: 4vw;
    margin-top: 4vw;
  }
  .section_recommend_cp .dots li {
    width: 3vw;
    height: 3vw;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: background 0.1s;
    transition: background 0.1s;
  }
  .section_recommend_cp .dots li.slick-active {
    background: #F83A23;
  }
  .section_recommend_cp .dots li button {
    display: none;
  }
}

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

    section_service_price

===============================================================*/
.section_service_price .section_inner {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
/*===============================================================

    section_genre

===============================================================*/
.section_genre {
  /*===============================================================
  jcom_merit_block
  ===============================================================*/
  /*===============================================================
  genre_menu
  ===============================================================*/
  /*===============================================================

      genre_block

  ===============================================================*/
}
.section_genre .jcom_merit_block {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 40px;
}
.section_genre .jcom_merit_block a {
  display: block;
  border-radius: 10px;
  border: solid 1px rgba(233, 54, 22, 0.5);
  overflow: hidden;
}
.section_genre .jcom_merit_block a:hover {
  border: solid 1px #e93616;
}
.section_genre .jcom_merit_block img,
.section_genre .jcom_merit_block .picture {
  display: block;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .section_genre .jcom_merit_block {
    padding: 5vw;
  }
  .section_genre .jcom_merit_block a {
    border-radius: 2vw;
  }
}
.section_genre .genre_menu {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.section_genre .genre_menu ul {
  border: solid 1px #2F489A;
  border-radius: 10px;
  padding: 0 20px;
  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;
}
.section_genre .genre_menu a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  list-style: 1.2;
  padding: 15px 10px;
  padding-right: 13px;
  position: relative;
}
.section_genre .genre_menu a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid 2px #fff;
  width: 4px;
  height: 4px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_genre .genre_menu a:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .section_genre .genre_menu {
    margin-top: 5vw;
    overflow-y: scroll;
  }
  .section_genre .genre_menu ul {
    width: 220vw;
    padding: 0;
  }
  .section_genre .genre_menu a {
    font-size: 4vw;
    padding: 3vw 5vw;
  }
  .section_genre .genre_menu a::after {
    right: 2vw;
  }
}
.section_genre .genre_block {
  /*===============================================================
  lane_category
  ===============================================================*/
}
.section_genre .genre_block + .genre_block {
  margin-top: 100px;
}
.section_genre .genre_block .genre_title {
  text-align: center;
  padding: 4px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 16, 79)), to(rgb(18, 113, 248)));
  background: linear-gradient(to right, rgb(248, 16, 79) 0%, rgb(18, 113, 248) 100%);
  border-radius: 5px;
}
.section_genre .genre_block .genre_title .title {
  background-color: #252525;
  font-size: 40px;
  border-radius: 3px;
  padding: 7px 0 12px;
}
@media screen and (max-width: 800px) {
  .section_genre .genre_block + .genre_block {
    margin-top: 10vw;
  }
  .section_genre .genre_block .genre_title {
    padding: 2px;
  }
  .section_genre .genre_block .genre_title .title {
    font-size: 6vw;
    padding: 2vw;
  }
}
.section_genre .genre_block .lane_category {
  text-align: center;
  margin-top: 30px;
  /*-------------------------------------------------------------
  lane_category_subtitle
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  lane_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  lane_title
  -------------------------------------------------------------*/
}
.section_genre .genre_block .lane_category .content_telasa {
  display: none;
}
.section_genre .genre_block .lane_category .lane_category_title .title {
  font-size: 32px;
  position: relative;
}
.section_genre .genre_block .lane_category .lane_category_title .title::before, .section_genre .genre_block .lane_category .lane_category_title .title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc((100% - 10em) / 2);
  height: 2px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(248, 16, 79)), to(rgb(18, 113, 248)));
  background: linear-gradient(to right, rgb(248, 16, 79) 0%, rgb(18, 113, 248) 100%);
}
.section_genre .genre_block .lane_category .lane_category_title .title::before {
  left: 0;
}
.section_genre .genre_block .lane_category .lane_category_title .title::after {
  right: 0;
}
.section_genre .genre_block .lane_category .lane_category_title .lead {
  font-size: 20px;
  margin-top: 10px;
}
.section_genre .genre_block .lane_category .lane_block + .caption {
  margin-top: 20px;
  font-size: 12px;
}
@media screen and (max-width: 800px) {
  .section_genre .genre_block .lane_category {
    margin-top: 5vw;
  }
  .section_genre .genre_block .lane_category .lane_category_title .title {
    font-size: 5vw;
  }
  .section_genre .genre_block .lane_category .lane_category_title .lead {
    font-size: 4vw;
    margin-top: 3vw;
  }
}
.section_genre .genre_block .lane_category .lane_category_subtitle {
  margin-top: 50px;
}
.section_genre .genre_block .lane_category .lane_category_subtitle .title {
  font-size: 25px;
}
.section_genre .genre_block .lane_category .lane_category_subtitle .caption {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .section_genre .genre_block .lane_category .lane_category_subtitle {
    margin-top: 5vw;
  }
  .section_genre .genre_block .lane_category .lane_category_subtitle .title {
    font-size: 5vw;
  }
  .section_genre .genre_block .lane_category .lane_category_subtitle .caption {
    font-size: 3.5vw;
  }
}
.section_genre .genre_block .lane_category .lane_block {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .section_genre .genre_block .lane_category .lane_block {
    margin-top: 5vw;
  }
}
.section_genre .genre_block .lane_category .lane_title {
  font-size: 22px;
  padding-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .section_genre .genre_block .lane_category .lane_title {
    font-size: 4vw;
    padding-bottom: 3vw;
  }
}

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

    section_pickup

===============================================================*/
.section_pickup .section_inner {
  padding-top: 40px;
  padding-bottom: 0;
}
.section_pickup .section_tilte {
  padding-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .section_pickup .section_inner {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .section_pickup .section_tilte {
    padding-bottom: 3vw;
  }
}

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

    section_present_cp

===============================================================*/
.section_present_cp {
  background-color: #111;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  /*===============================================================
    bottom_pickup
    ===============================================================*/
  /*===============================================================
    jcom_present_cp_block
    ===============================================================*/
}
.section_present_cp .section_inner {
  padding-bottom: 30px;
}
.section_present_cp .bottom_pickup {
  margin-top: 50px;
  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;
  gap: 20px;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.section_present_cp .bottom_pickup:before {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.section_present_cp .bottom_pickup:after {
  content: "";
  width: 2px;
  height: 30px;
  background: #fff;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 800px) {
  .section_present_cp .bottom_pickup {
    margin-top: 5vw;
    font-size: 4vw;
  }
}
.section_present_cp .jcom_present_cp_block {
  max-width: 450px;
  margin: 0 auto;
  margin-top: 30px;
}
.section_present_cp .jcom_present_cp_block img,
.section_present_cp .jcom_present_cp_block picture,
.section_present_cp .jcom_present_cp_block a {
  display: block;
}
.section_present_cp .jcom_present_cp_block a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .section_present_cp .jcom_present_cp_block {
    margin-top: 5vw;
  }
}

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

    section_netflix

===============================================================*/
.section_netflix {
  background-color: #000;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
}
/*===============================================================

    dialog_jcom_merit

===============================================================*/
.dialog_jcom_merit {
  /*===============================================================
  modal_header
  ===============================================================*/
  /*===============================================================
  modal_body
  ===============================================================*/
  /*===============================================================
  modal_footer
  ===============================================================*/
}
.dialog_jcom_merit * {
  outline: none;
}
.dialog_jcom_merit dialog {
  border: none;
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 1200px;
  padding: 0;
  background-color: #000;
  border: solid 1px #333;
  padding: 60px;
  position: relative;
}
.dialog_jcom_merit dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.dialog_jcom_merit dialog::backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.dialog_jcom_merit .js_close_modal {
  display: inline-block;
  min-width: 180px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #eee;
  color: #000;
  font-size: 16px;
  padding: 10px 20px;
  border: solid 1px #eee;
  border-radius: 5px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.dialog_jcom_merit .js_close_modal:hover {
  border: solid 1px #666;
}
.dialog_jcom_merit .modal-dialog {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.dialog_jcom_merit .modal-dialog.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  pointer-events: auto;
}
.dialog_jcom_merit .modal-dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.8);
}
.dialog_jcom_merit .modal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 800px) {
  .dialog_jcom_merit dialog {
    padding: 10vw 5vw;
    margin: auto 3vw;
    width: 94vw;
  }
}
.dialog_jcom_merit .modal_header {
  text-align: center;
}
.dialog_jcom_merit .modal_header .title {
  color: #fff;
  font-size: 30px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.5), 0 0 50px rgba(0, 255, 255, 0.2);
}
.dialog_jcom_merit .modal_header .modal_close {
  z-index: 2;
  background-image: none;
  overflow: hidden;
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  width: 32px;
  height: 32px;
  margin: auto;
  outline: none;
}
.dialog_jcom_merit .modal_header .modal_close::before, .dialog_jcom_merit .modal_header .modal_close::after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 19px;
  height: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.dialog_jcom_merit .modal_header .modal_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .dialog_jcom_merit .modal_header .title {
    font-size: 5vw;
  }
}
.dialog_jcom_merit .modal_body {
  overflow-y: auto;
}
.dialog_jcom_merit .modal_footer {
  text-align: center;
}
.dialog_jcom_merit .modal_footer .cta_btn_close {
  margin: 0 auto;
}
#page {
  overflow: visible;
}

/*===============================================================
frame_header 上書き
===============================================================*/
.frame_header .header_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
}
.frame_header .header_bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #E93616;
  height: 50px;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.frame_header .header_bnr a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  border: solid 2px #fff;
  width: 8px;
  height: 8px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg) translate(-3px, -2px);
          transform: rotate(45deg) translate(-3px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.frame_header .header_bnr a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 1030px) {
  .frame_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .frame_header .header_bnr a {
    height: 30px;
    line-height: 1;
    padding: 5px 20px;
  }
}
@media screen and (max-width: 800px) {
  .frame_header .header_bnr {
    width: 140px;
  }
  .frame_header .header_bnr a {
    height: 26px;
    font-size: 14px;
    padding: 5px 10px;
  }
  .frame_header .header_bnr a::after {
    right: 15px;
    width: 6px;
    height: 6px;
    -webkit-transform: rotate(45deg) translate(-1px, -1px);
            transform: rotate(45deg) translate(-1px, -1px);
  }
}
/*# sourceMappingURL=style.css.map */