@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");
body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
/*===============================================================
	角丸
===============================================================*/
.radius_10 {
  border-radius: 10px;
}

.radius_20 {
  border-radius: 20px;
}

/*===============================================================
	_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: 280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

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

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

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

.section_inner {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 5vw;
    padding-bottom: 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.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%;
}
.thiscontents_nav .navigation_wrp {
  width: 100%;
  text-align: left;
  top: 0;
  left: 0;
  height: 60px;
  background: #fff;
  z-index: 999;
  padding: 0 10px;
}
.thiscontents_nav {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav {
    display: none;
  }
}
.thiscontents_nav {
  /* for TABLET */
  /* SP */
}
.thiscontents_nav {
  /* for SP */
  /*-------------------------------------------------------------
  	navigation	
  -------------------------------------------------------------*/
}
.thiscontents_nav .navigation {
  max-width: 1030px;
  position: relative;
  margin: 0 auto;
}
.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: 18px;
}
.thiscontents_nav .navigation li a {
  color: #333;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #666;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 20px;
  margin-right: 20px;
  border-left: solid 1px rgba(0, 0, 0, 0.2);
}
.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;
}
.thiscontents_nav .navigation {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav .navigation .navigation_wrp {
    display: none;
  }
}
.thiscontents_nav .navigation {
  /* for TABLET */
  /* SP */
}
.thiscontents_nav .navigation {
  /* for SP */
}
.thiscontents_nav {
  /*-------------------------------------------------------------
  	// thiscontents_nav	ここまで
  -------------------------------------------------------------*/
}

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

	linebtn

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

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

	sp_menu

===============================================================*/
.sp_menu {
  display: none;
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .sp_menu {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50px;
    left: 0;
    z-index: 200;
    background: #000;
  }
  .sp_menu .inner {
    position: relative;
    width: 100%;
  }
  .sp_menu .menu {
    width: 100px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1200;
    background: none;
    color: #fff;
    text-align: center;
    border-top: solid 0 #000;
  }
  .sp_menu .menu a {
    display: block;
    position: relative;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    text-align: right;
    padding-right: 40px;
  }
  .sp_menu .active .menu {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .sp_menu .nav {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
  .sp_menu .nav .nav_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 140px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_menu .nav .nav_container::-webkit-scrollbar {
    display: none;
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .sp_menu .menu {
    width: 80px;
    height: 40px;
  }
}
.sp_menu {
  /* for SP */
  /* SP */
}
@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;
  }
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	menu-trigger
  -------------------------------------------------------------*/
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .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 {
    /* animation */
  }
  .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);
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu	 sp_sns
  -------------------------------------------------------------*/
  /* タブレット */
}
@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;
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu navigation
  -------------------------------------------------------------*/
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .sp_menu .navigation {
    background-color: #000;
  }
  .sp_menu .navigation .localnav li {
    width: 100%;
    text-align: left;
    background: #fff;
  }
  .sp_menu .navigation .localnav li a {
    position: relative;
    display: block;
    color: #333;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    padding: 3vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 4vw;
    line-height: 1.5;
  }
  .sp_menu .navigation .localnav li a:hover {
    text-decoration: none;
  }
  .sp_menu .navigation .localnav li a::after {
    position: absolute;
    content: " ";
    width: 12px;
    height: 12px;
    top: 0;
    bottom: 0;
    left: auto;
    right: 18px;
    margin: auto;
    border-top: solid 1px #999;
    border-left: solid 1px #999;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu body	
  -------------------------------------------------------------*/
  /* タブレット */
}
@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;
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .sp_menu .body .bnr {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	// sp_menu	ここまで
  -------------------------------------------------------------*/
}

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

	_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: 40px;
  text-align: center;
}
.headline .title {
  font-size: 34px;
  font-style: italic;
}
.headline .title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(90%, rgba(254, 235, 31, 0.6)));
  background: linear-gradient(transparent 50%, rgba(254, 235, 31, 0.6) 90%);
}
.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;
  }
  .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: 28px;
}
.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;
  }
}

.thiscontents {
  /*===============================================================

  	btn_detail

  ===============================================================*/
}
.thiscontents .btn_detail {
  width: 280px;
  margin: 0 auto;
  margin-top: 40px;
}
.thiscontents .btn_detail a {
  position: relative;
  display: block;
  background-color: #feeb1f;
  text-align: center;
  color: #333;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  padding: 15px 0;
  border-radius: 50px;
}
.thiscontents .btn_detail a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.thiscontents .btn_detail a:hover {
  text-decoration: none;
  background-color: #f3e986;
  color: #666;
}
.thiscontents .btn_detail_red a {
  background-color: #c91b36;
}
.thiscontents .btn_detail_red a:hover {
  background-color: #e31838;
}
.thiscontents .btn_detail_black a {
  background-color: #000;
}
.thiscontents .btn_detail_black a:hover {
  background-color: #222;
}
.thiscontents {
  /* タブレット以下 */
}
.thiscontents {
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
}
@media only screen and (max-width: 736px) {
  .thiscontents .btn_detail {
    width: 100%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .thiscontents .btn_detail a {
    font-size: 4.5vw;
    padding: 4vw 0;
  }
}
.thiscontents {
  /* for SP max-width: 736px */
  /*-------------------------------------------------------------
  	flexbtn	
  -------------------------------------------------------------*/
}
.thiscontents .flexbtn {
  width: auto;
  text-align: center;
}
.thiscontents .flexbtn a {
  display: inline-block;
  padding: 15px 40px;
}
.thiscontents {
  /* タブレット以下 */
}
.thiscontents {
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
}
.thiscontents {
  /* for SP max-width: 736px */
}

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

	PAGETOP

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

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

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

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

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

	_utils.scss 2021/9/24

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

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

	フロート関係

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

.clearboth {
  clear: both;
}

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

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

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

	fixed

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

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

	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 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);
}
.txtlink {
  /* タブレット */
}
.txtlink {
  /* for TABLET */
  /* SP */
}
@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;
  }
}
.txtlink {
  /* for SP */
  /*===============================================================
      //	txtlink
  ===============================================================*/
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
}
.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;
}
.thiscontents {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
}
.thiscontents {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents {
    padding-top: 0;
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
}
.thiscontents {
  /* for SP */
  /*===============================================================

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

  ===============================================================*/
}
.thiscontents .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 20px;
}
.thiscontents .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

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

	thema_header.scss 2022/9/22

===============================================================*/
/*frame調整--------------------------*/
.frame_width {
  width: min(100%, 1120px);
}

.frame_width {
  padding: 0 16px;
}

.frame_footer {
  display: none;
}

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

	thema_header

===============================================================*/
.thema_header {
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 102;
}
.thema_header a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.thema_header a:hover {
  opacity: 0.8;
  color: #333;
}
.thema_header .thema_header_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 30px;
  width: min(100%, 1180px);
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thema_header .title {
  line-height: 1;
  padding: 1rem 0;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1.5px;
  -webkit-perspective: 1000;
          perspective: 1000;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.thema_header {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thema_header .thema_header_inner {
    padding: 0 20px;
  }
}
.thema_header {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thema_header .thema_header_inner {
    display: block;
    text-align: center;
  }
  .thema_header .title {
    padding: 1.1rem 0 0.6rem 0;
    font-size: 5.5vw;
    width: 100%;
  }
}
.thema_header {
  /* for SP */
}

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

	thema_header 

===============================================================*/
.thema_header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2rem;
}
.thema_header .nav li {
  position: relative;
}
.thema_header .nav li.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: inline-block;
  width: 2rem;
  height: 3px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #e93817;
}
.thema_header .nav li a {
  display: block;
  padding: 2.4rem 0;
  font-size: 16px;
}
.thema_header .nav li.remo a {
  font-weight: normal !important;
}
.thema_header .nav li.deactive a {
  color: #ddd;
  pointer-events: none;
  cursor: default;
}
.thema_header {
  /* タブレット */
}
.thema_header {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thema_header .nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
  .thema_header .nav li {
    height: 100%;
    width: 33.3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    display: block;
  }
  .thema_header .nav li.active::before {
    bottom: 0;
    height: 4px;
  }
  .thema_header .nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.6rem 0;
    line-height: 1.2;
    tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 4vw;
  }
  .thema_header .nav li.remo a {
    font-size: 3.8vw;
  }
  .thema_header .nav li.deactive a {
    color: #ddd;
    pointer-events: none;
    cursor: default;
  }
}
.thema_header {
  /* for SP */
}

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

	メインビジュアル（動画背景）
	_mainvisual_bg_youtube.scss

===============================================================*/
.mainvisual_bg_youtube {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 150px 0;
}
.mainvisual_bg_youtube:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/mainvisual/bg_thum.jpg) no-repeat center/cover;
}
.mainvisual_bg_youtube:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  background: rgba(255, 255, 255, 0);
}
.mainvisual_bg_youtube .backmovie {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 16/9;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: calc(100% + 100px);
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.mainvisual_bg_youtube .backmovie.show {
  opacity: 1;
}
@media (min-width: 1328px) {
  .mainvisual_bg_youtube {
    /* firefox対応 */
  }
  @-moz-document url-prefix() {
    .mainvisual_bg_youtube .backmovie {
      width: 100%;
    }
  }
}
@media screen and (max-width: 800px) {
  .mainvisual_bg_youtube {
    padding: 26vw 5vw 22vw;
  }
}
.mainvisual_bg_youtube {
  /*-------------------------------------------------------------
  	txt
  -------------------------------------------------------------*/
}
.mainvisual_bg_youtube .txt {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
}
.mainvisual_bg_youtube .txt .title {
  width: 690px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
.mainvisual_bg_youtube .txt .title img {
  aspect-ratio: 253/72;
}
.mainvisual_bg_youtube .txt .lead {
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-top: 40px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.mainvisual_bg_youtube .txt .lead .s {
  font-size: 30px;
}
.mainvisual_bg_youtube .txt .lead_vertical {
  position: absolute;
  bottom: -80px;
  right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.mainvisual_bg_youtube .txt .lead_vertical .box {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  word-break: keep-all;
  padding: 10px;
  background: #ddd;
}
.mainvisual_bg_youtube .txt .lead_vertical .box:nth-child(1) {
  -webkit-transform: translateY(-1em);
          transform: translateY(-1em);
}
.mainvisual_bg_youtube .txt .lead_vertical .red {
  color: #E60013;
}
@media screen and (max-width: 800px) {
  .mainvisual_bg_youtube .txt .title {
    width: 100%;
    -webkit-filter: drop-shadow(0 0 1.5vw rgba(0, 0, 0, 0.5));
            filter: drop-shadow(0 0 1.5vw rgba(0, 0, 0, 0.5));
  }
  .mainvisual_bg_youtube .txt .lead {
    font-size: 7vw;
    line-height: 1.3;
    margin-top: 4vw;
    text-shadow: 0 0 1.5vw rgba(0, 0, 0, 0.5);
  }
  .mainvisual_bg_youtube .txt .lead .s {
    font-size: 6vw;
  }
}

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

	番組詳細コンテンツ
	_section_detail_content.scss

===============================================================*/
.section_detail_content .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .section_detail_content .content {
    gap: 8vw;
  }
}

/*-------------------------------------------------------------
	detail_content
-------------------------------------------------------------*/
.detail_content:has(.info) {
  margin-top: 40px;
}
.detail_content:has(.info) + .detail_content {
  margin-top: 40px;
}
.detail_content .head {
  color: #FA0F0C;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
}
.detail_content .head + * {
  margin-top: 40px;
}
.detail_content .head_line {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.detail_content .head_line:before {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #ddd;
}
.detail_content .head_line:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #ddd;
}
.detail_content .top_txt {
  text-align: center;
}
.detail_content .top_txt + * {
  margin-top: 30px;
}
.detail_content .box {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
.detail_content .box + .box {
  margin-top: 40px;
}
.detail_content .box.box_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.detail_content .box .img {
  width: 420px;
}
.detail_content .box .img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 8/5;
}
.detail_content .box .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.detail_content .box .txt .lead {
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
.detail_content .box .txt * + .lead {
  margin-top: 30px;
}
.detail_content .box .txt * + p {
  margin-top: 10px;
}
.detail_content .js_target {
  display: none;
}
@media screen and (max-width: 1030px) {
  .detail_content .box .img {
    width: 46%;
  }
}
@media screen and (max-width: 800px) {
  .detail_content:has(.info) {
    margin-top: 0;
  }
  .detail_content:has(.info) + .detail_content {
    margin-top: 0;
  }
  .detail_content .head {
    font-size: 5.5vw;
  }
  .detail_content .head + * {
    margin-top: 4vw;
  }
  .detail_content .head_line {
    gap: 2vw;
  }
  .detail_content .top_txt {
    text-align: left;
  }
  .detail_content .top_txt + * {
    margin-top: 4vw;
  }
  .detail_content .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
  .detail_content .box + .box {
    margin-top: 5vw;
  }
  .detail_content .box.box_r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail_content .box .img {
    width: 100%;
  }
  .detail_content .box .txt {
    width: 100%;
  }
  .detail_content .box .txt .lead {
    font-size: 4vw;
  }
  .detail_content .box .txt * + .lead {
    margin-top: 2vw;
  }
  .detail_content .box .txt * + p {
    margin-top: 1vw;
  }
  .detail_content .btn_s {
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    max-width: 100%;
  }
  .detail_content .btn_s a {
    font-size: 3.8vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

/*-------------------------------------------------------------
  detail_content info	
-------------------------------------------------------------*/
.detail_content .info {
  padding: 60px 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.detail_content .info .narrow_width {
  max-width: 800px;
  padding-left: 0;
  padding-right: 0;
}
.detail_content .info .head {
  color: #0ca8b0;
  font-size: 28px;
}
.detail_content .info .txt_end {
  color: #fff;
  font-size: 18px;
  text-align: center;
  opacity: 0.8;
  margin-top: 30px;
}
.detail_content .info {
  /* Rectangle 2 */
}
@media screen and (max-width: 800px) {
  .detail_content .info {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 5vw 5vw 7vw;
    border-radius: 0;
  }
  .detail_content .info .head {
    font-size: 5.5vw;
    letter-spacing: 2px;
  }
  .detail_content .info .txt_end {
    font-size: 3.5vw;
    margin-top: 4vw;
  }
}

/*-------------------------------------------------------------
  detail_content info	group
-------------------------------------------------------------*/
.detail_content .info .group {
  color: #333;
}
.detail_content .info .group + .group {
  margin-top: 60px;
}
.detail_content .info .group .group_head {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #0ca8b0;
  font-size: 26px;
  line-height: 1;
}
.detail_content .info .group .group_head:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #aee0e3;
}
.detail_content .info .group .group_head + * {
  margin-top: 30px;
}
.detail_content .info .group .group_head_lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
.detail_content .info .group .txt_end {
  opacity: 0.8;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .detail_content .info .group + .group {
    margin-top: 10vw;
  }
  .detail_content .info .group .group_head {
    gap: 2vw;
    font-size: 5vw;
  }
  .detail_content .info .group .group_head + * {
    margin-top: 4vw;
  }
  .detail_content .info .group .group_head_lead {
    font-size: 3.8vw;
  }
  .detail_content .info .group .txt_end {
    margin-top: 3vw;
  }
}

/*-------------------------------------------------------------
  detail_content info group_tv
-------------------------------------------------------------*/
/*-------------------------------------------------------------
  detail_content info	group dl
-------------------------------------------------------------*/
.detail_content .info .group dl {
  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;
}
.detail_content .info .group dl dt {
  width: 160px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}
.detail_content .info .group dl dd {
  width: calc(100% - 160px);
  font-size: 18px;
  line-height: 1.8;
}
.detail_content .info .group dl dd.l {
  font-size: 24px;
  font-weight: 700;
}
.detail_content .info .group dl dd.s {
  font-size: 16px;
}
.detail_content .info .group dl dd .caption {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  opacity: 0.8;
}
.detail_content .info .group dl dd:first-of-type {
  margin-top: -5px;
}
.detail_content .info .group dl dd + dt, .detail_content .info .group dl dd + dt + dd {
  margin-top: 25px;
}
.detail_content .info .group dl .ch_wrp {
  /*display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;*/
  /*.ch {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    padding-left: 115px;
    background: url(../images/info/logo_jch.jpg) no-repeat center left / 100px auto;*/
}
.detail_content .info .group dl .ch_wrp .ch {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  padding-left: 115px;
}
.detail_content .info .group dl .ch_wrp .ch .ch_name {
  width: 180px;
  font-size: 20px;
}
.detail_content .info .group dl .ch_wrp .ch .ch_oa {
  font-size: 20px;
  line-height: 1.2;
}
.detail_content .info .group dl .ch_wrp .ch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 60px; /* 任意調整 */
  background: url(../images/info/logo_jch.jpg) no-repeat center/contain;
  border: 1px solid #00a5c7;
}
.detail_content .info .group dl .ch_wrp .ch_jtele::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 60px; /* 任意調整 */
  background: url(../images/info/logo_jtele.jpg) no-repeat center/contain;
  border: none;
}
.detail_content .info .group dl .ch_wrp {
  /*.ch_jch {
    background: url(../images/info/logo_jch.jpg) no-repeat center left / 100px auto;
  }
  .ch_jtele {
    background: url(../images/info/logo_jtele.jpg) no-repeat center left / 100px auto;
    margin-top: 10px;
  }*/
}
.detail_content .info .group dl .ch_wrp .link {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 10px;
}
.detail_content .info .group dl .ch_wrp .link a {
  position: relative;
  display: block;
  color: #0ca8b0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding: 9px 15px;
  padding-right: 25px;
  border: 1px solid #0ca8b0;
  border-radius: 20px;
}
@media (hover: hover) {
  .detail_content .info .group dl .ch_wrp .link a:hover {
    color: #ffffff;
    background: #0ca8b0;
  }
  .detail_content .info .group dl .ch_wrp .link a:hover:after {
    border-bottom: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
  }
}
.detail_content .info .group dl .ch_wrp .link a:after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 15px;
  right: 10px;
  margin: auto;
  border-bottom: solid 2px #0ca8b0;
  border-right: solid 2px #0ca8b0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 1030px) {
  .detail_content .info .group dl .ch_wrp .link {
    margin-top: 10px;
  }
}
@media screen and (max-width: 800px) {
  .detail_content .info .group dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail_content .info .group dl dt {
    width: 100%;
    font-size: 4.5vw;
  }
  .detail_content .info .group dl dd {
    width: 100%;
    font-size: 3.8vw;
  }
  .detail_content .info .group dl dd.l {
    font-size: 3.8vw;
  }
  .detail_content .info .group dl dd.s {
    font-size: 3.5vw;
  }
  .detail_content .info .group dl dd .caption {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .detail_content .info .group dl dd + dt {
    margin-top: 8vw;
  }
  .detail_content .info .group dl dd:first-of-type {
    margin-top: 1vw;
  }
  .detail_content .info .group dl dd, .detail_content .info .group dl dd + dt + dd {
    margin-top: 1vw;
  }
  .detail_content .info .group dl .ch_wrp {
    display: block;
    margin-top: 1vw;
    /*.ch {
      height: 12vw;
      font-size: 3.8vw;
      padding-left: 18vw;
      background: url(../images/info/logo_jch.jpg) no-repeat center left / 15vw auto;
      .ch_name {
        width: 50%;
        font-size: 4vw;
      }
      .ch_oa {
        font-size: 4.5vw;
      }
    }
    .ch + .ch {
      margin-top: 2vw;
    }
    .ch_jch {
      background: url(../images/info/logo_jch.jpg) no-repeat center left / 15vw auto;
    }
    .ch_jtele {
      background: url(../images/info/logo_jtele.jpg) no-repeat center left / 15vw auto;
    }*/
  }
  .detail_content .info .group dl .ch_wrp .ch {
    height: 12vw;
    font-size: 3.8vw;
    line-height: 1.6;
    padding-left: 18vw;
  }
  .detail_content .info .group dl .ch_wrp .ch .ch_name {
    width: 50%;
    font-size: 3.5vw;
    line-height: 1.2;
  }
  .detail_content .info .group dl .ch_wrp .ch .ch_oa {
    font-size: 4vw;
  }
  .detail_content .info .group dl .ch_wrp .ch::before {
    width: 15vw;
    height: 11vw; /* 任意調整 */
  }
  .detail_content .info .group dl .ch_wrp .ch_jtele::before {
    width: 15vw;
    height: 11vw; /* 任意調整 */
  }
  .detail_content .info .group dl .ch_wrp .link {
    width: 80%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .detail_content .info .group dl .ch_wrp .link a {
    font-size: 4vw;
    line-height: 1;
    text-align: center;
    padding: 4vw;
    border-radius: 6vw;
  }
  .detail_content .info .group dl .ch_wrp .link a:after {
    width: 1.4vw;
    height: 1.4vw;
    top: 4.5vw;
    right: 4vw;
  }
}

/*-------------------------------------------------------------
  detail_content info group_app
-------------------------------------------------------------*/
.detail_content .info .group_app .txt {
  font-size: 14px;
  margin-top: 30px;
  opacity: 0.8;
}
@media screen and (max-width: 800px) {
  .detail_content .info .group_app .txt {
    font-size: 3.5vw;
    margin-top: 4vw;
  }
}

/*-------------------------------------------------------------
  detail_content info	group app_detail
-------------------------------------------------------------*/
.detail_content .info .group .app_detail {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
}
.detail_content .info .group .app_detail .left {
  width: 46%;
}
.detail_content .info .group .app_detail .right {
  width: 50%;
}
.detail_content .info .group .app_detail .head_app {
  height: min(70px, 7vw);
  font-size: min(23px, 2.3vw);
  line-height: 1.5;
  font-weight: 700;
  background: url(../images/info/logo_dolocal.png) no-repeat left center/min(70px, 7vw) auto;
  padding-left: min(85px, 8.5vw);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: min(2px, 0.2vw);
}
.detail_content .info .group .app_detail .qr {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.detail_content .info .group .app_detail .qr .sub {
  position: relative;
  color: #E83817;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: right;
  padding-right: 20px;
}
.detail_content .info .group .app_detail .qr .sub:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #E83817;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.detail_content .info .group .app_detail .qr .img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 1030px) {
  .detail_content .info .group .app_detail {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 800px) {
  .detail_content .info .group .app_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    padding: 5vw;
  }
  .detail_content .info .group .app_detail .left {
    width: 100%;
  }
  .detail_content .info .group .app_detail .right {
    width: 100%;
  }
  .detail_content .info .group .app_detail .head_app {
    height: 16vw;
    font-size: 5vw;
    background: url(../images/info/logo_dolocal.png) no-repeat left center/16vw auto;
    padding-left: 20vw;
    letter-spacing: min(2px, 0.2vw);
  }
  .detail_content .info .group .app_detail .qr {
    display: none;
  }
}

/*-------------------------------------------------------------
  detail_content info group_youtube
-------------------------------------------------------------*/
/*-------------------------------------------------------------
  detail_content info group_multiangle
-------------------------------------------------------------*/
.detail_content .info .group_multiangle .multiangle .item + .item {
  margin-top: 40px;
}
.detail_content .info .group_multiangle .multiangle .item .lead {
  color: #ddd;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 10px;
}
.detail_content .info .group_multiangle .multiangle .item iframe {
  border: none;
}
.detail_content .info .group_multiangle .txtlink a {
  color: #fff;
}
@media (hover: hover) {
  .detail_content .info .group_multiangle .txtlink a:hover {
    color: #666;
  }
}
.detail_content .info .group_multiangle .txtlink a:after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.detail_content .info .group_multiangle .bnr {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 50px;
}
.detail_content .info .group_multiangle .bnr a {
  display: block;
}
@media (hover: hover) {
  .detail_content .info .group_multiangle .bnr a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 800px) {
  .detail_content .info .group_multiangle .multiangle .item + .item {
    margin-top: 6vw;
  }
  .detail_content .info .group_multiangle .multiangle .item .lead {
    font-size: 3.5vw;
    padding: 1.5vw;
  }
  .detail_content .info .group_multiangle .bnr {
    margin-top: 6vw;
  }
}

/*-------------------------------------------------------------
  detail_content info group_bnr
-------------------------------------------------------------*/
.detail_content .info .group_bnr .bnr {
  border-radius: 5px;
  overflow: hidden;
}
.detail_content .info .group_bnr .bnr + .bnr {
  margin-top: 20px;
}
.detail_content .info .group_bnr .bnr a {
  display: block;
}
@media (hover: hover) {
  .detail_content .info .group_bnr .bnr a:hover {
    opacity: 0.7;
  }
}
.detail_content .info .group_bnr .bnr img {
  aspect-ratio: 20/3;
}
@media screen and (max-width: 800px) {
  .detail_content .info .group_bnr .bnr + .bnr {
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
  detail_content sponcer_bnrlist	
-------------------------------------------------------------*/
.detail_content .sponcer_bnrlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.detail_content .sponcer_bnrlist .items {
  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: 20px;
}
.detail_content .sponcer_bnrlist .item {
  border-radius: 5px;
  overflow: hidden;
}
.detail_content .sponcer_bnrlist .item a {
  display: block;
}
@media (hover: hover) {
  .detail_content .sponcer_bnrlist .item a:hover {
    opacity: 0.7;
  }
}
.detail_content .sponcer_bnrlist .item_nolink a {
  pointer-events: none;
}
.detail_content .sponcer_bnrlist .items_1 .item {
  width: 100%;
}
.detail_content .sponcer_bnrlist .items_1 .item img {
  aspect-ratio: 20/3;
}
.detail_content .sponcer_bnrlist .items_2 .item {
  width: calc((100% - 20px) / 2);
}
.detail_content .sponcer_bnrlist .items_2 .item img {
  aspect-ratio: 10/3;
}
.detail_content .sponcer_bnrlist .items_3 .item {
  width: calc((100% - 40px) / 3);
}
.detail_content .sponcer_bnrlist .items_3 .item img {
  aspect-ratio: 5/2;
}
@media screen and (max-width: 800px) {
  .detail_content .sponcer_bnrlist {
    gap: 2vw;
  }
  .detail_content .sponcer_bnrlist .items {
    gap: 2vw;
  }
  .detail_content .sponcer_bnrlist .item {
    border-radius: 1vw;
  }
  .detail_content .sponcer_bnrlist .items_1 .item {
    width: 100%;
  }
  .detail_content .sponcer_bnrlist .items_2 .item {
    width: calc((100% - 2vw) / 2);
  }
  .detail_content .sponcer_bnrlist .items_3 .item {
    width: calc((100% - 4vw) / 3);
  }
}

/*-------------------------------------------------------------
  detail_content_missed	
-------------------------------------------------------------*/
.detail_content_missed .wrp + .wrp {
  margin-top: 50px;
}
.detail_content_missed .wrp_head {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  padding: 10px;
  background: #FA0F0C;
  border-radius: 4px;
}
.detail_content_missed .wrp_head + * {
  margin-top: 30px;
}
.detail_content_missed .multiangle_missed .item + .item {
  margin-top: 40px;
}
.detail_content_missed .multiangle_missed .item iframe {
  border: none;
}
@media screen and (max-width: 800px) {
  .detail_content_missed .wrp + .wrp {
    margin-top: 6vw;
  }
  .detail_content_missed .wrp_head {
    font-size: 4vw;
    padding: 2vw;
    border-radius: 1vw;
  }
  .detail_content_missed .wrp_head + * {
    margin-top: 4vw;
  }
  .detail_content_missed .multiangle_missed .item + .item {
    margin-top: 6vw;
  }
}

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

	modal_link_wrp

===============================================================*/
.modal_link_wrp .modal_link {
  cursor: pointer;
  position: relative;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.modal_link_wrp .modal_link:after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .modal_link_wrp .modal_link:hover {
    opacity: 0.7;
  }
}
/*===============================================================

	modal_content_wrp

===============================================================*/
.modal_content_wrp {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal_content_wrp .bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}
.modal_content_wrp .modal_content {
  width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1200px) {
  .modal_content_wrp .modal_content {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .modal_content_wrp .modal_content {
    width: 100%;
  }
}
.modal_content_wrp {
  /*-------------------------------------------------------------
  	content_inner	
  -------------------------------------------------------------*/
}
.modal_content_wrp .modal_content .content_inner {
  position: relative;
  padding: 50px 0;
}
.modal_content_wrp .modal_content .content_inner .arw_prev,
.modal_content_wrp .modal_content .content_inner .arw_next {
  content: "";
  position: absolute;
  z-index: 1001;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .modal_content_wrp .modal_content .content_inner .arw_prev:hover,
  .modal_content_wrp .modal_content .content_inner .arw_next:hover {
    opacity: 0.7;
  }
}
.modal_content_wrp .modal_content .content_inner .arw_prev {
  left: 15px;
  -webkit-transform: rotate(-45deg) translate(2px, 2px);
          transform: rotate(-45deg) translate(2px, 2px);
}
.modal_content_wrp .modal_content .content_inner .arw_next {
  right: 15px;
  -webkit-transform: rotate(135deg) translate(2px, 2px);
          transform: rotate(135deg) translate(2px, 2px);
}
.modal_content_wrp .modal_content .content_inner .slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.modal_content_wrp .modal_content .content_inner .close {
  position: absolute;
  z-index: 1000;
  width: 50px;
  height: 50px;
  top: 0px;
  right: 0px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .modal_content_wrp .modal_content .content_inner .close:hover {
    opacity: 0.7;
  }
}
.modal_content_wrp .modal_content .content_inner .close:before, .modal_content_wrp .modal_content .content_inner .close:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #fff;
  top: 24px;
  right: 5px;
}
.modal_content_wrp .modal_content .content_inner .close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal_content_wrp .modal_content .content_inner .close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .modal_content_wrp .modal_content .content_inner {
    padding: 0;
  }
  .modal_content_wrp .modal_content .content_inner .arw_prev,
  .modal_content_wrp .modal_content .content_inner .arw_next {
    display: none;
    width: 4vw;
    height: 4vw;
  }
  .modal_content_wrp .modal_content .content_inner .arw_prev {
    left: 2vw;
  }
  .modal_content_wrp .modal_content .content_inner .arw_next {
    right: 2vw;
  }
  .modal_content_wrp .modal_content .content_inner .close {
    top: -8vw;
    right: 0;
    width: 8vw;
    height: 8vw;
  }
  .modal_content_wrp .modal_content .content_inner .close:before, .modal_content_wrp .modal_content .content_inner .close:after {
    width: 7vw;
    top: 4vw;
    right: 0.5vw;
  }
}
.modal_content_wrp {
  /*-------------------------------------------------------------
  	modal
  -------------------------------------------------------------*/
}
.modal_content_wrp .modal {
  height: auto;
  position: relative;
  z-index: 1000;
}
.modal_content_wrp .modal .slick-list {
  margin: 0 50px;
}
.modal_content_wrp .modal .lead {
  display: none;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  background: #ddd;
  padding: 10px;
}
.modal_content_wrp .modal .img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 8/5;
}
@media screen and (max-width: 800px) {
  .modal_content_wrp .modal {
    height: auto;
  }
  .modal_content_wrp .modal .slick-list {
    margin: 0;
  }
  .modal_content_wrp .modal .radius_10 {
    border-radius: 0 !important;
  }
  .modal_content_wrp .modal .lead {
    font-size: 3.5vw;
    padding: 1.5vw;
  }
}

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

	視聴方法
	_section_howto.scss

===============================================================*/
.section_howto {
  text-align: center;
}
.section_howto .headline .title {
  font-size: 36px;
}
@media screen and (max-width: 800px) {
  .section_howto .headline .title {
    font-size: 6vw;
  }
}

/*-------------------------------------------------------------
	howto	
-------------------------------------------------------------*/
.howto {
  position: relative;
  margin-top: 50px !important;
  padding: 50px !important;
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.howto .name {
  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;
}
.howto .name .logo {
  width: 80px;
  margin-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #333;
}
.howto .name .logo img {
  aspect-ratio: 3/2;
}
.howto.howto_jch .name .logo {
  border: 1px solid #00a5c7;
}
.howto.howto_jtele .name .logo {
  border: 1px solid #ef4029;
}
.howto.howto_dolocal .name .logo {
  border: none;
  width: 60px;
}
.howto.howto_dolocal .name .logo img {
  aspect-ratio: 1/1;
}
.howto .name .head {
  font-size: 34px;
  line-height: 1.6;
  font-weight: 700;
}
.howto.howto_jch .name .logo {
  border: 1px solid #00a5c7;
}
.howto.howto_jch .name .head {
  color: #00a5c7;
}
.howto.howto_jtele .name .head {
  color: #ef4029;
}
.howto.howto_dolocal .name .head {
  color: #333;
  font-size: 30px;
}
.howto.howto_dolocal .name + .name {
  margin-top: 10px;
}
.howto.howto_dolocal .oa_date {
  margin-top: 20px;
}
.howto.howto_dolocal .txt_box {
  margin-top: 10px;
  text-align: center;
}
.howto.howto_dolocal .txt_box .title {
  font-size: 24px;
  font-weight: 800;
}
.howto.howto_dolocal .txt_box .cap {
  font-size: 15px;
}
.howto.howto_dolocal .area .txt_box + .txtlink {
  margin-top: 60px;
}
.howto .oa_date_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.howto .oa_date {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.howto .oa_date span {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1030px) {
  .howto {
    margin-top: 40px !important;
    padding: 40px !important;
  }
  .howto .name .head {
    font-size: 30px;
    line-height: 1.6;
    font-weight: 700;
  }
  .howto .box .logo {
    width: 100px;
    margin-right: 10px;
  }
  .howto .box .head {
    font-size: 26px;
  }
  .howto.howto_dolocal .name .logo {
    width: 50px;
    margin-right: 10px;
  }
  .howto.howto_dolocal .name .head {
    font-size: 22px;
  }
}
@media screen and (max-width: 800px) {
  .howto {
    margin-top: 5vw !important;
    padding: 5vw !important;
  }
  .howto .name {
    display: block;
  }
  .howto .name .logo {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto;
  }
  .howto .name .head {
    font-size: 5vw;
    line-height: 1.4;
    margin-top: 2vw;
  }
  .howto .oa_date {
    font-size: 3.5vw;
    margin-top: 5vw;
  }
  .howto.howto_dolocal .name .logo {
    display: block;
    width: 80px;
    margin: 0 auto;
  }
  .howto.howto_dolocal .name .head {
    font-size: 5vw;
    line-height: 1.4;
    margin-top: 1vw;
  }
  .howto.howto_dolocal .name + .name {
    margin-top: 5vw;
  }
  .howto.howto_dolocal .oa_date {
    margin-top: 3vw;
  }
  .howto.howto_dolocal .txt_box {
    margin-top: 2vw;
  }
  .howto.howto_dolocal .txt_box .title {
    font-size: 6vw;
    line-height: 1.4;
  }
  .howto.howto_dolocal .txt_box .cap {
    font-size: 3.2vw;
  }
  .howto.howto_dolocal .area .txt_box + .txtlink {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	howto area	
-------------------------------------------------------------*/
.howto .area {
  width: 100%;
  margin-top: 40px;
}
.howto .area .head {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.howto .area .box {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.howto .area .box_2 th {
  width: 50%;
}
.howto .area .box_3 th {
  width: 33.3333%;
}
.howto .area .box_4 th {
  width: 25%;
}
.howto .area .box th {
  font-size: 13px;
  line-height: 1.4;
  font-weight: normal;
  text-align: center;
  padding: 15px 0;
  background: #f2f2f4;
  border: 2px solid #fff;
}
.howto .area .box th .enc {
  display: block;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 5px;
}
.howto .area .box td {
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 20px 0;
  background: #f2f2f4;
  border: 2px solid #fff;
}
.howto .area .box td .l {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.howto .area .caution {
  margin-top: 20px;
}
.howto .area .txtlink {
  margin-top: 10px;
}
.howto .area .btn_s {
  margin-top: 30px;
}
.howto {
  /* &.howto_jch .area .head {
    color: $c_jch;
  }
  &.howto_jtele .area .head {
    color: $c_jtele;
  }
  &.howto_dolocal .area .head {
    color: $c_dolocal;
  } */
}
@media screen and (max-width: 1030px) {
  .howto .area .box td .l {
    display: block;
    margin-top: 5px;
  }
}
@media screen and (max-width: 800px) {
  .howto .area {
    margin-top: 5vw;
  }
  .howto .area .head {
    font-size: 4vw;
  }
  .howto .area .box {
    margin-top: 4vw;
  }
  .howto .area .box th {
    display: none;
  }
  .howto .area .box th .enc {
    font-size: 3.5vw;
  }
  .howto .area .box td {
    display: block;
    font-size: 4vw;
    padding: 1vw 0 3vw;
    border: none;
  }
  .howto .area .box td + td {
    margin-top: 5px;
  }
  .howto .area .box td .sub {
    display: block;
    font-size: 3vw;
    padding: 2vw 0;
  }
  .howto .area .box td .sub + .sub {
    padding-top: 1vw;
  }
  .howto .area .box td .sub .enc {
    display: block;
    font-size: 3.5vw;
    font-weight: 700;
    padding-bottom: 2vw;
  }
  .howto .area .box td .l {
    display: inline;
    font-size: 6vw;
    margin-top: 0;
  }
  .howto .area .caution {
    font-size: 3.5vw;
    line-height: 1.6;
    text-align: left;
    margin-top: 4vw;
  }
  .howto .area .txtlink {
    text-align: center;
    margin-top: 4vw;
  }
  .howto .area .btn_s {
    margin-top: 4vw;
  }
  .howto .area .btn_s a {
    font-size: 3.5vw;
    border-radius: 5.75vw;
  }
}
/*# sourceMappingURL=style.css.map */