@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;
  padding-top: 130px;
}
@media screen and (max-width: 1400px) {
  .section_wrp {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1030px) {
  .section_wrp {
    padding-top: 103px;
  }
}
@media screen and (max-width: 736px) {
  .section_wrp {
    padding-top: 23.35vw;
  }
}

.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 + .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: 3vw;
  }
  .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;
  }
}

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

	thiscontents_nav

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

	linebtn

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

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

	sp_menu

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

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

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 70px;
}
.block + .block {
  margin-top: 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 {
  margin-bottom: 70px;
  padding-top: 70px;
  border-top: solid 2px #000;
}
.headline .title {
  font-size: 40px;
}
.headline .lead {
  font-size: 20px;
  line-height: 1.6;
}
.headline .title + .lead {
  margin-top: 15px;
}
.headline .lead + .title {
  margin-top: 10px;
}
.content * + .headline {
  margin-top: 100px;
}
@media screen and (max-width: 736px) {
  .headline {
    margin-bottom: 8vw;
    padding-top: 10vw;
    border-top: solid 1px #000;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .headline .lead {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 2vw;
  }
  .content * + .headline {
    margin-top: 10vw;
  }
}

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

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

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

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

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

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

	btn_detail

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

.btn_detail a {
  position: relative;
  display: block;
  background-color: #331362;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  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;
}

.btn_red a {
  background-color: #E93817;
}

.btn_purple a {
  background-color: #7D84C2;
}

@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;
  font-size: 1.4rem;
  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;
  font-size: 1.4rem;
  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: #331362;
}

@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: #000;
  background: #fff;
}
.select optgroup.area {
  color: #000;
  background: #eee;
}

/*	 セレクタの装飾 */
.select_wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #000;
  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: #000;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

.select_wrap.active {
  color: #fff;
  background-color: #331362;
}
.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;
  font-size: 1.4rem;
}
.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;
  font-size: 1.2rem;
  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;
  font-size: 1.2rem;
  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: #331362;
  color: #fff;
  font-size: 25px;
  font-size: 2.5rem;
  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-size: 1.8rem;
  font-weight: 700;
}
.schedule_list .program .channel {
  font-size: 14px;
  font-size: 1.4rem;
  color: #555;
  margin-top: 10px;
}
.schedule_list .program.program_link:hover {
  background: #f5f0fc;
}
.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: #ed6e2c;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  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 #ed6e2c;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid #ed6e2c;
  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 #000;
  }
  .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 #331362;
  background: #331362;
}
.schedule_list .competition_wrp .competition:hover::after {
  border-color: #fff;
}
.schedule_list .competition_wrp .competition .title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  padding-bottom: 5px;
}
.schedule_list .competition_wrp .competition .title a {
  color: #000;
  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: #f5f0fc;
  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;
  font-size: 1.4rem;
  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: #E93817 !important;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 1px solid #E93817;
  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: #000;
  font-size: 14px;
  font-size: 1.4rem;
  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: #000;
  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;
  font-size: 1.3rem;
  padding-left: 35px;
  background: url("/special/paralympics/paris/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/paralympics/paris/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;
  font-size: 1.3rem;
  background: none;
  padding: 0;
}
.competition_wrp .detail .announcer_commentary li .head {
  width: 3em;
  font-size: 13px;
  font-size: 1.3rem;
}
.competition_wrp .detail .announcer_commentary li p {
  width: calc(100% - 3em);
  font-size: 13px;
  font-size: 1.3rem;
}
.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/paralympics/paris/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;
  font-size: 1.3rem;
  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;
  font-size: 1.6rem;
}
.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: #000;
}
.schedule_list .suchedule_footer .btn_more a:hover {
  border: solid 1px #000;
  display: block;
  color: #fff;
  background: #000;
  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;
  font-size: 2.2rem;
  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;
  font-size: 1.4rem;
  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;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.js_add_app_modal .qr_code_wrp .desc .txt p {
  font-size: 14px;
  font-size: 1.4rem;
  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;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  background-color: #eee;
  color: #000;
  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: #000;
  transform: rotate(45deg);
}
.js_add_app_modal .close a:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 30px;
  background: #000;
  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;
  font-size: 2rem;
  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: #000;
  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: #000;
  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;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #eee;
  color: #000;
  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;
}

.bayon {
  font-family: "Bayon", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.farro {
  font-family: "Farro", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

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

	align

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

@media only 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;
  }
} /* for SP  */
/*===============================================================

	フロート関係

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

.clearboth {
  clear: both;
}

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

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

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

	PC/SP/TABLET

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

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

@media screen and (max-width: 1030px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
}
/* for tablet max-width: 1070px */
@media only screen and (max-width: 736px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
} /* for SP max-width: 800px */
/*===============================================================

	img fig

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

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

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

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

/* for tablet max-width: 1070px */
/* for SP max-width: 800px */
/*===============================================================

	マージン

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

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 1030px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mb40 {
    margin-bottom: 3.74vw;
  }
  .mb50 {
    margin-bottom: 4.67vw;
  }
}
/* for tablet max-width: 1070px */
@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;
  }
}
/* for SP max-width: 800px */
/*===============================================================

	fixed

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

	テーブル

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

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

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

.table td {
  color: #000;
}

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

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

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

@media only screen and (max-width: 736px) {
  .table {
    padding: 0;
    margin-top: 0px;
  }
  .table th,
  .table td {
    padding: 3vw;
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .table tr:nth-child(odd),
  .table tr:nth-child(even) {
    background: #fff;
  }
  .table_wrp_scroll {
    overflow-y: scroll;
  }
  .table_wrp_scroll .table {
    min-width: 200vw;
  }
}
/*===============================================================

	フォーム

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

    txtlink

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

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

	html body

===============================================================*/
html {
  font-size: 10px !important;
}
html.size_s {
  font-size: 10px !important;
}
html.size_l {
  font-size: 11.5px !important;
}
@media screen and (max-width: 1030px) {
  html {
    font-size: 10px !important;
  }
  html.size_s {
    font-size: 10px !important;
  }
  html.size_l {
    font-size: 10px !important;
  }
}
body.color {
  filter: grayscale(0%);
}
body.mono {
  filter: grayscale(100%);
}
body.webview_app .frame_header {
  display: none;
}
body.webview_app .thiscontents {
  margin-bottom: 0;
}
body.webview_app .nav_outer {
  position: fixed;
  top: 0;
}
body.webview_app .nav_outer .sns_wrp {
  display: none;
}
body.webview_app .l-footer {
  display: none;
}
body.webview_app .js_add_app_btn {
  display: none !important;
}
body.webview_app .rec_reserve_btn {
  display: none !important;
}
body.webview_app .fixed_bnr {
  display: none;
}

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

	frame_header

===============================================================*/
.frame_header {
  position: relative;
  z-index: 1;
}

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

	thiscontents

===============================================================*/
.thiscontents {
  color: #000;
  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: 2rem;
  line-height: 1.9;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  line-height: 15px;
}
.thiscontents 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;
}
.thiscontents .hover a {
  display: block;
}
.thiscontents .hover a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 736px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.9;
  }
}

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

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_teaser

===============================================================*/
.section_teaser {
  background: linear-gradient(90deg, #FBA9CB 0%, #61CFFF 100%);
}
.section_teaser .content {
  background-color: #fff;
  padding: 100px;
  text-align: center;
  border-radius: 20px;
}
.section_teaser .content p {
  font-size: 2rem;
  font-weight: 700;
}
.section_teaser .content p + p {
  margin-top: 1em;
}
@media screen and (max-width: 736px) {
  .section_teaser .section_inner {
    padding: 5vw;
  }
  .section_teaser .content {
    padding: 8vw;
    text-align: left;
  }
  .section_teaser .content p {
    font-size: 4.5vw;
  }
}

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

control_wrp

===============================================================*/
.control_wrp {
  position: absolute;
  z-index: 10;
  top: 130px;
  left: 0;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  padding: 20px 50px 0;
  /*-------------------------------------------------------------
  	locallink	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	change	
  -------------------------------------------------------------*/
}
.control_wrp.fixed {
  position: fixed;
}
@media screen and (max-width: 1400px) {
  .control_wrp {
    top: 110px;
    padding: 20px 20px 0;
  }
}
@media screen and (max-width: 1200px) {
  .control_wrp {
    right: 0;
    justify-content: center;
  }
}
@media screen and (max-width: 1030px) {
  .control_wrp {
    top: 103px;
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 736px) {
  .control_wrp {
    top: 23.35vw;
    justify-content: center;
    padding-top: 2vw;
  }
}
.control_wrp .locallink ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 40px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #D9D9D9;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.control_wrp .locallink li {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #000;
}
.control_wrp .locallink li a {
  position: relative;
  color: #000;
  text-decoration: none;
  padding-right: 23px;
}
.control_wrp .locallink li a:hover {
  color: #331362;
}
.control_wrp .locallink li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #A8B2DE;
  border-radius: 50%;
  transition: 0.3s;
}
.control_wrp .locallink li a:hover:before {
  background: #7D84C2;
}
.control_wrp .locallink li a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 6px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
.control_wrp .locallink li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 1400px) {
  .control_wrp .locallink ul {
    padding: 15px 30px;
  }
  .control_wrp .locallink li {
    font-size: 1.8rem;
    padding-right: 15px;
    margin-right: 15px;
  }
  .control_wrp .locallink li a:after {
    top: 8px;
  }
}
@media screen and (max-width: 736px) {
  .control_wrp .locallink ul {
    gap: 1vw;
    padding: 0;
    background: none;
    border-radius: none;
    border: none;
    box-shadow: none;
  }
  .control_wrp .locallink li {
    width: 48vw;
    font-size: 3.5vw;
    text-align: center;
    padding-right: 0;
    margin-right: 0;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .control_wrp .locallink li a {
    display: block;
    width: 100%;
    padding: 2vw 0;
  }
  .control_wrp .locallink li a:before {
    width: 3vw;
    height: 3vw;
    right: 2vw;
  }
  .control_wrp .locallink li a:after {
    top: 2.8vw;
    right: 2.9vw;
    width: 1vw;
    height: 1vw;
  }
  .control_wrp .locallink li:last-child {
    border-right: 1px solid #D9D9D9;
  }
}
.control_wrp .change {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.control_wrp .change .item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.control_wrp .change .item p {
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 600;
}
.control_wrp .change .item_size .link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.control_wrp .change .item_size .link:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
}
.control_wrp .change .item_size .link li {
  width: 26px;
  height: 26px;
  font-size: 1.9rem;
  line-height: 26px;
  text-align: center;
  font-weight: 600;
}
.control_wrp .change .item_size .link li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none;
}
.control_wrp .change .item_size .link li.active a {
  color: #fff;
  background: #000;
}
.control_wrp .change .item_color .link {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.control_wrp .change .item_color .link:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 29px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg);
}
.control_wrp .change .item_color .link li {
  width: 21px;
  height: 21px;
}
.control_wrp .change .item_color .link li a {
  display: block;
}
@media screen and (max-width: 1400px) {
  .control_wrp .change .item p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1200px) {
  .control_wrp .change {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .control_wrp .change {
    display: none;
  }
}

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

kv_wrp

===============================================================*/
.kv_wrp {
  position: relative;
  padding-bottom: 150px;
  background: url(../images/kv/bg.jpg) no-repeat top center/cover;
  /*-------------------------------------------------------------
  	title	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	logo	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	mainimg	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	fixed_sports_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	txt_amime_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	photo_anime_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	js_2step_skew_photo
  -------------------------------------------------------------*/
  /*===============================================================
  	js_2step_skew_photo_right
  ===============================================================*/
}
.kv_wrp .inner {
  overflow: hidden;
}
.kv_wrp .inner:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 250px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%, rgb(255, 255, 255) 100%);
  transform: rotate(5deg) translateY(-100px);
}
@media screen and (max-width: 1030px) {
  .kv_wrp .inner:after {
    height: 25vw;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%, rgb(255, 255, 255) 100%);
    transform: rotate(5deg) translateY(-10vw);
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp {
    padding-bottom: 30vw;
    background: url(../images/kv/bg_sp.jpg) no-repeat top 5vw center/cover;
  }
}
.kv_wrp .title {
  width: 100%;
  color: #fff;
  transform: rotate(-15deg) translateX(-5%);
}
.kv_wrp .title .sub {
  font-size: 1.6vw;
  line-height: 1.3;
  font-weight: 700;
  background: #D4C378;
  padding: 0.5vw 0;
  padding-left: 4em;
}
.kv_wrp .title .sub .l {
  font-size: 2vw;
}
.kv_wrp .title .sub .s {
  font-size: 1vw;
  margin-left: 1em;
}
.kv_wrp .title .sub .num {
  font-size: 2.24vw;
}
.kv_wrp .title .main {
  font-size: 3vw;
  line-height: 1.2;
  font-weight: 700;
  background: #E93817;
  padding: 0.5vw 0;
  padding-left: 4em;
}
.kv_wrp .title .main .s {
  display: block;
  font-size: 1.6vw;
  margin-left: -2em;
}
.kv_wrp .title .main .m {
  font-size: 2.2vw;
}
.kv_wrp .title .main .l {
  font-size: 3.5vw;
}
@media screen and (max-width: 1030px) {
  .kv_wrp .title {
    width: 120%;
    color: #fff;
    transform: rotate(-15deg) translateX(-7%) translateY(20%);
  }
  .kv_wrp .title .sub {
    font-size: 2vw;
  }
  .kv_wrp .title .sub .l {
    font-size: 2.2vw;
  }
  .kv_wrp .title .sub .s {
    font-size: 1.2vw;
  }
  .kv_wrp .title .sub .num {
    font-size: 2.5vw;
  }
  .kv_wrp .title .main {
    font-size: 3.8vw;
  }
  .kv_wrp .title .main .s {
    font-size: 2.2vw;
  }
  .kv_wrp .title .main .m {
    font-size: 2.8vw;
  }
  .kv_wrp .title .main .l {
    font-size: 4vw;
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp .title {
    width: 130%;
    color: #fff;
    transform: rotate(-15deg) translateX(-9%) translateY(65%);
  }
  .kv_wrp .title .sub {
    font-size: 4vw;
    padding: 1vw 0;
    padding-left: 2em;
  }
  .kv_wrp .title .sub .l {
    font-size: 4.4vw;
  }
  .kv_wrp .title .sub .s {
    font-size: 2.4vw;
  }
  .kv_wrp .title .sub .num {
    font-size: 5vw;
  }
  .kv_wrp .title .main {
    font-size: 6.4vw;
    padding: 2vw 0;
    padding-left: 4em;
  }
  .kv_wrp .title .main .s {
    font-size: 4vw;
  }
  .kv_wrp .title .main .m {
    font-size: 5.2vw;
  }
  .kv_wrp .title .main .l {
    font-size: 7vw;
  }
}
.kv_wrp .logo {
  position: absolute;
  z-index: 2;
  top: 100px;
  right: 50px;
  width: 18vw;
  filter: drop-shadow(0 0 100px #fff);
}
@media screen and (max-width: 1030px) {
  .kv_wrp .logo {
    top: 12vw;
    right: 3vw;
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp .logo {
    top: 47vw;
    right: 5vw;
    width: 30vw;
  }
}
@keyframes kv_animation {
  0% {
    opacity: 0;
    transform: scale(1.3);
    filter: blur(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
  }
}
.kv_wrp .mainimg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 71.125vw;
  margin-top: 2vw;
  opacity: 0;
  animation: kv_animation 1s ease 0s forwards;
}
@media screen and (max-width: 1030px) {
  .kv_wrp .mainimg {
    margin-top: 7vw;
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp .mainimg {
    margin-top: 27vw;
    height: 90.5vw;
  }
}
.kv_wrp .fixed_sports_wrp {
  position: fixed;
  z-index: 1000;
  top: auto;
  bottom: 0;
  right: 0;
  width: 40%;
  transition: opacity 0.3s;
}
.kv_wrp .fixed_sports_wrp.hide {
  opacity: 0;
  pointer-events: none;
}
.kv_wrp .fixed_sports_wrp a {
  text-decoration: none;
  transition: 0.3s;
}
.kv_wrp .fixed_sports_wrp .head {
  color: #A8B2DE;
  font-size: 1.6vw;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  background: #331362;
  padding: 0.4vw;
  border-radius: 0.8vw 0 0 0;
}
.kv_wrp .fixed_sports_wrp .head .l {
  font-size: 2.5vw;
}
.kv_wrp .fixed_sports_wrp .head_l {
  font-size: 2vw;
  padding: 0.7vw;
}
.kv_wrp .fixed_sports_wrp .list {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3.5%;
  background: linear-gradient(0deg, #7E84BD 0%, #AAB3DA 100%);
  padding: 1vw;
}
.kv_wrp .fixed_sports_wrp .list:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1vw;
  margin: auto;
  width: 1.8vw;
  height: 1.8vw;
  border: 1px solid #fff;
  border-radius: 50%;
}
.kv_wrp .fixed_sports_wrp .list:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.8vw;
  margin: auto;
  width: 0.4vw;
  height: 0.4vw;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
.kv_wrp .fixed_sports_wrp .list .item {
  width: 44%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.kv_wrp .fixed_sports_wrp .list .item .photo {
  width: 38%;
  height: 6vw;
}
.kv_wrp .fixed_sports_wrp .list .item .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 6vw;
}
.kv_wrp .fixed_sports_wrp .list .item p {
  width: 58%;
  color: #fff;
  font-size: 1.2vw;
  line-height: 1.5;
  font-weight: 700;
  white-space: normal;
}
.kv_wrp .fixed_sports_wrp .list_3column {
  align-items: flex-start;
}
.kv_wrp .fixed_sports_wrp .list_3column .item {
  width: 28%;
  display: block;
}
.kv_wrp .fixed_sports_wrp .list_3column .item .photo {
  width: 100%;
  height: 6vw;
}
.kv_wrp .fixed_sports_wrp .list_3column .item .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 6vw;
}
.kv_wrp .fixed_sports_wrp .list_3column .item p {
  width: 100%;
  text-align: center;
  margin-top: 0.5vw;
}
@media screen and (max-width: 736px) {
  .kv_wrp .fixed_sports_wrp {
    position: static;
    width: calc(100% - 10vw);
    margin: 0 auto;
    margin-top: 6vw;
  }
  .kv_wrp .fixed_sports_wrp.hide {
    opacity: 1;
    pointer-events: auto;
  }
  .kv_wrp .fixed_sports_wrp .head {
    color: #A8B2DE;
    font-size: 4vw;
    background: #331362;
    padding: 2vw;
    border-radius: 3vw 3vw 0 0;
  }
  .kv_wrp .fixed_sports_wrp .head .l {
    font-size: 6vw;
  }
  .kv_wrp .fixed_sports_wrp .head_l {
    font-size: 4.5vw;
  }
  .kv_wrp .fixed_sports_wrp .list {
    gap: 3.5%;
    background: #E0E2F8;
    padding: 3vw;
    border-radius: 0 0 3vw 3vw;
  }
  .kv_wrp .fixed_sports_wrp .list:before {
    right: 2vw;
    width: 4vw;
    height: 4vw;
    border: 1px solid #331362;
  }
  .kv_wrp .fixed_sports_wrp .list:after {
    right: 3.8vw;
    width: 0.8vw;
    height: 0.8vw;
    border-bottom: solid 1px #331362;
    border-right: solid 1px #331362;
  }
  .kv_wrp .fixed_sports_wrp .list .item {
    width: 45%;
  }
  .kv_wrp .fixed_sports_wrp .list .item .photo {
    width: 38%;
    height: 12vw;
  }
  .kv_wrp .fixed_sports_wrp .list .item .photo img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 12vw;
  }
  .kv_wrp .fixed_sports_wrp .list .item p {
    color: #331362;
    width: 58%;
    font-size: 3.5vw;
    line-height: 1.3;
  }
  .kv_wrp .fixed_sports_wrp .list_3column .item {
    width: 28.5%;
    display: block;
  }
  .kv_wrp .fixed_sports_wrp .list_3column .item .photo {
    width: 100%;
    height: 12vw;
  }
  .kv_wrp .fixed_sports_wrp .list_3column .item .photo img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 12vw;
  }
  .kv_wrp .fixed_sports_wrp .list_3column .item p {
    width: 100%;
    margin-top: 2vw;
  }
}
.kv_wrp .txt_amime_wrp {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 70px;
  font-feature-settings: normal;
}
.kv_wrp .txt_amime_wrp p {
  font-size: 2.8rem;
  line-height: 1.7;
  font-weight: 700;
}
.kv_wrp .txt_amime_wrp p + p {
  margin-top: 2em;
}
.kv_wrp .txt_amime_wrp .num {
  font-size: 3rem;
}
.kv_wrp .txt_amime_wrp .l {
  font-size: 3.1rem;
}
.kv_wrp .txt_amime_wrp .l .l {
  font-size: 5.3rem;
  font-weight: 800;
}
@media screen and (max-width: 1030px) {
  .kv_wrp .txt_amime_wrp p {
    font-size: 2.8vw;
  }
  .kv_wrp .txt_amime_wrp .num {
    font-size: 3vw;
  }
  .kv_wrp .txt_amime_wrp .l {
    font-size: 3.1vw;
  }
  .kv_wrp .txt_amime_wrp .l .l {
    font-size: 5.3vw;
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp .txt_amime_wrp {
    width: calc(100% - 10vw);
    margin-top: 7vw;
  }
  .kv_wrp .txt_amime_wrp p {
    font-size: 3.8vw;
  }
  .kv_wrp .txt_amime_wrp p + p {
    margin-top: 1.5em;
  }
  .kv_wrp .txt_amime_wrp .num {
    font-size: 4.07vw;
  }
  .kv_wrp .txt_amime_wrp .l {
    font-size: 4.2vw;
  }
  .kv_wrp .txt_amime_wrp .l .l {
    font-size: 7.2vw;
  }
}
.kv_wrp .photo_anime_wrp .photo_top_right {
  position: absolute;
  bottom: 10%;
  right: -1vw;
}
.kv_wrp .photo_anime_wrp .photo_bottom_left {
  position: absolute;
  bottom: -1%;
  left: -1vw;
}
@media screen and (max-width: 1200px) {
  .kv_wrp .photo_anime_wrp .photo_bottom_left {
    bottom: -6%;
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp .photo_anime_wrp .photo_top_right {
    bottom: -6%;
    right: 2vw;
  }
  .kv_wrp .photo_anime_wrp .photo_bottom_left {
    bottom: -3%;
    left: 2vw;
  }
}
.kv_wrp .js_2step_skew_photo, .kv_wrp .js_2step_skew_photo_right {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 20vw;
  height: 20vw;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: skew(-10deg, -15deg) !important;
  overflow: hidden;
}
.kv_wrp .js_2step_skew_photo::before, .kv_wrp .js_2step_skew_photo_right::before, .kv_wrp .js_2step_skew_photo::after, .kv_wrp .js_2step_skew_photo_right::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #331362;
  transform-origin: 0 0;
  transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  z-index: 2;
}
.kv_wrp .js_2step_skew_photo::after, .kv_wrp .js_2step_skew_photo_right::after {
  background-color: #7D84C2;
}
.kv_wrp .js_2step_skew_photo.is_active::before, .kv_wrp .is_active.js_2step_skew_photo_right::before, .kv_wrp .js_2step_skew_photo.is_active::after, .kv_wrp .is_active.js_2step_skew_photo_right::after {
  transform-origin: 0 right;
}
.kv_wrp .js_2step_skew_photo.is_active::after, .kv_wrp .is_active.js_2step_skew_photo_right::after {
  left: auto;
  right: 0;
  width: 0%;
}
.kv_wrp .js_2step_skew_photo.is_active::before, .kv_wrp .is_active.js_2step_skew_photo_right::before {
  transition-delay: 0.5s;
  left: auto;
  right: 0;
  width: 0%;
}
.kv_wrp .js_2step_skew_photo .photo, .kv_wrp .js_2step_skew_photo_right .photo {
  transform: skew(10deg, 15deg) scale(1.5);
}
@media screen and (max-width: 1200px) {
  .kv_wrp .js_2step_skew_photo, .kv_wrp .js_2step_skew_photo_right {
    width: 18vw;
    height: 18vw;
  }
}
@media screen and (max-width: 1030px) {
  .kv_wrp .js_2step_skew_photo, .kv_wrp .js_2step_skew_photo_right {
    width: 18vw;
    height: 18vw;
  }
}
@media screen and (max-width: 736px) {
  .kv_wrp .js_2step_skew_photo, .kv_wrp .js_2step_skew_photo_right {
    transform: skew(-10deg, 0deg) !important;
    width: 48vw;
    height: 30vw;
  }
  .kv_wrp .js_2step_skew_photo .photo, .kv_wrp .js_2step_skew_photo_right .photo {
    transform: skew(10deg, 0deg) scale(1.2);
  }
}
.kv_wrp .js_2step_skew_photo_right.is_active::before, .kv_wrp .js_2step_skew_photo_right.is_active::after {
  transform-origin: 0 left;
}
.kv_wrp .js_2step_skew_photo_right.is_active::after {
  left: 0;
  right: auto;
}
.kv_wrp .js_2step_skew_photo_right.is_active::before {
  left: 0;
  right: auto;
}

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

section_box

===============================================================*/
.section_box {
  background-image: url(../images/jtele_bg.png), url(../images/section_box_bg.jpg);
  background-repeat: no-repeat, repeat-y;
  background-position: bottom center, top center;
  background-size: 100% auto, 100% auto;
  background-blend-mode: multiply;
  /* for tablet max-width: 1600px */
}
@media screen and (max-width: 1600px) {
  .section_box {
    background-size: 1600px auto, 1600px auto;
  }
}
@media screen and (max-width: 736px) {
  .section_box {
    background-image: url(../images/jtele_bg_sp.png), url(../images/section_box_bg_sp.jpg);
    background-size: 100% auto, 100% auto;
  }
}

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

section_sports

===============================================================*/
.section_sports {
  background: url(../images/illust_bg_01.png) no-repeat top left/600px auto;
  /*-------------------------------------------------------------
  	title_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	list_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	list_wrp sports_box	anime
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	list_wrp sports_box	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	list_wrp sports_list	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	list_wrp player_list	
  -------------------------------------------------------------*/
}
@media screen and (max-width: 736px) {
  .section_sports {
    background-image: url(../images/illust_bg_sp_01.png), url(../images/illust_bg_sp_02.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top left, bottom right -10vw;
    background-size: 50vw auto, 100vw auto;
  }
  .section_sports .section_inner {
    padding-top: 25vw;
  }
}
.section_sports .title_wrp .head_wrp {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  transform: skew(-7deg);
}
.section_sports .title_wrp .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_sports .title_wrp .head_wrp:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_sports .title_wrp .head_wrp .head {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: skew(7deg);
}
.section_sports .title_wrp .title {
  margin-top: 10px;
  font-size: 5.3rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.section_sports .title_wrp .title .l {
  font-size: 6.7rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_sports .title_wrp .desc {
  text-align: center;
  margin-top: 20px;
}
.section_sports .title_wrp .desc a {
  color: #0047FF;
  text-decoration: underline;
}
.section_sports .title_wrp .desc a:hover {
  text-decoration: none;
}
@media screen and (max-width: 736px) {
  .section_sports .title_wrp .head_wrp {
    width: 100%;
    margin: 0 auto;
    padding: 1.5vw;
  }
  .section_sports .title_wrp .head_wrp:before {
    width: 1vw;
  }
  .section_sports .title_wrp .head_wrp:after {
    width: 1vw;
  }
  .section_sports .title_wrp .head_wrp .head {
    font-size: 4vw;
  }
  .section_sports .title_wrp .title {
    flex-direction: column;
    margin-top: 2vw;
  }
  .section_sports .title_wrp .title span {
    font-size: 10vw;
    line-height: 1.2;
  }
  .section_sports .title_wrp .title {
    margin-top: 2vw;
    font-size: 6vw;
  }
  .section_sports .title_wrp .title .l {
    font-size: 8vw;
    line-height: 1.2;
  }
  .section_sports .title_wrp .desc {
    text-align: left;
    margin-top: 4vw;
  }
}
.section_sports .list_wrp + .list_wrp {
  margin-top: 150px;
}
.section_sports .list_wrp .subtitle_wrp {
  position: relative;
}
.section_sports .list_wrp .subtitle_wrp .sub {
  position: relative;
  z-index: 2;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding-bottom: 10px;
}
.section_sports .list_wrp .subtitle_wrp .title {
  position: relative;
  z-index: 2;
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_sports .list_wrp .subtitle_wrp .en {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: auto;
  /* width: -moz-fit-content;
  width: fit-content; */
  margin: auto calc(50% - 50vw) auto;
  margin-top: -0.25em;
  color: #A8B2DE;
  font-size: 16rem;
  line-height: 1;
  text-align: center;
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section_sports .list_wrp .subtitle_wrp .en .s {
  font-size: 14.8rem;
}
@media screen and (max-width: 736px) {
  .section_sports .list_wrp + .list_wrp {
    margin-top: 20vw;
  }
  .section_sports .list_wrp .subtitle_wrp {
    position: relative;
  }
  .section_sports .list_wrp .subtitle_wrp .sub {
    font-size: 4vw;
    padding-bottom: 2vw;
  }
  .section_sports .list_wrp .subtitle_wrp .title {
    font-size: 7vw;
  }
  .section_sports .list_wrp .subtitle_wrp .en {
    font-size: 18vw;
  }
  .section_sports .list_wrp .subtitle_wrp .en .s {
    font-size: 16.5vw;
  }
  .section_sports .list_wrp .subtitle_wrp .en2 {
    margin-top: -0.75em;
  }
}
@keyframes sports_bg_arw_anime {
  0% {
    transform: translateX(130px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes sports_bg_arw_anime2 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(130px);
  }
}
@media screen and (max-width: 736px) {
  @keyframes sports_bg_arw_anime {
    0% {
      transform: translateX(19.5vw);
    }
    100% {
      transform: translateX(0px);
    }
  }
  @keyframes sports_bg_arw_anime2 {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(19.5vw);
    }
  }
}
.section_sports .list_wrp .sports_box {
  position: relative;
  margin-top: 100px;
}
.section_sports .list_wrp .sports_box .bg {
  position: absolute;
  left: -100vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 200vw;
  height: 300px;
  background: url(../images/sports_bg.png) repeat-x center/auto 300px;
}
.section_sports .list_wrp .sports_box .bg .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.section_sports .list_wrp .sports_box .bg .inner:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  width: 200vw;
  height: 173px;
  background: url(../images/sports_bg_arw.png) repeat-x center/130px 173px;
  mix-blend-mode: multiply;
  opacity: 0.5;
  animation: sports_bg_arw_anime 4s linear 0s infinite;
}
.section_sports .list_wrp .sports_box .bg .inner:after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  right: 0;
  width: 200vw;
  height: 173px;
  background: url(../images/sports_bg_arw2.png) repeat-x center/130px 173px;
  mix-blend-mode: multiply;
  opacity: 0.5;
  animation: sports_bg_arw_anime2 4s linear 0s infinite;
}
@media screen and (max-width: 736px) {
  .section_sports .list_wrp .sports_box {
    margin-top: 10vw;
  }
  .section_sports .list_wrp .sports_box .bg {
    height: 120vw;
    background: url(../images/sports_bg_sp.png) repeat-x center/auto 120vw;
  }
  .section_sports .list_wrp .sports_box .bg .inner:before {
    top: -20vw;
    height: 25.95vw;
    background: url(../images/sports_bg_arw.png) repeat-x center/19.5vw 25.95vw;
  }
  .section_sports .list_wrp .sports_box .bg .inner:after {
    bottom: -20vw;
    height: 25.95vw;
    background: url(../images/sports_bg_arw2.png) repeat-x center/19.5vw 25.95vw;
  }
}
.section_sports .list_wrp .sports_list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 calc(50% - 50vw) 0;
}
.section_sports .list_wrp .sports_list + .sports_list {
  margin-top: 50px;
}
.section_sports .list_wrp .sports_list .item {
  width: 200px;
  will-change: transform;
  transform: skew(-7deg);
}
.section_sports .list_wrp .sports_list .item.item_deactive a {
  pointer-events: none;
}
.section_sports .list_wrp .sports_list .item.item_deactive .name {
  padding-right: 0;
}
.section_sports .list_wrp .sports_list .item.item_deactive .name:before {
  display: none;
}
.section_sports .list_wrp .sports_list .item.item_deactive .name:after {
  display: none;
}
.section_sports .list_wrp .sports_list .item a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  background: #7D84C2;
  border: 3px solid #7D84C2;
  padding-bottom: 10px;
}
.section_sports .list_wrp .sports_list .item a:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #7D84C2 0%, #E1E4FF 30%, #E1E4FF 80%, #7D84C2 100%);
}
.section_sports .list_wrp .sports_list .item .img {
  position: relative;
  overflow: hidden;
}
.section_sports .list_wrp .sports_list .item .img img {
  aspect-ratio: 800/663;
  will-change: transform;
  transform: skew(7deg) scale(1.1);
}
.section_sports .list_wrp .sports_list .item .img .num {
  display: none;
  position: absolute;
  z-index: 1;
  top: -2px;
  right: 15px;
  color: #E1E4FF;
  font-size: 4.8rem;
  line-height: 1;
  will-change: transform;
  transform: skew(7deg);
  pointer-events: none;
}
.section_sports .list_wrp .sports_list .item .name {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding-right: 21px;
  margin-top: 10px;
  will-change: transform;
  transform: skew(7deg);
}
.section_sports .list_wrp .sports_list .item .name:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 50%;
}
.section_sports .list_wrp .sports_list .item .name:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 0;
  bottom: 0;
  left: auto;
  right: 8px;
  margin: auto;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .section_sports .list_wrp .sports_list .item {
    width: 17vw;
  }
  .section_sports .list_wrp .sports_list .item .img .num {
    font-size: 3.5vw;
  }
  .section_sports .list_wrp .sports_list .item .name {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 736px) {
  .section_sports .list_wrp .sports_list {
    justify-content: flex-start;
    gap: 5vw;
    margin: 0;
    padding: 0 3vw;
  }
  .section_sports .list_wrp .sports_list + .sports_list {
    margin-top: 5vw;
  }
  .section_sports .list_wrp .sports_list .item {
    width: calc((100% - 5vw) / 2);
  }
  .section_sports .list_wrp .sports_list .item a {
    border: 2px solid #7D84C2;
    padding-bottom: 2vw;
  }
  .section_sports .list_wrp .sports_list .item a:before {
    top: -2px;
    right: -2px;
    height: 2px;
  }
  .section_sports .list_wrp .sports_list .item .img .num {
    top: -1vw;
    right: 2vw;
    font-size: 10vw;
  }
  .section_sports .list_wrp .sports_list .item .name {
    font-size: 4vw;
    padding-right: 4vw;
    margin-top: 2vw;
  }
  .section_sports .list_wrp .sports_list .item .name:before {
    width: 3vw;
    height: 3vw;
  }
  .section_sports .list_wrp .sports_list .item .name:after {
    width: 1vw;
    height: 1vw;
    right: 1.4vw;
  }
}
.section_sports .list_wrp .player_list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 0 calc(50% - 50vw) 0;
}
.section_sports .list_wrp .player_list + .player_list {
  margin-top: 50px;
}
.section_sports .list_wrp .player_list .item {
  width: 170px;
  will-change: transform;
  transform: skew(-7deg);
}
.section_sports .list_wrp .player_list .item a {
  display: block;
  text-decoration: none;
}
.section_sports .list_wrp .player_list .item .img {
  position: relative;
  overflow: hidden;
}
.section_sports .list_wrp .player_list .item .img img {
  aspect-ratio: 40/47;
  will-change: transform;
  transform: skew(7deg) scale(1.15);
}
.section_sports .list_wrp .player_list .item .tag {
  position: relative;
  z-index: 1;
  width: calc(100% + 10px);
  padding: 5px;
  background: #7D84C2;
  margin-top: -10px;
  margin-left: -20px;
}
.section_sports .list_wrp .player_list .item .tag span {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  will-change: transform;
  transform: skew(7deg);
}
.section_sports .list_wrp .player_list .item .name {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #331362;
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: 700;
  padding-right: 21px;
  margin-top: 5px;
  will-change: transform;
  transform: skew(7deg);
}
.section_sports .list_wrp .player_list .item .name:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #331362;
  border-radius: 50%;
}
.section_sports .list_wrp .player_list .item .name:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 0;
  bottom: 0;
  left: auto;
  right: 8px;
  margin: auto;
  border-top: solid 1px #331362;
  border-right: solid 1px #331362;
  transform: rotate(45deg);
}
.section_sports .list_wrp .player_list .item_deactive a {
  pointer-events: none;
}
.section_sports .list_wrp .player_list .item_deactive .name:before, .section_sports .list_wrp .player_list .item_deactive .name:after {
  display: none;
}
@media screen and (max-width: 1400px) {
  .section_sports .list_wrp .player_list .item {
    width: 12vw;
  }
}
@media screen and (max-width: 1200px) {
  .section_sports .list_wrp .player_list {
    gap: 2vw;
  }
  .section_sports .list_wrp .player_list .item {
    width: 14vw;
  }
  .section_sports .list_wrp .player_list .item .tag span {
    font-size: 1.2vw;
  }
  .section_sports .list_wrp .player_list .item .name {
    font-size: 2vw;
  }
}
@media screen and (max-width: 736px) {
  .section_sports .list_wrp .player_list {
    justify-content: flex-start;
    gap: 5vw 8vw;
    margin: 0;
    padding: 0 3vw;
    padding-left: 6vw;
  }
  .section_sports .list_wrp .player_list + .player_list {
    margin-top: 5vw;
  }
  .section_sports .list_wrp .player_list .item {
    width: calc((100% - 8vw) / 2);
  }
  .section_sports .list_wrp .player_list .item .tag {
    width: calc(100% + 2vw);
    padding: 1vw;
    margin-top: -2vw;
    margin-left: -4vw;
  }
  .section_sports .list_wrp .player_list .item .tag span {
    font-size: 3.5vw;
  }
  .section_sports .list_wrp .player_list .item .name {
    font-size: 5vw;
    padding-right: 4vw;
    margin-top: 1vw;
  }
  .section_sports .list_wrp .player_list .item .name:before {
    width: 3vw;
    height: 3vw;
  }
  .section_sports .list_wrp .player_list .item .name:after {
    width: 1vw;
    height: 1vw;
    right: 1.4vw;
  }
}

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

section_about

===============================================================*/
.section_about {
  /*-------------------------------------------------------------
  	about	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	about img
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	about txt	head_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	about txt	list
  -------------------------------------------------------------*/
}
@media screen and (max-width: 736px) {
  .section_about .section_inner {
    padding-top: 20vw;
  }
}
.section_about .about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 70px;
}
.section_about .about .img {
  position: relative;
  width: 48%;
}
.section_about .about .txt {
  width: 48%;
}
@media screen and (max-width: 1200px) {
  .section_about .about {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 736px) {
  .section_about .about {
    width: calc(100% - 10vw);
    margin: 0 auto;
    flex-direction: column;
  }
  .section_about .about .img {
    width: 100%;
    margin-top: 10vw;
  }
  .section_about .about .txt {
    display: contents;
    width: 100%;
  }
}
.section_about .about .img {
  position: relative;
}
.section_about .about .img .img_skew img {
  -webkit-clip-path: polygon(13% 0%, 100% 0%, 87% 100%, 0% 100%);
          clip-path: polygon(13% 0%, 100% 0%, 87% 100%, 0% 100%);
}
.section_about .about .img .mc {
  position: relative;
  width: 75%;
}
.section_about .about .img .mc .desc {
  color: #fff;
  margin-top: -50px;
  margin-left: -30px;
}
.section_about .about .img .mc .sub {
  position: absolute;
  bottom: 26px;
  left: -30px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 15px;
  background: #7D84C2;
  transform: skew(-7deg);
}
.section_about .about .img .mc .sub .inner {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
  transform: skew(7deg);
}
.section_about .about .img .mc .name {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  background: #7D84C2;
  transform: skew(-7deg);
}
.section_about .about .img .mc .name .inner {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
  transform: skew(7deg);
}
.section_about .about .img .comment {
  width: 25%;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
}
.section_about .about .img .comment .inner {
  position: relative;
}
.section_about .about .img .comment .sub {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  margin-left: auto;
  margin-right: 40px;
  background: #331362;
  transform: skew(-7deg);
}
.section_about .about .img .comment .sub .inner {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  transform: skew(7deg);
}
.section_about .about .img .comment .sub2 {
  margin-left: auto;
  margin-right: 0;
}
.section_about .about .img .comment .items {
  margin-top: -10px;
}
.section_about .about .img .comment .item .img_skew {
  width: 90%;
}
.section_about .about .img .comment .item .name {
  width: 90px;
  margin-left: auto;
  margin-right: 0;
  margin-top: -15px;
  padding: 5px 0;
  background: #331362;
  transform: skew(-7deg);
}
.section_about .about .img .comment .item .name .inner {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: skew(7deg);
}
.section_about .about .img .comment .items_cs .item .name {
  opacity: 0;
}
.section_about .about .img .comment .item + .item {
  margin-top: 10px;
}
.section_about .about .img .comment .item_1 .box {
  transform: translateX(-50px);
}
.section_about .about .img .comment .item_2 .box {
  transform: translateX(-70px);
}
.section_about .about .img .comment .item_3 .box {
  transform: translateX(-90px);
}
@media screen and (max-width: 1200px) {
  .section_about .about .img .comment {
    width: 100%;
    position: static;
    color: #fff;
    margin-top: 30px;
  }
  .section_about .about .img .comment .inner {
    position: relative;
  }
  .section_about .about .img .comment .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  .section_about .about .img .comment .item {
    width: 32%;
  }
  .section_about .about .img .comment .item .img_skew {
    width: 100%;
  }
  .section_about .about .img .comment .item + .item {
    margin-top: 0;
  }
  .section_about .about .img .comment .item_1 .box {
    transform: none;
  }
  .section_about .about .img .comment .item_2 .box {
    transform: none;
  }
  .section_about .about .img .comment .item_3 .box {
    transform: none;
  }
}
@media screen and (max-width: 736px) {
  .section_about .about .img .mc {
    width: 100%;
    margin: 0 auto;
  }
  .section_about .about .img .mc .desc {
    margin: 0;
  }
  .section_about .about .img .mc .sub {
    position: absolute;
    top: -2vw;
    bottom: auto;
    left: 8vw;
    padding: 1.5vw 4vw;
  }
  .section_about .about .img .mc .sub .inner {
    font-size: 4vw;
    font-weight: 700;
  }
  .section_about .about .img .mc .name {
    position: absolute;
    bottom: -2vw;
    left: auto;
    right: 6vw;
    padding: 2vw 6vw;
  }
  .section_about .about .img .mc .name .inner {
    font-size: 5.5vw;
  }
  .section_about .about .img .comment {
    margin-top: 8vw;
  }
  .section_about .about .img .comment .sub {
    display: none;
  }
  .section_about .about .img .comment .sub_sp {
    width: 80%;
    margin: 0 auto;
    padding: 1.5vw;
    background: #331362;
    transform: skew(-7deg);
  }
  .section_about .about .img .comment .sub_sp .inner {
    display: block;
    font-size: 4vw;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    transform: skew(7deg);
  }
  .section_about .about .img .comment .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 3vw;
  }
  .section_about .about .img .comment .item {
    width: 32%;
  }
  .section_about .about .img .comment .item .name {
    width: 90%;
    padding: 1.5vw;
    margin-top: -2vw;
  }
  .section_about .about .img .comment .item .name .inner {
    display: block;
    font-size: 3.5vw;
  }
}
.section_about .about .txt .head_wrp {
  position: relative;
  padding-left: 40px;
}
.section_about .about .txt .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(0deg, #7E84BD 0%, #2F155E 100%);
  border-left: 3px solid #7D84C2;
  transform: skew(-7deg);
}
.section_about .about .txt .head_wrp .sub {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.section_about .about .txt .head_wrp .head {
  margin-top: 5px;
}
.section_about .about .txt .head_wrp .head span {
  background: linear-gradient(0deg, #7E84BD 0%, #2F155E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.8rem;
  line-height: 1.3;
  font-weight: 800;
}
@media screen and (max-width: 736px) {
  .section_about .about .txt .head_wrp {
    order: -1;
    position: relative;
    text-align: center;
    padding-left: 0;
  }
  .section_about .about .txt .head_wrp:before {
    display: none;
  }
  .section_about .about .txt .head_wrp .sub {
    font-size: 3.8vw;
    line-height: 1.4;
  }
  .section_about .about .txt .head_wrp .head {
    margin-top: 1vw;
  }
  .section_about .about .txt .head_wrp .head span {
    font-size: 8vw;
  }
  .section_about .about .txt .head_wrp .head .l {
    display: block;
    font-size: 10vw;
  }
  .section_about .about .txt .head_wrp .en {
    position: absolute;
    z-index: 1;
    inset: 0;
    margin: auto;
    margin: auto calc(50% - 50vw) auto;
    margin-top: -0.2em;
    color: #A8B2DE;
    font-size: 16vw;
    line-height: 1;
    text-align: center;
    opacity: 0.15;
    mix-blend-mode: multiply;
    pointer-events: none;
  }
}
.section_about .about .txt .list {
  margin-top: 50px;
}
.section_about .about .txt .list .item .head {
  color: #331362;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  padding-left: 30px;
}
.section_about .about .txt .list .item .head_ov {
  background: url(../images/about_icon_ov.svg) no-repeat left center/20px auto;
}
.section_about .about .txt .list .item .head_date {
  background: url(../images/about_icon_date.svg) no-repeat left center/20px auto;
}
.section_about .about .txt .list .item .head_howto {
  background: url(../images/about_icon_howto.svg) no-repeat left 2px center/16px auto;
}
.section_about .about .txt .list .item p {
  line-height: 1.6;
  margin-top: 5px;
}
.section_about .about .txt .list .item .link {
  line-height: 1.6;
  margin-top: 5px;
}
.section_about .about .txt .list .item .link a {
  position: relative;
  color: #000;
  text-decoration: none;
  padding-right: 23px;
}
.section_about .about .txt .list .item .link a:hover {
  color: #331362;
}
.section_about .about .txt .list .item .link a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #A8B2DE;
  border-radius: 50%;
  transition: 0.3s;
}
.section_about .about .txt .list .item .link a:hover:before {
  background: #7D84C2;
}
.section_about .about .txt .list .item .link a:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 6px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}
.section_about .about .txt .list .item .link + .link {
  margin-top: 0;
}
.section_about .about .txt .list .item + .item {
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  .section_about .about .txt .list {
    margin-top: 5vw;
  }
  .section_about .about .txt .list .item .head {
    font-size: 4vw;
    padding-left: 6vw;
  }
  .section_about .about .txt .list .item .head_ov {
    background: url(../images/about_icon_ov.svg) no-repeat left center/4vw auto;
  }
  .section_about .about .txt .list .item .head_date {
    background: url(../images/about_icon_date.svg) no-repeat left center/4vw auto;
  }
  .section_about .about .txt .list .item .head_howto {
    background: url(../images/about_icon_howto.svg) no-repeat left 0.5vw center/3vw auto;
  }
  .section_about .about .txt .list .item p {
    margin-top: 1vw;
  }
  .section_about .about .txt .list .item .link {
    width: 80%;
    margin-top: 2vw;
  }
  .section_about .about .txt .list .item .link a {
    display: block;
    padding: 1vw 2vw;
    background: #fff;
    border-radius: 1vw;
  }
  .section_about .about .txt .list .item .link a:hover {
    color: #331362;
  }
  .section_about .about .txt .list .item .link a:before {
    right: 2vw;
    width: 4vw;
    height: 4vw;
  }
  .section_about .about .txt .list .item .link a:hover:before {
    background: #7D84C2;
  }
  .section_about .about .txt .list .item .link a:after {
    top: 3vw;
    right: 3.5vw;
    width: 1vw;
    height: 1vw;
  }
  .section_about .about .txt .list .item .link + .link {
    margin-top: 2vw;
  }
  .section_about .about .txt .list .item + .item {
    margin-top: 4vw;
  }
}

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

  section_activity

===============================================================*/
.section_activity {
  background: url(../images/illust_bg_02.png) no-repeat center right/700px auto;
  background-blend-mode: multiply;
  /*-------------------------------------------------------------
    activity	
  -------------------------------------------------------------*/
}
@media screen and (max-width: 736px) {
  .section_activity {
    background-image: url(../images/illust_bg_sp_03.png), url(../images/illust_bg_sp_04.png);
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom -18vw left;
    background-size: 65vw auto, 60vw auto;
  }
  .section_activity .section_inner {
    padding-top: 25vw;
    padding-bottom: 25vw;
  }
}
.section_activity .activity {
  position: relative;
  background: #fff;
  border: 1px solid #B3872C;
  padding: 40px;
  transform: skew(-7deg);
}
.section_activity .activity:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  background: url(../images/activity_line_deco.svg) no-repeat center/cover;
}
.section_activity .activity:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  background: url(../images/activity_line_deco.svg) no-repeat center/cover;
  transform: rotate(90deg);
}
.section_activity .activity .inner:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  background: url(../images/activity_line_deco.svg) no-repeat center/cover;
  transform: rotate(-90deg);
}
.section_activity .activity .inner:after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  background: url(../images/activity_line_deco.svg) no-repeat center/cover;
  transform: rotate(-180deg);
}
.section_activity .activity .head_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transform: skew(7deg);
  padding: 30px;
  padding-top: 0;
  border-bottom: 1px solid #B3872C;
}
.section_activity .activity .head_wrp .tag {
  width: 110px;
  height: 110px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 110px;
  font-weight: 700;
  text-align: center;
  padding: 0;
  background: #E93817;
  border-radius: 50%;
}
.section_activity .activity .head_wrp .tag .l {
  font-size: 2.2rem;
}
.section_activity .activity .head_wrp .head {
  font-size: min(3rem, 3vw);
  line-height: 1.5;
  font-weight: 600;
}
.section_activity .activity .head_wrp .head .l {
  font-size: min(4.1rem, 4.1vw);
  color: #E93817;
  font-weight: 800;
}
.section_activity .activity p {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  transform: skew(7deg);
}
.section_activity .activity p .link_blank {
  margin-left: 1em;
}
.section_activity .activity p .link_blank a {
  color: #0047FF;
  font-size: 16px;
  text-decoration: underline;
  padding-right: 19px;
  background: url(../images/icon_blank_blue.svg) no-repeat right center/14px auto;
}
.section_activity .activity p .link_blank a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1030px) {
  .section_activity .activity .head_wrp {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -100px;
  }
  .section_activity .activity .head_wrp .head {
    text-align: center;
  }
}
@media screen and (max-width: 736px) {
  .section_activity .activity {
    position: relative;
    padding: 5vw;
    transform: skew(0);
  }
  .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: 0;
    padding-bottom: 4vw;
    margin-top: -14vw;
    transform: skew(0);
  }
  .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: 4vw;
    text-align: center;
  }
  .section_activity .activity .head_wrp .head .l {
    font-size: 5vw;
  }
  .section_activity .activity p {
    width: 100%;
    margin-top: 4vw;
    transform: skew(0);
  }
  .section_activity .activity p .link_blank {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-top: 2vw;
  }
  .section_activity .activity p .link_blank a {
    font-size: 3.8vw;
    padding-right: 4vw;
    background: url(../images/icon_blank_blue.svg) no-repeat right center/3vw auto;
  }
}

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

section_schedule

===============================================================*/
.section_schedule {
  background: linear-gradient(0deg, rgba(51, 19, 98, 0) 0%, rgba(51, 19, 98, 0.8) 50%, rgba(51, 19, 98, 0) 100%);
  background-blend-mode: multiply;
  /*-------------------------------------------------------------
  	title_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	schedule	
  -------------------------------------------------------------*/
}
.section_schedule .title_wrp .head_wrp {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  transform: skew(-7deg);
}
.section_schedule .title_wrp .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_schedule .title_wrp .head_wrp:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_schedule .title_wrp .head_wrp .head {
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: skew(7deg);
}
.section_schedule .title_wrp .title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.section_schedule .title_wrp .title span {
  font-size: 5.8rem;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_schedule .title_wrp .desc {
  text-align: center;
  margin-top: 20px;
}
.section_schedule .title_wrp .desc a {
  color: #0047FF;
  text-decoration: underline;
}
.section_schedule .title_wrp .desc a:hover {
  text-decoration: none;
}
@media screen and (max-width: 736px) {
  .section_schedule .title_wrp .head_wrp {
    width: 70%;
    margin: 0 auto;
    padding: 1.5vw;
  }
  .section_schedule .title_wrp .head_wrp:before {
    width: 1vw;
  }
  .section_schedule .title_wrp .head_wrp:after {
    width: 1vw;
  }
  .section_schedule .title_wrp .head_wrp .head {
    font-size: 4vw;
  }
  .section_schedule .title_wrp .title {
    margin-top: 2vw;
  }
  .section_schedule .title_wrp .title span {
    font-size: 8vw;
    line-height: 1.2;
  }
  .section_schedule .title_wrp .desc {
    text-align: left;
    margin-top: 4vw;
  }
}
.section_schedule .schedule_wrp .schedule_list .one_day .date {
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
}
.section_schedule .schedule_wrp .schedule_list .suchedule_footer {
  display: none;
}
/*===============================================================

section_jtele

===============================================================*/
.section_jtele {
  /*-------------------------------------------------------------
  	jtele	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	jtele	head_wrp
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	jtele	point
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	howto	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	jtele_slider_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	jtele_slider_wrp slickslider dots	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	jtele_slider_wrp slick_slider arw
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	txtlink_blank	
  -------------------------------------------------------------*/
}
.section_jtele .btn_detail a {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: #fff url(../images/icon_blank_black.svg) no-repeat center right 20px/12px auto;
  border: 2px solid #E93817;
  padding: 18px 0;
}
.section_jtele .btn_detail a:after {
  display: none;
}
.section_jtele .btn_detail a .icon {
  width: 20px;
  height: auto;
}
.section_jtele .btn_detail a:hover {
  color: #000 !important;
}
@media screen and (max-width: 736px) {
  .section_jtele .btn_detail {
    width: 100%;
  }
  .section_jtele .btn_detail a {
    gap: 2vw;
    background: #fff url(../images/icon_blank_black.svg) no-repeat center right 20px/12px auto;
    padding: 3.5vw 0;
  }
  .section_jtele .btn_detail a .icon {
    width: 4.5vw;
  }
}
@media screen and (max-width: 736px) {
  .section_jtele .jtele {
    width: calc(100% - 10vw);
    margin: 0 auto;
  }
}
.section_jtele .jtele .head_wrp .tag {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 3.2rem;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  padding: 0 20px 10px;
  border-bottom: 2px solid #000;
}
.section_jtele .jtele .head_wrp .tag:after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 12px;
  border-top: 12px solid #000;
  border-right: 6px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 6px solid transparent;
  box-sizing: border-box;
}
.section_jtele .jtele .head_wrp .head {
  font-size: 4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}
.section_jtele .jtele .head_wrp .head .l {
  display: block;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.7rem;
  font-weight: 800;
}
@media screen and (max-width: 736px) {
  .section_jtele .jtele .head_wrp .tag {
    font-size: 4vw;
    padding: 0 2vw 2vw;
    border-bottom: 1px solid #000;
  }
  .section_jtele .jtele .head_wrp .tag:after {
    bottom: -4vw;
    width: 1vw;
    height: 2vw;
    border-top: 2vw solid #000;
    border-right: 1vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 1vw solid transparent;
  }
  .section_jtele .jtele .head_wrp .head {
    font-size: 5vw;
    margin-top: 4vw;
  }
  .section_jtele .jtele .head_wrp .head .l {
    font-size: 8vw;
  }
}
.section_jtele .jtele .point {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section_jtele .jtele .point .item {
  position: relative;
  width: 48%;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  padding: 40px;
}
.section_jtele .jtele .point .item .tag {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 70px;
  height: 70px;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
  padding: 10px;
}
.section_jtele .jtele .point .item .tag .inner {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  transform: skew(7deg);
}
.section_jtele .jtele .point .item .tag .inner .num {
  display: block;
  font-size: 3rem;
}
.section_jtele .jtele .point .item .lead {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  transform: skew(7deg);
}
.section_jtele .jtele .point .caption {
  width: 100%;
  font-size: 1.2rem;
  text-align: right;
  margin-top: 5px;
}
@media screen and (max-width: 736px) {
  .section_jtele .jtele .point {
    flex-direction: column;
    align-items: center;
  }
  .section_jtele .jtele .point .item {
    width: 90%;
    padding: 4vw 0;
  }
  .section_jtele .jtele .point .item .tag {
    top: -1vw;
    left: -1vw;
    width: 10vw;
    height: 10vw;
    padding: 1vw;
  }
  .section_jtele .jtele .point .item .tag .inner {
    font-size: 2.5vw;
  }
  .section_jtele .jtele .point .item .tag .inner .num {
    font-size: 5vw;
  }
  .section_jtele .jtele .point .item .lead {
    font-size: 4vw;
  }
  .section_jtele .jtele .point .item + .item {
    margin-top: 4vw;
  }
  .section_jtele .jtele .point .caption {
    color: #fff;
    font-size: 2.5vw;
    text-align: center;
    margin-top: 2vw;
  }
}
.section_jtele .howto .head_wrp {
  position: relative;
  z-index: 2;
  width: 420px;
  padding: 15px;
  margin-left: 80px;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  transform: skew(-7deg);
}
.section_jtele .howto .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_jtele .howto .head_wrp:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_jtele .howto .head_wrp .head {
  color: #fff;
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  transform: skew(7deg);
}
.section_jtele .howto .box {
  position: relative;
  z-index: 1;
  margin-top: -34px;
  background: #FCFBFB;
  border: 3px solid #B0B0B0;
  transform: skew(-7deg);
  padding: 50px 70px;
}
.section_jtele .howto .box .inner {
  transform: skew(7deg);
}
.section_jtele .howto .box .txt_wrp {
  position: relative;
  padding-right: 26%;
  padding-bottom: 30px;
}
.section_jtele .howto .box .txt_wrp .lead {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.section_jtele .howto .box .txt_wrp .lead .l {
  display: block;
  color: #4D2785;
  font-size: 3.3rem;
}
.section_jtele .howto .box .txt_wrp p {
  margin-top: 10px;
}
.section_jtele .howto .box .txt_wrp .caption {
  font-size: 1.2rem;
  margin-top: 5px;
}
.section_jtele .howto .box .txt_wrp .img {
  position: absolute;
  width: 280px;
  bottom: 0;
  right: 0;
}
.section_jtele .howto .box .area_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 106%;
  margin-left: -3%;
}
.section_jtele .howto .box .area_wrp .item {
  position: relative;
  width: calc((100% - 6px) / 4);
  text-align: center;
}
.section_jtele .howto .box .area_wrp .item:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 1px;
  height: 110px;
  background: #000;
}
.section_jtele .howto .box .area_wrp .item .sub {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
  background: #331362;
  padding: 8px 0;
}
.section_jtele .howto .box .area_wrp .item .type {
  font-size: 2.3rem;
  line-height: 1;
  margin-top: 20px;
}
.section_jtele .howto .box .area_wrp .item .ch {
  font-size: 5.6rem;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 800;
  margin-top: 10px;
}
.section_jtele .howto .box .area_wrp .item .ch .num {
  font-size: 6.9rem;
}
.section_jtele .howto .box .area_wrp .item:last-child:after {
  display: none;
}
@media screen and (max-width: 1030px) {
  .section_jtele .howto .box .txt_wrp .img {
    width: 40%;
    right: -80px;
  }
  .section_jtele .howto .box .area_wrp .item:after {
    height: 100px;
  }
  .section_jtele .howto .box .area_wrp .item .sub {
    font-size: 15px;
  }
  .section_jtele .howto .box .area_wrp .item .type {
    font-size: 18px;
  }
  .section_jtele .howto .box .area_wrp .item .ch {
    font-size: 48px;
  }
  .section_jtele .howto .box .area_wrp .item .ch .num {
    font-size: 60px;
  }
  .section_jtele .howto .box .area_wrp .item:last-child:after {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .section_jtele .howto .head_wrp {
    width: 60%;
    margin: 0 auto;
    padding: 3vw;
  }
  .section_jtele .howto .head_wrp:before {
    width: 1vw;
  }
  .section_jtele .howto .head_wrp:after {
    width: 1vw;
  }
  .section_jtele .howto .head_wrp .head {
    font-size: 5.5vw;
  }
  .section_jtele .howto .box {
    margin-top: -6vw;
    border: 2px solid #B0B0B0;
    transform: skew(0deg);
    padding: 10vw 5vw 5vw;
  }
  .section_jtele .howto .box .inner {
    transform: skew(0deg);
  }
  .section_jtele .howto .box .txt_wrp {
    padding-bottom: 5vw;
  }
  .section_jtele .howto .box .txt_wrp .lead {
    font-size: 5vw;
  }
  .section_jtele .howto .box .txt_wrp .lead .l {
    font-size: 6vw;
  }
  .section_jtele .howto .box .txt_wrp p {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .section_jtele .howto .box .txt_wrp .caption {
    font-size: 2.5vw;
    margin-top: 2vw;
  }
  .section_jtele .howto .box .txt_wrp .img {
    width: 57%;
    right: -14%;
  }
  .section_jtele .howto .box .area_wrp {
    width: 100%;
    margin-left: 0;
  }
  .section_jtele .howto .box .area_wrp .item {
    width: calc((100% - 2px) / 2);
  }
  .section_jtele .howto .box .area_wrp .item:after {
    height: 65%;
  }
  .section_jtele .howto .box .area_wrp .item .sub {
    font-size: 3vw;
  }
  .section_jtele .howto .box .area_wrp .item .type {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
  .section_jtele .howto .box .area_wrp .item .ch {
    font-size: 9vw;
    margin-top: 1vw;
  }
  .section_jtele .howto .box .area_wrp .item .ch .num {
    font-size: 12vw;
  }
  .section_jtele .howto .box .area_wrp .item:nth-child(even):after {
    display: none;
  }
  .section_jtele .howto .box .area_wrp .item:nth-child(3),
  .section_jtele .howto .box .area_wrp .item:nth-child(4) {
    margin-top: 4vw;
  }
}
.section_jtele .jtele_slider_wrp .slick_slider {
  opacity: 0;
  height: 0;
  transition: 0.1s;
}
.section_jtele .jtele_slider_wrp .slick-initialized {
  opacity: 1;
  height: auto;
}
.section_jtele .jtele_slider_wrp .slick-list {
  margin-right: calc(50% - 50vw);
}
.section_jtele .jtele_slider_wrp .item {
  width: 340px;
  color: #fff;
  margin: 0 15px;
}
.section_jtele .jtele_slider_wrp .item a {
  color: #fff;
  text-decoration: none;
}
.section_jtele .jtele_slider_wrp .item .img {
  background: #000;
}
.section_jtele .jtele_slider_wrp .item .img img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/9;
}
.section_jtele .jtele_slider_wrp .item .title {
  height: 6.4rem;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.section_jtele .jtele_slider_wrp .item .date {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 600;
  margin-top: 5px;
}
@media screen and (max-width: 1030px) {
  .section_jtele .jtele_slider_wrp .slick-list {
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 736px) {
  .section_jtele .jtele_slider_wrp .item {
    width: 45vw;
    margin: 0 2vw;
  }
  .section_jtele .jtele_slider_wrp .item .title {
    height: 10.64vw;
    font-size: 3.8vw;
    line-height: 1.4;
    margin-top: 2vw;
  }
  .section_jtele .jtele_slider_wrp .item .date {
    font-size: 3vw;
    margin-top: 1vw;
  }
}
.section_jtele .jtele_slider_wrp .slick_slider .dots {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.section_jtele .jtele_slider_wrp .slick_slider .dots li {
  width: 8px;
  height: 8px;
}
.section_jtele .jtele_slider_wrp .slick_slider .dots li button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 8px;
  height: 8px;
  background: #7D84C2;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
}
.section_jtele .jtele_slider_wrp .slick_slider .dots .slick-active button {
  background: #fff;
}
@media screen and (max-width: 736px) {
  .section_jtele .jtele_slider_wrp .slick_slider .dots {
    gap: 3vw;
    margin-top: 8vw;
  }
}
.section_jtele .jtele_slider_wrp .slick_slider .arw {
  position: absolute;
  z-index: 1;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.1s;
  cursor: pointer;
}
.section_jtele .jtele_slider_wrp .slick_slider .arw:hover {
  opacity: 0.7;
}
.section_jtele .jtele_slider_wrp .slick_slider .arw:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(-45deg) translate(2px, 2px);
}
.section_jtele .jtele_slider_wrp .slick_slider .arw.arw_prev {
  transform: translateX(-150px);
}
.section_jtele .jtele_slider_wrp .slick_slider .arw.arw_next {
  transform: translateX(150px);
}
.section_jtele .jtele_slider_wrp .slick_slider .arw.arw_next:after {
  transform: rotate(135deg) translate(2px, 2px);
}
@media screen and (max-width: 736px) {
  .section_jtele .jtele_slider_wrp .slick_slider .arw {
    bottom: -2vw;
    left: 0;
    right: 0;
    margin: auto;
    width: 6vw;
    height: 6vw;
  }
  .section_jtele .jtele_slider_wrp .slick_slider .arw:after {
    content: "";
    width: 3vw;
    height: 3vw;
  }
  .section_jtele .jtele_slider_wrp .slick_slider .arw.arw_prev {
    transform: translateX(-20vw);
  }
  .section_jtele .jtele_slider_wrp .slick_slider .arw.arw_next {
    transform: translateX(20vw);
  }
}
.section_jtele .txtlink_blank {
  text-align: center;
}
.section_jtele .txtlink_blank a {
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.2;
  text-decoration: underline;
  padding-right: 23px;
  background: url(../images/icon_blank.svg) no-repeat right center/18px auto;
}
.section_jtele .txtlink_blank a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1030px) {
  .section_jtele .txtlink_blank {
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 736px) {
  .section_jtele .txtlink_blank a {
    font-size: 4vw;
    padding-right: 4vw;
    background: url(../images/icon_blank.svg) no-repeat right center/3vw auto;
  }
}

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

section_howto

===============================================================*/
.section_howto {
  /*-------------------------------------------------------------
  	howto	
  -------------------------------------------------------------*/
}
.section_howto .howto .head_wrp {
  position: relative;
  z-index: 2;
  width: 420px;
  padding: 15px;
  margin-left: 80px;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  transform: skew(-7deg);
}
.section_howto .howto .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_howto .howto .head_wrp:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_howto .howto .head_wrp .head {
  color: #fff;
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  transform: skew(7deg);
}
.section_howto .howto .box {
  position: relative;
  z-index: 1;
  margin-top: -34px;
  background: #FCFBFB;
  border: 3px solid #B0B0B0;
  transform: skew(-7deg);
  padding: 50px 70px;
}
.section_howto .howto .box .inner {
  transform: skew(7deg);
}
.section_howto .howto .box .txt_wrp {
  position: relative;
  padding-right: 26%;
  padding-bottom: 30px;
}
.section_howto .howto .box .txt_wrp .lead {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.section_howto .howto .box .txt_wrp .lead .l {
  display: block;
  color: #4D2785;
  font-size: 3.3rem;
}
.section_howto .howto .box .txt_wrp p {
  margin-top: 10px;
}
.section_howto .howto .box .txt_wrp .caption {
  font-size: 1.2rem;
  margin-top: 5px;
}
.section_howto .howto .box .txt_wrp .img {
  position: absolute;
  width: 280px;
  bottom: 0;
  right: 0;
}
.section_howto .howto .box .area_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 106%;
  margin-left: -3%;
}
.section_howto .howto .box .area_wrp .item {
  position: relative;
  width: calc((100% - 6px) / 4);
  text-align: center;
}
.section_howto .howto .box .area_wrp .item:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 1px;
  height: 110px;
  background: #000;
}
.section_howto .howto .box .area_wrp .item .sub {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 400;
  background: #331362;
  padding: 8px 0;
}
.section_howto .howto .box .area_wrp .item .type {
  font-size: 2.3rem;
  line-height: 1;
  margin-top: 20px;
}
.section_howto .howto .box .area_wrp .item .ch {
  font-size: 5.6rem;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-weight: 800;
  margin-top: 10px;
}
.section_howto .howto .box .area_wrp .item .ch .num {
  font-size: 6.9rem;
}
.section_howto .howto .box .area_wrp .item:last-child:after {
  display: none;
}
@media screen and (max-width: 1030px) {
  .section_howto .howto .box .txt_wrp .img {
    width: 40%;
    right: -80px;
  }
  .section_howto .howto .box .area_wrp .item:after {
    height: 100px;
  }
  .section_howto .howto .box .area_wrp .item .sub {
    font-size: 15px;
  }
  .section_howto .howto .box .area_wrp .item .type {
    font-size: 18px;
  }
  .section_howto .howto .box .area_wrp .item .ch {
    font-size: 48px;
  }
  .section_howto .howto .box .area_wrp .item .ch .num {
    font-size: 60px;
  }
  .section_howto .howto .box .area_wrp .item:last-child:after {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .section_howto .howto .head_wrp {
    width: 60%;
    margin: 0 auto;
    padding: 3vw;
  }
  .section_howto .howto .head_wrp:before {
    width: 1vw;
  }
  .section_howto .howto .head_wrp:after {
    width: 1vw;
  }
  .section_howto .howto .head_wrp .head {
    font-size: 5.5vw;
  }
  .section_howto .howto .box {
    margin-top: -6vw;
    border: 2px solid #B0B0B0;
    transform: skew(0deg);
    padding: 10vw 5vw 5vw;
  }
  .section_howto .howto .box .inner {
    transform: skew(0deg);
  }
  .section_howto .howto .box .txt_wrp {
    padding-bottom: 5vw;
  }
  .section_howto .howto .box .txt_wrp .lead {
    font-size: 5vw;
  }
  .section_howto .howto .box .txt_wrp .lead .l {
    font-size: 6vw;
  }
  .section_howto .howto .box .txt_wrp p {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  .section_howto .howto .box .txt_wrp .caption {
    font-size: 2.5vw;
    margin-top: 2vw;
  }
  .section_howto .howto .box .txt_wrp .img {
    width: 57%;
    right: -14%;
  }
  .section_howto .howto .box .area_wrp {
    width: 100%;
    margin-left: 0;
  }
  .section_howto .howto .box .area_wrp .item {
    width: calc((100% - 2px) / 2);
  }
  .section_howto .howto .box .area_wrp .item:after {
    height: 65%;
  }
  .section_howto .howto .box .area_wrp .item .sub {
    font-size: 3vw;
  }
  .section_howto .howto .box .area_wrp .item .type {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
  .section_howto .howto .box .area_wrp .item .ch {
    font-size: 9vw;
    margin-top: 1vw;
  }
  .section_howto .howto .box .area_wrp .item .ch .num {
    font-size: 12vw;
  }
  .section_howto .howto .box .area_wrp .item:nth-child(even):after {
    display: none;
  }
  .section_howto .howto .box .area_wrp .item:nth-child(3),
  .section_howto .howto .box .area_wrp .item:nth-child(4) {
    margin-top: 4vw;
  }
}

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

section_app

===============================================================*/
.section_app {
  background: url(../images/app_bg.jpg) no-repeat top center/cover;
  /*-------------------------------------------------------------
  	app	
  -------------------------------------------------------------*/
}
@media screen and (max-width: 736px) {
  .section_app {
    background: url(../images/app_bg_sp.jpg) no-repeat top center/cover;
  }
}
.section_app .app {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.section_app .app .img {
  width: 48%;
}
.section_app .app .txt {
  width: 48%;
}
.section_app .app .head_wrp {
  position: relative;
  padding-left: 40px;
}
.section_app .app .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(0deg, #7E84BD 0%, #2F155E 100%);
  border-left: 3px solid #7D84C2;
  transform: skew(-7deg);
}
.section_app .app .head_wrp .sub {
  font-size: 3.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.section_app .app .head_wrp .head {
  background: linear-gradient(0deg, #7E84BD 0%, #2F155E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4.1rem;
  line-height: 1.3;
  font-weight: 800;
  margin-top: 5px;
}
.section_app .app .desc {
  margin-top: 30px;
}
.section_app .app .desc .title {
  font-size: 2.4rem;
  line-height: 1.5;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.section_app .app .desc * + .title {
  margin-top: 30px;
}
.section_app .app .desc p {
  line-height: 2;
}
.section_app .app .desc p a {
  color: #0047FF;
  text-decoration: underline;
}
.section_app .app .desc p a:hover {
  text-decoration: none;
}
.section_app .app .desc * + p {
  margin-top: 20px;
}
.section_app .app .btn_wrp {
  width: 350px;
  margin-top: 70px;
}
.section_app .app .btn_wrp .lead {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  background: #D4C378;
  border: 1px solid #BB964D;
  padding: 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.section_app .app .btn_wrp .lead:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 10px;
  border-top: 10px solid #BB964D;
  border-right: 6px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 6px solid transparent;
  box-sizing: border-box;
}
.section_app .app .btn_wrp .lead:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 10px;
  border-top: 10px solid #D4C378;
  border-right: 6px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 6px solid transparent;
  box-sizing: border-box;
}
.section_app .app .btn_wrp .btn_detail {
  margin-top: 20px;
}
.section_app .app .btn_wrp .btn_detail a {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.section_app .app .btn_wrp .btn_detail a .icon {
  width: 12px;
  height: auto;
}
@media screen and (max-width: 736px) {
  .section_app .app {
    flex-direction: column;
    width: calc(100% - 10vw);
    margin: 0 auto;
  }
  .section_app .app .img {
    width: 100%;
    margin-top: 10vw;
  }
  .section_app .app .txt {
    display: contents;
    width: 100%;
  }
  .section_app .app .head_wrp {
    order: -1;
    position: relative;
    padding-left: 5vw;
  }
  .section_app .app .head_wrp:before {
    content: "";
    width: 1vw;
    border-left: 0.5vw solid #7D84C2;
  }
  .section_app .app .head_wrp .sub {
    font-size: 5vw;
  }
  .section_app .app .head_wrp .head {
    font-size: 6vw;
    margin-top: 1vw;
  }
  .section_app .app .desc {
    margin-top: 5vw;
  }
  .section_app .app .desc .title {
    font-size: 5vw;
    padding-bottom: 2vw;
  }
  .section_app .app .desc * + .title {
    margin-top: 4vw;
  }
  .section_app .app .desc * + p {
    margin-top: 4vw;
  }
  .section_app .app .btn_wrp {
    width: 100%;
    margin-top: 5vw;
  }
  .section_app .app .btn_wrp .lead {
    font-size: 3.5vw;
    padding: 2vw 0;
  }
  .section_app .app .btn_wrp .lead:before {
    bottom: -6.2vw;
    width: 2vw;
    height: 3vw;
    border-top: 3vw solid #BB964D;
    border-right: 2vw solid transparent;
    border-bottom: 3vw solid transparent;
    border-left: 2vw solid transparent;
    box-sizing: border-box;
  }
  .section_app .app .btn_wrp .lead:after {
    bottom: -5.9vw;
    width: 2vw;
    height: 3vw;
    border-top: 3vw solid #D4C378;
    border-right: 2vw solid transparent;
    border-bottom: 3vw solid transparent;
    border-left: 2vw solid transparent;
    box-sizing: border-box;
  }
  .section_app .app .btn_wrp .btn_detail {
    width: 100%;
    margin-top: 4vw;
  }
  .section_app .app .btn_wrp .btn_detail a {
    gap: 2vw;
  }
  .section_app .app .btn_wrp .btn_detail a .icon {
    width: 3vw;
  }
}

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

section_copy

===============================================================*/
.section_copy {
  background: #453260;
  /*-------------------------------------------------------------
  	copy	
  -------------------------------------------------------------*/
}
.section_copy .section_inner {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 736px) {
  .section_copy .section_inner {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
}
.section_copy .copy p {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}
/*===============================================================

section_cheers

===============================================================*/
.section_cheers {
  background: url(../images/cheers_bg.jpg) no-repeat center/cover;
  /*-------------------------------------------------------------
  	title_wrp	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	detail_box	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	detail_box left
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	detail_box right	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	detail_box about	
  -------------------------------------------------------------*/
}
@media screen and (max-width: 736px) {
  .section_cheers {
    background: url(../images/cheers_bg_sp.jpg) no-repeat center/cover;
  }
}
.section_cheers .title_wrp {
  margin: 0 calc(50% - 50vw) 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.section_cheers .title_wrp:before {
  content: "";
  width: calc((100vw - 250px) / 2);
  height: 16px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.section_cheers .title_wrp:after {
  content: "";
  width: calc((100vw - 250px) / 2);
  height: 16px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.section_cheers .title_wrp .title {
  color: #fff;
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 736px) {
  .section_cheers .title_wrp:before {
    content: "";
    width: 32.5vw;
    height: 2vw;
  }
  .section_cheers .title_wrp:after {
    content: "";
    width: 32.5vw;
    height: 2vw;
  }
  .section_cheers .title_wrp .title {
    font-size: 6vw;
  }
}
.section_cheers .detail_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4%;
}
.section_cheers .detail_box .left {
  width: 48%;
}
.section_cheers .detail_box .right {
  width: 48%;
}
@media screen and (max-width: 736px) {
  .section_cheers .detail_box {
    gap: 8vw;
  }
  .section_cheers .detail_box .left {
    width: 100%;
  }
  .section_cheers .detail_box .right {
    width: 100%;
  }
}
.section_cheers .detail_box .left .head_wrp {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 420px;
  margin: 0 auto;
  padding: 10px;
  background: linear-gradient(0deg, #2F155E 0%, #7E84BD 100%);
  transform: skew(-7deg);
}
.section_cheers .detail_box .left .head_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_cheers .detail_box .left .head_wrp:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(0deg, #E93817 0%, #DF735E 100%);
}
.section_cheers .detail_box .left .head_wrp .head {
  color: #fff;
  font-size: min(2.5rem, 2.3vw);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: skew(7deg);
}
.section_cheers .detail_box .left .img {
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  .section_cheers .detail_box .left {
    order: 1;
  }
  .section_cheers .detail_box .left .head_wrp {
    width: 70%;
    margin: 0 auto;
    padding: 1.5vw;
  }
  .section_cheers .detail_box .left .head_wrp:before {
    width: 1vw;
  }
  .section_cheers .detail_box .left .head_wrp:after {
    width: 1vw;
  }
  .section_cheers .detail_box .left .head_wrp .head {
    font-size: 4vw;
  }
  .section_cheers .detail_box .left .img {
    width: 85%;
    margin-top: 4vw;
  }
}
.section_cheers .detail_box .right .btn_wrp {
  margin-top: 30px;
}
.section_cheers .detail_box .right .btn_wrp .lead {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: min(2rem, 1.8vw);
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.section_cheers .detail_box .right .btn_wrp .lead:before {
  content: "！";
  font-size: min(6.3rem, 5.5vw);
  line-height: 1;
  font-weight: 400;
  transform: rotate(-25deg);
}
.section_cheers .detail_box .right .btn_wrp .lead:after {
  content: "！";
  font-size: min(6.3rem, 5.5vw);
  line-height: 1;
  font-weight: 400;
  transform: rotate(25deg);
}
.section_cheers .detail_box .right .btn_wrp .btn_detail {
  margin-top: 15px;
}
.section_cheers .detail_box .right .btn_wrp .btn_detail a {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.section_cheers .detail_box .right .btn_wrp .btn_detail a .icon {
  width: 19px;
  height: auto;
}
@media screen and (max-width: 736px) {
  .section_cheers .detail_box .right {
    order: 3;
  }
  .section_cheers .detail_box .right .btn_wrp {
    margin-top: 5vw;
  }
  .section_cheers .detail_box .right .btn_wrp .lead {
    gap: 2vw;
    font-size: 4vw;
  }
  .section_cheers .detail_box .right .btn_wrp .lead:before {
    font-size: 12vw;
  }
  .section_cheers .detail_box .right .btn_wrp .lead:after {
    font-size: 12vw;
  }
  .section_cheers .detail_box .right .btn_wrp .btn_detail {
    width: 85%;
    margin-top: 3vw;
  }
  .section_cheers .detail_box .right .btn_wrp .btn_detail a {
    gap: 2vw;
  }
  .section_cheers .detail_box .right .btn_wrp .btn_detail a .icon {
    width: 4vw;
  }
}
.section_cheers .detail_box .about {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.section_cheers .detail_box .about .img {
  width: 150px;
}
.section_cheers .detail_box .about .img .mc {
  border: 5px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}
.section_cheers .detail_box .about .img .name {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: -20px;
  padding: 0 10px;
  background: #fff;
  transform: skewX(-7deg);
}
.section_cheers .detail_box .about .img .name p {
  color: #331362;
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  transform: skewX(7deg);
}
.section_cheers .detail_box .about .txt {
  color: #fff;
  width: calc(100% - 190px);
}
.section_cheers .detail_box .about .txt .sub {
  position: relative;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
}
.section_cheers .detail_box .about .txt .sub:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 4.5em);
  height: 1px;
  border-top: 1px dashed #fff;
}
.section_cheers .detail_box .about .txt p {
  margin-top: 20px;
}
@media screen and (max-width: 736px) {
  .section_cheers .detail_box .about {
    order: 2;
    margin-top: 0;
  }
  .section_cheers .detail_box .about .img {
    width: 32%;
  }
  .section_cheers .detail_box .about .img .mc {
    border: 3px solid #fff;
  }
  .section_cheers .detail_box .about .img .name {
    width: 100%;
    margin-top: -2vw;
    padding: 0 1vw;
  }
  .section_cheers .detail_box .about .img .name p {
    font-size: 3.8vw;
  }
  .section_cheers .detail_box .about .txt {
    width: 63%;
  }
  .section_cheers .detail_box .about .txt .sub {
    font-size: 4.5vw;
  }
  .section_cheers .detail_box .about .txt p {
    margin-top: 2vw;
  }
}

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

  section_jcomtv

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

@media screen and (max-width: 736px) {
  .section_jcomtv {
    background: url(/special/paralympics/paris/common/images/jcomtv/bg_sp.jpg) no-repeat top center/cover;
  }
  .section_jcomtv .section_inner {
    padding: 0;
  }
}
/*-------------------------------------------------------------
  jcomtv_title	
-------------------------------------------------------------*/
.jcomtv_title .head {
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}
@media screen and (max-width: 736px) {
  .jcomtv_title {
    display: none;
  }
  .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%;
  perspective: 1000px;
}
.jcomtv_detail .img a {
  display: block;
  pointer-events: none;
  transform: rotateY(-15deg);
}
.jcomtv_detail .img img {
  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: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  padding-left: 30px;
  background: url(/special/paralympics/paris/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_gold {
  color: #fffc94;
}
.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: 2rem;
  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: #fffc94;
}
.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;
    margin-top: 0;
  }
  .jcomtv_detail .img {
    width: 100%;
    perspective: none;
  }
  .jcomtv_detail .img a {
    transform: none;
    pointer-events: auto;
  }
  .jcomtv_detail .txt {
    display: none;
    width: 100%;
    margin-top: 6vw;
  }
  .jcomtv_detail .txt .list li {
    font-size: 4vw;
    padding-left: 6vw;
    background: url(/special/paralympics/paris/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_corp_link

===============================================================*/
.section_corp_link {
  position: relative;
  background: url(../images/corp_link_bg_pc.jpg) no-repeat center/cover;
  height: 300px;
  /*-------------------------------------------------------------
  	corp_link	
  -------------------------------------------------------------*/
}
.section_corp_link .headline {
  display: none;
}
@media screen and (max-width: 1030px) {
  .section_corp_link {
    background: url(../images/corp_link_bg_pc.jpg) no-repeat center/cover;
    height: 35vw;
  }
}
@media screen and (max-width: 736px) {
  .section_corp_link {
    background: url(../images/corp_link_bg_sp.jpg) no-repeat center/cover;
    height: 100vw;
  }
}
.section_corp_link .corp_link {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
}
.section_corp_link .corp_link .jcom_btn {
  width: 352px;
  margin: 0 auto;
}
.section_corp_link .corp_link .jcom_btn a {
  font-size: 1.8rem;
}
@media screen and (max-width: 736px) {
  .section_corp_link .corp_link {
    bottom: 10vw;
  }
  .section_corp_link .corp_link .jcom_btn {
    width: 80%;
  }
  .section_corp_link .corp_link .jcom_btn a {
    font-size: 4.5vw;
  }
}

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

jtele_info

===============================================================*/
.jtele_info {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: 2px solid #E93817;
  background: #fff;
}
.jtele_info.block2 {
  margin-top: 50px;
}
.jtele_info .head {
  color: #E93817;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
}
.jtele_info p {
  font-size: 18px;
  font-size: 1.8rem;
  margin-top: 5px;
}
.jtele_info .link {
  position: relative;
  margin-top: 10px;
}
.jtele_info .link a {
  color: #0047FF;
  text-decoration: underline;
}
.jtele_info .link a:hover {
  text-decoration: none;
}
@media screen and (max-width: 736px) {
  .jtele_info {
    width: 100%;
    max-width: 100%;
    padding: 4vw;
    border: 1px solid #E93817;
  }
  .jtele_info.block2 {
    margin-top: 6vw;
  }
  .jtele_info .head {
    font-size: 3.8vw;
  }
  .jtele_info p {
    font-size: 3.8vw;
    margin-top: 1vw;
  }
  .jtele_info .link {
    margin-top: 2vw;
  }
}

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

	show_hide_timer

===============================================================*/
.show_hide_timer .show {
  display: none;
}
/*===============================================================

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

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

	nav_outer

===============================================================*/
.nav_outer {
  position: relative;
  position: absolute;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(90deg, #331362 0%, #7D84C2 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, #7D84C2 0%, #c3c9ff 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: #331362;
  text-decoration: none;
  background-color: #fff;
}
.navigation_wrp .navigation li.current a {
  color: #331362;
  background-color: #fff;
  /*cursor: default;*/
}
.navigation_wrp .navigation li.current a:hover {
  /*cursor: default;*/
}
.navigation_wrp .navigation li.deactive a {
  pointer-events: none;
  color: #81cbff;
}
.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: 1200px) {
  .navigation_wrp {
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  .navigation_wrp .navigation {
    width: auto;
    /* .localnav {
      width: 890px;
    } */
  }
  .navigation_wrp .navigation::-webkit-scrollbar { /* Chrome, Safari 対応 */
    display: none;
  }
  .navigation_wrp .navigation ul {
    white-space: nowrap;
    display: flex;
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  .navigation_wrp .navigation {
    width: auto;
    /* .localnav {
      width: 151vw;
    } */
  }
  .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 .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: 5.5vw;
    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: #000;
    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: #000;
  transform: rotate(45deg);
}
.fixed_bnr .close a:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2px;
  height: 18px;
  background: #000;
  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;
  }
}
/*===============================================================

	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: #331362;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
}
#btn_pagetop a:hover {
  background-color: #4c1d91;
}
#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;
  }
}/*# sourceMappingURL=style.css.map */