@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);
===============================================================*/
/*===============================================================

	レイアウト
	_rayout.scss

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

.max_width {
  max-width: 1500px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 736px) {
  .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: 736px) {
  .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: 736px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

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

.narrow_width {
  max-width: 900px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 736px) {
  .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: 736px) {
  .btn_width {
    max-width: inherit;
  }
}

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

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

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

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

.section_pb0 .section_inner {
  padding-bottom: 0;
}

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

	content 
	個別のコンテンツ

===============================================================*/
.content {
  position: relative;
  z-index: 10;
}

.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;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 736px) {
  .content + .content {
    margin-top: 10vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 6vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
}
/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -40px;
  box-sizing: border-box;
}
.grid_wrp .grid {
  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;
  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: 736px) {
  .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;
  }
}

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

	_headline.scss 2021/9/24

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

/*-------------------------------------------------------------
	block2	
-------------------------------------------------------------*/
.block2 + .block2 {
  margin-top: 100px;
}
.block2 p + p {
  margin-top: 1em;
}
@media screen and (max-width: 736px) {
  .block2 + .block2 {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline {
  position: relative;
  z-index: 10;
}
.headline .en {
  width: 200vw;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2);
  font-size: 140px;
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.05em;
  mix-blend-mode: hard-light;
  transform: skew(-20deg);
  margin-left: -0.5em;
}
.headline .title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  margin-top: -0.5em;
  letter-spacing: 0.1em;
}
.headline .lead {
  color: #fff;
  font-size: 26px;
  line-height: 1.5;
  margin-top: 30px;
}
@media screen and (max-width: 1030px) {
  .headline .en {
    font-size: 14vw;
  }
  .headline .title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 736px) {
  .headline .en {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    font-size: 14vw;
    letter-spacing: -0.05em;
  }
  .headline .title {
    font-size: 6vw;
  }
  .headline .lead {
    font-size: 4vw;
    margin-top: 4vw;
  }
}

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

	btn_detail

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

.btn_detail a {
  position: relative;
  display: block;
  background-color: #222;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  padding: 20px 0;
  border-radius: 32px;
}

.btn_detail a:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  border-radius: 32px;
  transition: 0.3s;
}

.btn_detail a:hover:before {
  background: rgba(255, 255, 255, 0.3);
}

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

.btn_detail a:hover {
  color: #fff !important;
}

@media screen and (max-width: 736px) {
  .btn_detail {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .btn_detail a {
    font-size: 4.5vw;
    padding: 4vw 0;
    border-radius: 6.25vw;
  }
}
/*-------------------------------------------------------------
	flexbtn	
-------------------------------------------------------------*/
.flexbtn {
  width: auto;
  text-align: center;
}

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

/*-------------------------------------------------------------
	チェックボックス
-------------------------------------------------------------*/
.checkbox li {
  padding: 0;
}
.checkbox li:nth-child(4), .checkbox li:nth-child(5), .checkbox li:nth-child(6) {
  margin-top: 10px;
}

.agreebox {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  padding-top: 20px;
}

.checkbox li input, .agreebox input {
  width: auto;
  display: none;
  border: 0;
  margin: 0;
}

/*　チェックボックスの装飾　*/
.checkbox li label, .agreebox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  font-size: 14px;
  line-height: 20px;
  padding-left: 24px;
  cursor: pointer;
}

.checkbox li label:before, .agreebox label:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 10%;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.checkbox li label:after, .agreebox label:after {
  content: "";
  position: absolute;
  top: -4px;
  left: 7px;
  margin: auto;
  width: 6px;
  height: 16px;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(40deg);
  transition: border-bottom-color, border-right-color 0.2s linear;
}

.checkbox li input:checked + label:after, .agreebox input:checked + label:after {
  border-color: #222;
}

@media screen and (max-width: 736px) {
  .checkbox li {
    width: 100%;
  }
  .checkbox li + li {
    margin-top: 3vw;
  }
  .checkbox li label {
    font-size: 4vw;
  }
  .agreebox {
    font-size: 4vw;
    text-align: left;
    padding-top: 3vw;
  }
  .agreebox label {
    font-size: 4vw;
  }
  .checkbox li label, .agreebox label {
    font-size: 4vw;
    line-height: 5vw;
    padding-left: 7vw;
    cursor: pointer;
  }
  .checkbox li label:before, .agreebox label:before {
    width: 5vw;
    height: 5vw;
  }
  .checkbox li label:after, .agreebox label:after {
    top: -1.5vw;
    left: 2vw;
    width: 2vw;
    height: 4vw;
  }
}
/*-------------------------------------------------------------
	.セレクト 
-------------------------------------------------------------*/
.select {
  background: #fff;
}
.select option {
  color: #222;
  background: #fff;
}
.select optgroup.area {
  color: #222;
  background: #eee;
}

/*	 セレクタの装飾 */
.select_wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #222;
  background-color: #fff;
  /*background-image: -webkit-linear-gradient(top, #fff 0%, #fafafa 100%);
  background-image: linear-gradient(top, #fff 0%, #fafafa 100%);*/
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  transition: all 0.1s linear;
}
.select_wrap:hover {
  border: 1px solid #999;
}

.select_wrap2 {
  min-width: 20em;
}

.select_wrap3 {
  min-width: 10em;
  margin-right: 5px;
}

.select_wrap:after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 4px solid rgba(0, 0, 0, 0.5);
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
}
.select_wrap:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.5);
  border-left: 4px solid transparent;
  box-sizing: border-box;
}

.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  /* fallback non calc support */
  width: calc(100% + 5em);
  width: 100%;
  margin: 0;
  padding: 10px;
  color: #222;
  font-size: 16px;
  line-height: 22px;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

.select_wrap.active {
  color: #fff;
  background-color: #222;
}
.select_wrap.active:after {
  border-top-color: rgba(255, 255, 255, 0.5);
}
.select_wrap.active:before {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.select_wrap.active .select {
  color: #fff;
}

@media screen and (max-width: 736px) {
  /*	 セレクタの装飾 */
  .select_wrap {
    min-width: auto;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .select_wrap + .select_wrap {
    margin-top: 10px;
  }
  .select {
    font-size: 3.5vw;
    line-height: 1.5;
    /*	font-size: 4.5vw;*/
    padding: 10px;
  }
  .select_wrap:after {
    content: "";
    position: absolute;
    bottom: 2.5vw;
    right: 10px;
    width: 5px;
    height: 5px;
    border-top: 4px solid rgba(0, 0, 0, 0.5);
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
  }
  .select_wrap:before {
    content: "";
    position: absolute;
    top: 2.5vw;
    right: 10px;
    width: 5px;
    height: 5px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0, 0, 0, 0.5);
    border-left: 4px solid transparent;
    box-sizing: border-box;
  }
}
/*===============================================================

	search_panel

===============================================================*/
.search_panel {
  background: rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  border-radius: 5px;
}
.search_panel .panels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
  width: calc(100% - 5em);
}
.search_panel .item {
  padding: 0;
  vertical-align: middle;
  max-height: 44px;
}
.search_panel .item.check_selecter:nth-child(1) {
  width: 150px;
}
.search_panel .item.check_selecter:nth-child(2) {
  width: 250px;
}
.search_panel .title {
  font-size: 14px;
}
.search_panel .select_wrap {
  width: 100%;
}
.search_panel .checkbox {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-left: auto;
}
.search_panel .icon_rec {
  margin-right: 0;
}
.search_panel .icon_live {
  margin-right: 0;
}
.search_panel .icon_japanflag img {
  height: 20px;
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}
.search_panel .medal .icon_medal img {
  height: 25px;
  width: auto;
}
.search_panel .accordion_btn {
  display: none;
}

.section_suchedule .note {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
}

@media screen and (max-width: 1030px) {
  .search_panel .panels {
    width: calc(100% - 7em);
  }
  .search_panel .item.check_selecter:nth-child(1) {
    width: calc((100% - 15px) / 2);
  }
  .search_panel .item.check_selecter:nth-child(2) {
    width: calc((100% - 15px) / 2);
  }
  .search_panel .checkbox {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 736px) {
  .search_panel {
    padding: 3vw;
    flex-direction: column;
    margin-top: 4vw;
    position: relative;
  }
  .search_panel .panels {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: solid 1px #ccc;
    margin-top: 3vw;
    padding-top: 3vw;
    gap: 2vw;
    align-items: center;
  }
  .search_panel .item {
    max-height: inherit;
  }
  .search_panel .item.check_selecter:nth-child(1) {
    width: calc(35% - 1vw);
  }
  .search_panel .item.check_selecter:nth-child(2) {
    width: calc(65% - 1vw);
  }
  .search_panel .title {
    font-size: 3.5vw;
    width: 100%;
  }
  .search_panel .select_wrap {
    width: 100%;
    display: block;
  }
  .search_panel .checkbox {
    width: 100%;
    gap: 3vw;
    margin-top: 2vw;
  }
  .search_panel .checkbox li {
    width: auto;
  }
  .search_panel .checkbox li label {
    font-size: 3vw;
  }
  .search_panel .checkbox li + li {
    margin-top: 0;
  }
  .search_panel .checkbox li.japanese {
    margin-left: auto;
  }
  .search_panel .icon img {
    height: 5vw;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
  }
  .search_panel .medal .icon img {
    height: 6vw;
    width: auto;
  }
  .search_panel .icon_japanflag img {
    height: 5.5vw;
  }
  .search_panel .accordion_btn {
    display: block;
    position: absolute;
    top: 3vw;
    right: 5vw;
  }
  .search_panel .accordion_btn a {
    display: block;
    width: 5vw;
    height: 5vw;
    position: relative;
    overflow: hidden;
    text-indent: -200%;
    white-space: normal;
  }
  .search_panel .accordion_btn a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 5vw;
    height: 1px;
    background: #777;
    transition: all 0.3s;
  }
  .search_panel .accordion_btn a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 5vw;
    height: 1px;
    background: #777;
    transition: all 0.3s;
    transform: rotate(90deg);
  }
  .search_panel.active .accordion_btn a::before {
    transform: rotate(0deg);
  }
  .section_suchedule .note {
    font-size: 3vw;
    margin-top: 3vw;
  }
  .page_sports .section_suchedule .note {
    text-align: center;
    margin-top: 1vw;
  }
}
/*===============================================================

	icon

===============================================================*/
.section_suchedule .icon, .section_schedule .icon {
  font-size: 12px;
  line-height: 1;
  padding: 3px 5px;
  color: #fff;
  margin-right: 10px;
  min-width: 4em;
  display: inline-block;
  text-align: center;
}
.section_suchedule .search_panel .icon, .section_schedule .search_panel .icon {
  margin-right: 0;
}
.section_suchedule .icon_live, .section_schedule .icon_live {
  background: #6fac41;
}
.section_suchedule .icon_rec, .section_schedule .icon_rec {
  background: #E83A18;
}
.section_suchedule .icon_onair, .section_schedule .icon_onair {
  background: #FFB100;
}
.section_suchedule .icon_japanflag img, .section_schedule .icon_japanflag img {
  height: 20px;
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}
.section_suchedule .icon_medal img, .section_schedule .icon_medal img {
  width: 20px;
  height: 25px;
  vertical-align: middle;
}
.section_suchedule .icon_none, .section_schedule .icon_none {
  width: 20px;
  height: 25px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.section_suchedule .icon_none::after, .section_schedule .icon_none::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 15px;
  height: 15px;
  background: #DFDFDF;
  border-radius: 15px;
}
@media screen and (max-width: 736px) {
  .section_suchedule .icon, .section_schedule .icon {
    font-size: 3vw;
    line-height: 1.8;
    padding: 0.2vw 2vw;
  }
}

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

	schedule_list

===============================================================*/
.schedule_list {
  margin-top: 20px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.schedule_list.scale {
  transform: scale(1.15);
}

.headline + .schedule_list {
  margin-top: 40px;
}

.schedule_list .one_day .date {
  background: #222;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  padding: 10px 30px;
  font-weight: 700;
}

@media screen and (max-width: 736px) {
  .schedule_list {
    margin-top: 8vw;
    box-shadow: 0 0 5vw rgba(0, 0, 0, 0.05);
  }
  .headline + .schedule_list {
    margin-top: 4vw;
  }
  .schedule_list .one_day .date {
    font-size: 5vw;
    padding: 3vw;
  }
}
/*===============================================================

	schedule_list program

===============================================================*/
@keyframes onair {
  0% {
    background: #ed6e2c;
  }
  50% {
    background: #f0d02c;
  }
  100% {
    background: #ed6e2c;
  }
}
@keyframes onair_arw {
  0% {
    border-top-color: #ed6e2c;
    border-right-color: #ed6e2c;
  }
  50% {
    border-top-color: #f0d02c;
    border-right-color: #f0d02c;
  }
  100% {
    border-top-color: #ed6e2c;
    border-right-color: #ed6e2c;
  }
}
.schedule_list .program {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s;
  align-items: center;
}
.schedule_list .program + .program {
  border-top: solid 1px #acacac;
}
.schedule_list .program .date_time {
  font-size: 18px;
  font-weight: 700;
}
.schedule_list .program .channel {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}
.schedule_list .program.program_link:hover {
  background: #222;
}
.schedule_list .program_status {
  width: 24%;
  padding: 30px;
  padding-right: 0;
}
.schedule_list .program_status.now_onair::after {
  content: "ONAIR";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 120px;
  height: 22px;
  background: #222;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  animation-name: onair;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
}
.schedule_list .program_status.now_onair::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 5px solid #222;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid #222;
  transform: translate(0, 0);
  box-sizing: border-box;
  z-index: 5;
  animation-name: onair_arw;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
}

@media screen and (max-width: 1030px) {
  .schedule_list .program_status {
    width: 230px;
  }
}
@media screen and (max-width: 736px) {
  .schedule_list .program {
    flex-direction: column;
  }
  .schedule_list .program + .program {
    border-top: solid 1px #222;
  }
  .schedule_list .program .date_time {
    font-size: 5vw;
  }
  .schedule_list .program .channel {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
  .schedule_list .program.program_link:hover {
    background: none;
  }
  .schedule_list .program_status {
    width: 100%;
    padding: 5vw;
    padding-top: 6vw;
  }
  .schedule_list .program_status.now_onair::after {
    content: "ONAIR";
    position: absolute;
    top: 0vw;
    margin: auto;
    width: auto;
    height: auto;
    padding: 0 3vw;
    font-size: 3.5vw;
    line-height: 6vw;
  }
  .schedule_list .program_status.now_onair::before {
    top: 5.5vw;
    left: 2vw;
    width: 2vw;
    height: 2vw;
    border-top: 1vw solid #ed6e2c;
    border-bottom: 1vw solid transparent;
    border-left: 1vw solid transparent;
    border-right: 1vw solid #ed6e2c;
  }
}
/*-------------------------------------------------------------
	competition_wrp	
-------------------------------------------------------------*/
.deactivelink .competition_wrp .competition.hover {
  background: #fff !important;
}

.schedule_list .competition_wrp {
  width: 76%;
}
.schedule_list .competition_wrp .competition {
  position: relative;
  padding: 30px;
  padding-right: 50px;
  background: #fff;
  transition: all 0.2s;
  min-height: 136px;
}
.schedule_list .competition_wrp .competition + .competition {
  padding-top: 30px;
  border-top: solid 1px #acacac;
}
.schedule_list .competition_wrp .competition::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  border: solid 1px #acacac;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  border-radius: 50%;
}
.schedule_list .competition_wrp .competition::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  border: solid 1px #acacac;
  width: 20px;
  height: 20px;
  transition: all 0.3s;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg) translate(-6px, -6px);
  border-radius: 0;
}
.schedule_list .competition_wrp .competition:hover::before {
  border: solid 1px #222;
  background: #222;
}
.schedule_list .competition_wrp .competition:hover::after {
  border-color: #fff;
}
.schedule_list .competition_wrp .competition .title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  padding-bottom: 5px;
}
.schedule_list .competition_wrp .competition .title a {
  color: #222;
  display: block;
}
.schedule_list .competition_wrp .competition .title a:hover {
  text-decoration: none;
}
.schedule_list .competition_wrp .competition .title a:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0;
  mix-blend-mode: multiply;
  transition: 0.3s;
}
.schedule_list .competition_wrp .competition .title a:hover:after {
  opacity: 1;
}
.schedule_list .competition_wrp .competition:not(:has(.title a))::before,
.schedule_list .competition_wrp .competition:not(:has(.title a))::after {
  display: none;
}

@media screen and (max-width: 1030px) {
  .schedule_list .competition_wrp {
    width: calc(100% - 230px);
  }
}
@media screen and (max-width: 736px) {
  .schedule_list .competition_wrp {
    width: 100%;
  }
  .schedule_list .competition_wrp .competition {
    padding: 5vw;
    padding-top: 4vw;
    border-top: dashed 1px #acacac;
    min-height: auto;
  }
  .schedule_list .competition_wrp .competition + .competition {
    padding-top: 5vw;
    border-top: dashed 1px #acacac;
  }
  .schedule_list .competition_wrp .competition::before {
    right: 3vw;
    width: 5vw;
    height: 5vw;
    top: 5vw;
    bottom: auto;
  }
  .schedule_list .competition_wrp .competition::after {
    right: 3vw;
    width: 5vw;
    height: 5vw;
    top: 5vw;
    bottom: auto;
    width: 2vw;
    height: 2vw;
    transform: rotate(-45deg) translate(-1.4vw, -1.4vw);
    top: 6.8vw;
  }
  .schedule_list .competition_wrp .competition .title {
    font-size: 4.5vw;
    padding-bottom: 2vw;
    padding-right: 10vw;
  }
  .schedule_list .competition_wrp .competition .title a:after {
    background: none;
  }
}
/*-------------------------------------------------------------
	competition_wrp	btns
-------------------------------------------------------------*/
.competition_wrp .btns {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.competition_wrp .js_add_app_btn {
  width: 120px;
}
.competition_wrp .js_add_app_btn a {
  display: block;
  padding: 6px 0;
  color: #fff !important;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  background: #ed6e2c;
  border: 1px solid #ed6e2c;
  border-radius: 17px;
  pointer-events: auto;
}
.competition_wrp .js_add_app_btn a:hover {
  background: #ff9158;
  border: 1px solid #ff9158;
}
@keyframes btn_bg_animation {
  0% {
    background: #ed6e2c;
    border-color: #ed6e2c;
  }
  50% {
    background: #f0d02c;
    border-color: #f0d02c;
  }
  100% {
    background: #ed6e2c;
    border-color: #ed6e2c;
  }
}
.now_onair + .competition_wrp .js_add_app_btn a {
  animation: btn_bg_animation 1.5s linear 0s infinite;
}
.competition_wrp .rec_reserve_btn {
  width: 120px;
}
.competition_wrp .rec_reserve_btn a {
  display: block;
  padding: 6px 0;
  color: #c1253b !important;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #c1253b;
  border-radius: 17px;
  pointer-events: auto;
}
.competition_wrp .rec_reserve_btn a:hover {
  background: #ffeef1;
}
.competition_wrp .js_add_calendar_btn {
  width: 160px;
}
.competition_wrp .js_add_calendar_btn a {
  display: block;
  padding: 6px 0;
  color: #222;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #acacac;
  border-radius: 17px;
  pointer-events: auto;
}
.competition_wrp .js_add_calendar_btn a .icn {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.competition_wrp .js_add_calendar_btn a .icn img {
  width: 100%;
  height: auto;
}
.competition_wrp .js_add_calendar_btn a:hover {
  color: #222;
  background: #eee;
}

@media screen and (max-width: 1030px) {
  .competition_wrp {
    /* .js_add_app_btn {
      width: 105px;
      a {
        font-size: 12px;
      }
    }
    .rec_reserve_btn {
      width: 95px;
      a {
        font-size: 12px;
      }
    }
    .js_add_calendar_btn {
      width: 130px;
      a {
        font-size: 12px;
      }
    } */
  }
  .competition_wrp .btns {
    position: static;
    justify-content: flex-end;
    gap: 10px;
    width: calc(100% + 230px);
    margin-left: -230px;
    margin-top: 20px;
  }
  .competition_wrp .js_add_app_btn {
    position: relative;
    z-index: 2;
  }
  .competition_wrp .rec_reserve_btn {
    position: relative;
    z-index: 2;
  }
  .competition_wrp .js_add_calendar_btn {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 736px) {
  .competition_wrp .btns {
    position: static;
    justify-content: center;
    gap: 3vw;
    width: 100%;
    margin-left: 0;
    margin-top: 4vw;
  }
  .competition_wrp .js_add_app_btn {
    display: block;
    position: relative;
    z-index: 2;
    width: calc((100% - 3vw) / 2);
  }
  .competition_wrp .js_add_app_btn a {
    padding: 3vw 0;
    font-size: 3.8vw;
    line-height: 1;
    border-radius: calc(2px + 4.9vw);
  }
  .competition_wrp .rec_reserve_btn {
    position: relative;
    z-index: 2;
    width: calc((100% - 3vw) / 2);
  }
  .competition_wrp .rec_reserve_btn a {
    padding: 3vw 0;
    font-size: 3.8vw;
    line-height: 1;
    border-radius: calc(2px + 4.9vw);
  }
  .competition_wrp .js_add_calendar_btn {
    position: relative;
    z-index: 2;
    width: calc((100% - 3vw) / 2);
  }
  .competition_wrp .js_add_calendar_btn a {
    padding: 3vw 0;
    font-size: 3.8vw;
    line-height: 1;
    border-radius: calc(2px + 4.9vw);
  }
  .competition_wrp .js_add_calendar_btn a .icn {
    width: 4vw;
    height: 4vw;
    margin-right: 1vw;
  }
}
/*-------------------------------------------------------------
	competition_wrp	detail
-------------------------------------------------------------*/
.competition_wrp .detail {
  /*	margin-top: 10px;*/
}
.competition_wrp .detail > li {
  padding: 10px;
  padding-left: 5px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.competition_wrp .detail > li:nth-child(odd) {
  background: rgba(0, 0, 0, 0.03);
}
.competition_wrp .detail .competition_title {
  width: 43%;
  font-size: 13px;
  padding-left: 35px;
  background: url("/special/paris-2024/paralympics/common/images/icon_no_medal.svg") no-repeat left center;
  background-size: 34px 20px;
  margin-right: 5%;
}
.competition_wrp .detail .competition_title.medal {
  background: url("/special/paris-2024/paralympics/common/images/icon_medal.svg") no-repeat left center;
  background-size: 34px 20px;
}
.competition_wrp .detail .announcer_commentary {
  width: 20%;
  margin-right: 2%;
}
.competition_wrp .detail .announcer_commentary li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 13px;
  background: none;
  padding: 0;
}
.competition_wrp .detail .announcer_commentary li .head {
  width: 3em;
  font-size: 13px;
}
.competition_wrp .detail .announcer_commentary li p {
  width: calc(100% - 3em);
  font-size: 13px;
}
.competition_wrp .detail .japanese_player {
  width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-left: 40px;
  background: url("/special/paris-2024/paralympics/common/images/icon_japanflag.svg") no-repeat left center;
  background-size: auto 18px;
  min-height: 19px;
}
.competition_wrp .detail .japanese_player li {
  font-size: 13px;
  background: none;
  padding: 0;
  margin-right: 10px;
}

@media screen and (max-width: 1030px) {
  .competition_wrp .detail {
    margin-top: 0;
    flex-direction: column;
  }
  .competition_wrp .detail > li {
    padding: 10px;
    gap: 10px;
  }
  .competition_wrp .detail .competition_title {
    width: 100%;
    padding-left: 50px;
    margin-right: 0;
  }
  .competition_wrp .detail .competition_title .icon {
    padding: 0;
    padding-right: 2vw;
  }
  .competition_wrp .detail .announcer_commentary {
    width: 100%;
    margin-right: 0;
  }
  .competition_wrp .detail .announcer_commentary li .head {
    width: 50px;
    transform: translateX(4px);
  }
  .competition_wrp .detail .announcer_commentary li p {
    width: calc(100% - 50px);
  }
  .competition_wrp .detail .japanese_player {
    width: 100%;
    padding-left: 50px;
    background-position: left 5px center;
    background-size: auto 14px;
  }
}
@media screen and (max-width: 736px) {
  .competition_wrp .detail {
    margin-top: 0;
    flex-direction: column;
  }
  .competition_wrp .detail > li {
    padding: 2.5vw 4vw;
    gap: 2vw;
  }
  .competition_wrp .detail .competition_title {
    width: 100%;
    font-size: 3.5vw;
    padding-left: 12vw;
    background-size: auto 5vw;
    background-position: left 1.6vw top 0.25vw;
    padding-top: 0vw;
    padding-bottom: 0vw;
  }
  .competition_wrp .detail .competition_title.medal {
    background-size: auto 5vw;
    background-position: left 1.6vw top 0.25vw;
  }
  .competition_wrp .detail .competition_title .icon {
    padding: 0;
    padding-right: 2vw;
    margin: 0;
  }
  .competition_wrp .detail .announcer_commentary {
    width: 100%;
    padding-left: 12vw;
    padding-left: 0;
  }
  .competition_wrp .detail .announcer_commentary li {
    font-size: 3.5vw;
    background: none;
    padding: 0;
  }
  .competition_wrp .detail .announcer_commentary li .head {
    width: 12vw;
    font-size: 3.5vw;
    transform: none;
  }
  .competition_wrp .detail .announcer_commentary li p {
    width: calc(100% - 12vw);
    font-size: 3.5vw;
  }
  .competition_wrp .detail .announcer_commentary li + li {
    margin-top: 1vw;
  }
  .competition_wrp .detail .japanese_player {
    width: 100%;
    background-position: left 0.8vw;
    background-size: auto 4vw;
    padding-left: 12vw;
    min-height: 5.25vw;
  }
  .competition_wrp .detail .japanese_player li {
    font-size: 3.5vw;
    margin-right: 2vw;
  }
}
/*-------------------------------------------------------------
	deactive	
-------------------------------------------------------------*/
.deactivelink .title a {
  pointer-events: none;
  cursor: default;
}

.schedule_list .deactivelink .linkarea {
  cursor: default;
}
.schedule_list .deactivelink .linkarea:active {
  pointer-events: none;
}
.schedule_list .deactivelink .competition::after, .schedule_list .deactivelink .competition::before {
  content: none;
}

/*-------------------------------------------------------------
	suchedule_footer	
-------------------------------------------------------------*/
.schedule_list .nodata {
  text-align: center;
  padding: 50px;
}
.schedule_list .nodata p {
  font-size: 16px;
}
.schedule_list .suchedule_footer {
  text-align: center;
  padding: 50px;
  border-top: solid 1px #acacac;
}
.schedule_list .suchedule_footer .btn_more {
  width: 250px;
  margin: 0 auto;
}
.schedule_list .suchedule_footer * + .btn_more {
  margin-top: 40px;
}
.schedule_list .suchedule_footer .btn_more a {
  text-align: center;
  padding: 10px 20px;
  border: solid 1px #acacac;
  display: block;
  color: #222;
}
.schedule_list .suchedule_footer .btn_more a:hover {
  border: solid 1px #222;
  display: block;
  color: #fff;
  background: #222;
  text-decoration: none;
}

@media screen and (max-width: 736px) {
  .schedule_list .nodata {
    padding: 5vw;
  }
  .schedule_list .nodata p {
    font-size: 4vw;
  }
  .schedule_list .suchedule_footer {
    padding: 5vw;
  }
  .schedule_list .suchedule_footer .btn_more {
    width: 80%;
    margin: 0 auto;
  }
  .schedule_list .suchedule_footer * + .btn_more {
    margin-top: 4vw;
  }
  .schedule_list .suchedule_footer .btn_more a {
    padding: 3vw 10vw;
  }
}
/*===============================================================

  js_add_app_modal

===============================================================*/
.js_add_app_modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /*-------------------------------------------------------------
  qr_code_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  close_btn
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  close
  -------------------------------------------------------------*/
}
.js_add_app_modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
  width: 100%;
  height: 100vh;
  position: fixed;
}
.js_add_app_modal .qr_code_wrp {
  position: relative;
}
.js_add_app_modal .qr_code_wrp .inner {
  width: 700px;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.js_add_app_modal .qr_code_wrp .title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}
.js_add_app_modal .qr_code_wrp .title .color {
  color: #e83817;
}
.js_add_app_modal .qr_code_wrp .caution {
  font-size: 14px;
  margin-top: 10px;
}
.js_add_app_modal .qr_code_wrp .box {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
  border: 1px solid #999;
  padding: 10px;
}
.js_add_app_modal .qr_code_wrp .box .qrcode {
  width: 120px;
  height: 120px;
}
.js_add_app_modal .qr_code_wrp .desc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  margin-top: 30px;
  background: #fff1ee;
}
.js_add_app_modal .qr_code_wrp .desc .img {
  width: 80px;
}
.js_add_app_modal .qr_code_wrp .desc .txt {
  width: calc(100% - 100px);
}
.js_add_app_modal .qr_code_wrp .desc .txt .head {
  color: #e83817;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.js_add_app_modal .qr_code_wrp .desc .txt p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 5px;
}
.js_add_app_modal .close_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 30px;
}
.js_add_app_modal .close_btn a {
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  background-color: #eee;
  color: #222;
  text-decoration: none;
}
.js_add_app_modal .close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
}
.js_add_app_modal .close a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -200%;
  white-space: normal;
}
.js_add_app_modal .close a:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 30px;
  background: #222;
  transform: rotate(45deg);
}
.js_add_app_modal .close a:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 30px;
  background: #222;
  transform: rotate(-45deg);
}
/*===============================================================

	js_add_calendar_modal

===============================================================*/
.js_add_calendar_modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /*-------------------------------------------------------------
  select_calendar
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  select_btn
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  close_btn
  -------------------------------------------------------------*/
}
.js_add_calendar_modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
  width: 100%;
  height: 100vh;
  position: fixed;
}
.js_add_calendar_modal .select_calendar .inner {
  width: 400px;
  background-color: #fff;
  padding: 8vw 5vw;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.js_add_calendar_modal .select_calendar .title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 736px) {
  .js_add_calendar_modal .select_calendar .inner {
    width: 90vw;
    background-color: #fff;
    padding: 8vw 5vw;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 4vw 0 rgba(0, 0, 0, 0.1);
  }
  .js_add_calendar_modal .select_calendar .title {
    font-size: 4vw;
  }
}
.js_add_calendar_modal .select_btn {
  margin-top: 10px;
}
.js_add_calendar_modal .select_btn a {
  display: block;
  border: solid 1px #ccc;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #222;
  position: relative;
}
.js_add_calendar_modal .select_btn a:hover {
  opacity: 0.7;
}
.js_add_calendar_modal .select_btn a::after,
.js_add_calendar_modal .select_btn a::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #222;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
}
.js_add_calendar_modal .select_btn a::before {
  transform: rotate(90deg);
}
@media screen and (max-width: 736px) {
  .js_add_calendar_modal .select_btn a {
    font-size: 3.5vw;
  }
}
.js_add_calendar_modal .close_btn a {
  display: inline-block;
  padding: 10px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #eee;
  color: #222;
  text-decoration: none;
}
@media screen and (max-width: 736px) {
  .js_add_calendar_modal .close_btn a {
    padding: 2vw;
    font-size: 3.5vw;
    margin-top: 4vw;
  }
}

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

	_utils.scss 2021/9/24

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

	noto sans

===============================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/special/common/webfont/NotoSansCJKjp-Light_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/special/common/webfont/NotoSansCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: medium;
  font-weight: 600;
  font-display: swap;
  src: url("/special/common/webfont/NotoSansCJKjp-Medium_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("/special/common/webfont/NotoSansCJKjp-Bold_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 800;
  font-display: swap;
  src: url("/special/common/webfont/NotoSansCJKjp-Black_subset.woff") format("woff");
}
.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.2px;
  font-display: swap;
}

.roboto {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

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

	align

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

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

	フロート関係

===============================================================*/
.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;
}

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

	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;
  }
}
@media screen and (max-width: 736px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
}
/*===============================================================

	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;
}

.youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

	boxshadow

===============================================================*/
.boxshadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 736px) {
  .boxshadow {
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  }
}
/*===============================================================

	img_border

===============================================================*/
.img_border {
  border: 1px solid #ddd;
}

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

	マージン

===============================================================*/
.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;
  }
}
@media screen and (max-width: 736px) {
  .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;
  }
}
/*===============================================================

	fixed

===============================================================*/
/* .fixed {
	position: fixed;
	top: 0;
}
.bg_fixed {
	background-attachment: fixed;
} */
@media screen and (max-width: 1030px) {
  /* .fixed {
  	position: fixed;
  	top: 0;
  } */
}
/*===============================================================

	frame_header

===============================================================*/
.frame_header {
  position: relative;
  z-index: 1;
}
.frame_header .frame_width {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 20px);
  height: 100%;
}
.frame_header .header_logo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  width: auto;
  height: auto;
  float: none;
  margin-top: 0;
}
.frame_header .header_logo a {
  width: 100px;
  height: auto;
}
.frame_header .header_logo a img {
  position: static;
  width: 100%;
  height: auto;
}
.frame_header .header_logo a:nth-child(1) {
  transform: translateY(5px);
}
.frame_header .header_bnr {
  width: 267px;
  float: none;
  margin-left: auto;
}
@media screen and (max-width: 1040px) {
  .frame_header .frame_width {
    width: 100%;
  }
}
@media screen and (max-width: 1030px) {
  .frame_header .header_logo {
    gap: 20px;
  }
  .frame_header .header_logo a {
    width: 80px;
  }
  .frame_header .header_logo a:nth-child(1) {
    transform: translateY(3px);
  }
}
@media only screen and (max-width: 500px) {
  .frame_header .header_logo {
    gap: 3vw;
  }
  .frame_header .header_logo a {
    width: 18vw;
  }
  .frame_header .header_logo a:nth-child(1) {
    transform: translateY(1vw);
  }
  .frame_header .header_bnr {
    width: 45%;
    height: 50px;
  }
}

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

	thiscontents

===============================================================*/
.thiscontents {
  color: #222;
  width: 100%;
}
.thiscontents * {
  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;
}
@media screen and (max-width: 736px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.8;
  }
}

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

a

===============================================================*/
a {
  transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

.hover a {
  display: block;
}
.hover a:hover {
  opacity: 0.7;
}

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

geo_wrp

===============================================================*/
.geo_wrp {
  position: relative;
  z-index: 1000;
  background: #000;
}
.geo_wrp .output {
  color: #fff;
  font-size: 30px;
}
.geo_wrp .data {
  margin-top: 30px;
}

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

nav_outer

===============================================================*/
.nav_outer {
  /* .page_title.content_width {
    padding-left: auto;
    padding-right: auto;
  } */
}
.nav_outer .content_width {
  max-width: 1200px;
}
.nav_outer .navigation_wrp .content_width {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1400px) {
  .nav_outer {
    /* .page_title.content_width {
      padding-left: 20px;
      padding-right: 20px;
    } */
  }
}
@media screen and (max-width: 736px) {
  .nav_outer {
    /* .page_title.content_width {
      padding-left: 3vw;
      padding-right: 3vw;
    } */
  }
}

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

	section_wrp

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

  mainvisual

===============================================================*/
.mainvisual {
  background: linear-gradient(to right, #E48D02 0%, #E4021D 100%);
  background: url(/special/paralympics/jtele/images/kv_bg.jpg) no-repeat center/cover;
  padding: 50px;
  padding-top: 20px;
  /*-------------------------------------------------------------
    toptitle	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    kv	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    txt	
  -------------------------------------------------------------*/
}
@media screen and (max-width: 1030px) {
  .mainvisual {
    padding: 5vw;
    padding-top: 2vw;
  }
}
@media screen and (max-width: 736px) {
  .mainvisual {
    padding-top: 3vw;
  }
}
.mainvisual .toptitle {
  margin: 0 calc(50% - 50vw) 0;
  color: #fff;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .mainvisual .toptitle {
    font-size: 4vw;
  }
}
@media screen and (max-width: 736px) {
  .mainvisual .toptitle {
    font-size: 5.5vw;
  }
}
.mainvisual .kv {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 calc(50% - 50vw) 0;
  margin-top: 20px;
}
.mainvisual .kv .left {
  width: 66.8%;
}
.mainvisual .kv .right {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 33.2%;
  background: #fff;
}
.mainvisual .kv .right .logo {
  width: 30vw;
}
@media screen and (max-width: 1030px) {
  .mainvisual .kv {
    margin-top: 2vw;
  }
  .mainvisual .kv .left {
    width: 100%;
  }
  .mainvisual .kv .right {
    width: 100%;
  }
  .mainvisual .kv .right .logo {
    width: 50vw;
    padding: 3vw;
  }
}
@media screen and (max-width: 736px) {
  .mainvisual .kv {
    margin-top: 3vw;
  }
  .mainvisual .kv .right .logo {
    width: 70vw;
  }
}
.mainvisual .txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 50px;
  padding: 30px 50px;
  background: rgba(34, 34, 34, 0.3);
  border: 1px solid #fff;
  color: #fff;
}
.mainvisual .txt .date {
  font-size: 45px;
  line-height: 1.2;
  text-align: center;
}
.mainvisual .txt .date .s {
  font-size: 30px;
}
.mainvisual .txt .lead {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 45px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}
.mainvisual .txt .lead .s {
  font-size: 19px;
  line-height: 1.3;
  text-align: right;
}
.mainvisual .txt .caption {
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 1030px) {
  .mainvisual .txt {
    width: 100%;
    margin-top: 5vw;
    padding: 3vw 0;
  }
  .mainvisual .txt .date {
    font-size: 4.5vw;
  }
  .mainvisual .txt .date .s {
    font-size: 3vw;
  }
  .mainvisual .txt .lead {
    gap: 1.5vw;
    font-size: 4.5vw;
    margin-top: 1vw;
  }
  .mainvisual .txt .lead .s {
    font-size: 1.9vw;
  }
  .mainvisual .txt .caption {
    font-size: 2vw;
    margin-top: 1vw;
  }
}
@media screen and (max-width: 736px) {
  .mainvisual .txt .date {
    font-size: 5vw;
  }
  .mainvisual .txt .date .s {
    font-size: 4vw;
  }
  .mainvisual .txt .lead {
    font-size: 4.8vw;
    margin-top: 2vw;
  }
  .mainvisual .txt .lead .s {
    font-size: 2.2vw;
  }
  .mainvisual .txt .caption {
    font-size: 3vw;
    margin-top: 1vw;
  }
}

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

  oneline_txt_wrp

===============================================================*/
.oneline_txt_wrp {
  padding: 15px 0;
  background: #fff;
  /*-------------------------------------------------------------
    hoge	
  -------------------------------------------------------------*/
}
.oneline_txt_wrp p {
  color: #3054A5;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .oneline_txt_wrp {
    padding: 3vw 0;
  }
  .oneline_txt_wrp p {
    font-size: 3.5vw;
  }
}
/*===============================================================

  section_locallink

===============================================================*/
.section_locallink {
  position: relative;
  z-index: 100;
  height: 0;
  /*-------------------------------------------------------------
    locallink_wrp	
  -------------------------------------------------------------*/
}
.section_locallink .section_inner {
  padding: 0 !important;
}
@media screen and (max-width: 736px) {
  .section_locallink {
    width: calc(100% - 10vw);
    margin: 0 auto;
  }
}
.section_locallink .locallink_wrp {
  position: relative;
  width: 100%;
  padding-top: 10px;
}
.section_locallink .locallink_wrp.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.section_locallink .locallink_wrp .locallink {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section_locallink .locallink_wrp .locallink ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.section_locallink .locallink_wrp .locallink li {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
.section_locallink .locallink_wrp .locallink li a {
  position: relative;
  color: #222;
  text-decoration: none;
  padding-right: 23px;
}
.section_locallink .locallink_wrp .locallink li a:hover {
  color: #444;
}
.section_locallink .locallink_wrp .locallink li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #3054A5;
  border-radius: 50%;
  transition: 0.1s;
}
.section_locallink .locallink_wrp .locallink li a:hover:before {
  background: #3c62ba;
}
.section_locallink .locallink_wrp .locallink li a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 6px;
  margin: auto;
  width: 4px;
  height: 4px;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
.section_locallink .locallink_wrp .locallink .deactive a {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 1030px) {
  .section_locallink .locallink_wrp .locallink ul {
    gap: 20px;
    padding: 20px;
  }
  .section_locallink .locallink_wrp .locallink li {
    font-size: 18px;
    line-height: 20px;
  }
}
@media screen and (max-width: 736px) {
  .section_locallink .locallink_wrp.fixed {
    left: 5vw;
    width: calc(100% - 10vw);
  }
  .section_locallink .locallink_wrp .locallink {
    width: 100%;
  }
  .section_locallink .locallink_wrp .locallink ul {
    gap: 3vw 4vw;
    padding: 3vw;
    border-radius: 1vw;
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  }
  .section_locallink .locallink_wrp .locallink li {
    font-size: 4vw;
    line-height: 1;
  }
  .section_locallink .locallink_wrp .locallink li a {
    padding-right: 4.6vw;
  }
  .section_locallink .locallink_wrp .locallink li a:before {
    width: 3.6vw;
    height: 3.6vw;
    border-radius: 50%;
  }
  .section_locallink .locallink_wrp .locallink li a:after {
    top: 2.2vw;
    right: 1.2vw;
    width: 1vw;
    height: 1vw;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .section_locallink .locallink_wrp .locallink .deactive {
    display: none;
  }
}

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

  section_first

===============================================================*/
.section_first {
  position: relative;
  z-index: 1;
  background: url(/special/paralympics/jtele/images/first_bg.jpg) no-repeat bottom center/cover;
  /*-------------------------------------------------------------
    first	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    en	
  -------------------------------------------------------------*/
}
.section_first .section_inner {
  padding-top: 150px;
  padding-bottom: 25vw;
}
.section_first .content {
  position: static;
}
@media screen and (max-width: 1200px) {
  .section_first .section_inner {
    padding-top: 150px;
    padding-bottom: 300px;
  }
}
@media screen and (max-width: 736px) {
  .section_first {
    background: url(/special/paralympics/jtele/images/first_bg_sp.jpg) no-repeat bottom center/cover;
  }
  .section_first .section_inner {
    padding-top: 20vw;
    padding-bottom: 33vw;
  }
}
.section_first .first {
  position: relative;
}
.section_first .first p {
  color: #564191;
  font-size: 26px;
  line-height: 2;
  font-weight: 700;
  text-align: center;
}
.section_first .first p .l {
  font-size: 46px;
  line-height: 1.6;
}
.section_first .first p + p {
  margin-top: 2em;
}
@media screen and (max-width: 1030px) {
  .section_first .first p {
    font-size: 24px;
  }
  .section_first .first p .l {
    font-size: 44px;
  }
}
@media screen and (max-width: 736px) {
  .section_first .first p {
    font-size: 4vw;
  }
  .section_first .first p .l {
    font-size: 6vw;
  }
  .section_first .first p + p {
    margin-top: 1em;
  }
}
.section_first .en {
  position: absolute;
  bottom: 28vw;
  left: -14vw;
  width: 30em;
  height: -moz-fit-content;
  height: fit-content;
  color: rgba(35, 0, 135, 0.4);
  font-size: 11vw;
  line-height: 0.7;
  font-weight: 700;
  transform: rotate(-10deg) skew(-20deg);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1200px) {
  .section_first .en {
    bottom: 27vw;
  }
}
@media screen and (max-width: 1030px) {
  .section_first .en {
    bottom: 30vw;
  }
}
@media screen and (max-width: 736px) {
  .section_first .en {
    bottom: 30vw;
  }
}

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

  section_info

===============================================================*/
.section_info {
  position: relative;
  z-index: 1;
  background: url(/special/paralympics/jtele/images/info_bg.png) no-repeat top center/cover;
  margin-top: -20vw;
  /*-------------------------------------------------------------
    info2	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    info2 item	box
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    info	
  -------------------------------------------------------------*/
}
.section_info:after {
  content: "";
  position: absolute;
  bottom: 10vw;
  right: 0;
  width: 50vw;
  height: 56.125vw;
  background: url(/special/paralympics/jtele/images/grunge_r.png) no-repeat top center/cover;
  mix-blend-mode: overlay;
}
.section_info .section_inner {
  padding-top: 23vw;
  padding-bottom: 35vw;
}
@media screen and (max-width: 1200px) {
  .section_info {
    margin-top: -220px;
  }
  .section_info .section_inner {
    padding-top: 250px;
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 736px) {
  .section_info {
    background: url(/special/paralympics/jtele/images/info_bg_sp.png) no-repeat top center/cover;
    margin-top: -22vw;
  }
  .section_info:after {
    content: "";
    position: absolute;
    bottom: 10vw;
    right: 0;
    width: 75vw;
    height: 84.1875vw;
    background: url(/special/paralympics/jtele/images/grunge_r.png) no-repeat top center/cover;
    mix-blend-mode: overlay;
  }
  .section_info .section_inner {
    padding-top: 25vw;
    padding-bottom: 45vw;
  }
}
.section_info .info2 .item .toptxt {
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  padding-left: 30px;
}
.section_info .info2 .item .wrp {
  background: #fff;
  padding: 30px;
}
.section_info .info2 .item .wrp .box + .box {
  margin-top: 30px;
}
.section_info .info2 .item + .item {
  margin-top: 50px;
}
@media screen and (max-width: 736px) {
  .section_info .info2 .item .toptxt {
    font-size: 3.8vw;
    padding-left: 4vw;
  }
  .section_info .info2 .item .wrp {
    padding: 4vw;
  }
  .section_info .info2 .item .wrp .box + .box {
    margin-top: 4vw;
  }
  .section_info .info2 .item + .item {
    margin-top: 6vw;
  }
}
.section_info .info2 .item .box .head_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  padding-left: 70px;
  background: #222;
}
.section_info .info2 .item .box .head_wrp .head {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}
.section_info .info2 .item .box .head_wrp .tag {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}
.section_info .info2 .item .box .txt_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.section_info .info2 .item .box .txt_wrp .date {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 600;
}
.section_info .info2 .item .box .txt_wrp .date .s {
  font-size: 22px;
}
.section_info .info2 .item .box .txt_wrp .date .caption {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.section_info .info2 .item .box .txt_wrp .btn {
  width: 160px;
  margin-left: auto;
}
.section_info .info2 .item .box .txt_wrp .btn a {
  position: relative;
  display: block;
  color: #222;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 14px 0;
  border: 1px solid #222;
  border-radius: 25px;
  background: #fff;
}
.section_info .info2 .item .box .txt_wrp .btn a:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 19px;
  right: 15px;
  margin: auto;
  border-bottom: solid 2px #222;
  border-right: solid 2px #222;
  transform: rotate(45deg);
}
.section_info .info2 .item .box .txt_wrp .btn a:hover {
  color: #fff;
  background: #222;
}
.section_info .info2 .item .box .txt_wrp .btn a:hover:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
.section_info .info2 .item .box.box_red_tv {
  background: #FFF3F2;
}
.section_info .info2 .item .box.box_red_tv .head_wrp {
  background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
}
.section_info .info2 .item .box.box_red_tv .txt_wrp .btn a {
  color: #E93817;
  border-color: #E93817;
}
.section_info .info2 .item .box.box_red_tv .txt_wrp .btn a:after {
  border-bottom-color: #E93817;
  border-right-color: #E93817;
  transition: 0.1s;
}
.section_info .info2 .item .box.box_red_tv .txt_wrp .btn a:hover {
  color: #fff;
  background: #E93817;
}
.section_info .info2 .item .box.box_red_tv .txt_wrp .btn a:hover:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
.section_info .info2 .item .box.box_red_stream {
  background: #FFF3F2;
}
.section_info .info2 .item .box.box_red_stream .head_wrp {
  background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
}
.section_info .info2 .item .box.box_red_stream .txt_wrp .btn a {
  color: #E93817;
  border-color: #E93817;
}
.section_info .info2 .item .box.box_red_stream .txt_wrp .btn a:after {
  border-bottom-color: #E93817;
  border-right-color: #E93817;
  transition: 0.1s;
}
.section_info .info2 .item .box.box_red_stream .txt_wrp .btn a:hover {
  color: #fff;
  background: #E93817;
}
.section_info .info2 .item .box.box_red_stream .txt_wrp .btn a:hover:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
.section_info .info2 .item .box.box_blue_tv {
  background: #F2F5FF;
}
.section_info .info2 .item .box.box_blue_tv .head_wrp {
  background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
}
.section_info .info2 .item .box.box_blue_tv .txt_wrp .link {
  color: #3054A5;
  text-decoration: underline;
  background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat center right 2px/12px auto;
  padding-right: 14px;
}
.section_info .info2 .item .box.box_blue_tv .txt_wrp .link:hover {
  text-decoration: none;
}
.section_info .info2 .item .box.box_blue_tv .txt_wrp .btn a {
  color: #3054A5;
  border-color: #3054A5;
}
.section_info .info2 .item .box.box_blue_tv .txt_wrp .btn a:after {
  border-bottom-color: #3054A5;
  border-right-color: #3054A5;
  transition: 0.1s;
}
.section_info .info2 .item .box.box_blue_tv .txt_wrp .btn a:hover {
  color: #fff;
  background: #3054A5;
}
.section_info .info2 .item .box.box_blue_tv .txt_wrp .btn a:hover:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
.section_info .info2 .item .box.box_blue_stream {
  background: #F2F5FF;
}
.section_info .info2 .item .box.box_blue_stream .head_wrp {
  background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
}
.section_info .info2 .item .box.box_blue_stream .txt_wrp .btn a {
  color: #3054A5;
  border-color: #3054A5;
}
.section_info .info2 .item .box.box_blue_stream .txt_wrp .btn a:after {
  border-bottom-color: #3054A5;
  border-right-color: #3054A5;
  transition: 0.1s;
}
.section_info .info2 .item .box.box_blue_stream .txt_wrp .btn a:hover {
  color: #fff;
  background: #3054A5;
}
.section_info .info2 .item .box.box_blue_stream .txt_wrp .btn a:hover:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
}
@media screen and (max-width: 1030px) {
  .section_info .info2 .item .box .txt_wrp {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (max-width: 736px) {
  .section_info .info2 .item .box .head_wrp {
    padding: 2vw 2.5vw;
    padding-left: 7vw;
  }
  .section_info .info2 .item .box .head_wrp .head {
    font-size: 4.5vw;
  }
  .section_info .info2 .item .box .head_wrp .tag {
    font-size: 3vw;
  }
  .section_info .info2 .item .box .txt_wrp {
    padding: 3vw;
  }
  .section_info .info2 .item .box .txt_wrp .date {
    font-size: 4vw;
  }
  .section_info .info2 .item .box .txt_wrp .date .s {
    font-size: 4vw;
  }
  .section_info .info2 .item .box .txt_wrp .date .caption {
    font-size: 3vw;
    margin-top: 2vw;
  }
  .section_info .info2 .item .box .txt_wrp .btn {
    width: 70%;
    margin: 0 auto;
  }
  .section_info .info2 .item .box .txt_wrp .btn a {
    font-size: 4vw;
    line-height: 1;
    padding: 4vw 0;
    border-radius: 12vw;
  }
  .section_info .info2 .item .box .txt_wrp .btn a:after {
    width: 1vw;
    height: 1vw;
    top: 4vw;
    right: 4vw;
    margin: auto;
    border-bottom: solid 1px #222;
    border-right: solid 1px #222;
  }
  .section_info .info2 .item .box.box_red_tv .head_wrp {
    background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 2vw center/4vw auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
  }
  .section_info .info2 .item .box.box_red_stream .head_wrp {
    background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 2vw center/4vw auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
  }
  .section_info .info2 .item .box.box_blue_tv .head_wrp {
    background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 2vw center/4vw auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
  }
  .section_info .info2 .item .box.box_blue_tv .txt_wrp .link {
    background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat center right 0.4vw/2.4vw auto;
    padding-right: 2.8vw;
  }
  .section_info .info2 .item .box.box_blue_stream .head_wrp {
    background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 2vw center/4vw auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
  }
}
.section_info .info .table {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  border-collapse: collapse;
  border-spacing: 0;
  background: #fff;
}
.section_info .info .table th,
.section_info .info .table td {
  padding: 20px;
  color: #222;
}
.section_info .info .table th {
  border-right: 0;
  background: #3054A5;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.section_info .info .table th:last-child {
  border-right: none;
}
.section_info .info .table td:first-child {
  width: 300px;
}
.section_info .info .table td {
  border-right: 1px solid rgba(34, 34, 34, 0.3);
  border-bottom: 1px solid rgba(34, 34, 34, 0.3);
}
.section_info .info .table td:last-child {
  border-right: none;
}
.section_info .info .head {
  font-size: 20px;
  font-weight: 700;
  padding-left: 25px;
}
.section_info .info .head.head_tv {
  background: url(/special/paralympics/jtele/images/icon_tv.svg) no-repeat left top 8px/20px auto;
}
.section_info .info .head.head_stream {
  background: url(/special/paralympics/jtele/images/icon_stream.svg) no-repeat left top 8px/20px auto;
}
.section_info .info .head + .head {
  margin-top: 10px;
}
.section_info .info .date {
  font-size: 24px;
}
.section_info .info .date .s {
  font-size: 0.8em;
}
.section_info .info .caption {
  font-size: 14px;
  margin-top: 5px;
}
.section_info .info .caption .link {
  color: #3054A5;
  text-decoration: underline;
  background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat center right/14px auto;
  padding-right: 16px;
  margin-right: 0.2em;
}
.section_info .info .caption .link:hover {
  text-decoration: none;
}
.section_info .info .tag {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 5px;
  background: #3054A5;
}
.section_info .info * + .tag {
  margin-top: 20px;
}
.section_info .info .pagelink {
  font-size: 16px;
  margin-top: 5px;
}
.section_info .info .pagelink a {
  position: relative;
  color: #3054A5;
  text-decoration: underline;
  padding-right: 12px;
}
.section_info .info .pagelink a:hover {
  text-decoration: none;
}
.section_info .info .pagelink a:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: 8px;
  left: auto;
  right: 0;
  margin: auto;
  border-bottom: solid 2px #3054A5;
  border-right: solid 2px #3054A5;
  transform: rotate(45deg);
}
@media screen and (max-width: 1030px) {
  .section_info .info {
    overflow-y: scroll;
  }
  .section_info .info .table {
    min-width: 1030px;
  }
}
@media screen and (max-width: 736px) {
  .section_info .info {
    overflow-y: visible;
  }
  .section_info .info .table {
    display: block;
    min-width: auto;
  }
  .section_info .info .table th {
    display: none;
  }
  .section_info .info .table td {
    display: block;
    width: 100% !important;
    padding: 4vw;
    border: none;
  }
  .section_info .info .table td:first-child {
    color: #fff;
    background: #3054A5;
    padding: 2vw 4vw;
  }
  .section_info .info .table td:last-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3vw;
    /* border-top: 1px solid $c_main_03; */
    padding-top: 0;
  }
  .section_info .info .head {
    font-size: 4.5vw;
    padding-left: 6vw;
  }
  .section_info .info .head.head_tv {
    background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left top 1.8vw/4.5vw auto;
  }
  .section_info .info .head.head_stream {
    background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left top 1.8vw/4.5vw auto;
  }
  .section_info .info .head + .head {
    margin-top: 0;
  }
  .section_info .info .date {
    position: relative;
    font-size: 5vw;
    line-height: 1.5;
  }
  .section_info .info .date:before {
    display: block;
    content: "放送・配信日時";
    font-size: 3.5vw;
    line-height: 1;
    font-weight: 700;
    padding-bottom: 1vw;
  }
  .section_info .info .date .s {
    font-size: 3.8vw;
  }
  .section_info .info .caption {
    font-size: 3vw;
    margin-top: 1vw;
  }
  .section_info .info .caption .link {
    background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat center right 0.4vw/2.4vw auto;
    padding-right: 2.8vw;
  }
  .section_info .info .tag {
    font-size: 3vw;
    padding: 1vw;
  }
  .section_info .info * + .tag {
    margin-top: 0;
  }
  .section_info .info .pagelink {
    font-size: 4vw;
    /* margin-top: 1vw; */
    margin-top: -1.2vw;
  }
  .section_info .info .pagelink a {
    padding-right: 3vw;
  }
  .section_info .info .pagelink a:after {
    width: 1.8vw;
    height: 1.8vw;
    bottom: 2.2vw;
    border-bottom: solid 1px #3054A5;
    border-right: solid 1px #3054A5;
  }
  .section_info .info .table .td_sp .pagelink {
    width: 75%;
  }
}

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

  section_compe_player

===============================================================*/
.section_compe_player {
  position: relative;
  z-index: 1;
  background: url(/special/paralympics/jtele/images/compe_player_bg.png) no-repeat top center/cover;
  margin-top: -30vw;
  /* &:after {
    content: '';
    position: absolute;
    top: -30vw; right: 0;
    width: 50vw;
    height: 56.125vw;
    background: url(/special/paralympics/jtele/images/grunge_r.png) no-repeat top center / cover;
    mix-blend-mode: overlay;
  } */
  /*-------------------------------------------------------------
    cs	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    cs_lead	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    compe_player	
  -------------------------------------------------------------*/
}
.section_compe_player .section_inner {
  padding-top: 20vw;
  padding-bottom: 35vw;
}
.section_compe_player .headline .en {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.8);
}
.section_compe_player .headline .title {
  color: #564191;
}
@media screen and (max-width: 1200px) {
  .section_compe_player {
    margin-top: -300px;
  }
  .section_compe_player .section_inner {
    padding-top: 200px;
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 736px) {
  .section_compe_player {
    background: url(/special/paralympics/jtele/images/compe_player_bg_sp.png) no-repeat top center/cover;
    margin-top: -40vw;
  }
  .section_compe_player .section_inner {
    padding-top: 20vw;
    padding-bottom: 45vw;
  }
}
.section_compe_player .cs {
  color: rgba(86, 65, 145, 0.5);
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  padding: 200px 0;
}
@media screen and (max-width: 736px) {
  .section_compe_player .cs {
    font-size: 6vw;
    padding: 20vw 0;
  }
}
.section_compe_player .cs_lead {
  font-size: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 736px) {
  .section_compe_player .cs_lead {
    font-size: 3.8vw;
  }
}
.section_compe_player .compe_player {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px;
}
.section_compe_player .compe_player .item {
  width: calc((100% - 60px) / 3);
}
.section_compe_player .compe_player .item a {
  display: block;
  text-decoration: none;
}
.section_compe_player .compe_player .item a:hover img {
  transform: scale(1.1);
}
.section_compe_player .compe_player .item .img {
  overflow: hidden;
}
.section_compe_player .compe_player .item .img img {
  transition: transform 0.1s;
}
.section_compe_player .compe_player .item .sub {
  color: #564191;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 5px 10px;
}
.section_compe_player .compe_player .item .head {
  position: relative;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(to right, #6754B5 0%, #2B4096 100%);
  padding: 10px;
}
.section_compe_player .compe_player .item .head:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1030px) {
  .section_compe_player .compe_player .item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 736px) {
  .section_compe_player .compe_player {
    gap: 4vw;
  }
  .section_compe_player .compe_player .item {
    width: calc((100% - 4vw) / 2);
  }
  .section_compe_player .compe_player .item .sub {
    font-size: 3vw;
    padding: 1vw 2vw;
  }
  .section_compe_player .compe_player .item .head {
    font-size: 4vw;
    padding: 2vw;
  }
  .section_compe_player .compe_player .item .head:after {
    width: 1vw;
    height: 1vw;
    right: 2vw;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}

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

  section_howto

===============================================================*/
.section_howto {
  position: relative;
  z-index: 1;
  background: url(/special/paralympics/jtele/images/howto_bg.png) no-repeat top center/cover;
  margin-top: -20vw;
  /*-------------------------------------------------------------
    howto	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    howto item box ch_wrp
  -------------------------------------------------------------*/
}
.section_howto:before {
  content: "";
  position: absolute;
  top: -23vw;
  left: 0;
  width: 42.1825vw;
  height: 56.125vw;
  background: url(/special/paralympics/jtele/images/grunge_l.png) no-repeat top center/cover;
  mix-blend-mode: overlay;
}
.section_howto:after {
  content: "";
  position: absolute;
  bottom: 4vw;
  right: 0;
  width: 50vw;
  height: 56.125vw;
  background: url(/special/paralympics/jtele/images/grunge_r.png) no-repeat top center/cover;
  mix-blend-mode: overlay;
}
.section_howto .section_inner {
  padding-top: 20vw;
  padding-bottom: 35vw;
}
.section_howto .headline .en {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 1200px) {
  .section_howto {
    margin-top: -300px;
  }
  .section_howto .section_inner {
    padding-top: 200px;
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 736px) {
  .section_howto {
    background: url(/special/paralympics/jtele/images/howto_bg_sp.png) no-repeat top center/cover;
    margin-top: -40vw;
  }
  .section_howto:before {
    content: "";
    position: absolute;
    top: -23vw;
    left: 0;
    width: 63.27375vw;
    height: 84.1875vw;
    background: url(/special/paralympics/jtele/images/grunge_l.png) no-repeat top center/cover;
    mix-blend-mode: overlay;
  }
  .section_howto:after {
    content: "";
    position: absolute;
    bottom: 4vw;
    right: 0;
    width: 75vw;
    height: 84.1875vw;
    background: url(/special/paralympics/jtele/images/grunge_r.png) no-repeat top center/cover;
    mix-blend-mode: overlay;
  }
  .section_howto .section_inner {
    padding-top: 20vw;
    padding-bottom: 45vw;
  }
}
.section_howto .howto .item {
  background: #fff;
}
.section_howto .howto .item .head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  background: #222;
  padding: 20px 30px;
  padding-left: 70px;
}
.section_howto .howto .item .head .s {
  font-size: 20px;
}
.section_howto .howto .item .box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
}
.section_howto .howto .item .img {
  width: 42%;
}
.section_howto .howto .item .txt {
  width: 54%;
}
.section_howto .howto .item .txt .lead {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.section_howto .howto .item .txt .lead:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #222;
}
.section_howto .howto .item .txt .remote {
  padding-right: 34%;
  background: url(/special/paralympics/jtele/images/howto_img_jtele2.jpg) no-repeat bottom right/contain;
  margin-top: 20px;
  height: 220px;
}
.section_howto .howto .item .txt .catch {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}
.section_howto .howto .item .txt p {
  color: #333;
  margin-top: 10px;
}
.section_howto .howto .item .txt .caption {
  font-size: 12px;
}
.section_howto .howto .item .txt .btn_wrp {
  margin-top: 20px;
}
.section_howto .howto .item .txt .btn_wrp .tag {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border: 1px solid #222;
}
.section_howto .howto .item .txt .btn_wrp .tag:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: solid 1px #222;
  border-right: solid 1px #222;
  transform: rotate(45deg);
}
.section_howto .howto .item .txt .btn_wrp .tag:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  background: #E93817;
  transform: rotate(45deg);
}
.section_howto .howto .item .txt .btn_wrp + p {
  margin-top: 20px;
}
.section_howto .howto .item .txt .btn {
  width: 200px;
  margin: 0 auto;
}
.section_howto .howto .item .txt .btn a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
  border-radius: 25px;
  background: #222;
  /* &:after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    top: 0; bottom: 0; right: 20px;
    margin: auto;
    border-top: solid 2px $c_white;
    border-right: solid 2px $c_white;
    transform: rotate(45deg);
  } */
}
.section_howto .howto .item .txt .btn a:hover {
  background: #444;
}
.section_howto .howto .item .txt .btn a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(/special/paralympics/jtele/images/icon_blank.svg) no-repeat center/contain;
}
.section_howto .howto .item.item_red_tv .head {
  background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
}
.section_howto .howto .item.item_red_tv .txt .lead, .section_howto .howto .item.item_red_tv .txt .catch {
  color: #E93817;
}
.section_howto .howto .item.item_red_tv .txt .btn_wrp .tag {
  color: #E93817;
  border-color: #E93817;
  background: #FFF3F2;
}
.section_howto .howto .item.item_red_tv .txt .btn_wrp .tag:before {
  border-bottom-color: #E93817;
  border-right-color: #E93817;
}
.section_howto .howto .item.item_red_tv .txt .btn_wrp .tag:after {
  background: #FFF3F2;
}
.section_howto .howto .item.item_red_tv .txt .btn a {
  background: #E93817;
}
.section_howto .howto .item.item_red_tv .txt .btn a:hover {
  background: #ff3b19;
}
.section_howto .howto .item.item_red_stream .head {
  background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
}
.section_howto .howto .item.item_red_stream .txt .lead, .section_howto .howto .item.item_red_stream .txt .catch {
  color: #E93817;
}
.section_howto .howto .item.item_red_stream .txt .link {
  color: #E93817;
  text-decoration: underline;
  background: url(/special/paralympics/jtele/images/icon_blank_red.svg) no-repeat center right 2px/12px auto;
  padding-right: 14px;
}
.section_howto .howto .item.item_red_stream .txt .link:hover {
  text-decoration: none;
}
.section_howto .howto .item.item_red_stream .txt .btn_wrp .tag {
  color: #E93817;
  border-color: #E93817;
  background: #FFF3F2;
}
.section_howto .howto .item.item_red_stream .txt .btn_wrp .tag:before {
  border-bottom-color: #E93817;
  border-right-color: #E93817;
}
.section_howto .howto .item.item_red_stream .txt .btn_wrp .tag:after {
  background: #FFF3F2;
}
.section_howto .howto .item.item_red_stream .txt .btn a {
  background: #E93817;
}
.section_howto .howto .item.item_red_stream .txt .btn a:hover {
  background: #ff3b19;
}
.section_howto .howto .item.item_blue_tv .head {
  background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
}
.section_howto .howto .item.item_blue_tv .txt .lead, .section_howto .howto .item.item_blue_tv .txt .catch {
  color: #3054A5;
}
.section_howto .howto .item.item_blue_tv .txt .link {
  color: #3054A5;
  text-decoration: underline;
  background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat center right 2px/12px auto;
  padding-right: 14px;
}
.section_howto .howto .item.item_blue_tv .txt .link:hover {
  text-decoration: none;
}
.section_howto .howto .item.item_blue_tv .txt .btn_wrp .tag {
  color: #3054A5;
  border-color: #3054A5;
  background: #F2F5FF;
}
.section_howto .howto .item.item_blue_tv .txt .btn_wrp .tag:before {
  border-bottom-color: #3054A5;
  border-right-color: #3054A5;
}
.section_howto .howto .item.item_blue_tv .txt .btn_wrp .tag:after {
  background: #F2F5FF;
}
.section_howto .howto .item.item_blue_tv .txt .btn a {
  background: #3054A5;
}
.section_howto .howto .item.item_blue_tv .txt .btn a:hover {
  background: #3c62ba;
}
.section_howto .howto .item.item_blue_stream .head {
  background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 30px center/34px auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
}
.section_howto .howto .item.item_blue_stream .txt .lead, .section_howto .howto .item.item_blue_stream .txt .catch {
  color: #3054A5;
}
.section_howto .howto .item.item_blue_stream .txt .btn_wrp .tag {
  color: #3054A5;
  border-color: #3054A5;
  background: #F2F5FF;
}
.section_howto .howto .item.item_blue_stream .txt .btn_wrp .tag:before {
  border-bottom-color: #3054A5;
  border-right-color: #3054A5;
}
.section_howto .howto .item.item_blue_stream .txt .btn_wrp .tag:after {
  background: #F2F5FF;
}
.section_howto .howto .item.item_blue_stream .txt .btn a {
  background: #3054A5;
}
.section_howto .howto .item.item_blue_stream .txt .btn a:hover {
  background: #3c62ba;
}
.section_howto .howto .item + .item {
  margin-top: 50px;
}
@media screen and (max-width: 1030px) {
  .section_howto .howto .item .box {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 30px;
  }
  .section_howto .howto .item .img {
    width: 50%;
  }
  .section_howto .howto .item .txt {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 736px) {
  .section_howto .howto .item .head {
    font-size: 5vw;
    padding: 3vw;
    padding-left: 10vw;
  }
  .section_howto .howto .item .head .s {
    font-size: 3.8vw;
  }
  .section_howto .howto .item .box {
    padding: 4vw 4vw 6vw;
  }
  .section_howto .howto .item .img {
    width: 100%;
  }
  .section_howto .howto .item .txt {
    margin-top: 4vw;
  }
  .section_howto .howto .item .txt .lead {
    font-size: 4.5vw;
  }
  .section_howto .howto .item .txt .remote {
    padding-right: 34%;
    background: url(/special/paralympics/jtele/images/howto_img_jtele2.jpg) no-repeat bottom right -4vw/contain;
    margin-top: 4vw;
    height: auto;
  }
  .section_howto .howto .item .txt .catch {
    font-size: 4.5vw;
  }
  .section_howto .howto .item .txt p {
    margin-top: 2vw;
  }
  .section_howto .howto .item .txt .caption {
    font-size: 3vw;
  }
  .section_howto .howto .item .txt .btn_wrp {
    margin-top: 4vw;
  }
  .section_howto .howto .item .txt .btn_wrp .tag {
    margin-bottom: 4vw;
    font-size: 3vw;
    line-height: 1.4;
    padding: 2vw;
  }
  .section_howto .howto .item .txt .btn_wrp .tag:before {
    width: 3vw;
    height: 3vw;
    bottom: -1.6vw;
  }
  .section_howto .howto .item .txt .btn_wrp .tag:after {
    width: 3vw;
    height: 3vw;
    bottom: calc(-1.5vw + 1px);
  }
  .section_howto .howto .item .txt .btn_wrp + p {
    margin-top: 4vw;
  }
  .section_howto .howto .item .txt .btn {
    width: 70%;
  }
  .section_howto .howto .item .txt .btn a {
    font-size: 4vw;
    line-height: 1;
    padding: 4vw 0;
    border-radius: 12vw;
    /* &:after {
      width: 1vw; height: 1vw;
      top: 0; bottom: 0; right: 4vw;
      border-top: solid 1px $c_white;
      border-right: solid 1px $c_white;
    } */
  }
  .section_howto .howto .item .txt .btn a:after {
    right: 4vw;
    width: 3.4vw;
    height: 3.4vw;
  }
  .section_howto .howto .item.item_red_tv .head {
    background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 4vw center/5vw auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
  }
  .section_howto .howto .item.item_red_stream .head {
    background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 4vw center/5vw auto, linear-gradient(to right, #E48D02 0%, #E4021D 100%);
  }
  .section_howto .howto .item.item_red_stream .txt .link {
    background: url(/special/paralympics/jtele/images/icon_blank_red.svg) no-repeat center right 0.4vw/2.4vw auto;
    padding-right: 2.8vw;
  }
  .section_howto .howto .item.item_blue_tv .head {
    background: url(/special/paralympics/jtele/images/icon_tv_white.svg) no-repeat left 4vw center/5vw auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
  }
  .section_howto .howto .item.item_blue_tv .txt .link {
    background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat center right 0.4vw/2.4vw auto;
    padding-right: 2.8vw;
  }
  .section_howto .howto .item.item_blue_stream .head {
    background: url(/special/paralympics/jtele/images/icon_stream_white.svg) no-repeat left 4vw center/5vw auto, linear-gradient(to right, #3E008E 0%, #00318E 100%);
  }
  .section_howto .howto .item + .item {
    margin-top: 5vw;
  }
}
.section_howto .howto .item .box .ch_wrp {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.section_howto .howto .item .box .ch_wrp .ch {
  width: 25%;
  text-align: center;
  border-left: 1px solid #222;
}
.section_howto .howto .item .box .ch_wrp .ch:last-child {
  border-right: 1px solid #222;
}
.section_howto .howto .item .box .ch_wrp .ch:nth-child(n+2) .area:after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  background: #fff;
}
.section_howto .howto .item .box .ch_wrp .ch .area {
  position: relative;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  background: #222;
  padding: 12px 0;
}
.section_howto .howto .item .box .ch_wrp .ch .detail {
  padding: 10px;
}
.section_howto .howto .item .box .ch_wrp .ch .detail .tag {
  font-size: 16px;
  font-weight: 400;
}
.section_howto .howto .item .box .ch_wrp .ch .detail .num {
  color: #E93817;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.1em;
  margin-top: 0.05em;
}
.section_howto .howto .item .box .ch_wrp .ch .detail .num .s {
  font-size: 40px;
  letter-spacing: normal;
  margin-left: 0.15em;
}
@media screen and (max-width: 1030px) {
  .section_howto .howto .item .box .ch_wrp .ch .area {
    font-size: 12px;
  }
}
@media screen and (max-width: 736px) {
  .section_howto .howto .item .box .ch_wrp {
    margin-top: 6vw;
  }
  .section_howto .howto .item .box .ch_wrp .ch {
    width: 50%;
    border-left: 1px solid #222;
  }
  .section_howto .howto .item .box .ch_wrp .ch:nth-child(even) {
    border-right: 1px solid #222;
  }
  .section_howto .howto .item .box .ch_wrp .ch:nth-child(3) .area:after {
    display: none;
  }
  .section_howto .howto .item .box .ch_wrp .ch .area {
    font-size: 2.5vw;
    padding: 2vw 0;
  }
  .section_howto .howto .item .box .ch_wrp .ch .detail {
    padding: 2vw;
  }
  .section_howto .howto .item .box .ch_wrp .ch .detail .tag {
    font-size: 3vw;
  }
  .section_howto .howto .item .box .ch_wrp .ch .detail .num {
    font-size: 10vw;
  }
  .section_howto .howto .item .box .ch_wrp .ch .detail .num .s {
    font-size: 7vw;
  }
}

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

  section_activity

===============================================================*/
.section_activity {
  position: relative;
  z-index: 1;
  background: url(/special/paralympics/jtele/images/activity_bg.png) no-repeat top center/cover;
  margin-top: -35vw;
  /*-------------------------------------------------------------
    activity	
  -------------------------------------------------------------*/
}
.section_activity .section_inner {
  padding-top: 20vw;
  padding-bottom: 35vw;
}
@media screen and (max-width: 1200px) {
  .section_activity {
    margin-top: -300px;
  }
  .section_activity .section_inner {
    padding-top: 250px;
    padding-bottom: 350px;
  }
}
@media screen and (max-width: 736px) {
  .section_activity {
    background: url(/special/paralympics/jtele/images/activity_bg_sp.png) no-repeat top center/cover;
    margin-top: -40vw;
  }
  .section_activity .section_inner {
    padding-top: 25vw;
    padding-bottom: 45vw;
  }
}
.section_activity .activity {
  position: relative;
  background: #fff;
  padding: 40px 100px;
}
.section_activity .activity:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  border-top: solid 4px #E93817;
  border-left: solid 4px #E93817;
}
.section_activity .activity:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  border-top: solid 4px #E93817;
  border-right: solid 4px #E93817;
}
.section_activity .activity .inner:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  border-bottom: solid 4px #E93817;
  border-left: solid 4px #E93817;
}
.section_activity .activity .inner:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  border-bottom: solid 4px #E93817;
  border-right: solid 4px #E93817;
}
.section_activity .activity .head_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #222;
}
.section_activity .activity .head_wrp .tag {
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 16px;
  line-height: 100px;
  font-weight: 700;
  text-align: center;
  padding: 0;
  background: #E93817;
  border-radius: 50%;
}
.section_activity .activity .head_wrp .tag .l {
  font-size: 20px;
}
.section_activity .activity .head_wrp .head {
  font-size: 33px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 2px;
}
.section_activity .activity .head_wrp .head .l {
  font-size: 39px;
  color: #E93817;
}
.section_activity .activity p {
  font-size: 18px;
  margin-top: 30px;
}
.section_activity .activity p .link {
  color: #E93817;
  text-decoration: underline;
  background: url(/special/paralympics/jtele/images/icon_blank_red.svg) no-repeat center right/14px auto;
  padding-right: 16px;
  margin-left: 1em;
}
.section_activity .activity p .link:hover {
  text-decoration: none;
}
@media screen and (max-width: 1030px) {
  .section_activity .activity {
    padding: 40px;
  }
  .section_activity .activity .head_wrp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -90px;
  }
  .section_activity .activity .head_wrp .head {
    text-align: center;
  }
}
@media screen and (max-width: 736px) {
  .section_activity .activity {
    padding: 4vw;
  }
  .section_activity .activity:before {
    width: 6vw;
    height: 6vw;
  }
  .section_activity .activity:after {
    width: 6vw;
    height: 6vw;
  }
  .section_activity .activity .inner:before {
    width: 6vw;
    height: 6vw;
  }
  .section_activity .activity .inner:after {
    width: 6vw;
    height: 6vw;
  }
  .section_activity .activity .head_wrp {
    gap: 2vw;
    padding-bottom: 4vw;
    margin-top: -14vw;
  }
  .section_activity .activity .head_wrp .tag {
    width: 20vw;
    height: 20vw;
    font-size: 3.5vw;
    line-height: 1.2;
    padding-top: 6vw;
  }
  .section_activity .activity .head_wrp .tag .l {
    display: block;
    font-size: 4.5vw;
  }
  .section_activity .activity .head_wrp .head {
    font-size: 4.5vw;
    text-align: center;
    letter-spacing: 1px;
  }
  .section_activity .activity .head_wrp .head .l {
    font-size: 6vw;
  }
  .section_activity .activity p {
    font-size: 3.8vw;
    margin-top: 4vw;
  }
  .section_activity .activity p .link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-top: 2vw;
  }
  .section_activity .activity p .link a {
    font-size: 3.8vw;
    padding-right: 4vw;
    background: url(/special/paralympics/jtele/images/icon_blank_blue.svg) no-repeat right center/3vw auto;
  }
}

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

  section_related

===============================================================*/
.section_related {
  position: relative;
  z-index: 1;
  background: url(/special/paralympics/jtele/images/related_bg.png) no-repeat top center/cover;
  margin-top: -35vw;
  /*-------------------------------------------------------------
    related	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
    related2	
  -------------------------------------------------------------*/
}
.section_related .section_inner {
  padding-top: 20vw;
  padding-bottom: 150px;
}
.section_related .headline .en {
  -webkit-text-stroke-color: #fff;
  mix-blend-mode: overlay;
}
.section_related .headline .title {
  color: #102682;
}
@media screen and (max-width: 1200px) {
  .section_related {
    margin-top: -300px;
  }
  .section_related .section_inner {
    padding-top: 200px;
  }
}
@media screen and (max-width: 736px) {
  .section_related {
    background: url(/special/paralympics/jtele/images/related_bg_sp.png) no-repeat top center/cover;
    margin-top: -45vw;
  }
  .section_related .section_inner {
    padding-top: 30vw;
    padding-bottom: 10vw;
  }
  .section_related .content:has(.related) {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.section_related .related {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section_related .related .img {
  width: 47.5%;
}
.section_related .related .txt {
  width: 47.5%;
}
.section_related .related .txt .lead {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  background: linear-gradient(to right, #3852BB 0%, #2B4096 100%);
}
.section_related .related .txt .btn {
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
}
.section_related .related .txt .btn a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
  border-radius: 25px;
  background: #2B4096;
}
.section_related .related .txt .btn a:hover {
  background: #344ca8;
}
.section_related .related .txt .btn a:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}
.section_related .related .txt .box {
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 736px) {
  .section_related .related {
    display: contents;
  }
  .section_related .related .img {
    width: 80%;
    margin: 0 auto;
  }
  .section_related .related .txt {
    order: 2;
    width: 100%;
    margin-top: 6vw;
  }
  .section_related .related .txt .lead {
    font-size: 4vw;
    padding: 2vw;
  }
  .section_related .related .txt .btn {
    width: 70%;
    margin-top: 6vw;
  }
  .section_related .related .txt .btn a {
    font-size: 4vw;
    line-height: 1;
    padding: 4vw 0;
    border-radius: 12vw;
  }
  .section_related .related .txt .btn a:after {
    width: 1vw;
    height: 1vw;
    top: 0;
    bottom: 0;
    right: 4vw;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
  }
}
.section_related .related2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.section_related .related2 .img {
  width: 150px;
}
.section_related .related2 .img img {
  border-radius: 50%;
  overflow: hidden;
}
.section_related .related2 .img .name {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: -20px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  background: #2B4096;
}
.section_related .related2 .txt {
  position: relative;
  width: calc(100% - 190px);
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
}
.section_related .related2 .txt .lead {
  position: absolute;
  top: -13px;
  left: 30px;
  color: #2B4096;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}
.section_related .related2 .txt p {
  color: rgba(43, 64, 150, 0.8);
  font-size: 18px;
}
@media screen and (max-width: 1030px) {
  .section_related .related2 {
    align-items: flex-start;
    margin-top: 50px;
  }
}
@media screen and (max-width: 736px) {
  .section_related .related2 {
    margin-top: 8vw;
  }
  .section_related .related2 .img {
    width: 26vw;
  }
  .section_related .related2 .img .name {
    margin-top: -2vw;
    font-size: 3.5vw;
    padding: 2vw;
  }
  .section_related .related2 .txt {
    width: calc(100% - 30vw);
    padding: 4vw;
  }
  .section_related .related2 .txt .lead {
    top: -2vw;
    left: 4vw;
    font-size: 4.2vw;
  }
  .section_related .related2 .txt p {
    font-size: 3.8vw;
  }
}

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

  section_jcomtv

===============================================================*/
.section_jcomtv {
  background: url(/special/paralympics/common/images/jcomtv/bg.jpg) no-repeat top center/cover;
}

@media screen and (max-width: 736px) {
  .section_jcomtv {
    background: url(/special/paralympics/common/images/jcomtv/bg_sp.jpg) no-repeat top center/cover;
  }
}
/*-------------------------------------------------------------
  jcomtv_title	
-------------------------------------------------------------*/
.jcomtv_title .head {
  color: #fff;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .jcomtv_title .head {
    font-size: 6vw;
  }
}

/*-------------------------------------------------------------
  jcomtv_detail	
-------------------------------------------------------------*/
.jcomtv_detail {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.jcomtv_detail .img {
  width: 50%;
}
.jcomtv_detail .img a {
  display: block;
  perspective: 1000px;
}
.jcomtv_detail .img img {
  transform: rotateY(-15deg);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.jcomtv_detail .txt {
  width: 48%;
}
.jcomtv_detail .txt .list li {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  padding-left: 30px;
  background: url(/special/paralympics/common/images/jcomtv/icon_check.svg) no-repeat top 15px left 0/12px auto;
}
.jcomtv_detail .txt .list li + li {
  margin-top: 40px;
}
.jcomtv_detail .txt .list .color_yellow {
  color: #FAEC85;
}
.jcomtv_detail .txt .btn {
  width: 220px;
  margin-left: 40px;
  margin-top: 50px;
}
.jcomtv_detail .txt .btn a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #003282;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 20px 0;
  border-radius: 30px;
  background-color: #fff;
}
.jcomtv_detail .txt .btn a:hover {
  background-color: #FAEC85;
}
.jcomtv_detail .txt .btn a .arw {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.jcomtv_detail .txt .btn a .arw img {
  width: 18px;
  height: 15px;
}
@media screen and (max-width: 736px) {
  .jcomtv_detail {
    margin-top: 6vw;
  }
  .jcomtv_detail .img {
    width: 100%;
  }
  .jcomtv_detail .img a {
    perspective: none;
  }
  .jcomtv_detail .img img {
    transform: none;
  }
  .jcomtv_detail .txt {
    width: 100%;
    margin-top: 6vw;
  }
  .jcomtv_detail .txt .list li {
    font-size: 4vw;
    padding-left: 6vw;
    background: url(/special/paralympics/common/images/jcomtv/icon_check.svg) no-repeat top 2vw left 0/3vw auto;
  }
  .jcomtv_detail .txt .list li + li {
    margin-top: 4vw;
  }
  .jcomtv_detail .txt .btn {
    width: 50%;
    margin: 0 auto;
    margin-top: 6vw;
  }
  .jcomtv_detail .txt .btn a {
    gap: 2vw;
    font-size: 4vw;
    padding: 4vw 0;
    border-radius: 6vw;
  }
  .jcomtv_detail .txt .btn a .arw {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .jcomtv_detail .txt .btn a .arw img {
    width: 3.6vw;
    height: 3vw;
  }
}

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

section_brand_link

===============================================================*/
.section_brand_link {
  position: relative;
  background: url(/special/paralympics/jtele/images/brand_link_bg_pc.jpg) no-repeat center/cover;
  /*-------------------------------------------------------------
  	corp_link	
  -------------------------------------------------------------*/
}
.section_brand_link .section_inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section_brand_link .headline .title_img {
  width: 600px;
  margin: 0 auto;
}
.section_brand_link .headline .lead {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .section_brand_link .headline .title {
    font-size: 9vw;
  }
  .section_brand_link .headline .lead {
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
  }
}
@media screen and (max-width: 736px) {
  .section_brand_link {
    background: url(/special/paralympics/jtele/images/brand_link_bg_sp.jpg) no-repeat center/cover;
  }
  .section_brand_link .section_inner {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  .section_brand_link .headline .title_img {
    width: 80vw;
  }
  .section_brand_link .headline .lead {
    font-size: 3.8vw;
  }
}
.section_brand_link .corp_link .jcom_btn {
  width: 352px;
  margin: 0 auto;
}
.section_brand_link .corp_link .jcom_btn a {
  font-size: 18px;
}
@media screen and (max-width: 736px) {
  .section_brand_link .corp_link .jcom_btn {
    width: 80%;
  }
  .section_brand_link .corp_link .jcom_btn a {
    font-size: 4.5vw;
  }
}

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

section_copy

===============================================================*/
.section_copy {
  background: url(/special/paralympics/jtele/images/kv_bg.jpg) no-repeat center/cover;
  /*-------------------------------------------------------------
  	copy	
  -------------------------------------------------------------*/
}
.section_copy .section_inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 736px) {
  .section_copy .section_inner {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
}
.section_copy .copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .section_copy .copy p {
    font-size: 3vw;
  }
}

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

	scroll_in

===============================================================*/
.scroll_in_blur {
  opacity: 0;
  filter: blur(10px);
  transition: 1s;
}

.scroll_in_blur.active {
  opacity: 1;
  filter: blur(0);
}

.scroll_in_pata {
  opacity: 0;
  transform: rotateX(-90deg) skew(-7deg);
  transition: 1s ease;
}

.scroll_in_pata.active {
  opacity: 1;
  transform: rotateX(0deg) skew(-7deg);
}

.scroll_in_lb {
  opacity: 0;
  transform: translate(-50px, 50px);
  transition: 1s ease;
}

.scroll_in_lb.active {
  opacity: 1;
  transform: translate(0, 0);
}

.scroll_delay_02s {
  transition-delay: 0.2s;
}

.scroll_delay_04s {
  transition-delay: 0.4s;
}

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

	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: #3054A5;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
}
#btn_pagetop a:hover {
  background-color: #3c62ba;
}
#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;
  transform: rotate(45deg);
}

@media screen and (max-width: 736px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
}
/*===============================================================

	nav_outer

===============================================================*/
.nav_outer {
  position: relative;
  position: absolute;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(90deg, #003d33 0%, #00944a 100%);
  box-sizing: border-box;
}
.nav_outer.fixed {
  position: fixed;
  top: 0;
}
.nav_outer .inner {
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 1030px) {
  .nav_outer {
    position: absolute;
    top: 50px;
    left: 0;
  }
  .nav_outer .inner {
    align-items: flex-start;
  }
}
/*-------------------------------------------------------------
	navigation_wrp
-------------------------------------------------------------*/
.navigation_wrp {
  width: 100%;
  background: linear-gradient(90deg, #598d02 0%, #58da98 100%);
}
.navigation_wrp .navigation ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /*	flex-wrap: wrap;*/
  justify-content: flex-start;
  align-items: center;
}
.navigation_wrp .navigation li {
  display: flex;
  align-items: center;
  padding: 0;
}
.navigation_wrp .navigation li:last-child {
  padding-right: 0;
}
.navigation_wrp .navigation li a {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 14.5px 20px;
  /*	padding: 15px 18px;*/
  /*	padding: 15px 20px;*/
}
.navigation_wrp .navigation li a:hover {
  color: #003d33;
  text-decoration: none;
  background-color: #fff;
}
.navigation_wrp .navigation li.current a {
  color: #003d33;
  background-color: #fff;
  /*cursor: default;*/
}
.navigation_wrp .navigation li.current a:hover {
  /*cursor: default;*/
}
.navigation_wrp .navigation li.deactive {
  position: relative;
}
.navigation_wrp .navigation li.deactive:before {
  content: "COMING SOON";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  background: #E83A18;
}
.navigation_wrp .navigation li.deactive a {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.4);
}
.navigation_wrp .navigation .blank a {
  padding-right: 30px;
  background: url("../images/asset/icon_blank_white.svg") no-repeat center right 15px/10px 10px;
}

/* 1400px以下 */
@media screen and (max-width: 736px) {
  .navigation_wrp {
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .navigation_wrp .navigation {
    width: auto;
    /* .localnav {
      width: 151vw;
    } */
  }
  .navigation_wrp .navigation::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
  .navigation_wrp .navigation ul {
    white-space: nowrap;
    display: flex;
    width: 100%;
  }
  .navigation_wrp .navigation li a {
    font-size: 3.8vw;
    padding: 0 4vw;
    line-height: 10vw;
    display: inline-block;
  }
  .navigation_wrp .navigation li.current a {
    /*background-color: #b10629;*/
  }
  .navigation_wrp .navigation li.current a:hover {
    /*background-color: #b10629;*/
  }
  .navigation_wrp .navigation li.deactive:before {
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5vw 1vw;
    font-size: 2vw;
  }
  .navigation_wrp .navigation li.deactive a {
    transform: translateY(1vw);
  }
  .navigation_wrp .navigation .blank a {
    padding-right: 7vw;
    background: url("../images/asset/icon_blank_white.svg") no-repeat center right 3vw/2.6vw 2.6vw;
  }
}
/*-------------------------------------------------------------
	page_title
-------------------------------------------------------------*/
.page_title {
  font-size: 35px;
  line-height: 1;
  font-weight: 800 !important;
  margin-right: auto;
  padding: 25px 0;
}
.page_title a {
  display: inline-block;
  color: #fff;
}
.page_title a:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 1400px) {
  .page_title {
    font-size: 25px;
    padding: 20px;
  }
}
@media screen and (max-width: 1030px) {
  .page_title {
    /*font-size: 20px;*/
    font-size: 18px;
  }
}
@media screen and (max-width: 736px) {
  .page_title {
    font-size: 4vw;
    padding: 4vw 3vw;
    line-height: 1;
  }
}
/* SP向けレイアウトの指定：～400px */
@media only screen and (max-width: 400px) {
  .page_title {
    /*font-size: 3.5vw;*/
  }
}
/* for SP max-width: 400px */
/*-------------------------------------------------------------
	sns_wrp
-------------------------------------------------------------*/
.fixed .sns_wrp {
  /*display: none;*/
}

.sns_wrp {
  position: relative;
}
.sns_wrp .share_btn {
  display: none;
}
.sns_wrp:before {
  content: "このページをシェアする：";
  position: absolute;
  top: -102.5px;
  right: 90px;
  margin: auto;
  color: #fff;
  font-size: 14px;
  line-height: 30px;
  width: 12em;
  height: 30px;
}
.sns_wrp ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  top: -107.5px;
  right: 0;
  width: 90px;
}
.sns_wrp li.twitter, .sns_wrp li.facebook, .sns_wrp li.line {
  width: 40px;
}
.sns_wrp li.twitter a, .sns_wrp li.facebook a, .sns_wrp li.line a {
  background-image: url(/special/common/images/asset/sp_btn_twitter.png);
  background-color: #000;
  background-position: 5px center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding: 0;
  white-space: nowrap;
  text-indent: 200%;
  overflow: hidden;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  /*border: 1px solid rgba(255,255,255,1);*/
}
.sns_wrp li.twitter a {
  background-image: url(/special/common/images/asset/sp_btn_twitter.png);
  background-color: #000;
  background-color: none;
}
.sns_wrp li.facebook a {
  background-image: url(/special/common/images/asset/sp_btn_facebook.png);
  background-color: #3b5998;
  background-color: none;
}
.sns_wrp li.line {
  display: none;
}
.sns_wrp li.line a {
  background-image: url(/special/common/images/asset/sp_btn_line.png);
  background-color: #00c300;
}

/*.column_detail_page .sns_wrp {
  display: none;
}*/
@media screen and (max-width: 1400px) {
  .sns_wrp:before {
    top: -92px;
  }
  .sns_wrp ul {
    top: -97.5px;
  }
}
@media screen and (max-width: 1200px) {
  .sns_wrp:before {
    right: 100px;
  }
  .sns_wrp ul {
    right: 10px;
  }
}
@media screen and (max-width: 1030px) {
  .sns_wrp:before {
    top: -90px;
    right: 80px;
  }
  .sns_wrp ul {
    top: -90px;
    right: 10px;
    width: 70px;
  }
  .sns_wrp li.twitter, .sns_wrp li.facebook, .sns_wrp li.line {
    width: 30px;
  }
  .sns_wrp li.twitter a, .sns_wrp li.facebook a, .sns_wrp li.line a {
    background-size: 20px 20px;
    width: 30px;
    height: 30px;
  }
}
/* for tablet max-width: タブレット以下 */
@media screen and (max-width: 736px) {
  .fixed .sns_wrp {
    display: inherit;
  }
  .sns_wrp {
    display: block;
    position: absolute;
    top: 2.5vw;
    right: 3vw;
    z-index: 9999;
  }
  .sns_wrp .share_btn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 8vw;
    height: 8vw;
    box-sizing: border-box;
    border-radius: 50%;
    border: solid 1px #fff;
  }
  .sns_wrp .share_btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2vw;
  }
  .sns_wrp .share_btn a img {
    vertical-align: top;
  }
  .sns_wrp:before {
    display: none;
  }
  .sns_wrp .share_btn.open + ul {
    opacity: 1;
    pointer-events: auto;
  }
  .sns_wrp ul {
    transition: 0.2s opacity;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 12vw;
    height: auto;
    top: 10vw;
    right: -2vw;
    padding: 1vw;
    background: #fff;
  }
  .sns_wrp ul:before {
    content: "";
    position: absolute;
    top: -3vw;
    left: 0;
    right: 0;
    margin: auto;
    width: 2vw;
    height: 2vw;
    border-top: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-bottom: 2vw solid #fff;
    border-left: 2vw solid transparent;
    box-sizing: border-box;
  }
  .sns_wrp li.twitter, .sns_wrp li.facebook, .sns_wrp li.line {
    width: 10vw;
    height: 10vw;
  }
  .sns_wrp li.twitter a, .sns_wrp li.facebook a {
    background-size: 7vw 7vw;
    background-position: center center;
    width: 10vw;
    height: 10vw;
    border-radius: 0;
  }
  .sns_wrp li.line {
    display: block;
  }
  .sns_wrp li.line a {
    background-size: 7vw 7vw;
    background-position: center center;
    width: 10vw;
    height: 10vw;
    border-radius: 0;
  }
}
/*-------------------------------------------------------------
	menu_wrp
-------------------------------------------------------------*/
.menu_wrp {
  display: none;
}

@media screen and (max-width: 1030px) {
  .menu_wrp {
    /*display: block;*/
    display: none;
  }
  .menu_wrp .menu {
    width: 75px;
    height: 40px;
    background: none;
    color: #fff;
    text-align: center;
  }
  .menu_wrp .menu a {
    display: block;
    position: relative;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    text-align: right;
    padding-right: 35px;
  }
  .menu_wrp .nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
  .menu_wrp .nav .nav_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 140px;
    box-sizing: border-box;
  }
  .menu_wrp .nav .nav_container::-webkit-scrollbar {
    display: none;
  }
  .menu_wrp .navigation .localnav li {
    width: 100%;
    text-align: left;
    background: #fff;
    padding: 0;
  }
  .menu_wrp .navigation .localnav li a {
    position: relative;
    display: block;
    line-height: 50px;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    box-sizing: border-box;
  }
  .menu_wrp .navigation .localnav li a:hover {
    text-decoration: none;
  }
  .menu_wrp .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;
    transform: rotate(135deg);
  }
}
/* SP向けレイアウトの指定：～400px */
@media only screen and (max-width: 400px) {
  .menu_wrp .menu {
    width: 40px;
  }
  .menu_wrp .menu a {
    padding-right: 0;
    overflow: hidden;
    text-indent: 1000%;
    white-space: nowrap;
  }
}
/* for SP max-width: 400px */
/*-------------------------------------------------------------
	menu-trigger
-------------------------------------------------------------*/
@media screen and (max-width: 1030px) {
  .menu-trigger {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .menu-trigger span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .menu-trigger a {
    position: relative;
  }
  .menu-trigger span {
    position: absolute;
    right: 7px;
    width: 25px;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 10px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 10px;
  }
  /* animation */
  .active .menu-trigger span:nth-of-type(1) {
    top: 9px;
    transform: translateY(10px) rotate(-45deg);
  }
  .active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
    transform: translateY(0) rotate(45deg);
  }
  .active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}
/*===============================================================

  fixed_bnr

===============================================================*/
.fixed_bnr {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 600px;
  transition: transform 0.3s;
  transform: translateY(100px);
}
.jtele_page .fixed_bnr {
  display: none;
}
.fixed_bnr.show {
  transform: translateY(0);
}
.fixed_bnr .inner {
  position: relative;
}
.fixed_bnr .close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #ddd;
}
.fixed_bnr .close a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.fixed_bnr .close a:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 18px;
  background: #222;
  transform: rotate(45deg);
}
.fixed_bnr .close a:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 18px;
  background: #222;
  transform: rotate(-45deg);
}
.fixed_bnr .img a {
  position: relative;
  display: block;
}
.fixed_bnr .img a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 736px) {
  .fixed_bnr {
    width: 100%;
    transform: translateY(15vw);
  }
  .fixed_bnr .close {
    top: 2px;
    right: 2px;
    width: 6vw;
    height: 6vw;
  }
  .fixed_bnr .close a:before {
    width: 1px;
    height: 4vw;
  }
  .fixed_bnr .close a:after {
    width: 1px;
    height: 4vw;
  }
}/*# sourceMappingURL=style.css.map */