@charset "UTF-8";

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


	cmn.css


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

/*===================================================
	リセット
====================================================*/
* html body,
* html input,
* html textarea {
  font-family: "メイリオ", meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-weight: 400;
}

a,
a:hover,
a:active,
a:link,
a:visited {
  color: #000;
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: 0.3s ease;
}
i.fas {
  display: inline;
}
img {
  width: 100%;
}

input,
select,
textarea {
  outline: none;
}
.anchor {
  position: relative;
}
#ancOpen {
  display: block;
  position: absolute;
}

/*===================================================
	独立スタイル
====================================================*/
.pb0 {
  padding-bottom: 0 !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}

.bold {
  font-weight: bold !important;
}
.normal {
  font-weight: normal !important;
}

.center {
  text-align: center !important;
}
.left {
  text-align: left !important;
}
.right {
  text-align: right !important;
}

.f12 {
  font-size: 12px !important;
}
.f14 {
  font-size: 14px !important;
}
.f16 {
  font-size: 16px !important;
}
.f18 {
  font-size: 18px !important;
}
.f20 {
  font-size: 20px !important;
}

.red {
  color: #ff0000 !important;
}

.icon {
  padding: 0 5px 0 0;
}

.pc {
  display: none;
}
.sp {
  display: block;
}

.clipAnim {
  transition: 1.7s cubic-bezier(0.56, 0.16, 0.18, 1) 0.1s;
  clip-path: inset(0 100% 0 0);
}
.clipAnim.view {
  clip-path: inset(0 0 0 0);
}
.fadeToR {
  transition: 1s cubic-bezier(0.56, 0.16, 0.18, 1) 0.1s;
  opacity: 0;
  transform: translatey(40%);
}
.fadeToR.view {
  opacity: 1;
  transform: translatey(0);
}

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

	TOP:introPopup

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

html:has(body.is-fixed) {
    overflow: clip;
    overscroll-behavior: none;
}

.introPopup{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.introPopup .popupShade {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    display: flex;
    align-items: center;
}
.introPopup .popupInner{
    width: calc(100% - 40px);
    max-width: 780px;
    margin: 60px auto;
    position: relative;
    background: #FFF;
    color: #000;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-image: url(/static/tixplus/img/ticketplus/top/popup_bg.png);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}
.introPopup .popupTit{
    text-align: center;
    font-size: 16px;
    line-height: 1.7em;
    letter-spacing: 0.15px;
    font-weight: bold;
    color: #F6732A;
}
.introPopup .popupLead{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.introPopup .popupLead li{
    font-size: 14px;
    line-height: 1.7em;
    letter-spacing: 0.15px;
}
.introPopup .selectSite{
    display: flex;
    justify-content: center;
    gap: 8px;
}
.introPopup .siteBox{
    padding: 16px;
    width: 50%;
    min-width: 50%;
    max-width: 250px;
    border: 1px solid rgba(29, 27, 26, 30%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #FFF;
    justify-content: space-between;
    box-sizing: border-box;
}
.introPopup .siteBox figure{
    text-align: center;
    aspect-ratio: 103 / 56;
    display: flex;
    align-items: center;
    width: 70%;
    max-width: 110px;
    margin: 0 auto;
}
.introPopup .siteBox figure img{
    width: 100%;
}
.introPopup .siteBox .txt{
    font-size: 10px;
    text-align: center;
    line-height: 1.5em;
    font-weight: 500;
    letter-spacing: 0.15px;
}
.introPopup .siteBox .btn{

}
.introPopup .siteBox .btn a{
    display: block;
    text-align: center;
    background: #F6732A;
    border-radius: 100px;
    color: #FFF;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    padding: 8px;
    letter-spacing: 0.15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #F6732A;
    box-sizing: border-box;
}
.introPopup .siteBox .btn a span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #fff;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.introPopup .siteBox .btn a:hover{
    color: #F6732A;
}
.introPopup .siteBox .btn a:hover span  {
    width: 225%;
    height: 562.5px;
}
.introPopup .innerLink{
  color: #345CC8;
  text-decoration: underline;
}
.floatBnr{
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    width: 56%;
    max-width: 362px;
}
.floatBnr a{
    display: block;
    position: relative;
    line-height: 0;
}
.floatBnr .txt img{

}

/* SP-max-599 */
@media screen and (max-width: 599px){
.introPopup .popupInner {
    padding: 20px 16px;
}
.introPopup .popupLead li {
    font-size: 12px;
}
}


/*===================================================
	フレーム
====================================================*/
html,
body {
  height: 100%;
  color: #000;
  font-family: "Roboto", Helvetica, "Noto Sans Japanese", "メイリオ", meiryo,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック",
    sans-serif;
  line-height: 1.8em;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 14px;
}
body {
  margin: 0;
  padding: 0;
  visibility: hidden;
}
body.loaded {
  animation: 1s loader forwards;
}
@keyframes loader {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.wrap {
  padding: 55px 0 0;
  overflow: hidden;
}
.contentBox {
  position: relative;
}
.contentBox .inBox {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/*===================================================
	共通
====================================================*/
.arrow {
  position: relative;
}
.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1em;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow::before {
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btnContact a {
  background: url(/static/tixplus/img/ph_contact_bg.jpg) 80% no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: block;
  padding: 40px 0;
  text-align: center;
  font-size: 26px;
  line-height: 1em;
  font-weight: 600;
  position: relative;
  border-radius: 10px;
  margin: 0 0 20px;
}
.btnContact a .mini {
  display: block;
  font-size: 14px;
  color: #f68057;
  letter-spacing: 0.1em;
}

.btnRecruit a {
  background: url(/static/tixplus/img/ph_info_bg.jpg) 80% no-repeat;
  background-size: cover;
  background-position: center;
  color: #000;
  display: block;
  padding: 30px 0;
  text-align: center;
  font-size: 26px;
  line-height: 1em;
  font-weight: 600;
  position: relative;
  border-radius: 10px;
  margin: 0 0 20px;
}
.btnRecruit a .mini {
  display: block;
  font-size: 14px;
  color: #f68057;
  letter-spacing: 0.1em;
}

/*  pager  ----------------------------------*/
.pager {
  display: flex;
  margin: 0;
  justify-content: center;
  align-items: center;
}
.pager li {
  text-align: center;
  width: 13px;
  height: 13px;
  line-height: 13px;
  border-radius: 100px;
  margin: 0 15px;
}
.pager li.prev,
.pager li.next {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 20px;
}
.pager li a {
  display: block;
  background: #7f7f7f;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  position: relative;
  padding: 0 0 0 3px;
}
.pager li.prev a,
.pager li.next a {
  box-sizing: border-box;
  background: #000;
}
.pager li.prev a::before,
.pager li.prev a::after {
  position: absolute;
  top: 50%;
  left: 55%;
  margin: auto;
  content: "";
  vertical-align: middle;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: 0.3s ease;
}
.pager li.next a::before,
.pager li.next a::after {
  position: absolute;
  top: 50%;
  left: 45%;
  margin: auto;
  content: "";
  vertical-align: middle;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.3s ease;
}
.pager li.prev a::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.pager li.next a::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pager li.curr {
  background: #f68057;
  pointer-events: none;
}

/*  newsBlock  ----------------------------------*/

.newsBlockList {
}
.newsBlockList li {
  margin-bottom: 30px;
}
.newsBlockList li:last-child {
  margin-bottom: 0;
}
.newsBlockList li .catList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
.newsBlockList li .tit{
  text-align: justify;
  letter-spacing: 1px;
}
.newsBlockList li .newsImage {
  width: 100%;
  margin: 0 0 20px;
  line-height: 0;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
  border-radius: 10px;
}
.newsBlockList li .catList dt {
  background: #333;
  color: #fff;
  line-height: 1em;
  border-radius: 100px;
  padding: 10px 15px 8px;
  font-size: 10px;
}
.newsBlockList li .catList dd {
  font-size: 15px;
  font-weight: 500;
}
.newsBlockList li .news-text {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
/*===================================================
	swiper
====================================================*/

.swiper-slide {
  background-position: center;
  background-size: cover;
  height: auto;
}
.swiper-slide-active {
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right {
  background: rgba(0, 0, 0, 0.6);
}
.swiper-pagination {
  transform: translate(520px, -150px);
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  transform: none;
  left: 50%;
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  margin: 0 15px;
  border-radius: 2px;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 10px;
  border-radius: 0;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #e86637;
}
.swiper-container {
  overflow: initial;
  height: auto;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 10px;
  border-radius: 2px;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: -180px;
  left: 50%;
  transform: translate(-50%, 0);
}
.swiper-pagination-bullet-active {
}
.swiper-pagination-bullet {
}
/*===================================================
	ヘッダー
====================================================*/
.header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 55px;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 100;
  background: #fff;
}
.header.down {
  display: flex !important;
}
.header h1 {
  width: 55px;
}
.header h1 a {
  display: block;
}
.header .navigation {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.header .navigation.active {
  visibility: visible;
}
.header .navigation .navPar {
  position: relative;
  border-bottom: 1px solid #d7d6d6;
}
.header .navigation .navPar .parLink {
  padding: 15px;
  display: block;
  font-weight: 500;
  position: relative;
  pointer-events: none;
}
.header .navigation .navPar .parLink:after,
.header .navigation .navPar .parLink:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 11px;
  height: 1px;
  background: #000000;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.header .navigation .navPar .parLink:after {
  transform: rotate(90deg);
}
.header .navigation .navPar .open .parLink:after {
  transform: rotate(0);
}
.header .navigation .navHome .parLink{
    pointer-events: auto;
}
.header .navigation .navHome .parLink:after{
    display:none;
}
.header .navigation .navHome .parLink:before{
    transform: rotate(45deg) translate(-50%,-50%);
    width: 7px;
    height: 7px;
    border-top: 1px solid;
    border-right: 1px solid;
    background: transparent;
    border-radius: 0;
    right: 24px;
}
.header .navigation .nav_second {
  display: none;
}

.header .navigation .navPar .nav_second a {
  display: block;
  padding: 0 30px;
  margin: 0 0 20px;
  position: relative;
  font-size: 13px;
}
.header .navigation .navPar .nav_second a .fas {
  font-size: 80%;
  vertical-align: 1px;
  opacity: 0.7;
}
.header .navigation .navPar .nav_second a.arrow:before,
.header .navigation .navPar .nav_second a.arrow:after {
  right: 1.6em;
}
.hamBtn {
  position: absolute;
  display: block;
  width: 25px;
  height: 35px;
  right: 20px;
  top: 50%;
  transition: all 0.3s ease;
  border-radius: 100px;
  transform: translateY(-50%);
}
.hamBtn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}
.hamBtn :nth-of-type(1) {
  top: calc(50% - 10px);
}
.hamBtn :nth-of-type(2) {
}
.hamBtn :nth-of-type(3) {
  top: calc(50% + 10px);
}

.header .navigation .shade {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s 0.3s ease;
  z-index: -1;
}
.header .navigation.active .shade {
  opacity: 1;
  transition: 0.3s ease;
}
.header .navigation .navigationInner {
  background: #fff;
  width: 80%;
  height: 100%;
  position: fixed;
  right: 0;
  overflow: scroll;
  transform: translateX(100%);
  transition: 0.3s ease;
  transform-origin: unset;
}
.header .navigation.active .navigationInner {
  transform: translateX(0);
  transition: 0.3s 0.3s ease;
}
.header .navigation .innerHamTit {
}
.header .navigation .innerHamTit a {
  display: block;
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #d7d6d6;
}
.header .navigation .innerHamTit a:after,
.header .navigation .innerHamTit a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 20px;
  height: 1px;
  background: #000000;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.header .navigation .innerHamTit a:after {
  transform: rotate(45deg);
}
.header .navigation .innerHamTit a:before {
  transform: rotate(-45deg);
}
.header .navigation .btnHamClose {
  padding: 30px 15px;
}
.header .navigation .btnHamClose a {
  display: inline-block;
  border: 1px solid;
  padding: 0 20px;
  border-radius: 100px;
  font-size: 11px;
}
/*===================================================
	home：共通
====================================================*/
.home h3 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1em;
  margin: 0 0 20px;
  letter-spacing: 0;
}
.home h3 span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #f68057;
}
/*===================================================
	home：visual
====================================================*/
.slideBox {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.slideCommentBox {
  position: relative;
  bottom: 0;
  width: 100%;
  color: #fff;
  width: 90%;
  margin: auto;
  border-radius: 10px;
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  z-index: 1;
  box-sizing: border-box;
  line-height: 1.5;
  max-width: 400px;
  display: none;
}
.home .slideCommentBox:nth-child(1) {
  display: block;
}
.slideCommentBox a {
  background: rgba(255, 119, 75, 0.8);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  display: block;
}
.swiper-wrapper {
  height: auto !important;
}
.slideComment {
  display: block;
  align-items: center;
}
.slideComment dt {
  font-size: 18px;
  margin: 0 0 5px;
  font-weight: 600;
  text-align: center;
}
.slideComment dd {
  font-size: 11px;
  line-height: 1.5em;
}
.slideComment dd a {
  color: #fff;
}
.slideComment dd a:hover {
  color: #f68057;
}

.visual {
  position: relative;
  min-height: 0;
  opacity: 1;
  padding: 50% 8% 20%;
}
.bgflag {
  position: absolute;
  top: -5px;
  left: -60%;
  content: "";
  width: 165vw;
  height: 100vw;
  z-index: 0;
}
.home .visualMov {
  position: absolute;
  top: 0 !important;
  left: 50%;
  height: 110%;
  min-height: 0;
  width: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: translateX(-50%);
}
.home .visualBox {
  height: 100%;
  width: 100%;
  margin: auto;
  position: relative;
  padding: 190px 10px 30px;
  box-sizing: border-box;
  background: url(/static/tixplus/img/re/bg_mainArea_sp_N5gVWcU4.jpg) no-repeat
    center top;
  background-size: cover;
}
.home .visual .visualFrag {
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0);
  transition: 1.7s cubic-bezier(0.56, 0.16, 0.18, 1);
}
.loaded .home .visual .visualFrag {
  clip-path: inset(0 0 0 0);
}
.home .visual .visualTxt .visualTit {
  line-height: 0;
  width: 50%;
  margin: 0 0 30px;
  transform: translateX(-600px);
  opacity: 0;
  transition: 1.5s cubic-bezier(0.56, 0.16, 0.18, 1) 0.5s;
}
.loaded .home .visual .visualTxt .visualTit {
  transform: translateX(0);
  opacity: 1;
}
.home .visual .visualTxt .mainCatch {
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 500;
  text-indent: -15px;
  margin: 0 0 10px;
  clip-path: inset(0 100% 0 0);
  transition: 1.7s cubic-bezier(0.56, 0.16, 0.18, 1) 2s;
}
.loaded .home .visual .visualTxt .mainCatch {
  clip-path: inset(0 0 0 0);
}
.home .visual .visualTxt .mainLead {
  font-size: 16px;
  margin: 0 0 20px;
  clip-path: inset(0 100% 0 0);
  transition: 1.7s cubic-bezier(0.56, 0.16, 0.18, 1) 2s;
}
.loaded .home .visual .visualTxt .mainLead {
  clip-path: inset(0 0 0 0);
}
.home .visual .visualTxt .btn a {
    position: relative;
    display: block;
    text-align: center;
    width: 40%;
    font-size: 16px;
    padding: 10px;
    border-radius: 100px;
    margin: 0;
    color: #fff;
    background: #f68057;
    overflow: hidden;
    z-index: 0;
    transform: rotateZ(0.03deg);
    line-height: 1.5em;
}
.home .visual .visualTxt .btn {
  transition: 1.7s cubic-bezier(0.56, 0.16, 0.18, 1) 2s;
  opacity: 0;
}
.loaded .home .visual .visualTxt .btn {
  opacity: 1;
}

.home .visual .topics {
  width: 90%;
  margin: auto;
  background: rgba(255, 119, 75, 0.8);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  position: absolute;
  bottom: -130px;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  z-index: 1;
  box-sizing: border-box;
  line-height: 1.5;
  max-width: 400px;
  display: none;
}
.home .visual .topics .tit {
  text-align: center;
  font-size: 16px;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.home .visual .topics .txt {
  font-size: 12px;
}

.home .visualBox .mainTit {
  text-align: center;
  color: #fff;
  padding: 0 0 30px 0;
  transition: 0.5s;
}
.visualBox .started .mainTit {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.home .visualBox .mainTit p:nth-child(1) {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
  font-size: min(6vw, 30px);
  font-weight: 300;
  opacity: 0.8;
  margin: 0 0 15px 0;
}
.home .visualBox .mainTit p:nth-child(2) {
  font-size: min(7vw, 38px);
  font-weight: 600;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
  line-height: 1.5;
  margin: 0 0 5px 0;
}
.home .visualBox .mainTit p:nth-child(3) {
  font-size: min(5.5vw, 30px);
  font-weight: 400;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
  line-height: 1.5;
  opacity: 0.9;
}
.home .visualBox .block.main {
  background: url(/static/tixplus/img/re/ph_mainArea_main_sp_N5gVWcU4.png)
    no-repeat center center;
  background-size: contain;
  width: 115vw;
  height: 150vw;
  color: #000;
  transition: 0.5s;
  opacity: 0;
  position: relative;
  left: -10px;
  margin: 20px 0 80px 0;
  max-width: 700px;
  max-height: 900px;
  transform: translatey(30px);
}
.home .visualBox .block.main.started {
  opacity: 1;
}
.home .visualBox .block.main .inBox {
  margin: auto;
  position: relative;
  top: 35%;
  width: 100%;
  left: 2%;
}

.home .visualBox .block.main .link .fa-chevron-right {
  margin: 0 0 0 5px;
}

.home .visualBox .block {
  color: #fff;
}
.home .visualBox .block.sub {
  position: absolute;
  bottom: -5%;
  right: 23%;
  transform: translateY(30px);
  transition: 0.5s;
  opacity: 0;
  background: #ffff;
  color: #000;
  border-radius: 999px;
  width: 60vw;
  height: 60vw;
  max-width: 280px;
  max-height: 280px;
}
.home .visualBox .block.sub.started {
  opacity: 1;
  transform: translatey(0);
}
.home .visualBox .block.sub {
  font-size: 1.5rem;
}
.home .visualBox .block.sub .subTxt {
  font-size: min(2.9vw, 13px);
}
.home .visualBox .block.sub .inner {
  width: 77%;
  height: auto;
  position: relative;
  top: 22%;
  left: 15%;
  box-sizing: border-box;
}
.home .visualBox .block.sub .inner .mainTxt {
  font-size: min(6vw, 30px);
}
.home .visualBox .block {
  color: #fff;
}
.home .visualBox .block .mainTxt {
  font-size: min(8vw, 30px);
  line-height: 1.3;
  font-weight: bold;
  margin: 0 0 5px 0;
}

.home .visualBox .block .subTxt {
  font-size: min(3.2vw, 15px);
  line-height: 1.5;
  margin: 0 0 5px 0;
  font-weight: bold;
}

.home .visualBox .block .link {
  line-height: 1;
}
.home .visualBox .block .link a {
  color: #f68057;
  font-size: 3.6vw;
}
.home .visualBox .block .link a span {
  display: inline-block;
  width: 13px;
  position: relative;
  top: 2px;
  left: 3px;
}
.home .visualBox .block .phList {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 60%;
  margin: 15px 0 0 0;
}
.home .visualBox .block .phList li {
  width: 45%;
}

.home .visualBox .block.sub01 {
  width: 90%;
  margin: 0 auto 50px;
  transform: translatey(30px);
  opacity: 0;
  transition: 0.5s;
}
.home .visualBox .block.sub01.started {
  opacity: 1;
  transform: translatey(0);
}
.home .visualBox .started .block.sub01 {
  opacity: 1;
}
.home .visualBox .block.sub01 .ph {
  z-index: -1;
  width: 64%;
  position: absolute;
  top: -14%;
  right: -10%;
  max-width: 300px;
}
.home .visualBox .block.sub02 {
  width: 90%;
  margin: 0 auto 50px;
  transform: translatey(30px);
  opacity: 0;
  transition: 0.5s;
}
.home .visualBox .block.sub02.started {
  opacity: 1;
  transform: translatey(0);
}

.home .visualBox .block.sub02 .ph {
  width: 40%;
  position: absolute;
  top: 45%;
  right: -35px;
  z-index: -1;
  max-width: 200px;
}
.home .visualBox .block.sub03 {
  width: 90%;
  margin: 0 auto 50px;
  transform: translatey(30px);
  opacity: 0;
  transition: 0.5s;
}
.home .visualBox .block.sub03.started {
  opacity: 1;
  transform: translatey(0);
}
.home .visualBox .started .block.sub03 {
  opacity: 1;
}
.home .visualBox .block.sub03 .ph {
  width: 70%;
  margin: 5px 0 0 0;
}
.home .visualBox .block.sub04 {
  width: 90%;
  margin: 0 auto 100px;
  transform: translatey(30px);
  opacity: 0;
  transition: 0.5s;
}
.home .visualBox .block.sub04.started {
  opacity: 1;
  transform: translatey(0);
}
.home .visualBox .started .block.sub04 {
  opacity: 1;
}

.home .visualBox .block.sub04 .ph {
  width: 65%;
  position: absolute;
  top: 11vw;
  right: -13%;
  z-index: -1;
  max-width: 400px;
}
.home .visualBox .block .box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
  transition: 0.4s;
}
.home .visualBox .block.sub01 .mainTxt,
.home .visualBox .block.sub02 .mainTxt,
.home .visualBox .block.sub03 .mainTxt,
.home .visualBox .block.sub04 .mainTxt {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  transition: 0.4s;
}

.home .visualBox .subTit {
  color: #fff;
  text-align: center;
  transform: translatey(30px);
  opacity: 0;
  transition: 0.5s;
  margin: 0 0 50px 0;
}
.home .visualBox .subTit.started {
  opacity: 1;
}
.home .visualBox .subTit p:nth-child(1) {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px 0;
}
.home .visualBox .subTit p:nth-child(2),
.home .visualBox .subTit p:nth-child(3) {
  font-size: 11px;
}

.home .visualBox .subTit .subTitLink a {
  color: #f68057;
}

/*===================================================
	home：missionBox
====================================================*/
.missionBox {
  padding: 50vw 0 60px;
}
.missionBox .inBox {
  padding: 0 20px;
}
.missionBox .mission {
  position: relative;
}
.missionBox .mission .tit {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  transform: translateY(-200%);
}
.missionBox .mission .subTit {
  width: 85%;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 0 auto 14px;
}
.missionBox .mission .txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8em;
  margin: 0 auto 20px;
  width: 85%;
}
.missionBox .mission .link {
  text-align: right;
  padding: 0 30px;
}
.missionBox .mission .link a {
  font-size: 14px;
}
/*===================================================
	home：newsBox
====================================================*/
.newsBox {
  overflow: hidden;
  padding: 30px 0 60px;
  background: #f5f5f5;
}
/*
.newsBox:before{
    content: "";
    position: absolute;
    background: #F5F5F5;
    z-index: -1;
    width: 100%;
    height: 110vh;
    right: 0;
    top: 0;
    transform: translate(50%,0) skew(-10deg, 0);
}
*/
.newsBox .bnr {
  margin: 0 0 40px 0;
}
.newsBox .inBox {
  padding: 0 30px;
}
.newsBox .bnr a {
  display: block;
  line-height: 0;
  margin: 20px 0 20px;
}
.newsBox .newsBlockList {
  display: block;
  margin: 0 0 40px;
}
.newsBox .newsBlockList li {
  width: 100%;
  margin: 0 0 40px;
  transition: 0.5s;
}
.newsBox .newsBlockList li:hover .newsImage {
  transform: scale(0.8);
}
.newsBox .newsBlockList li:hover .newsTxt {
  color: #e86637;
}
.newsBox .newsBlockList li:last-child {
  margin: 0;
}
.newsBox .newsBlockList li a {
  display: block;
}
.newsBox .newsBlockList li .newsImage {
  width: 100%;
  height: 61.8%;
  background-size: cover;
  background-position: center;
  margin: 0 0 15px;
  line-height: 0;
  transition: 0.5s;
  opacity: 0;
}
.newsBox .newsBlockList li.started .newsImage {
  opacity: 1;
}
.newsBox .newsBlockList li.ended .newsImage {
}
.newsBox .newsBlockList li .catList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}

.newsBox .newsBlockList li .catList dt {
  background: #000;
  color: #fff;
  line-height: 1em;
  padding: 8px 16px;
  font-size: 11px;
  border-radius: 100px;
}
.newsBox .newsBlockList li .catList dt.co {
  background: #333;
}
.newsBox .newsBlockList li .catList dt.se {
  background: #f68057;
}
.newsBox .newsBlockList li .catList dd {
  font-size: 15px;
  font-weight: 500;
}
.newsBox .newsBlockList li:hover .tit {
  color: #e86637;
}
.newsBox .newsBlockList li .newsTxt {
  font-weight: 300;
  line-height: 1.6em;
}
.newsBox .btn a {
  display: block;
  text-align: center;
  color: #f68057;
  border: 1px solid;
  width: 60%;
  padding: 10px;
  border-radius: 100px;
  margin: 0 auto;
  background: #fff;
  line-height: 1.5em;
}

.newsBox .newsBlockList li .catList dt.category1,
.newsBox .newsDetailPage .newsDetailBox .catList dt.category1 {
  background: #e95541;
  color: #fff;
}
.newsBox .newsBlockList li .catList dt.category2,
.newsBox .newsDetailPage .newsDetailBox .catList dt.category2 {
  background: #333333;
  color: #fff;
}
.newsBox .newsBlockList li .catList dt.category3,
.newsBox .newsDetailPage .newsDetailBox .catList dt.category3 {
  background: #f68057;
  color: #fff;
}
.newsBox .newsBlockList li .catList dt.category4,
.newsBox .newsDetailPage .newsDetailBox .catList dt.category4 {
  background: #f5ac3c;
  color: #fff;
}

.home .newsBox {
  position: relative;
  background: #ff786f;
  padding: 40px 0 50px;
}
.home .newsBox .inBox {
}
.home .newsBox .inBox .columnLeft .newsTit {
  width: 50%;
  line-height: 0;
  margin: 0 0 30px;
}
.home .newsBox .inBox .columnLeft .newsBlockList {
}
.home .newsBox .inBox .columnLeft .newsBlockList .newsBlock {
  margin: 0 0 30px;
}
.home .newsBox .inBox .newsBlockList .newsImage {
  line-height: 0;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 0 20px;
}
.home .newsBox .inBox .catList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
.home .newsBox .inBox .catList dt {
  background: #333;
  color: #fff;
  line-height: 1em;
  border-radius: 100px;
  padding: 10px 15px 8px;
  font-size: 10px;
}
.home .newsBox .inBox .catList dd {
  font-size: 15px;
  font-weight: 500;
}
.home .newsBox .inBox .newsTxt {
  line-height: 1.5em;
  color: #fff;
}

.home .artistSlide {
}
.home .artistSlide .inBox {
  width: 100%;
  background: #fafafa;
}
.home .artistSlide {
}
.home .artistSlide .artist-wrapper {
  display: flex;
  animation: artistSlidemove 30s linear infinite;
}
@keyframes artistSlidemove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-869px);
  }
}
.home .artistSlide .artist-slide {
  width: auto !important;
  height: 110px;
}
.home .artistSlide .artist-slide .artistPhoto {
  line-height: 0;
  width: auto;
  height: 110px;
}
.home .artistSlide .artist-slide .artistPhoto img {
  height: 110px;
  width: auto;
}

.home .businessBox {
  padding: 40px 0 50px;
  background: #f8f8f8;
}
.home .businessBox .inBox {
}
.home .businessBox .btn a {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid;
  width: 40%;
  padding: 10px;
  border-radius: 100px;
  margin: 0;
  color: #f68057;
  overflow: hidden;
  background: transparent;
  z-index: 0;
  box-sizing: border-box;
  line-height: 1.5em;
}
.home .businessBox .businessTitBox {
  padding: 0 30px;
  margin: 0 0 20px;
}
.home .businessBox .businessTit {
  width: 70%;
  line-height: 0;
  margin: 0 0 20px;
}
.home .businessBox .businessMainlead {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.home .businessBox .eticketColumn {
  display: flex;
  flex-wrap: wrap;
}
.home .businessBox .eticketColumn .columnHead {
  order: 2;
  padding: 0 30px;
  margin: 0 0 20px;
}
.home .businessBox .eticketColumn .columnTxt {
  order: 3;
}

.home .businessBox .eticketColumn .columnImage {
  order: 1;
  position: relative;
  width: 100%;
  margin: 0 0 60px;
}
.home .businessBox .eticketColumn .columnImage .serviceBg {
  width: 100%;
}
.home .businessBox .eticketColumn .columnImage .serviceBg img {
  object-fit: cover;
  height: 100vw;
  width: 100%;
}
.home .businessBox .eticketColumn .columnImage .faceImage {
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 45%;
  transition: 1.5s ease 1s;
  transform: translate(-50%, -60%) scale(0);
}
.home .businessBox .eticketColumn .columnImage.view .faceImage {
  transform: translate(-50%, -60%) scale(1);
}
.home .businessBox .eticketColumn .columnImage .userImage {
  position: absolute;
  bottom: -25px;
  right: 0;
  width: 170%;
  transition: 1.7s cubic-bezier(0.56, 0.16, 0.18, 1) 0.1s;
  clip-path: inset(0 100% 0 0);
}
.home .businessBox .eticketColumn .columnImage.view .userImage {
  clip-path: inset(0 0 0 0);
}
.home .businessBox .eticketColumn .columnTxt {
  padding: 0 25px;
  margin-bottom: 60px;
}
.home .businessBox .eticketColumn .columnTxt .columnTit {
  font-size: 27px;
  line-height: 1.3em;
  font-weight: 600;
  margin: 0 0 20px;
}
.home .businessBox .eticketColumn .columnTxt .columnLead {
  margin: 0 0 20px;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo {
  margin: 0 0 30px;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li {
  line-height: 0;
  margin: 0 0 10px;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(1) {
  width: 47%;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(2) {
  width: 78%;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(3) {
  width: 47%;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(4) {
  width: 67%;
  margin: 0;
}
.home .businessBox .liveColumn {
  margin: 0 0 140px;
}
.home .businessBox .liveColumn .columnImage {
  position: relative;
  margin: 0 0 60px;
}
.home .businessBox .liveColumn .columnImage .serviceBg {
  width: 100%;
}
.home .businessBox .liveColumn .columnImage .serviceBg img {
  object-fit: cover;
  height: 100vw;
  width: 100%;
}
.home .businessBox .liveColumn .columnImage .devicePC {
  position: absolute;
  right: 42%;
  bottom: -5%;
  width: 78%;
  line-height: 0;
  transition: 1.5s ease 0.5s;
  transform: translateX(-1000px);
  opacity: 0;
}
.home .businessBox .liveColumn .columnImage.view .devicePC {
  transform: translateX(0);
  opacity: 1;
}
.home .businessBox .liveColumn .columnImage .liveImage {
  position: absolute;
  left: 58%;
  top: -5%;
  line-height: 0;
  width: 58%;
  transition: 1.5s ease 0.5s;
  transform: translateX(1000px);
  opacity: 0;
}
.home .businessBox .liveColumn .columnImage.view .liveImage {
  transform: translateX(0);
  opacity: 1;
}
.home .businessBox .liveColumn .columnImage .vrImage {
  position: absolute;
  line-height: 0;
  width: 41%;
  left: 62%;
  bottom: -9%;
}
.home .businessBox .liveColumn .columnImage .devicePhone {
  display: none;
}
.home .businessBox .liveColumn .columnTxt {
  padding: 0 25px;
  margin-bottom: 60px;
  position: relative;
}
.home .businessBox .liveColumn .columnTxt .columnTit {
  font-size: 27px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 15px;
}
.home .businessBox .liveColumn .columnTxt .columnLead {
  margin: 0 0 20px;
}
.home .businessBox .liveColumn .columnTxt .serviceLogo {
  display: flex;
  margin: 0 0 20px;
}
.home .businessBox .liveColumn .columnTxt .serviceLogo li {
  margin: 0 15px 0 0;
  width: 30%;
}
.home .businessBox .liveColumn .columnTxt .devicePhone {
  position: absolute;
  right: 0;
  bottom: -12%;
  width: 30%;
  line-height: 0;
  transition: 1.5s ease 0.1s;
  transform: translateY(-300px);
  opacity: 0;
}
.home .businessBox .liveColumn .columnTxt.view .devicePhone {
  transform: translateY(0);
  opacity: 1;
}
.home .businessBox .entameColumn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.home .businessBox .entameColumn .columnImage {
  position: relative;
  margin: 0;
}
.home .businessBox .entameColumn .columnImage .serviceBg {
  width: 100%;
}
.home .businessBox .entameColumn .columnImage .serviceBg img {
  object-fit: cover;
  height: 100vw;
  width: 100%;
}
.home .businessBox .entameColumn .columnImage .mocImage {
  position: absolute;
  width: 40%;
  top: -14%;
  right: 28%;
}
.home .businessBox .entameColumn .columnImage .prizeImage {
    right: 54%;
    position: absolute;
    width: 30%;
    top: -13%;
    transition: 1s ease 0.1s;
    transform: translate(50px, 50px);
}
.home .businessBox .entameColumn .columnImage.view .prizeImage {
  transform: translate(0, 0);
}
.home .businessBox .entameColumn .columnImage .cardImage1 {
    position: absolute;
    width: 60%;
    bottom: -23%;
    left: 50%;
}
.home .businessBox .entameColumn .columnImage .cardImage1 img.card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(-1, 1);
  width: 5%;
  opacity: 0;
}
.home .businessBox .entameColumn .columnImage.view .cardImage1 img.card {
  animation: cardAnim1 1s cubic-bezier(0.71, 0.23, 0.22, 0.97) 1s forwards;
}
@keyframes cardAnim1 {
  0% {
    left: 50%;
    transform: translate(-50%, -50%) scale(-1, 1);
    width: 5%;
    opacity: 0;
  }
  50% {
    left: 70%;
    transform: translate(-50%, -50%) scale(0, 1);
    width: 50%;
    opacity: 1;
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 100%;
    opacity: 1;
  }
}

.home .businessBox .entameColumn .columnImage .cardImage2 {
    bottom: -16%;
    position: absolute;
    width: 46%;
    left: 15%;
}
.home .businessBox .entameColumn .columnImage .cardImage2 img.card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(-1, 1);
  width: 5%;
  opacity: 0;
}
.home .businessBox .entameColumn .columnImage.view .cardImage2 img.card {
  animation: cardAnim2 1s cubic-bezier(0.71, 0.23, 0.22, 0.97) 0.5s forwards;
}
@keyframes cardAnim2 {
  0% {
    left: 50%;
    transform: translate(-50%, -50%) scale(-1, 1);
    width: 5%;
    opacity: 0;
  }
  50% {
    left: 30%;
    transform: translate(-50%, -50%) scale(0, 1);
    width: 50%;
    opacity: 1;
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 100%;
    opacity: 1;
  }
}
.home .businessBox .entameColumn .columnTxt {
  padding: 0 25px;
  margin-bottom: 20px;
  position: relative;
}
.home .businessBox .entameColumn .columnTxt .columnInner {
  margin: 0 0 40px;
}
.home .businessBox .entameColumn .columnTxt .columnInner:last-child {
  margin: 0;
}
.home .businessBox .entameColumn .columnTxt .columnTit {
  font-size: 27px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 15px;
}
.home .businessBox .entameColumn .columnTxt .columnLead {
  margin: 0 0 15px;
}
.home .businessBox .entameColumn .columnTxt .serviceLogo {
  display: flex;
  margin: 0 0 0 -15px;
  align-items: center;
}
.home .businessBox .entameColumn .columnTxt .serviceLogo li {
  margin: 0 10px 0 0;
}
.home .businessBox .entameColumn .columnTxt .serviceLogo li:nth-child(1) {
  width: 28%;
}
.home .businessBox .entameColumn .columnTxt .serviceLogo li:nth-child(2) {
  width: 40%;
}
.home .businessBox .entameColumn .columnTxt .btnBox {
  display: flex;
}
.home .businessBox .entameColumn .columnTxt .btnBox .btn {
  margin: 0 20px 0 0;
  width: 45%;
}
.home .businessBox .entameColumn .columnTxt .btnBox .btn:last-child {
  margin: 0;
}
.home .businessBox .entameColumn .columnTxt .btnBox .btn a {
  width: 100%;
    font-size: 12px;
}
.home .sportsDxBox {
  background-color: #f8f8f8;
  background-image: url(/static/tixplus/img/bg_idol.png),
    url(/static/tixplus/img/bg_sportsdx_sp.png);
  background-size: 85%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom right, bottom left;
}
.home .sportsDxBox .inBox {
  position: relative;
  padding: 0 0 130px;
}
.home .sportsDxBox .inBox:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    55deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.4;
}
.home .sportsDxBox .sportsDxColumn {
  position: relative;
}
.home .sportsDxBox .sportsDxColumn .logoSportsdx {
  position: absolute;
  right: 10px;
  width: 55%;
  top: calc(100vw + -45px);
  z-index: 0;
}
.home .sportsDxBox .sportsDxColumn .logoSportsdx img.card {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%) scale(-1, 1);
  width: 20%;
  opacity: 0;
}
.home .sportsDxBox.view .sportsDxColumn .logoSportsdx img.card {
  animation: cardAnim3 1s cubic-bezier(1, 0.19, 0.45, 1.01) 1s forwards;
}
@keyframes cardAnim3 {
  0% {
    left: 20%;
    transform: translate(-50%, -50%) scale(-1, 1);
    width: 20%;
    opacity: 0;
  }
  50% {
    left: 100%;
    transform: translate(-50%, -50%) scale(0, 1);
    width: 70%;
    opacity: 1;
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 100%;
    opacity: 1;
  }
}

.home .sportsDxBox .sportsDxColumn .pointFlowBox {
  width: 90%;
  margin: 0 auto 60px;
  position: relative;
}
.home .sportsDxBox .sportsDxColumn .pointFlow {
  line-height: 0;
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon {
  position: absolute;
  width: 22%;
  line-height: 0;
  transition: 1s ease 0.1s;
  opacity: 0;
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon {
  opacity: 1;
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi1 {
  top: 0;
  transform: translate(-50%, 0);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi2 {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi2 {
  top: 22%;
  right: 22%;
  transform: translate(50%, -50%);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi3 {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi3 {
  right: 0;
  transform: translate(0, -50%);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi4 {
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi4 {
  bottom: 22%;
  right: 22%;
  transform: translate(50%, 50%);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi5 {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi5 {
  bottom: 0;
  transform: translate(-50%, 0);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi6 {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi6 {
  bottom: 22%;
  left: 22%;
  transform: translate(-50%, 50%);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi7 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi7 {
  left: 0;
  transform: translate(0, -50%);
}
.home .sportsDxBox .sportsDxColumn .pointFlowIcon.pfi8 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home .sportsDxBox.view .sportsDxColumn .pointFlowIcon.pfi8 {
  top: 22%;
  left: 22%;
  transform: translate(-50%, -50%);
}

.home .sportsDxBox .sportsDxColumn .columnTxt {
  padding: 0 25px;
  position: relative;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .columnTit {
  font-size: 27px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 15px;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .columnLead {
  margin: 0 0 20px;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .btnBox {
  display: flex;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .btnBox .btn {
  margin: 0 20px 0 0;
  width: 40%;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .btn a {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid;
  width: 100%;
  padding: 10px;
  border-radius: 100px;
  margin: 0;
  color: #f68057;
  overflow: hidden;
  background: #fff;
  z-index: 0;
  box-sizing: border-box;
  line-height: 1.5em;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .logoIdol {
  position: absolute;
  top: 100%;
  right: 10px;
  line-height: 0;
  width: 40%;
}
.home .sportsDxBox.view .sportsDxColumn .columnTxt .logoIdol img {
  max-width: 330px;
}
.home .sportsDxBox.view .sportsDxColumn .columnTxt .logoIdol img.card {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%) scale(-1, 1);
  width: 20%;
  opacity: 0;
}
.home .sportsDxBox.view .sportsDxColumn .columnTxt .logoIdol img.card {
  animation: cardAnim4 1s cubic-bezier(1, 0.19, 0.45, 1.01) 1s forwards;
}
@keyframes cardAnim4 {
  0% {
    left: 20%;
    transform: translate(-50%, -50%) scale(-1, 1);
    width: 20%;
    opacity: 0;
  }
  50% {
    left: 0;
    transform: translate(-50%, -50%) scale(0, 1);
    width: 70%;
    opacity: 1;
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%) scale(1, 1);
    width: 100%;
    opacity: 1;
  }
}
.home .fanplusBox {
  background: url(/static/tixplus/img/bg_fanplus_sp.png);
  background-size: cover;
}
.home .fanplusBox .bgFanplus {
  position: fixed;
}
.home .fanplusBox .inBox {
    width: 100%;
    padding: 75px 40px 90px;
    text-align: center;
    color: #fff;
}
.home .fanplusBox .inBox .bgFanplus {
  display: none;
}
.home .fanplusBox .inBox .fanplusLogolarge {
    position: absolute;
    width: 75%;
    line-height: 0;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
.home .fanplusBox.view .inBox .fanplusLogolarge {
  opacity: 1;
}
.home .fanplusBox .inBox .fanplusTit {
    line-height: 1.4em;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.home .fanplusBox .inBox .fanplusLead {
    font-size: 14px;
    margin-bottom: 10px;
}
.home .fanplusBox .inBox .fanplusLogo {
    width: 36%;
    line-height: 0;
    margin: 0 auto 20px;
}
.home .fanplusBox .inBox .fanplusLink a{
    position: relative;
    color: #f68057;
    font-size: 14px;
    font-weight: 600;
}
.home .fanplusBox .inBox .fanplusLink a:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: -10px;
    top: 50%;
    transform: rotate(45deg) translateY(-70%);
    background: #f68057;
    border-radius: 100px;
}
.home .fanplusBox .inBox .fanplusLink a:after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    right: -10px;
    top: 50%;
    transform: rotate(45deg) translateY(-65%);
}
.home .newsListBox {
  background: #fff;
  padding: 40px 0 50px;
}
.home .newsListBox .inBox {
  width: 100%;
  padding: 0 25px;
}
.home .newsListBox .newsTit {
  width: 45%;
  line-height: 0;
  margin: 0 0 50px;
}
.home .newsListBox .newsList {
  width: 100%;
  margin: 0 auto;
}
.home .newsListBox .newsList li {
  border-bottom: 1px solid #c7c7c7;
  padding: 0 0 20px;
  margin: 0 0 30px;
  opacity: 0;
  transition: 1s ease 0.1s;
}
.home .newsListBox .newsList li.view {
  opacity: 1;
}
.home .newsListBox .newsList li:last-child {
  margin: 0;
}
.home .newsListBox .newsList .data {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}
.home .newsListBox .newsList .data dt {
  font-size: 14px;
  border: 1px solid;
  padding: 0 20px;
  border-radius: 5px;
}
.home .newsListBox .newsList .data dd {
  font-size: 15px;
}
.home .newsListBox .newsList .newsListTxt {
  font-size: 15px;
  text-align: justify;
}

.home .carrersBox {
  background: #fafafa;
  padding: 40px 0 50px;
}
.home .carrersBox .inBox {
  width: 100%;
  padding: 0 20px;
}
.home .carrersBox .carrersTit {
  width: 60%;
  line-height: 0;
  margin: 0 0 50px;
}
.home .carrersBox .gallery-slider {
  width: 100%;
  position: relative;
}
.home .carrersBox .swiper-wrapper .swiper-slide {
  background-size: cover;
}
.home .carrersBox .swiper-wrapper .swiper-slide.slide1 {
  background-image: url(/static/tixplus/img/bg_carrers_01_sp.png);
}
.home .carrersBox .swiper-wrapper .swiper-slide.slide2 {
  background-image: url(/static/tixplus/img/bg_carrers_02.png);
}
.home .carrersBox .swiper-wrapper .swiper-slide.slide3 {
  background-image: url(/static/tixplus/img/bg_carrers_03.png);
}
.home .carrersBox .swiper-wrapper .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home .carrersBox .swiper-pagination {
  transform: none;
  bottom: 15px;
  width: 100%;
  left: 0;
}
.home .carrersBox .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
}
.home .carrersBox .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
.home .carrersBox .swiper-wrapper .slideBox {
  padding: 30px 25px 70px;
  align-items: end;
  border-radius: 0;
  position: relative;
  color: #fff;
  box-sizing: border-box;
}
.home .carrersBox .swiper-wrapper .slideBox .columnLeft .thema {
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 600;
  margin: 0 0 60px;
  position: relative;
}
.home .carrersBox .swiper-wrapper .slideBox .thema:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 25px);
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 1s cubic-bezier(0.56, 0.16, 0.18, 1) 0.7s;
}
.home .carrersBox.view .swiper-wrapper .slideBox .thema:before {
  width: 30px;
}
.home .carrersBox .slideBox .thema span {
  display: block;
  font-weight: 600;
  overflow: hidden;
  width: 0;
  transform-origin: left;
  transition: 1s cubic-bezier(0.56, 0.16, 0.18, 1) 0.7s;
}
.home .carrersBox.view .slideBox .thema span {
  width: 100%;
}
.home .carrersBox .swiper-wrapper .slideBox .columnLeft .position {
  display: none;
}
.home .carrersBox .swiper-wrapper .slideBox .columnLeft .name {
  display: none;
}
.home .carrersBox .swiper-wrapper .slideBox .columnRight .comTit {
  line-height: 1.4em;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #f68057;
}
.home .carrersBox .swiper-wrapper .slideBox .columnRight .comTxt {
  margin: 0 0 30px;
}
.home .carrersBox .swiper-wrapper .slideBox .columnRight .btn a {
  position: relative;
  display: block;
  text-align: center;
  width: 40%;
  padding: 10px;
  border-radius: 100px;
  margin: 0;
  color: #fff;
  overflow: hidden;
  background: #f68057;
  z-index: 0;
  box-sizing: border-box;
  line-height: 1.5em;
}

.home .newsBox .btn a {
  color: #fff;
  width: 40%;
  background: transparent;
  margin: 0;
}
.home .newsBox .inBox .columnRight {
  display: none;
}
/*===================================================
	home：servicesBox
====================================================*/
.home .servicesBox {
  overflow: hidden;
  padding: 60px 0 60px;
}
/*
.servicesBox:before{
    content: "";
    position: absolute;
    background: #F68057;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: translate(-50%,0) skew(-10deg, 0);
}
*/
.home .servicesBox .inBox {
  padding: 0 30px;
}
.home .servicesBox .serviceBlockList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home .servicesBox .serviceBlockList li {
  width: 50%;
  box-sizing: border-box;
  height: 40vw;
  position: relative;
  border-bottom: 2px solid #e3e3e3;
}
.home .servicesBox .serviceBlockList li:nth-child(odd) {
  border-right: 2px solid #e3e3e3;
}
.home .servicesBox .serviceBlockList li:nth-last-child(2),
.home .servicesBox .serviceBlockList li:nth-last-child(3) {
  border-bottom: none;
}
.home .servicesBox .serviceBlockList li .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.home .servicesBox .serviceBlockList li a {
  display: block;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  font-size: 5vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  height: 100%;
}
.home .servicesBox .serviceBlockList li .logo {
  height: 7vw;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.home .servicesBox .serviceBlockList li .logo img {
  width: auto;
  height: 100%;
}
.home .servicesBox .serviceBlockList li .logo img.on {
  display: none;
}
.home .servicesBox .serviceBlockList li.trade .logo {
  height: 5.5vw;
}
.home .servicesBox .serviceBlockList li.live .logo {
  height: 12vw;
}
.home .servicesBox .serviceBlockList li.memorial .logo {
  height: 15vw;
}
.home .servicesBox .serviceBlockList li.smartpass .logo {
  height: 15vw;
}
.home .servicesBox .serviceBlockList li.fansApp .logo {
  height: 11vw;
}
.home .servicesBox .serviceBlockList li.card .logo {
  height: 12vw;
}
.home .servicesBox .serviceBlockList li.kuji .logo {
  height: 6vw;
}

.home .servicesBox .titBlock {
}

.home .servicesBox .titBlock a {
  display: block;
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  margin: 0 0 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1em;
}
.home .servicesBox .titBlock a span {
  display: block;
  font-size: 13px;
  color: #f68057;
  letter-spacing: 0.1em;
}

.home .servicesBox .titBlock .tit {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1em;
  display: block;
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  margin: 0;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #e3e3e3;
}
.home .servicesBox .titBlock .tit span {
  display: block;
  font-size: 13px;
  color: #f68057;
  letter-spacing: 0.1em;
}
.home .servicesBox .titBlock .tit2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1em;
  display: block;
  text-align: left;
  padding: 25px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  margin: 0 0 2px;
  border-radius: 10px;
}
.home .servicesBox .titBlock .tit2 span {
  display: block;
  font-size: 13px;
  color: #f68057;
  letter-spacing: 0.1em;
}

.home .servicesBox .serviceGroup {
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 20px 0;
}
.home .servicesBox .serviceBlockList li .tit {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.home .servicesBox .serviceBlockList li span {
  display: block;
  font-size: 11px;
  color: #828282;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 5px 0;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.home .servicesBox .inBox .serviceBlockList li a:hover span {
  color: #fff;
}
.home .servicesBox .inBox .serviceBlockList li a:hover .on {
  display: block;
  margin: auto;
}
.home .servicesBox .inBox .serviceBlockList li a:hover .off {
  display: none;
}
.home .servicesBox .inBox .serviceBlockList .eticket a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_01_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .trade a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_02_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .live a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_03_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .memorial a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_04_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .kuji a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_05_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .smartpass a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_06_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .fansApp a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_08_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .card a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_07_N5gVWcU4.png);
}
.home .servicesBox .inBox .serviceBlockList .nft a:hover {
  background-image: url(/static/tixplus/img/re/ph_services_bg_09_N5gVWcU4.png);
}

.servicesBox .inBox .serviceBlockList .blank {
  background-image: url(/static/tixplus/img/re/ph_blank_logo_N5gVWcU4.png);
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.servicesBox .inBox .serviceBlockList li a:hover {
  color: #fff;
  background-color: #000;
}
.home .servicesBox .inBox .serviceBlockList .smartpass {
  position: relative;
}
/*
.home .servicesBox .inBox .serviceBlockList .smartpass:after{
    content: "公式サイトへ";
    position: absolute;
    right: 0;
    bottom: 0;
    background: #F68057;
    color: #FFF;
    line-height: 1em;
    padding: 6px 10px 5px;
    text-align: center;
    font-size: 10px;
    pointer-events: none;
    border-radius: 10px 0 10px 0;
    transition:0.3s;
    opacity:0.7;
}
*/
.home .servicesBox .inBox:hover .serviceBlockList .smartpass:after {
  opacity: 1;
}

.home .servicesBox .inBox .serviceBlockList .live {
  position: relative;
}
/*
.home .servicesBox .inBox .serviceBlockList .live:after{
    content: "公式サイトへ";
    position: absolute;
    right: 0;
    bottom: 0;
    background: #F68057;
    color: #FFF;
    line-height: 1em;
    padding: 6px 10px 5px;
    text-align: center;
    font-size: 10px;
    pointer-events: none;
    border-radius: 10px 0 0 0;
    transition:0.3s;
    opacity:0.7;
}
*/
/*===================================================
	home：informationBox
====================================================*/
.informationBox {
  overflow: hidden;
  background: #fff;
}

/*
.informationBox:before{
    content: "";
    position: absolute;
    background: #253963;
    z-index: 0;
    width: 100%;
    height: 110vh;
    right: 0;
    top: 0;
    transform: translate(60%,0) skew(-10deg, 0);
}
.informationBox:after{
	content: "";
    position: absolute;
    background: #FFF;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: -110px;
    top: 0;
    transform: translate(-50%,0) skew(-10deg, 0);
}
*/
.informationBox:after {
}

.informationBox .inBox {
  width: 100%;
  padding: 0 20px 60px;
  z-index: 1;
  position: relative;
}
.informationBox .infoBlockList {
}
.informationBox .infoBlockList li {
  width: 37vw;
}
.informationBox .infoBlockList li.btnRecruit {
  width: 100%;
}
.informationBox .infoBlockList li.btnContact {
  width: 100%;
}

.informationBox .infoBlockList li a .bg {
  display: none;
}

/*===================================================
	フッター
====================================================*/
footer {
  background: #1a1a1a;
  padding: 60px 0 30px;
  color: #fff;
  position: relative;
}
.contactArea {
  background: url(/static/tixplus/img/ph_contactBg.png) no-repeat center
    center/cover;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  background-size: cover;
  position: relative;
  background-repeat: repeat-x;
  background-position: center left;
}
.contactArea .contactTit {
  width: 40%;
  line-height: 0;
  margin: 0 auto 20px;
}
.contactArea .contatLead {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 25px;
  line-height: 1.5em;
}
.contactArea .btn a {
  position: relative;
  display: block;
  text-align: center;
  width: 50%;
  font-size: 16px;
  padding: 10px;
  border-radius: 100px;
  margin: 0 auto;
  color: #fff;
  background-color: #f68057;
  overflow: hidden;
  z-index: 0;
  line-height: 1.5em;
}
.contactArea .btn a:hover {
  color: #f68057;
}
.contactArea .btn a span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #fff;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.contactArea .btn a:hover span {
  width: 225%;
  height: 562.5px;
}
footer .footerFrag {
  display: none;
}
footer h2 {
  width: 300px;
  margin: 0 0 40px;
}
footer h2 {
  display: none;
}
footer .inBox {
  width: 100%;
}
footer .inBox .footerLinkBox {
  display: block;
  border-top: 1px solid #474747;
  margin: 0 0 40px;
}
footer .inBox .footerLinkBox .navPar {
  border-bottom: 1px solid #474747;
}
footer .inBox .footerLinkBox .navPar:last-child {
  border-bottom: none;
}

footer .inBox .footerLinkBox .navPar .navLevel {
}
footer .inBox .footerLinkBox .navPar .navLevel p {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  padding: 15px;
  display: block;
  position: relative;
  pointer-events: none;
}
footer .inBox .footerLinkBox .navPar .navLevel p:after,
footer .inBox .footerLinkBox .navPar .navLevel p:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 11px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 100px;
}
footer .inBox .footerLinkBox .navPar .navLevel p:after {
  transform: rotate(90deg);
}
footer .inBox .footerLinkBox .navPar .navLevel.open p:after {
  transform: rotate(0deg);
}
footer .inBox .footerLinkBox .footerLink {
  display: none;
}
footer .inBox .footerLinkBox .footerLink li {
}
footer .inBox .footerLinkBox .footerLink li a {
  display: block;
  color: #bebdbd;
  padding: 0 0 0 40px;
  margin: 0 0 20px;
  font-weight: 300;
}
footer .inBox .footerLinkBox .footerLink li a .fas {
  font-size: 80%;
  vertical-align: 1px;
  opacity: 0.7;
}
footer .inBox .footerLinkBox .navPar:last-child a {
  margin: 0;
}
footer .inBox .footerLinkBox .footerLink li a.arrow::before,
footer .inBox .footerLinkBox .footerLink li a.arrow::after {
  right: 1.6em;
}
footer .inBox .footerLinkBox .footerLink li:last-child a {
}

footer .creditArea {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: space-between;
}
footer .creditArea .corpLogo {
  display: flex;
  flex-direction: column-reverse;
}
footer .creditArea .corpLogo li {
}
footer .creditArea .corpLogo li a {
  display: block;
}
footer .creditArea .corpLogo li a:hover {
  opacity: 0.7;
}
footer .creditArea .corpLogo li .txt {
  font-size: 10px;
  text-align: center;
  margin: 0 0 20px;
}
footer .creditArea .corpLogo li.logoList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto 15px;
}
footer .creditArea .corpLogo li.logoList a {
  width: 50%;
  padding: 15px;
  box-sizing: border-box;
}
footer .creditArea .corpLogo li.logoList h2 {
  display: block;
  width: 50%;
  margin: 0;
  padding: 15px;
  box-sizing: border-box;
}

footer .btnScTop {
}
footer .btnScTop a {
  position: absolute;
  right: 10px;
  top: 0;
  display: block;
  background: #f68057;
  height: 40px;
  width: 40px;
  transform: translateY(-50%);
  border-radius: 100px;
}
footer .btnScTop a::after,
footer .btnScTop a::before {
  position: absolute;
  top: calc(50% - 2px);
  right: calc(50% - 4px);
  margin: auto;
  content: "";
}
footer .btnScTop a::before {
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}

footer .creditArea .policyList {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto 20px;
}
footer .creditArea .policyList li {
  width: 50%;
}
footer .creditArea .policyList li a {
  color: #fff;
  font-size: 11px;
  display: block;
  text-align: center;
  padding: 0 5px;
}
/*
footer .creditArea .policyList li:last-child {
  display: none;
}
*/
footer .credit {
  text-align: center;
}
footer .creditBlock {
  position: relative;
}
footer .pmark {
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
footer .pmark a {
  display: block;
}
/*======================================================================================================

	pages:共通

=======================================================================================================*/
.pages .visual {
  height: 50vh;
  position: relative;
  min-height: auto;
}
.pages .visual .inBox {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
.pages .visual h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1em;
}
.pages .visual h2 span {
  display: block;
  font-size: 16px;
  font-weight: 300;
}
.btnContact a {
  background: url(/static/tixplus/img/ph_contact_bg.jpg) 80% no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: block;
  padding: 30px 0;
  text-align: center;
  font-size: 26px;
  line-height: 1em;
  font-weight: 600;
  position: relative;
  border-radius: 10px;
  margin: 0 auto;
  width: 100%;
}

.btnContact a .mini {
  display: block;
  font-size: 14px;
  color: #f68057;
  letter-spacing: 0.1em;
}
.bnrBox {
  padding: 0 0 60px;
}
.bnrBox .inBox {
  padding: 0 20px;
}

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

	pages:news:共通

=======================================================================================================*/
.newsPage {
  position: relative;
}
.newsPage:before {
  content: "";
  position: absolute;
  background: #f5f5f5;
  z-index: -1;
  width: 100%;
  height: 200vh;
  right: 0;
  top: 0;
  transform: translate(70%, 0) skew(-10deg, 0);
}
.newsPage .newsBox {
}
.newsPage .newsBox:after {
  content: none;
}
.newsPage .newsBox .inBox {
  width: 100%;
  padding: 0px 20px;
  box-sizing: border-box;
}

/*===================================================
	pages:news:共通
====================================================*/
.newsPage .newsBlockList {
  display: block;
  margin: 0;
  margin: 0 0 40px;
}

.newsBlockList li .newsImage img {
  background-size: cover;
  border-radius: 10px;
}

/*===================================================
	pages:news:visual
====================================================*/
.newsPage .visual {
  background: url(/static/tixplus/img/ph_pagemain_news.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height:auto;
}

/*===================================================
	pages:news:navBox
====================================================*/
.newsPage .navBox {
  padding: 30px 0;
}
.newsPage .navBox .inBox {
  width: 100%;
  padding: 0 20px;
}
.newsPage .pageNav {
  display: flex;
  flex-wrap: wrap;
}
.newsPage .pageNav li {
  width: 33%;
  box-sizing: border-box;
  margin: 0 0 9px;
}
.newsPage .pageNav li:nth-child(3n + 1) {
  padding: 0 6px 0 0;
}
.newsPage .pageNav li:nth-child(3n + 2) {
  padding: 0 3px 0;
}
.newsPage .pageNav li:nth-child(3n + 3) {
  padding: 0 0 0 6px;
}
.newsPage .pageNav li a {
  display: block;
  padding: 5px;
  border: 1px solid;
  border-radius: 100px;
  font-size: 11px;
  width: 100%;
  text-align: center;
  transition: 0.5s;
  box-sizing: border-box;
}

.newsPage .pageNav li a.cur {
  color: #fff;
  background: #000;
}

.newsPage .catNav {
}
.newsPage .catNav li,
.newsPage .catNav li:nth-child(3n + 1),
.newsPage .catNav li:nth-child(3n + 2),
.newsPage .catNav li:nth-child(3n + 3) {
  width: auto;
  padding: 0 6px 0 0;
  margin: 0 0 6px;
}
.newsPage .catNav li a {
  padding: 8px 14px;
  line-height: 1em;
}

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

	pages:nnewsDetailPage:共通

=======================================================================================================*/
.newsDetailPage {
}

/*===================================================
	pages:nnewsDetailPage:newsDetailBox
====================================================*/
.newsDetailPage .newsDetailBox {
  padding: 30px 0;
  background: #f5f5f5;
}
.newsDetailPage .newsDetailBox .inBox {
  padding: 0 20px;
}
.newsDetailPage .newsDetailBox .newsTit {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0 0 10px;
}
.newsDetailPage .newsDetailBox .social {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 15px;
}

.newsDetailPage .newsDetailBox .social li {
  margin: 0 30px 0 0;
}
.newsDetailPage .newsDetailBox .social li.facebook i,
.newsDetailPage .newsDetailBox .social li.twitter i {
  font-size: 19px;
}

.newsDetailPage .newsDetailBox .catList {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.newsDetailPage .newsDetailBox .catList dt {
  background: #000;
  color: #fff;
  line-height: 1em;
  padding: 8px 16px;
  font-size: 11px;
  border-radius: 100px;
  margin: 0 20px 0 0;
}
.newsDetailPage .newsDetailBox .catList dt .co {
}
.newsDetailPage .newsDetailBox .catList dt .se {
}
.newsDetailPage .newsDetailBox .catList dd {
  font-size: 15px;
  font-weight: 500;
}
.newsDetailPage .newsDetailBox .newsTxt {
  margin: 0 0 30px;
  text-align: justify;
}
.newsDetailPage .newsDetailBox .newsTxt img {
  max-width: 100% !important;
}
/*
.newsDetailPage .newsDetailBox .btnBack a{
    display: block;
    border: 1px solid;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    width: 200px;
    margin: 0 auto;
    border-radius: 100px;
}

.newsDetailPage .newsDetailBox .btnBack a:hover{
    background:#000;
    color:#fff;
}
*/
.newsDetailPage .newsDetailBox .btnBack a {
  position: relative;
  display: block;
  text-align: center;
  color: #f68057;
  border: 1px solid;
  width: 60%;
  padding: 15px;
  border-radius: 100px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}
.newsDetailPage .newsDetailBox .btnBack a span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #f68057;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}

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

	pages:app:共通

=======================================================================================================*/
.appPage {
}

/*===================================================
	pages:app:visual
====================================================*/

.appPage .visual h2 {
  font-size: 32px;
}

.appSportsPage .visual {
  background: url(/static/tixplus/img/ph_pagemain_appsports_202103.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
.appArtistPage .visual {
  background: url(/static/tixplus/img/ph_pagemain_appartist_sp_202102.jpg)
    no-repeat;
  background-size: cover;
  background-position: center;
}
.nftSportsPage .visual {
  background: url(/static/tixplus/img/nft/visual_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

/*===================================================
	pages:app:navBox
====================================================*/
.appPage .navBox {
  padding: 0 0 30px;
}
.appPage .navBox .inBox {
  width: 100%;
}
.appPage .navBox .appNav {
  display: flex;
}
.appArtistPage .navBox .appNav {
}
.appPage .navBox .appNav li {
  width: 50%;
}
.appPage .navBox .appNav li a {
  font-size: 3.5vw;
  text-align: center;
  padding: 10px;
  display: block;
  border: 1px solid #bdbdbd;
  background: #f5f5f5;
  letter-spacing: 0;
  line-height: 1.3em;
  font-weight: 500;
}
.appPage .navBox .appNav li.forSports a {
  color: #4d4397;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid #bdbdbd;
}
.appPage .navBox .appNav li.nftSports a {
  color: #000;
  border-bottom: 1px solid #bdbdbd;
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.appPage .navBox .appNav li.forArtist a {
  color: #e95384;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0);
  border-bottom: 1px solid #bdbdbd;
  border-left: 1px solid #bdbdbd;
}
.appSportsPage .navBox .appNav li.forSports a {
  border-bottom: 1px solid #fff;
  background: #fff;
}
.appArtistPage .navBox .appNav li.forArtist a {
  border-bottom: 1px solid #fff;
  background: #fff;
}
.nftSportsPage .navBox .appNav li.nftSports a {
  border-bottom: 1px solid #fff;
  background: #fff;
}

/*===================================================
	pages:app:introBox
====================================================*/
.appPage .introBox {
  padding: 0 0 30px;
}
.appPage .introBox .inBox {
  padding: 0 20px;
}
.appPage .introBox .subTit {
  text-align: center;
  font-size: 16px;
  margin: 0 0 10px;
}
.appPage .introBox .appType {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}
.appPage .introBox .lead {
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.8em;
}

/*===================================================
	pages:app:flowBox
====================================================*/
.appPage .flowBox {
  padding: 0 0 40px;
}
.appPage .flowBox .inBox {
  padding: 0 20px;
}
.appPage .flowBox .tit {
  text-align: center;
  font-size: 16px;
  line-height: 1.3em;
  margin: 0 0 20px;
}
.appSportsPage .flowBox .tit {
  color: #4d4397;
}
.appArtistPage .flowBox .tit {
  color: #e95384;
}
.appPage .flowBox .flowImage {
  width: 100%;
  margin: 0 auto;
}

/*===================================================
	pages:app:appListBox
====================================================*/
.appPage .appListBox {
  padding: 0 0 30px;
  background: #f5f5f5;
}
.appPage .appListBox .inBox {
  padding: 0 20px;
}
.appPage .appListBox .tit {
  font-size: 22px;
}
.appSportsPage .appListBox .tit {
  margin: 0 0 10px;
}
.appArtistPage .appListBox .tit {
  margin: 0 0 30px;
}
.appPage .appListBox .lead {
  font-size: 16px;
  line-height: 1.3em;
  margin: 0 0 30px;
  color: #4d4397;
}
.appPage .appListBox .appBlickList {
  display: block;
}
.appArtistPage .appListBox .appBlickList {
  margin: 0 0 20px;
}
.appPage .appListBox .appBlickList .appDetail {
  width: 100%;
  margin: 0 0 20px;
}
.appPage .appListBox .appBlickList .appDetail:last-child {
  margin: 0;
}
.appPage .appListBox .appBlickList .appDetail .detailOuter {
  border: 1px solid #d7d6d6;
  border-radius: 10px;
  overflow: hidden;
}
.appPage .appListBox .appBlickList .appDetail .copy {
  text-align: right;
  font-size: 11px;
}
.appPage .appListBox .appBlickList .appDetail .appImage {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 42vw;
}
.appPage .appListBox .appBlickList .appDetail .inner {
  padding: 20px;
  background: #fff;
}
.appPage .appListBox .appBlickList .appDetail .inner .appLead {
  padding: 0 0 20px;
}
.appPage .appListBox .appBlickList .appDetail .appNameList {
  display: flex;
  margin: 0 0 10px;
}
.appPage .appListBox .appBlickList .appDetail .appNameList dt {
  width: 80%;
  padding: 0 10px 0 0;
}
.appPage .appListBox .appBlickList .appDetail .appNameList dt .cap {
  line-height: 1.5em;
  margin: 0 0 5px;
  font-size: 11px;
}
.appPage .appListBox .appBlickList .appDetail .appNameList dt .appName {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
}
.appPage .appListBox .appBlickList .appDetail .appNameList dd {
  width: 20%;
}
.appPage .appListBox .appBlickList .appDetail .appNameList dd img {
  box-shadow: 0 0 10px -3px rgb(0 0 0 / 55%);
  border-radius: 13px;
}
.appPage .appListBox .appBlickList .appDetail .linkList {
  margin: 0 0 10px;
}
.appPage .appListBox .appBlickList .appDetail .linkList li a.official {
  color: #f68057;
}
.appPage .appListBox .appBlickList .appDetail .linkList li a .fab {
  border: 1px solid;
  padding: 3px;
  font-size: 10px;
  border-radius: 100px;
  vertical-align: 1px;
  margin: 0 5px 0 0;
}
.appPage .appListBox .appBlickList .appDetail .downLink {
  display: flex;
}
.appPage .appListBox .appBlickList .appDetail .downLink li:nth-child(odd) {
  padding: 0 5px 0 0;
}
.appPage .appListBox .appBlickList .appDetail .downLink li:nth-child(even) {
  padding: 0 0 0 5px;
}
.appPage .appListBox .appBlickList .appDetail .downLink li a {
  display: block;
}
.appPage .appListBox .appBlickList .appDetail .waring {
  font-size: 11px;
}
.appArtistPage .capList {
  margin: 0 auto;
}
.appArtistPage .capList li {
  text-indent: -16px;
  line-height: 1.5em;
  font-size: 11px;
  padding: 0 0 0 16px;
}

.appSportsPage .capList {
  margin: 30px auto 0;
}
.appSportsPage .capList li {
  text-indent: -16px;
  line-height: 1.5em;
  font-size: 11px;
  padding: 0 0 0 16px;
}

/*===================================================
	pages:app:cardcollectionBox
====================================================*/
.appPage .cardcollectionBox {
  background: #000;
  color: #fff;
  padding: 30px 0;
}

.appPage .flowBox #svg_bg {
  position: absolute;
  z-index: -1;
  transform: translateY(-30px);
}

.appPage .cardcollectionBox .collectionTit {
  text-align: center;
  font-size: 5vw;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 30px;
}
.appPage .cardcollectionBox .detailList {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  width: 100%;
  margin: 0 auto 20px;
}
.appPage .cardcollectionBox .detailList dt {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.appPage .cardcollectionBox .detailList dt .txt {
  font-size: 14px;
  line-height: 1.6em;
  margin: 0 0 15px;
}
.appPage .cardcollectionBox .detailList dt .cap {
  font-size: 10px;
  margin: 0 0 15px;
  letter-spacing: 0;
  line-height: 1.6em;
}
.appPage .cardcollectionBox .detailList dt .link a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.appPage .cardcollectionBox .detailList dd {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  transform: translateX(-10%);
}
.appPage .cardcollectionBox .clubImage {
  width: 80%;
  margin: 0 auto;
  line-height: 0;
}
.appPage .cardcollectionBox .copy {
  font-size: 10px;
  margin: 10px 0 0 0;
}
.appPage .cardcollectionBox .capList {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.appPage .cardcollectionBox .capList li {
  text-indent: -16px;
  line-height: 1.5em;
  font-size: 11px;
  padding: 0 0 0 16px;
}

/*===================================================
	pages:app:nftSportsPage
====================================================*/
.appPage.nftSportsPage {
}
.appPage.nftSportsPage .navBox .appNav li {
  width: 34%;
}
.appPage.nftSportsPage .navBox .appNav li.forSports a {
}
.appPage.nftSportsPage .navBox .appNav li.forArtist a {
}
.appPage.nftSportsPage .newsBox {
  padding: 0 0 60px;
  background: transparent;
}
.appPage.nftSportsPage .newsBlockList li .catList dt.category9,
.appPage.nftSportsPage .newsDetailBox .catList dt.category9 {
  background: #dcdcdc;
  color: #fff;
}
.appPage.nftSportsPage .appType {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}
.appPage.nftSportsPage .btn a {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid;
  width: 270px;
  padding: 15px;
  border-radius: 100px;
  margin: 0 auto;
  color: #f68057;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}

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

	pages:trade:共通

=======================================================================================================*/
.tradePage {
}

.ticketPage .btn a {
  display: block;
  width: 200px;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #f68057;
  border-radius: 100px;
  margin: 30px auto 0;
  font-size: 16px;
}

/*===================================================
	pages:trade:visual
====================================================*/
.tradePage .visual {
  background: url(/static/tixplus/img/ph_pagemain_trade.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.ticketPage .visual .inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.ticketPage .visual .more {
}
.ticketPage .visual .more a {
  color: #fff;
  border: 1px solid;
  padding: 5px 25px;
  display: inline-block;
  margin: 0 0 20px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.3);
}
.ticketPage .visual h2 {
  letter-spacing: 0.05em;
  line-height: 1.1em;
  font-size: 20px;
  position: relative;
  bottom: auto;
  left: auto;
}

/*===================================================
	pages:trade:navBox
====================================================*/
.ticketPage .navBox {
}
.ticketPage .navBox .inBox {
  width: 100%;
  padding: 0 0 60px;
}
.ticketPage .navBox .appNav {
  display: flex;
  justify-content: center;
}
.ticketPage .navBox .appNav li {
  width: 34%;
}
.ticketPage .navBox .appNav li a {
  font-size: 3.5vw;
  padding: 10px;
  display: block;
  background: #f5f5f5;
  color: #1a1a1a;
  border: 1px solid #f5f5f5;
  border-bottom: 1px solid #bdbdbd;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5em;
  font-weight: 500;
}
.ticketPage .navBox .appNav li.navTkt a {
  border: 1px solid #bdbdbd;
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.tradePage .navBox .appNav li.navTrade a,
.tktPage .navBox .appNav li.navTkt a,
.memocolePage .navBox .appNav li.navCont a {
  background: #ffffff;
  border-bottom: 1px solid #fff;
}

/*===================================================
	pages:trade:introBox
====================================================*/

.ticketPage .contentLine {
  position: relative;
}
.ticketPage .contentLine #svg_bg {
  position: absolute;
  transform: translateY(230px);
}
/*===================================================
	pages:trade:introBox
====================================================*/
.ticketPage .introBox {
  padding: 0 0 60px;
}
.ticketPage .introBox .inBox {
  padding: 0 20px;
}
.ticketPage .introBox .cap {
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8em;
  margin: 0 0 20px;
}
.ticketPage .introBox .serviceLogo {
  width: 100%;
  margin: 0 auto 50px;
}
.ticketPage .introBox .lead {
  width: 100%;
  font-size: 14px;
  line-height: 1.8em;
}

.ticketPage .introBox2 {
  padding: 60px 0;
}
.ticketPage .introBox2 .inBox {
  padding: 0 20px;
}
.ticketPage .introBox2 .cap {
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8em;
  margin: 0 0 20px;
}
.ticketPage .introBox2 .serviceLogo {
  width: 100%;
  margin: 0 auto 50px;
}
.ticketPage .introBox2 .lead {
  width: 100%;
  font-size: 14px;
  line-height: 1.8em;
}

.ticketPage .introBox2 .btn {
  text-align: center;
}

/*===================================================
	pages:trade:sliderBox
====================================================*/
.ticketPage .sliderBox {
  background: #f5f5f5;
  padding: 0 0 60px;
}
.ticketPage .sliderBox .inBox {
  color: #fff;
  width: 100%;
}
.ticketPage .swiper-container {
  padding: 0 0 40px;
  margin: 0 0 30px;
  height: auto;
}
.ticketPage .swiper-wrapper {
  width: 100%;
  height: auto;
}
.ticketPage .swiper-slide {
  padding: 0 50px;
  box-sizing: border-box;
  line-height: 0;
}

.ticketPage .swiper-pagination-fraction,
.swiper-pagination-custom,
.ticketPage .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #e86637;
}
.ticketPage .opArea {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.ticketPage .opArea .stopbtn {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background: #808080;
  border-radius: 100px;
  margin: 0 20px 0 0;
  display: none;
}
.ticketPage .opArea .stopbtn.stop,
.ticketPage .opArea .stopbtn.start {
  position: relative;
  display: inline-block;
  display: none;
}
.ticketPage .opArea .stopbtn.stop:before,
.ticketPage .opArea .stopbtn.stop:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 2px;
  height: 10px;
  background-color: #fff;
}
.ticketPage .opArea .stopbtn.stop:before {
  left: 6px;
}
.ticketPage .opArea .stopbtn.stop:after {
  right: 6px;
}
.ticketPage .opArea .stopbtn.start:before {
  position: absolute;
  top: 50%;
  left: 55%;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}
.ticketPage .opArea .stopbtn.start:after {
  display: none;
}
.ticketPage .swiper-pagination {
  position: relative;
  transform: none;
}
.ticketPage .swiper-pagination-bullet {
  background: #fff;
  margin: 0 10px;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  opacity: 0.4;
}

.ticketPage .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f68057;
}

/*===================================================
	pages:trade:charaBox
====================================================*/
.ticketPage .charaBox {
  background: #f5f5f5;
  padding: 0 0 60px;
}
.ticketPage .charaBox .inBox {
  padding: 0 20px;
}
.ticketPage .charaBox .tradeChara {
  display: block;
  width: 100%;
}
.ticketPage .charaBox .tradeChara dt {
  width: 100%;
}
.ticketPage .charaBox .tradeChara .tit {
  font-size: 20px;
  margin: 0 0 10px;
}
.ticketPage .charaBox .tradeChara .lead {
  font-size: 14px;
  line-height: 1.8em;
  margin: 0 0 30px;
}
.ticketPage .charaBox .tradeChara dd {
  width: 100%;
  line-height: 0;
}
.ticketPage .charaBox .keywordBlock {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px;
}
.ticketPage .charaBox .keywards {
  width: 30%;
  display: flex;
  flex-wrap: wrap;
}
.ticketPage .charaBox .keywards:nth-child(1) {
  align-items: baseline;
}
.ticketPage .charaBox .keywards dt {
  width: 20%;
}
.ticketPage .charaBox .keywards dt span {
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #f68057;
  color: #fff;
  border-radius: 100px;
}
.ticketPage .charaBox .keywards dd {
  width: 80%;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}
.ticketPage .charaBox .keywards dd p {
  font-size: 12px;
}
.ticketPage .charaBox .keywards dd p.icon {
  position: relative;
  display: inline-block;
}
.ticketPage .charaBox .keywards dd p.icon:after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  background: url(/static/tixplus/img/ph_icon_24h.png) no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  transform: translate(110%, -50%);
}

/*===================================================
	pages:trade:systemBox
====================================================*/
.ticketPage .systemBox {
  padding: 60px 0;
}
.ticketPage .systemBox .inBox {
  padding: 0 20px;
}
.ticketPage .systemBox .tit {
  font-size: 18px;
  margin: 0 0 30px;
  line-height: 1.3em;
  text-align: left;
}
.ticketPage .systemBox .systemBlockList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.ticketPage .systemBox .systemBlockList li {
  width: 50%;
  box-sizing: border-box;
  margin: 0 0 20px;
}
.ticketPage .systemBox .systemBlockList li:nth-child(odd) {
  padding: 0 10px 0 0;
}
.ticketPage .systemBox .systemBlockList li:nth-child(even) {
  padding: 0 0 0 10px;
}
.ticketPage .systemBox .systemBlockList li .listInbox {
  text-align: center;
  background: #f5f5f5;
  padding: 20px;
}
.ticketPage .systemBox .systemBlockList li .listInbox .prize {
  font-size: 20px;
  margin: 0 0 15px;
}
.ticketPage .systemBox .systemBlockList li .listInbox .txt {
  font-size: 16px;
}
.ticketPage .systemBox .systemDetailList {
  display: block;
}
.ticketPage .systemBox .systemDetailList li {
  width: 100%;
  margin: 0 0 40px;
}
.ticketPage .systemBox .systemDetailList li:last-child {
  margin: 0;
}
.ticketPage .systemBox .systemDetailList li .catch {
  margin: 0 auto 10px;
  width: 50%;
}
.ticketPage .systemBox .systemDetailList li .catchTit {
  font-size: 5vw;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-align: center;
}
.ticketPage .systemBox .systemDetailList li .catchTxt {
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
  letter-spacing: 0;
}
.ticketPage .systemBox .systemDetailList li .cat {
  font-size: 11px;
  text-align: center;
}

.btnTrade a {
  background: url(/static/tixplus/img/ph_trade_bg.jpg) 80% no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: block;
  padding: 30px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  border-radius: 10px;
  margin: 0 auto 20px;
  width: 40%;
  line-height: 1.3em;
  letter-spacing: 0.1em;
}

/*===================================================
	pages:trade:funcBox
====================================================*/
.ticketPage .funcBox {
  background: #f5f5f5;
  padding: 60px 0;
}
.ticketPage .funcBox .inBox {
  padding: 0 20px;
}
.ticketPage .funcBox .tit {
  font-size: 18px;
  margin: 0 0 30px;
  line-height: 1.3em;
  text-align: left;
}
.ticketPage .funcBox .block {
  display: block;
  background: #fff;
  padding: 20px;
  margin: 0 0 60px;
}
.ticketPage .funcBox .block dt {
  width: 100%;
  margin: 0 0 10px;
}
.ticketPage .funcBox .block dd {
  width: 100%;
}
.ticketPage .funcBox .block dd .txt {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.6em;
}
.ticketPage .funcBox .block dd .lead {
  font-size: 13px;
  line-height: 1.8em;
}
.ticketPage .funcBox .functionBlock {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ticketPage .funcBox .functionList {
  width: 100%;
  display: flex;
  margin: 0 0 20px;
}
.ticketPage .funcBox .functionList:last-child {
  margin: 0;
}
.ticketPage .funcBox .functionList dt {
  font-weight: 600;
  width: 30%;
  font-size: 12px;
  border-top: 1px solid #979797;
  padding: 10px 0 0;
}
.ticketPage .funcBox .functionList dd {
  font-size: 13px;
  width: 70%;
  margin: 0 0 0 10px;
  border-top: 1px solid #979797;
  padding: 10px 0 0;
}

/*===================================================
	pages:trade:graphBox
====================================================*/
.ticketPage .graphBox {
  background: #333333;
  padding: 60px 0;
  color: #fff;
}
.ticketPage .graphBox .inBox {
  padding: 0 20px;
}
.ticketPage .graphBox .tit {
  font-size: 18px;
  margin: 0 0 10px;
}
.ticketPage .graphBox .lead {
  font-size: 14px;
  line-height: 1.5em;
  margin: 0 0 30px;
}
.ticketPage .graphBox .graphOuter {
}
.ticketPage .graphBox .graphOuter .graphBlock {
  width: 100%;
  margin: 0 0 40px;
}
.ticketPage .graphBox .graphOuter .graphBlock:last-child {
  margin: 0;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphTit {
  margin: 0 0 20px;
  font-size: 12px;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList {
  display: flex;
  align-items: center;
}

.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dt {
  width: 100%;
  box-sizing: border-box;
  line-height: 0;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd {
  width: 45%;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .allTit {
  font-size: 12px;
  line-height: 1em;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .allNum {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .allNum span {
  font-size: 12px;
  vertical-align: 2px;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .runningTit {
  font-size: 12px;
  line-height: 1em;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .runningNum {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
}
.ticketPage
  .graphBox
  .graphOuter
  .graphBlock
  .graphBlockList
  dd
  .runningNum
  span {
  font-size: 12px;
  vertical-align: 2px;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .useTit {
  font-size: 12px;
  line-height: 1em;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .useNum {
  font-size: 16px;
  font-weight: 600;
}
.ticketPage .graphBox .graphOuter .graphBlock .graphBlockList dd .useNum span {
  font-size: 12px;
  vertical-align: 2px;
}

/*===================================================
	pages:trade:tradeListBox
====================================================*/
.ticketPage .tradeListBox {
  padding: 30px 0;
}
.ticketPage .tradeListBox .tit {
  font-size: 34px;
  margin: 0;
}
.ticketPage .tradeListBox .sort {
  text-align: right;
  margin: 0 0 20px 0;
}
.ticketPage .tradeListBox .sort a {
  background: #f5f5f5;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 100px;
  color: #5b5b5b;
}
.ticketPage .tradeListBox .tradeBlockList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ticketPage .tradeListBox .tradeBlockList li {
  width: 31%;
  margin: 0 0 40px;
}
.ticketPage .tradeListBox .tradeBlockList li .thumb {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 10vw;
  box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 0 10px;
}
.ticketPage .tradeListBox .tradeBlockList li .name {
  font-size: 16px;
  margin: 0 0 5px;
}
.ticketPage .tradeListBox .tradeBlockList li .event {
  margin: 0 0 5px;
}
.ticketPage .tradeListBox .tradeBlockList li .status {
  display: flex;
}
.ticketPage .tradeListBox .tradeBlockList li .status dd {
  padding: 0 10px;
  font-size: 11px;
  border-radius: 100px;
  margin: 0 10px 0 0;
}
.ticketPage .tradeListBox .tradeBlockList li .status .fc {
  background: #000;
  color: #fff;
}
.ticketPage .tradeListBox .tradeBlockList li .status .now {
  background: #ff7c60;
  color: #fff;
}
.ticketPage .tradeListBox .tradeBlockList li .status .soon {
  background: #fff;
  color: #000;
  border: 1px solid;
}
.ticketPage .tradeListBox .tradeBlockList li .status .end {
  background: #c0c0c0;
  color: #fff;
}

/*===================================================
	pages:trade:bnrBox
====================================================*/
.ticketPage .bnrBox {
  padding: 60px 0;
  background: #fff;
}

/*===================================================
	pages:app:bnrBox
====================================================*/
.appPage .bnrBox {
  background: #fff;
  padding: 60px 20px;
}

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

	pages:tkt:共通

=======================================================================================================*/
.tktPage {
}

/*===================================================
	pages:tkt:visual
====================================================*/
.tktPage .visual {
  background: url(/static/tixplus/img/ph_pagemain_tkt.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

/*===================================================
	pages:tkt:sliderBox
====================================================*/
.tktPage .sliderBox .appName {
  font-size: 17px;
  text-align: center;
  line-height: 1.5em;
  margin: 0 0 20px;
  padding: 0 20px;
  color: #000;
}
.tktPage .sliderBox .appName span {
  display: block;
  font-size: 13px;
}
.tktPage .sliderBox .downLink {
  display: flex;
  justify-content: center;
  padding: 0 20px 0;
}
.tktPage .sliderBox .downLink li:nth-child(odd) {
  padding: 0 5px 0 0;
}
.tktPage .sliderBox .downLink li:nth-child(even) {
  padding: 0 0 0 5px;
}
.tktPage .sliderBox .downLink li a {
  display: block;
  line-height: 0;
}
.tktPage .sliderBox .downLink li a img {
  border-radius: 8px;
}

/*===================================================
	pages:tkt:charaBox
====================================================*/
.tktPage .charaBox .tit {
  font-size: 18px;
  margin: 0 0 30px;
}
.tktPage .charaBox .charaBlockList {
  display: block;
}
.tktPage .charaBox .charaBlockList li {
  width: 100%;
  margin: 0 0 40px;
}
.tktPage .charaBox .charaBlockList li:last-child {
  margin: 0;
}
.tktPage .charaBox .charaBlockList li .inner {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}
.tktPage .charaBox .charaBlockList li .inner .thumb {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 37vw;
}
.tktPage .charaBox .charaBlockList li .inner .charaDetailList {
  padding: 20px;
  box-sizing: border-box;
}
.tktPage .charaBox .charaBlockList li .inner .charaDetailList dt {
  font-size: 16px;
  margin: 0 0 15px;
  letter-spacing: 0;
}
.tktPage .charaBox .charaBlockList li .inner .charaDetailList dd {
  text-indent: -14px;
  font-size: 12px;
  line-height: 1.5em;
  margin: 0 0 5px;
  padding: 0 0 0 14px;
}
.tktPage .charaBox .charaBlockList li .inner .charaDetailList dd:last-child {
  margin: 0;
}
.tktPage .charaBox .charaBlockList li .warning {
  padding: 5px 0 0;
  font-size: 10px;
  letter-spacing: 0;
  text-align: right;
}
.tktPage .charaBox .charaBlockList li .warning {
  padding: 5px 0 0;
  font-size: 10px;
  letter-spacing: 0;
  text-align: right;
}

/*===================================================
	pages:tkt:systemBox
====================================================*/
.tktPage .systemBox .apps {
  display: flex;
  justify-content: center;
  margin: 0 0 100px;
}
.tktPage .systemBox .apps li {
  width: 150px;
  height: 150px;
  background: #ddd;
  border-radius: 10px;
  margin: 0 10px;
}
.tktPage .systemBox .functionBlock {
  margin: 0;
}

/*===================================================
	pages:tkt:funcBox
====================================================*/
.tktPage .funcBox .apps {
  display: flex;
  justify-content: center;
  margin: 0 0 60px;
}
.tktPage .funcBox .tit {
  font-size: 17px;
}
.tktPage .funcBox .apps li {
  width: 34%;
  border-radius: 10px;
}
.tktPage .funcBox .apps li:nth-child(1) {
  padding: 0 6px 0 0;
}
.tktPage .funcBox .apps li:nth-child(2) {
  padding: 0 3px 0;
}
.tktPage .funcBox .apps li:nth-child(3) {
  padding: 0 0 0 6px;
}
.tktPage .funcBox .apps li img {
  border-radius: 10px;
}
.tktPage .funcBox .functionBlock {
  margin: 0;
}
.tktPage .funcBox .systemDetailList li {
  width: 25%;
}

/*===================================================
	pages:tkt:caseBox
====================================================*/
.tktPage .caseBox .inBox {
  width: 100%;
}
.tktPage .caseBox .titBlock {
  position: relative;
  background: #fff;
  z-index: 0;
}
.tktPage .caseBox .titBlock .tit {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 120%);
  font-size: 20px;
}
.tktPage .caseBox .titBlock .titBlockInner {
  position: relative;
  padding: 100px 0;
}
.tktPage .caseBox .titBlock .titBlockInner:after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #000000;
  background: -webkit-linear-gradient(-45deg, #000000 1%, #235da1 100%);
  background: linear-gradient(-45deg, #000000 1%, #235da1 100%);
  z-index: -1;
}
.tktPage .caseBox .titBlock .titBlockInner .moc {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.tktPage .caseBox .titBlock .titBlockInner .moc li {
  width: 35%;
}
.tktPage .caseBox .titBlock .titBlockInner .moc li:nth-child(1) {
  transform: translateX(-20%);
}
.tktPage .caseBox .titBlock .titBlockInner .moc li:nth-child(2) {
  width: 45%;
}
.tktPage .caseBox .titBlock .titBlockInner .moc li:nth-child(3) {
  transform: translateX(20%);
}
.tktPage .caseBox .titBlock .titBlockInner .caseCat {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  width: 100%;
  text-align: center;
}

.tktPage .caseBox .titBlock .titBlockInner .swiper-container2 {
  width: 100%;
  margin: 0 auto;
}
.tktPage
  .caseBox
  .titBlock
  .titBlockInner
  .swiper-container-3d
  .swiper-slide-shadow-left {
  background: transparent;
}
.tktPage
  .caseBox
  .titBlock
  .titBlockInner
  .swiper-container-3d
  .swiper-slide-shadow-right {
  background: transparent;
}

.tktPage .caseBox .titBlock .titBlockInner .swiperOuter {
  width: 50%;
  margin: 0 auto;
}
.tktPage .caseBox .titBlock .titBlockInner .swiper-slide {
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 0;
}

.tktPage .caseBox .titBlock .titBlockInner .swiper-slide-next {
  transform: translate3d(-15%, 0, 0) rotateX(0deg) scale(0.8) !important;
  cursor: pointer;
}
.tktPage .caseBox .titBlock .titBlockInner .swiper-slide-prev {
  transform: translate3d(15%, 0, 0) rotateX(0deg) scale(0.8) !important;
  cursor: pointer;
}
.tktPage .perform {
  padding: 60px 20px 0;
}
.tktPage .perform .tit {
  font-size: 18px;
  margin: 0 0 30px;
  line-height: 1.5em;
}
.tktPage .caseBox .performBlockList {
  margin: 0 0 60px;
}
.tktPage .caseBox .performBlockList li {
  width: 100%;
  margin: 0 0 60px;
  display: flex;
}
.tktPage .caseBox .performBlockList li:last-child {
  margin: 0;
}
.tktPage .caseBox .performBlockList li .thumb {
  background-size: cover;
  background-position: center;
  width: 35%;
  height: 20vw;
  border-radius: 5px;
}
.tktPage .caseBox .performBlockList li .performDetail {
  width: 65vw;
  padding: 0 0 0 20px;
}
.tktPage .caseBox .performBlockList li .name {
  font-size: 14px;
  margin: 0 0 5px;
}
.tktPage .caseBox .performBlockList li .event {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5em;
}
.tktPage .caseBox .performBlockList li .event span {
  color: #808080;
  display: block;
  line-height: 1.5em;
}

.tktPage .caseBox .performBlockList li .perce {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1em;
}
.tktPage .caseBox .performBlockList li .date {
  color: #808080;
  font-size: 12px;
  line-height: 1em;
}
.tktPage .caseBox .moreBtn a {
  color: #f68057;
  text-align: center;
  display: block;
  border: 1px solid;
  font-size: 18px;
  padding: 10px;
  border-radius: 100px;
  width: 200px;
  margin: 0 auto 30px;
}
.tktPage .caseBox .titBlock.sportsTitBox {
  background: #fff;
}
.tktPage .caseBox .titBlock.sportsTitBox .titBlockInner {
  position: relative;
  padding: 0 0 80px;
}
.tktPage .caseBox .titBlock.sportsTitBox .titBlockInner:after {
  background: #ff5eb6;
  background: -webkit-linear-gradient(-45deg, #ff5eb6 1%, #ff6f26 100%);
  background: linear-gradient(-45deg, #ff5eb6 1%, #ff6f26 100%);
}

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

	pages:memocole:共通

=======================================================================================================*/
.memocolePage {
}

/*===================================================
	pages:memocole:visual
====================================================*/
.memocolePage .visual {
  background: url(/static/tixplus/img/ph_pagemain_memocole.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

/*===================================================
	pages:memocole:introBox
====================================================*/
.memocolePage .introBox .cap {
  margin: 0;
}
.memocolePage .introBox .serviceLogo {
  margin: 0 auto 30px;
}

.memocolePage .swiper-container {
  padding: 0 0 40px;
  margin: 0;
  height: auto;
}

/*===================================================
	pages:memocole:charaBox
====================================================*/
.memocolePage .charaBox .tit {
  font-size: 18px;
  margin: 0 0 30px;
}
.memocolePage .charaBox .lead {
  font-size: 20px;
  line-height: 2em;
}
.memocolePage .charaBox .charaLeadList {
  margin: 0 0 60px;
}
.memocolePage .charaBox .charaLeadList dt {
  font-size: 15px;
  line-height: 1.6em;
  font-weight: 500;
}
.memocolePage .charaBox .charaLeadList dd {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.6em;
}
.memocolePage .charaBox .charaLeadList dd:last-child {
  margin: 0;
}
.memocolePage .charaBox .memocoleFlowBlock {
  background: #fff;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.memocolePage .charaBox .memocoleFlowBlock .image {
  margin: 0 0 20px;
  line-height: 0;
}
.memocolePage .charaBox .memocoleFlowBlock .txt {
  margin: 0 0 20px;
  padding: 0 20px;
  font-size: 18px;
  color: #f68057;
  font-weight: 500;
}
.memocolePage .charaBox .memocoleFlowBlock .flowImage {
  padding: 0 20px 20px;
}
.memocolePage .charaBox .memocoleFlowBlock .flowImage img {
  width: 90%;
}

/*===================================================
	pages:memocole:memocoleBox
====================================================*/
.memocolePage .memocoleBox {
  padding: 60px 0;
}
.memocolePage .memocoleBox .inBox {
  padding: 0 20px;
}
.memocolePage .memocoleBox .cap {
  text-align: center;
  font-size: 18px;
  margin: 0 0 20px;
  line-height: 1.3em;
}
.memocolePage .memocoleBox .titImage {
  width: 80%;
  margin: 0 auto 10px;
}
.memocolePage .memocoleBox .txt {
  font-size: 14px;
  line-height: 1.6em;
  width: 100%;
  margin: 0 auto 20px;
}
.memocolePage .memocoleBox .mocImage {
  width: 80%;
  margin: 0 auto 20px;
}
.memocolePage .memocoleBox .btn a {
  display: block;
  width: 200px;
  text-align: center;
  padding: 10px;
  color: #fff;
  background: #f68057;
  border-radius: 100px;
  margin: 0 auto;
  font-size: 16px;
}

.memocolePage .performBox {
  background: #f5f5f5;
  padding: 60px 0;
}
.memocolePage .performBox .inBox {
  padding: 0 20px;
}
.memocolePage .perform {
}
.memocolePage .perform .tit {
  font-size: 18px;
  margin: 0 0 30px;
  line-height: 1.5em;
}
.memocolePage .perform .performBlockList {
}
.memocolePage .perform .performBlockList li {
  width: 100%;
  margin: 0 0 30px;
  display: flex;
}
.memocolePage .perform .performBlockList li:last-child {
  margin: 0;
}
.memocolePage .perform .performBlockList li .thumb {
  background-size: cover;
  background-position: center;
  width: 35%;
  height: 20vw;
  border-radius: 5px;
}
.memocolePage .perform .performBlockList li .performDetail {
  width: 65vw;
  padding: 0 0 0 20px;
}
.memocolePage .perform .performBlockList li .name {
  font-size: 14px;
  margin: 0 0 5px;
}
.memocolePage .perform .performBlockList li .event {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.5em;
}
.memocolePage .perform .performBlockList li .perce {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1em;
}
.memocolePage .perform .performBlockList li .date {
  color: #808080;
  font-size: 12px;
  line-height: 1em;
}
/*===================================================

	アンケート


====================================================*/
.page--questionnaire .form--post * {
  font-size: 14px;
  box-sizing: border-box;
}
.page--questionnaire .form--post *::before,
.page--questionnaire .form--post *::after {
  box-sizing: border-box;
}
.page--questionnaire .form--post dt {
  line-height: 1.5;
  opacity: 0.5;
  margin: 3em 0 1em;
}
.page--questionnaire .form--post dd {
  margin: 0 0 1em;
}
.page--questionnaire .block--error {
  color: #f00;
  background: rgba(204, 0, 0, 0.15);
  padding: 10px;
  border-radius: 5px;
}
.page--questionnaire input {
  border: none;
  cursor: pointer;
}

/* placeholder */
.page--questionnaire ::-webkit-input-placeholder {
  color: #888;
}
.page--questionnaire ::-moz-placeholder {
  color: #888;
  opacity: 1;
}
.page--questionnaire :-ms-input-placeholder {
  color: #888;
}
.page--questionnaire :-moz-placeholder {
  color: #888;
}

/* autofill */
.page--questionnaire input:-webkit-autofill,
.page--questionnaire textarea:-webkit-autofill,
.page--questionnaire select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

/* input */
.page--questionnaire input[type="text"],
.page--questionnaire input[type="tel"],
.page--questionnaire input[type="email"],
.page--questionnaire input[type="password"],
.page--questionnaire input[type="number"],
.page--questionnaire button {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #000;
  border-radius: 0.3em;
  padding: 0.5em;
  color: #000;
}

.page--questionnaire input[type="text"]:focus,
.page--questionnaire input[type="tel"]:focus,
.page--questionnaire input[type="email"]:focus,
.page--questionnaire input[type="password"]:focus,
.page--questionnaire input[type="number"]:focus,
.page--questionnaire button:focus {
  border-color: #000;
}

.page--questionnaire input[type="text"].form__error,
.page--questionnaire input[type="tel"].form__error,
.page--questionnaire input[type="email"].form__error,
.page--questionnaire input[type="password"].form__error,
.page--questionnaire input[type="number"].form__error,
.page--questionnaire button.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}

.page--questionnaire input[type="text"].form__error:focus,
.page--questionnaire input[type="tel"].form__error:focus,
.page--questionnaire input[type="email"].form__error:focus,
.page--questionnaire input[type="password"].form__error:focus,
.page--questionnaire input[type="number"].form__error:focus,
.page--questionnaire button.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}

.page--questionnaire input[type="text"][disabled],
.page--questionnaire input[type="tel"][disabled],
.page--questionnaire input[type="email"][disabled],
.page--questionnaire input[type="password"][disabled],
.page--questionnaire input[type="number"][disabled],
.page--questionnaire button[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

.page--questionnaire input[readonly="readonly"] {
  border: none;
  background: #e5e5e5;
  color: #a7a7a7;
  padding: 1em 0.5em;
}

.page--questionnaire .input--half {
  width: 100% !important;
}
.page--questionnaire .input--quarter {
  width: 50% !important;
}
.page--questionnaire button {
  border: none;
  line-height: 1;
}

/* textarea */
.page--questionnaire textarea {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #000;
  border-radius: 0.3em;
  padding: 0.5em;
  padding: 1em;
  height: 10em;
}
.page--questionnaire textarea:focus {
  border-color: #000;
}
.page--questionnaire textarea.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.page--questionnaire textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.page--questionnaire textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}

/* select */
.page--questionnaire .form__select {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.page--questionnaire .form__select select {
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border: 1px solid #000;
  border-radius: 0.3em;
  padding: 0.5em;
  line-height: 1.9;
  padding-right: 1.5em;
}
.page--questionnaire .form__select select:focus {
  border-color: #000;
}
.page--questionnaire .form__select select.form__error {
  background: #fff0ea;
  color: #f33;
  border-color: #f33;
}
.page--questionnaire .form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.page--questionnaire .form__select select[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
.page--questionnaire .form__select::after {
  content: "";
  display: inline-block;
  width: 0.25em;
  height: 0.25em;
  border: 1px solid #000;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  vertical-align: middle;
}

.page--questionnaire .form__select::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border: 1px solid #000;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  vertical-align: middle;
  right: 0;
  position: absolute;
  top: 50%;
  right: 9px;
  margin-top: -0.25em;
}
.page--questionnaire .section--detail form .icon--required::before {
  content: "必須";
  color: #e63a37;
  font-size: 0.9em;
  font-weight: 500;
  vertical-align: top;
  padding-left: 10px;
}
/* checkbox */
.page--questionnaire .form__checkbox label p {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.page--questionnaire .form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.page--questionnaire .form__checkbox.form__error {
  color: #f33;
}
.page--questionnaire .form__checkbox label p {
  padding-left: 1.6em;
}
.page--questionnaire .form__checkbox label p::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.3em;
  border: 1px solid #000;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.page--questionnaire .form__checkbox label p::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.4em;
  border: 2px solid #000;
  border-top: none;
  border-right: none;
  margin: -0.25em 0 0;
  position: absolute;
  top: 70%;
  left: 0.2em;
  transform: rotate(-45deg);
  opacity: 0;
}
.page--questionnaire .form__checkbox :checked ~ p::before {
  /*	background: $primary-color; border-color: $primary-color;*/
}
.page--questionnaire .form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}

/* radio */
.page--questionnaire .form__radio label p {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.page--questionnaire .form__radio input[type="checkbox"],
.page--questionnaire .form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.page--questionnaire .form__radio.form__error {
  color: #f33;
}
.page--questionnaire .form__radio label p {
  padding-left: 1.6em;
}
.page--questionnaire .form__radio label p::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px solid #000;
  margin: -0.6em 0 0;
  position: absolute;
  top: 50%;
  left: 0;
}
.page--questionnaire .form__radio :checked ~ p::before {
  border-color: #000;
  border-width: 0.3em;
}

/* toggle button */
.page--questionnaire .form__toggle label p {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}

.page--questionnaire .form__toggle input[type="checkbox"],
.page--questionnaire .form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.page--questionnaire .form__toggle.form__error {
  color: #f33;
}
.page--questionnaire .form__toggle label p {
  padding-left: 0;
  position: relative;
}
.page--questionnaire .form__toggle label p::before,
.page--questionnaire .form__toggle label p::after {
  content: "";
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #000;
}
.page--questionnaire .form__toggle label p::before {
  width: 50px;
  border-radius: 15px;
  top: 50%;
  right: 0;
}
.page--questionnaire .form__toggle label p::after {
  width: 30px;
  background: #000;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  right: 20px;
}
.page--questionnaire .form__toggle :checked ~ p::before {
  background: #000;
  border-color: #000;
}
.page--questionnaire .form__toggle :checked ~ p::after {
  right: 0;
}

/* horizontal */
.page--questionnaire .form--horizontal li {
  display: inline-block;
}
.page--questionnaire .form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}
.page--questionnaire .form--confirm {
  border: 0.5px solid #d9dde0;
  border-radius: 6px;
  padding: 40px 30px;
  margin: 0 0 40px;
}
.page--questionnaire .form--confirm dt {
  margin: 0 0 10px;
  opacity: 0.4;
}
.page--questionnaire .form--confirm dd {
  margin: 0 0 30px;
  line-height: 1.5;
}
.page--questionnaire .form--confirm dd .ph {
  max-width: 50%;
}
.page--questionnaire .content-main > section .section-tit {
  color: #000;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}
.page--questionnaire .form--post {
  margin-bottom: 60px;
}
.page--questionnaire .form--confirm {
  border-color: #000;
  margin-top: 40px;
}
.page--questionnaire .form--confirm dt {
  opacity: 0.7;
}
.page--questionnaire .form--confirm dd {
  line-height: 1.5;
  border-bottom: 1px solid #999999;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.page--questionnaire .form--confirm dd:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/*===================================================
	base
====================================================*/
.page--questionnaire section {
  width: 100%;
  padding: 80px 5%;
  box-sizing: border-box;
  margin: 0 auto;
}
.page--questionnaire section .txt--basic {
  margin-bottom: 2em;
}

/*===================================================
	header footer
====================================================*/

.page--questionnaire .header,
.page--questionnaire .header.down {
  display: none !important;
}
.page--questionnaire footer .credit {
  text-align: center;
}
/*===================================================
	btn
====================================================*/
.page--questionnaire .section-tit {
  font-size: 1.5em;
  margin-bottom: 2em;
  line-height: 1.2;
}
.page--questionnaire .btn {
  margin-top: 1.5em;
}
.page--questionnaire input[type="submit"] {
  -webkit-appearance: none;
  background: none;
  border: none;
}
.page--questionnaire .btn .btn--main {
  position: relative;
  display: block;
  text-align: center;
  width: 270px;
  padding: 20px 15px;
  border-radius: 100px;
  font-size: 14px;
  margin: 0 auto;
  color: #fff;
  background: #f68057;
  z-index: 0;
  line-height: 1;
  box-sizing: border-box;
}
.page--questionnaire .btn .btn--sub {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid;
  width: 270px;
  font-size: 14px;
  padding: 20px 15px;
  border-radius: 100px;
  margin: 0 auto;
  color: #f68057;
  z-index: 0;
  line-height: 1;
  box-sizing: border-box;
}

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

	お問い合わせ


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

/*===================================================
	formBox
====================================================*/
.formBox {
  padding: 55px 0 0;
  overflow: hidden;
  color: #333;
  z-index: 1;
  margin: 0 0 30px;
}
.formBox .inBox {
  padding: 30px 20px;
}

.formBox .inBox h2 {
  display: block;
  font-weight: 500;
  color: #333;
  font-size: 20px;
  margin: 0 0 10px;
  padding: 0;
}
.formBox .inBox .lead {
  font-size: 12px;
  padding: 0 0 30px;
}
.formBox .inBox .lead.red {
  text-align: left;
}

.formBox .formArea {
  border-top: 1px solid #ececec;
  padding: 15px 0 0;
}
.formBox .formList {
  display: block;
  border-bottom: 1px solid #ececec;
  padding: 0 0 15px;
  margin: 0 0 15px;
}
.formBox .formList dt {
  width: 100%;
  padding: 0 0 5px;
}
.formBox .formList dt.required::after {
  content: "必須";
  display: inline-block;
  background: #ce0000;
  color: #fff;
  font-size: 11px;
  left: 0.5em;
  text-align: center;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 3px;
  vertical-align: 1px;
  margin-left: 6px;
}
.formBox .formList dd {
  width: 100%;
}
.formBox .formList dd .txtBox {
  width: 100%;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  padding: 10px 20px 10px 10px;
  font-size: 16px;
  -webkit-appearance: none;
}
.formBox .formName select:after {
  position: absolute;
  content: "\f0d7";
  pointer-events: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.formBox .formList dd .txtBox.center {
  text-align: center;
}
.formBox .formList dd .selectOut {
  position: relative;
  width: 100%;
}
.formBox .formList dd .selectOut:after {
  position: absolute;
  content: "\f0d7";
  pointer-events: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.formBox .formList dd .selectOut.no:after {
  content: "";
}
.formBox .formList dd .selectLong {
  width: 100%;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  padding: 10px 30px 10px 10px;
  font-size: 16px;
  -webkit-appearance: none;
  text-overflow: ellipsis;
}

.formBox .formList dd textarea {
  width: 100%;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid #e1e1e1;
  padding: 10px;
  font-size: 16px;
  -webkit-appearance: none;
  height: 20em;
}

.formBox .inline {
  display: flex;
}

.formBox .btn {
  -webkit-appearance: none;
  text-align: center;
  display: block;
  width: 80%;
  padding: 15px;
  margin: 0 auto 0;
  background: #fff;
  color: #333;
  font-size: 14px;
  border-radius: 100px;
  transition: 0.3s ease;
  line-height: 1em;
  cursor: pointer;
  border: 1px solid #333;
}

.formBox .btn.sub {
  color: #a2a2a2;
  border: 1px solid #a2a2a2;
  margin: 0 10px 0 0;
}

.formBox.formCompBox {
}
.formBox.formCompBox h2 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 18px;
}
.formBox.formCompBox .lead {
  text-align: center;
  font-size: 15px;
}

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

	エラー


====================================================*/
.page--error {
}
.page--error .section--detail {
  padding: 85px 20px;
}
.page--error .section--detail .tit {
  margin: 0 0 20px;
  font-size: 11px;
}
.page--error .section--detail .txt {
  font-size: 11px;
  margin: 0 0 20px;
}
.page--error .section--detail .btn a {
  display: block;
  width: 60%;
  border: 1px solid;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto;
  padding: 5px;
}

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

	プライバシーポリシー

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

.privacyBox {
  background: #f5f5f5;
  padding: 30px 0 60px;
}
.privacyBox .inBox {
  padding: 0 20px;
}

.privacyBox .sectionTit {
  font-size: 22px;
  margin: 0 0 15px;
}
.privacyBox .inner {
  padding: 0 4% 40px;
}
.privacyBox .txt {
  margin: 0 0 20px;
}
.privacyBox .info {
  text-align: right;
  font-size: 0.8em;
  margin: 0 0 30px;
}
.privacyBox dl {
  padding: 0 !important;
}
.privacyBox dt {
  font-size: 14px !important;
  margin: 0 0 10px !important;
  line-height: 1.7 !important;
}
.privacyBox dd {
  margin: 0 0 30px;
  padding: 0 !important;
}
.privacyBox ol {
  padding: 0 0 0 25px;
  margin: 0 0 15px;
}
.privacyBox ol li {
  list-style-type: decimal;
  margin: 0 0 5px;
}
.privacyBox ol ol li {
  list-style-type: upper-roman;
}

.privacyBox a {
  color: #ff7c60;
  text-decoration: underline;
}

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

	反社会的勢力排除宣言

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

.declarationBox {
    background: #f5f5f5;
    padding: 60px 0 80px;
}
.declarationBox .inBox {
  padding: 0 20px;
}
.declarationBox .sectionTit {
  font-size: 22px;
  margin: 0 0 15px;
}
.declarationBox .txt {
  margin: 0 0 20px;
}
.declarationBox .info {
  text-align: right;
  font-size: 12px;
}
.declarationBox ol {
  padding: 0 0 0 20px;
  margin: 0 0 20px;
}
.declarationBox ol li {
  list-style-type: decimal;
  margin: 0 0 5px;
}

*===================================================
  リニューアル:202209
  ====================================================*/
  .home
  .servicesBox
  .serviceBlockList
  li
  .logo-add {
  height: 63px;
  margin-top: 10px;
}

.home .visualBox .mainTit {
  padding-bottom: 0;
}

.home .visualBox {
  margin-top: 0;
  padding-top: 112px;
}

@media (min-width: 1001px) {
  .home .visualBox {
    height: 93vh;
  }
}

@media (max-width: 1000px) {
  .home .visualBox {
    padding-top: 70px;
  }
}

@media (min-width: 1001px) {
  .home .bgflag {
    width: 551px;
    top: -10px;
  }
}

@media (max-width: 1000px) {
  .home .bgflag {
    width: 120vw;
  }
}

.home .add:hover {
  background-color: #000000;
  background-image: url("../../tixplus/img/re/fansapp-bg.png");
  color: #fff;
}

.home .logo-add {
  height: 63px;
}

.home #topics-slider .topics {
  background: #f47e56;
  color: #fff;
  padding-bottom: 90px;
  font-size: 15px;
}

@media (min-width: 1001px) {
  .home #topics-slider .topics {
    position: relative;
  }
}

@media (max-width: 1000px) {
  .home #topics-slider .topics-inner {
    position: relative;
  }
}

@media (min-width: 1001px) {
  .home #topics-slider .topics-inner {
    padding-left: 68px;
  }
}

@media (max-width: 1000px) {
  .home #topics-slider .topics-inner {
    padding: 60px 30px;
  }
}

.home #topics-slider .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 55%;
  cursor: pointer;
}

.home #topics-slider .buttons:hover {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media (max-width: 1000px) {
  .home #topics-slider .buttons {
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.home #topics-slider .preves {
  position: relative;
  width: 40px;
  height: 40px;
}

.home #topics-slider .preves:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home #topics-slider .prev-btn {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  position: absolute;
  top: 11px;
  left: 14px;
}

.home #topics-slider .prev-btn-hover {
  position: absolute;
  content: "";
  width: 34px;
  height: 34px;
  left: 0;
  top: 0;
  background: transparent;
  border: 3px solid #fff;
  border-radius: 50px;
}

.home #topics-slider .nexts {
  margin-left: 25px;
  width: 40px;
  height: 40px;
  position: relative;
}

.home #topics-slider .nexts:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home #topics-slider .next-btn {
  content: "";
  width: 15px;
  height: 15px;
  border: 0px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 11px;
  right: 14px;
}

.home #topics-slider .next-btn-hover {
  position: absolute;
  content: "";
  width: 34px;
  height: 34px;
  right: 0;
  top: 0;
  background: transparent;
  border: 3px solid #fff;
  border-radius: 50px;
}

.home #topics-slider .topics-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1000px) {
  .home #topics-slider .topics-contents {
    display: block;
  }
}

@media (min-width: 1001px) {
  .home #topics-slider .topics-text-box {
    margin-top: 92px;
    margin-right: 60px;
  }
}

.home #topics-slider .slide-content-text {
  font-weight: bold;
  line-height: 1.6;
}

.home #topics-slider .topics-more-btn {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

@media (max-width: 1000px) {
  .home #topics-slider .topics-more-btn {
    margin-top: 80px;
  }
}

.home #topics-slider .btn a {
  position: relative;
  display: block;
  text-align: center;
  border: 1px solid;
  padding: 15px;
  border-radius: 100px;
  margin: 0 auto;
  color: #f68057;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}

@media (min-width: 1001px) {
  .home #topics-slider .btn a {
    width: 270px;
  }
}

@media (max-width: 1000px) {
  .home #topics-slider .btn a {
    width: 60%;
    padding: 10px;
  }
}

.home #topics-slider .btn a span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #f68057;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.home #topics-slider .btn a:hover {
  color: #fff;
}

.home #topics-slider .btn a:hover span {
  width: 225%;
  height: 562.5px;
}

.home #topics-slider .slide-content-img img {
  border-radius: 10px;
}

.home #topics-slider .swiper-slide:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home #topics-slider .slide-content-date {
  color: #fff;
  padding-top: 11px;
  padding-left: 15px;
}

.home #topics-slider .slide-content-text {
  color: #fff;
  padding-left: 15px;
  letter-spacing: 0.02em;
}

.home #topics-slider .swiper-container {
  margin-top: -53px;
  margin-left: auto;
  width: 100%;
  height: auto;
}

@media (max-width: 1000px) {
  .home #topics-slider .swiper-container {
    margin-top: 30px;
  }
}

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

	リニューアル:202209:eticketTop

====================================================*/
#eticketTop .mv {
  background-color: #000;
  background-image: url(/static/tixplus/img/eticket/mv-bg-eticket.png);
}
#eticketTop .fv {
    position: relative;
    z-index: 0;
    background: #fff;
}
#eticketTop .fv .fvInner {
    width: 90%;
    margin: 0 auto 0;
    padding: 60px 0 0;
}
#eticketTop .fv .fvInner .lead {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 40px;
}
#eticketTop .fv .fvInner .fvTit {
  text-align: center;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 40px;
}
#eticketTop .fv .fvList {
    margin: 0 0 40px;
}
#eticketTop .fv .fvList li {
  margin: 0 0 40px;
  position: relative;
}
#eticketTop .fv .fvList li:last-child {
  margin: 0;
}
#eticketTop .fv .fvList li:after {
    content: "";
    display: block;
    position: absolute;
    left: 39px;
    top: 40px;
    width: 0;
    height: 100%;
    background: #c8c8c8;
    z-index: -1;
    border: 1px dashed #c8c8c8;
}
#eticketTop .fv .fvList li:last-child:after {
  content: none;
}
#eticketTop .fv .fvList li:nth-last-child(2):after {
  background: transparent;
}
#eticketTop .fv .fvList .inList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#eticketTop .fv .fvList li:nth-child(even) .inList {
  flex-direction: row-reverse;
}
#eticketTop .fv .fvList .inList .face {
  display: none;
}
#eticketTop .fv .fvList .inList dt {
    border-radius: 100px;
    min-width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-shadow: 0 0 30px 0 rgb(246 128 87 / 25%);
    padding: 0;
    margin: 0 20px 0 0;
    font-size: 11px;
    color: #f68057;
    letter-spacing: 0;
}
#eticketTop .fv .fvList .inList dd {
  width: calc(100% - 84px);
}
#eticketTop .fv .fvList .inList dd .cap {
  line-height: 0;
  margin: 0 0 10px;
}
#eticketTop .fv .fvList li .inList dd .txt {
  font-size: 14px;
  margin: 0 0 10px;
  font-weight: 600;
  line-height: 1.5em;
}
#eticketTop .fv .fvList li .inList dd .inIllust {
  width: 100%;
}
#eticketTop .fv .fvList li .inList dd .link a {
  position: relative;
  color: #f68057;
}
#eticketTop .fv .fvList li .inList dd .link a:before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  right: -10px;
  top: 50%;
  transform: rotate(45deg) translateY(-70%);
  background: #f68057;
  border-radius: 100px;
}
#eticketTop .fv .fvList li .inList dd .link a:after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: -10px;
  top: 50%;
  transform: rotate(45deg) translateY(-65%);
}
#eticketTop .fv .fvList li:nth-child(1) .inList dd .cap {
  width: 56%;
}
#eticketTop .fv .fvList li:nth-child(2) .inList dd .cap {
  width: 90%;
}
#eticketTop .fv .fvList li:nth-child(3) .inList dd .cap {
  width: 56%;
}
#eticketTop .fv .fvList li:nth-child(4) .inList dd .cap {
  width: 46%;
}
#eticketTop .fv .fvList li:nth-child(5) .inList dd .cap {
  width: 90%;
}

#eticketTop .fv .fvInner_bg {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 300px;
    right: 0;
    z-index: -2;
    line-height: 0;
    background: #f5f5f5;
    transform: translateY(-25%);
    overflow: hidden;
}
#eticketTop .fv .fvInner .btnNext a {
    position: relative;
    display: block;
    text-align: center;
    width: 40%;
    font-size: 16px;
    padding: 10px 25px 10px 5px;
    border-radius: 100px;
    margin: 0 auto;
    color: #fff;
    background: #f68057;
    overflow: hidden;
    z-index: 0;
    transform: rotateZ(0.03deg);
    border: 1px solid #f68057;
}
#eticketTop .fv .fvInner .btnNext a:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 20px;
    top: 50%;
    transform: rotate(45deg) translateY(-75%);
    background: #FFF;
    border-radius: 100px;
}
#eticketTop .fv .fvInner .btnNext a:after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    right: 20px;
    top: 50%;
    transform: rotate(45deg) translateY(-75%);
}


#eticketTop .achieve {
  position: relative;
}
#eticketTop .achieve::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 160px);
  background: #f5f5f5;
  top: 0;
  z-index: -1;
}
#eticketTop .achieve .achieveInner {
    padding: 60px 20px 60px;
}
#eticketTop .achieve .achieveInner .tit {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
#eticketTop .achieve .achieveInner .lead {
  line-height: 1.5em;
  margin: 0 0 30px;
}
#eticketTop .achieve .achieveInner .achieveList li {
  margin-bottom: 30px;
}
#eticketTop .achieve .achieveInner .achieveList li:last-child {
  margin-bottom: 0;
}
#eticketTop .achieve .achieveInner .achieveList li .name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
}
.achieveList li .icon {
  display: flex;
}
#eticketTop .achieve .achieveInner .achieveList li .icon dd {
  font-size: 10px;
  font-weight: 600;
  padding: 5px;
  border: 1px solid;
  line-height: 1em;
  border-radius: 100px;
  margin: 0 10px 0 0;
}
#eticketTop .intro {
  background: #f68057;
}
#eticketTop .intro .introInner {
    padding: 60px 20px 60px;
}
#eticketTop .intro .introInner .tit {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
#eticketTop .intro .stepList{
    display: flex;
    flex-wrap: wrap;
}
#eticketTop .intro .stepList li {
    width: 40vw;
    height: 40vw;
    background: #fff;
    border-radius: 800px;
    position: relative;
    margin: 0 auto 5vw;
}
#eticketTop .intro .stepList li:nth-child(3),
#eticketTop .intro .stepList li:nth-child(4){

    margin: 0 auto 0;
}
#eticketTop .intro .stepList li .stepNum {
    color: #f68057;
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
#eticketTop .intro .stepList li .stepTxt {
    font-size: 12px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 100%;
    line-height: 1.4em;
}
#eticketTop .intro .txt {
  font-size: 12px;
  line-height: 1.5em;
}
#eticketTop .price {
  background: #f5f5f5;
}
#eticketTop .price .priceInner {
  padding: 60px 20px 60px;
}
#eticketTop .price .tit {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
#eticketTop .price .priceDetail {
  display: block;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  padding: 30px 0;
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
  margin: 0 auto 20px;
}
#eticketTop .price .priceDetail dt {
  text-align: center;
  line-height: 1.5em;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 40px;
}
#eticketTop .price .priceDetail dd {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
#eticketTop .price .txt {
  font-size: 12px;
}
#eticketTop .price .caution{
    font-size: 12px;
    line-height: 1.5em;
    text-indent: -12px;
    padding: 0 0 0 12px;
}
#eticketTop .function {
}
#eticketTop .function .functionInner {
  padding: 60px 20px 60px;
}
#eticketTop .function .functionInner .tit {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
#eticketTop .function .leftBlock {
  margin: 0;
}
#eticketTop .function .blockTit {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 30px;
}
#eticketTop .function .detailList {
  border-bottom: 1px solid;
  padding: 0 0 20px;
  margin: 0 0 20px;
}
#eticketTop .function .detailList:last-child {
  margin: 0;
}
#eticketTop .function .detailList dt {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
#eticketTop .function .detailList dd {
  font-size: 14px;
  letter-spacing: 0;
}


#eticketTop .nextPlan {
    background-image: url(/static/tixplus/img/eticket/bg_nextPlanImage.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px;
    overflow: hidden;
    background-position: left,top;
}
#eticketTop .nextPlan .nextPlanTit{
    width: 50%;
    padding: 0 20px 0;
    margin: 0 0 10px;
}
#eticketTop .nextPlan .nextPlanCap {
    padding: 0 20px 0;
    font-size: 14px;
    font-weight: 600;
    color: #f68057;
    margin: 0 0 20px;
}
#eticketTop .nextPlan .nextPlanOuter{
    position: relative;
    padding: 0 20px 0;
}
#eticketTop .nextPlan .nextPlanInner{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    color: #FFF;
}
#eticketTop .nextPlan .nextPlanImage{
    position: absolute;
    top: -29%;
    right: -7%;
    width: 40%;
}
#eticketTop .nextPlan .nextPlanTxtBox {
    width: 100%;
    position: relative;
}
#eticketTop .nextPlan .innerTit {
    font-size: 18px;
    line-height: 1.5em;
    margin: 0 0 10px;
    font-weight: 600;
}
#eticketTop .nextPlan .innerLead{
    font-size: 14px;
    margin: 0 0 40px;
    font-weight: 600;
    line-height: 1.5em;
}
#eticketTop .nextPlan .innerList{
    margin: 0;
}
#eticketTop .nextPlan .innerList li{
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.5em;
}
#eticketTop .nextPlan .innerList li:last-child{
    margin: 0;
}
#eticketTop .nextPlan .btn{

}
#eticketTop .nextPlan .btn a{
    padding: 15px;
    color: #FFF;
    background: transparent;
    border-radius: 100px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    line-height: 1.5em;
}
#eticketTop .nextPlan .btn a:hover{
    color: #F68057;
}
#eticketTop .nextPlan .btn a:after {
    border: 1px solid #FFF;
}
#eticketTop .nextPlan .btn a span {
    background-color: #FFF;
}

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

	リニューアル:202209:共通

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

.pageContainer{
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}
.bg_wave_white {
    line-height: 0;
    position: absolute;
    top: -20vw;
    right: -30%;
    z-index: 0;
    width: 150%;
    max-width: 1600px;
}
.bg_wave_white:before {
    position: absolute;
    top: 0;
    right: 100%;
    display: block;
    content: "";
    width: 100vw;
    height: 100%;
    background: #ffffff;
}
/*===================================================

	リニューアル:202209:COMPANY

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

.l-mv {
  background: url(/static/tixplus/img/company/mv.png) no-repeat center
    center/cover;
  height: 400px;
  position: relative;
}
@media (max-width: 1000px) {
  .l-mv {
    height: 300px;
  }
}

.p-mv_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 1000px) {
  .p-mv_inner {
    top: calc(50% + 50px);
  }
}

.p-mv_title {
  color: #fff;
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.p-mv_sub-title {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-top: 20px;
}

.p-company_tabs_inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 70px 20px 0;
}
@media (max-width: 1000px) {
  .p-company_tabs_inner {
    padding: 20px;
  }
}

.p-company_tab_lists {
  display: flex;
}
@media (max-width: 1000px) {
  .p-company_tab_lists {
    flex-wrap: wrap;
  }
}

.p-company_tab {
  font-size: 14px;
  letter-spacing: 0.06em;
  padding-top: 10px;
  padding-bottom: 30px;
  position: relative;
}

.p-company_tab {
  width: calc(50% - 5px);
  padding: 0;
}
.p-company_tab:nth-child(2n) {
  margin-left: 10px;
}
.p-company_tab:nth-child(n + 3) {
  margin-top: 10px;
}
.p-company_tab::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #c8c8c8;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.p-company_tab::before {
  position: absolute;
  content: "";
  border-top: 2px solid #f68058;
  border-right: 2px solid #f68058;
  transform: translateY(-100%) rotate(135deg);
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
}
.p-company_tab a {
  padding: 10px 0 10px 10px;
  display: block;
  position: relative;
  cursor: pointer;
}

.l-company_about {
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 1000px) {
  .l-company_about {
    margin-top: 50px;
  }
}

.p-company_about_bg {
  position: absolute;
  bottom: 0;
  width: 70%;
  right: 0;
  z-index: -1;
}
@media (max-width: 1000px) {
  .p-company_about_bg {
    width: 100%;
  }
}

.p-company_about_inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 160px 20px 0;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .p-company_about_inner {
    padding: 80px 20px 0;
  }
}

.p-company_about_contents_inner {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-company_about_contents_inner {
    display: block;
  }
}
@media (max-width: 1000px) {
  .p-company_about_logo {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .p-company_about_texts {
    margin-top: 30px;
  }
}

.p-company_about_title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.p-company_about_text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .p-company_about_text {
    margin-top: 20px;
  }
}

.p-company_symbol {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .p-company_symbol {
    margin-top: 30px;
  }
}

.p-company_symbol_text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .p-company_symbol_text {
    margin-top: 20px;
  }
}

.l-company_mission {
  padding: 150px 20px;
  position: relative;
}
@media (max-width: 1000px) {
  .l-company_mission {
    padding: 80px 20px;
  }
}

.p-company_mission_inner {
  max-width: 1090px;
  margin: 0 auto;
}

.p-company_missions {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-company_missions {
    display: block;
  }
}

.p-company_mission_title {
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
}
.p-company_mission_title span {
  color: #f68058;
}

.p-company_mission_text {
  text-align: center;
  margin-top: 40px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6153846154;
}
@media (max-width: 1000px) {
  .p-company_mission_text {
    margin-top: 20px;
    font-size: 20px;
  }
}

.p-company_mission_text_detail {
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 1.7647058824;
  padding: 50px;
  margin-top: 40px;
  background: #FDF5EF;
  border-radius: 20px;
}
@media (max-width: 1000px) {
  .p-company_mission_text_detail {
    margin-top: 20px;
    padding: 25px;
    font-size: 14px;
  }
}

.p-company_value_bg {
  position: absolute;
  bottom: 0;
  width: 70%;
  right: 0;
  z-index: -1;
}
@media (max-width: 1000px) {
  .p-company_value_bg {
    width: 100%;
    bottom: 0;
  }
}

.p-company_value_inner {
  position: relative;
  margin-top: -30px;
}
.p-company_value_inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 160px);
  background: #fdf5ef;
  top: 210px;
  z-index: -1;
}
@media (max-width: 1000px) {
  .p-company_value_inner::after {
    top: 100px;
    height: calc(100% - 50px);
  }
}
@media (max-width: 1000px) {
  .p-company_value_inner {
    margin-top: -10px;
  }
}

@media (max-width: 1000px) {
  .p-company_value_inner_inner {
    padding: 0 20px;
  }
}

.p-company_values {
  max-width: 1050px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-company_values {
    display: block;
  }
}

.p-company_value_title {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.02em;
  text-align: center;
}
.p-company_value_title span {
  font-size: 54px;
  color: #f68058;
}

.p-company_value_texts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .p-company_value_texts {
    margin-top: 40px;
  }
}

.p-company_value_box--orange {
  border-radius: 10px;
  border: 6px solid #f68058;
  background: #fff;
  padding: 45px 30px;
  max-width: 500px;
}
@media (max-width: 1000px) {
  .p-company_value_box--orange {
    border-width: 5px;
    padding: 20px;
    width: 100%;
  }
  .p-company_value_box--orange:not(:first-child) {
    margin-top: 30px;
  }
}

.p-company_value_text_box {
  display: flex;
}
.p-company_value_text_box:not(:first-child) {
  margin-top: 63px;
}

.p-company_value_left {
  text-align: center;
}

.p-company_value_value {
  font-size: 14px;
  color: #f68058;
}

.p-company_value_num {
  font-size: 34px;
  font-weight: bold;
  color: #f68058;
  margin-top: 10px;
}

.p-company_value_right {
  margin-left: 25px;
  padding-top: 10px;
}

.p-company_value_right_title {
  font-size: 32px;
  font-weight: bold;
}
.p-company_value_right_title span {
  color: #f68058;
  font-weight: bold;
}

.p-company_value_right_text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

.p-company_value_text {
  font-size: 14px;
  line-height: 2;
  margin-top: 14px;
}
@media (max-width: 1000px) {
  .p-company_value_text {
    margin-top: 10px;
  }
}

.l-company_detail {
  background: #f5f5f5;
  margin-top: -10px;
}

.p-company_detail_inner {
  padding: 178px 20px 70px;
  max-width: 1090px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-company_detail_inner {
    padding: 80px 20px 50px;
  }
}

.p-company_detail_title {
  font-size: 26px;
  font-weight: bold;
  color: #f68058;
}

.p-dl_wrapper {
  margin-top: 12px;
}
@media (max-width: 1000px) {
  .p-dl_wrapper {
    margin-top: 20px;
  }
}

.p-dl_wrapper .dl {
  display: flex;
  padding: 20px 0;
  border-bottom: 0.5px solid #d6d6d6;
  letter-spacing: 0.08em;
}
@media (max-width: 1000px) {
  .p-dl_wrapper .dl {
    padding: 20px 10px;
  }
}

.border-none {
  border-bottom: none;
}

.p-dl_wrapper .dt {
  width: 15%;
}
@media (max-width: 1000px) {
  .p-dl_wrapper .dt {
    width: 30%;
  }
}

.p-dl_wrapper .dd {
  width: 85%;
}
@media (max-width: 1000px) {
  .p-dl_wrapper .dd {
    width: 70%;
  }
}
.p-dl_wrapper .dd .space {
  margin-right: 35px;
}
.p-dl_wrapper .dd .mt30 {
  margin-top: 30px;
}

.l-company_map {
  padding-top: 30px;
  background: #f5f5f5;
}

.p-company_map_wrapper {
  position: relative;
}
@media (max-width: 1000px) {
  .p-company_map_wrapper {
    padding-top: 70%;
  }
}
.p-company_map_wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.l-company_flow {
  background: #f5f5f5;
}

.p-company_flow_inner {
  padding: 170px 20px 140px;
  max-width: 1090px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-company_flow_inner {
    padding: 80px 20px;
  }
}

.p-company_flow_title {
  font-size: 26px;
  font-weight: bold;
  color: #f68058;
}

.p-company_values .credo {
  border: 1px solid #3d4079;
  padding: 15px 15px 15px 15px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  left: 0;
  margin-top: 20px;
  background: #fff;
}
.p-company_values .credo .credoSection {
    margin:0 0 20px;
}
.p-company_values .credo .credoSection dt .tit {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 5px;
  line-height: 1.3em;
}
.p-company_values .credo .credoSection dt .txt {
  margin: 0 0 10px;
}
.p-company_values .credo .credoSection dd {
  position: relative;
  line-height: 0;
}
.p-company_values .credo .btnCredo {
}
.p-company_values .credo .btnCredo a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: block;
    background: #fff;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    font-size: calc(40 / 1000 * 100vw);
    color: #000;
    border-radius: 100px;
    border: 1px solid;
    text-align: center;
    box-sizing: border-box;
}
.l-company_values .slideshareBox {
  position: relative;
  width: 100%;
  padding-top: 51.5%;
  pointer-events: auto;
}
.l-company_values .slideshareBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.l-company_values .slideshareBox:after {
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 13%;
  height: 40px;
  background: #e9f7fd;
  z-index: 9999;
}
.p-company_values .popup{
    overscroll-behavior: contain;
    overflow-y: scroll;
}
.p-company_values .popup.popActive {
    transform: initial;
    left: 0;
}
.p-company_values .popup .popInBox{
    pointer-events: none;
    padding: 0;
}
.p-company_values .popup .popIninner{
    position: relative;
    width: 90%;
    pointer-events: auto;
    margin:0 auto;
}
.p-company_values .popup .shade{
    overflow: hidden;
}
.p-company_values .popup .close {
    box-sizing: border-box;
    border-radius: 100px;
    background: #000;
    z-index: 999;
    right: 100%;
    transition: transform 0.3s ease;
}
.p-company_values .popup .close::before,
.p-company_values .popup .close::after {
    width: 60%;
}

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

	リニューアル:202209:SERVICE

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

@media (max-width: 1000px) {
  .is-pc {
    display: none;
  }
}
.l-service .p-service_inner {
  padding-top: 107px;
}
.l-service .p-service_title--en {
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.01em;
  color: #000;
  font-family: "Roboto";
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .l-service .p-service_title--en {
    font-size: 20px;
  }
}
.l-service .p-service_title--ja {
  text-align: center;
  color: #f68057;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.01em;
}
@media (max-width: 1000px) {
  .l-service .p-service_title--ja {
    margin-top: 10px;
    font-size: 14px;
  }
}
.l-service .c-service_lists {
  margin-top: 30px;
}
.l-service .c-service_list {
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .l-service .c-service_list {
    padding: 30px 20px;
  }
}
.l-service .c-service_list:nth-child(even) {
  background: #f5f5f5;
}
.l-service .c-service_list:nth-child(even) .serviceBlockList li {
  background-color: #fff;
}
.l-service
  .c-service_list:nth-child(even)
  .serviceBlockList
  li:not(.blank):hover {
  background-color: #000;
}
.l-service .blank {
  background-color: #fff;
}
.l-service .c-service_list_inner {
  display: flex;
  align-items: center;
  max-width: 1090px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .l-service .c-service_list_inner {
    display: block;
  }
}
.l-service .c-service_list_texts {
  width: 46%;
  text-align: center;
}
@media (max-width: 1000px) {
  .l-service .c-service_list_texts {
    width: 100%;
  }
}
.l-service .c-service_list_title {
  font-weight: bold;
  font-size: 34px;
  line-height: 1.4117647059;
  letter-spacing: 0.1em;
  padding-top: 54px;
  position: relative;
}
.l-service .c-service_list_title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  background: #f68057;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .l-service .c-service_list_title::before {
    width: 100px;
    height: 3px;
  }
}
@media (max-width: 1000px) {
  .l-service .c-service_list_title {
    padding-top: 20px;
    font-size: 24px;
  }
}
.l-service .c-service_list_text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .l-service .c-service_list_text {
    margin-top: 20px;
  }
}
.l-service .c-service_link_lists {
  width: 54%;
}
@media (max-width: 1000px) {
  .l-service .c-service_link_lists {
    width: 100%;
    margin-top: 30px;
  }
}
.l-service .serviceBlockList {
  background: none;
}
.l-service .serviceBlockList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
}
.l-service .serviceBlockList li {
  transition: 0.5s;
  width: 50%;
  box-sizing: border-box;
  background-color: #f5f5f5;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: relative;
  height: 160px;
}
.l-service .serviceBlockList li:nth-child(3n) {
  border-right: none;
}
.l-service .serviceBlockList li .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.l-service .serviceBlockList li a {
  display: block;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  background-position: center;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  height: 100%;
  color: #828282;
}
.l-service .serviceBlockList li span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.l-service .serviceBlockList li {
  width: calc(50% - 2px);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border-bottom: 0 solid #fff;
  border-right: 0 solid #fff;
}
.l-service .servicesBox .inBox:hover .titBlock {
  width: 100%;
  margin: 0 0 21px;
  border-radius: 10px;
  border-bottom: 0 solid #fff;
}
.l-service .serviceBlockList .blank {
  background-image: url("/static/tixplus/img/ticketplus/ph_blank_logo.png");
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
}
.l-service .serviceBlockList li img {
  margin: 0 auto;
}
.l-service .serviceBlockList li .on {
  display: none;
}
.l-service .serviceBlockList li:hover .on {
  display: block;
}
.l-service .serviceBlockList li:hover .off {
  display: none;
}
.l-service .serviceBlockList .eticket:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_11_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .trade:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_12_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .face:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_09_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .eticketapp:hover {
  background-color: #000000;
  background-image: url(/static/tixplus/img/service/ph_services_bg_13_N5gVWcU4.png);
  color: #fff;
}
.l-service .serviceBlockList .ticket_sdk:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_10_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .live:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_03_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .memorial:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_04_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .kuji:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_05_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .smartpass:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_06_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .fansApp:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_07_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .card:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_08_N5gVWcU4.png");
  color: #fff;
}
.l-service .serviceBlockList .nft:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/ph_services_bg_14.png");
  color: #fff;
}
.l-service .add:hover {
  background-color: #000000;
  background-image: url("/static/tixplus/img/service/fansapp-bg.png");
  color: #fff;
}
.l-service .serviceBlockList .smartpass {
  position: relative;
}
.l-service .serviceBlockList .smartpass:after {
  border-radius: 10px 0 10px 0;
  opacity: 1;
}
.l-service .serviceBlockList li a:hover {
  color: #fff;
  border-radius: 5px;
}
.l-service .serviceBlockList .live {
  position: relative;
}
.l-service .serviceBlockList .live:after {
  border-radius: 10px 0 10px 0;
  opacity: 1;
}
.l-service .serviceBlockList li .logo {
  height: 40px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.l-service .serviceBlockList li .logo img {
  width: auto;
  height: 100%;
}
.l-service .serviceBlockList li.eticket .logo {
  height: 49px;
}
.l-service .serviceBlockList li.trade .logo {
  height: 35px;
}
.l-service .serviceBlockList li.live .logo {
  height: 80px;
}
.l-service .serviceBlockList li.memorial .logo {
  height: 115px;
}
.l-service .serviceBlockList li.smartpass .logo {
  height: 100px;
}
.l-service .serviceBlockList li.fansApp .logo {
  height: 75px;
}
.l-service .serviceBlockList li.card .logo {
  height: 75px;
}
.l-service .serviceBlockList li.nft .logo {
    height: 11vw;
}
.l-service .serviceBlockList li.face .logo {
  height: 70px;
}
.l-service .serviceBlockList li.eticketapp .logo {
  height: 40px;
}
.l-service .serviceBlockList li.dynamic .logo {
  height: 60px;
}
.l-service .serviceBlockList li.ticket_sdk .logo {
  height: 60px;
}

.l-service .serviceBlockList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-service .serviceBlockList.single{
  justify-content: center;
}
.l-service .serviceBlockList li {
  width: calc(50% - 2px);
  box-sizing: border-box;
  height: 40vw;
  position: relative;
  overflow: hidden;
}

.l-service .serviceBlockList li:nth-last-child(2),
.l-service .serviceBlockList li:nth-last-child(3) {
  border-bottom: none;
}
.l-service .serviceBlockList li .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-service .serviceBlockList li a {
  display: block;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  font-size: 5vw;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2em;
  height: 100%;
}
.l-service .serviceBlockList li .logo {
  height: 7vw;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.l-service .serviceBlockList li .logo img {
  width: auto;
  height: 100%;
}
.l-service .serviceBlockList li .logo img.on {
  display: none;
}
.l-service .serviceBlockList li.trade .logo {
  height: 5.5vw;
}
.l-service .serviceBlockList li.live .logo {
  height: 12vw;
}
.l-service .serviceBlockList li.memorial .logo {
  height: 15vw;
}
.l-service .serviceBlockList li.smartpass .logo {
  height: 15vw;
}
.l-service .serviceBlockList li.fansApp .logo {
  height: 11vw;
}
.l-service .serviceBlockList li.card .logo {
  height: 12vw;
}
.l-service .serviceBlockList li.add .logo {
  height: 12vw;
}
.l-service .serviceBlockList li.kuji .logo {
  height: 6vw;
}
.l-service .serviceBlockList li.face .logo {
  height: 10vw;
}
.l-service .serviceBlockList li.dynamic .logo {
  height: 10vw;
}
.l-service .serviceBlockList li.ticket_sdk .logo {
  height: 5.7vw;
}
.l-service .serviceBlockList li.eticket .logo {
  height: 8vw;
}
.l-service .serviceBlockList li.eticketapp .logo {
    height: 12vw;
}
.l-service .serviceBlockList li .tit {
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.l-service .serviceBlockList li span {
  display: block;
  font-size: 10px;
  color: #828282;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 5px 0;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}
.l-service .serviceBlockList li a:hover span {
  color: #fff;
}
.l-service .serviceBlockList li a:hover .on {
  display: block;
  margin: auto;
}
.l-service .serviceBlockList li a:hover .off {
  display: none;
}
.l-service .serviceBlockList .eticket a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_11_N5gVWcU4.png");
}
.l-service .serviceBlockList .trade a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_12_N5gVWcU4.png");
}
.l-service .serviceBlockList .face a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_09_N5gVWcU4.png");
}
.l-service .serviceBlockList .eticketapp a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_13_N5gVWcU4.png");
}
.l-service .serviceBlockList .ticket_sdk a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_10_N5gVWcU4.png");
}
.l-service .serviceBlockList .live a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_03_N5gVWcU4.png");
}
.l-service .serviceBlockList .memorial a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_04_N5gVWcU4.png");
}
.l-service .serviceBlockList .kuji a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_05_N5gVWcU4.png");
}
.l-service .serviceBlockList .smartpass a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_06_N5gVWcU4.png");
}
.l-service .serviceBlockList .fansApp a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_07_N5gVWcU4.png");
}
.l-service .serviceBlockList .add a:hover {
  background-image: url("/static/tixplus/img/service/fansapp-bg.png");
}
.l-service .serviceBlockList .card a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_08_N5gVWcU4.png");
}
.l-service .serviceBlockList .nft a:hover {
  background-image: url("/static/tixplus/img/service/ph_services_bg_14.png");
}
.l-service .serviceBlockList .blank {
  background-image: url("/static/tixplus/img/ticketplus/ph_blank_logo.png");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.l-service .serviceBlockList li a:hover {
  color: #fff;
  background-color: #000;
}
.l-service .serviceBlockList .smartpass {
  position: relative;
}
.l-service .serviceBlockList .smartpass:after {
  opacity: 1;
}
.l-service .serviceBlockList .live {
  position: relative;
}

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

	リニューアル:202209:TRADE

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

#trade .mv {
  background-color: #000;
  background-image: url(/static/tixplus/img/trade/mv-bg-trade.png);
}
#trade .mv:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#trade .news{
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
    background: #FFF;
    position: relative;
    z-index: 1;
}
#trade .news-inner {
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 0;
    max-width: 100%;
}
#trade .news-inner .swiper-container4{
    position: relative;
}
#trade .news-inner .swiper-wrapper{
    align-items: stretch;
}
#trade .news-inner .swiper-slide{
    background: #FFF;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
    overflow: hidden;
    height: auto;
}
#trade .news-inner .swiper-slide .newsImage{
    margin: 0 0 10px;
    line-height: 0;
}
#trade .news-inner .swiper-slide .newsImage img{
    border-radius: 0;
    height: 52vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
#trade .news-inner .swiper-slide a:hover .newsImage img {
    transform: none;
}
#trade .news-inner .swiper-slide .catList{
    padding: 0 5% 0;
    margin: 0 0 15px;
}
#trade .news-inner .swiper-slide .catList li{
    display: inline-block;
    min-width: 58px;
    background: #DDD;
    color: #fff;
    margin: 0 3% 0 0;
    font-size: 9px;
    line-height: 1;
    text-align: center;
    border-radius: 100px;
    padding: 5px 8px 4px;
}
#trade .news-inner .swiper-slide .catList li.category01{
    background: #333;
}
#trade .news-inner .swiper-slide .catList li.category02{
    background: #ff7c60;
}
#trade .news-inner .swiper-slide .name{
    padding: 0 5% 0;
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 600;
}
#trade .news-inner .swiper-slide .tit{
    padding: 0 5% 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 1.3;
}
#trade .news-inner .swiper-pagination {
    bottom: -40px;
    left: 0;
    width: 100%;
    transform: none;
}
#trade .news-inner .swiper-pagination-bullet{
    background: #333;
    opacity: 0.4;
    width: 6px;
    height: 6px;
    border-radius: 100px;
}
#trade .news-inner .swiper-pagination .swiper-pagination-bullet-active{
    opacity: 1;
}
#trade .news-inner .swiper-button-prev, 
#trade .news-inner .swiper-button-next {
    width: 50px;
    height: 50px;
    display: none;
}
#trade .news-inner .swiper-button-prev:before,
#trade .news-inner .swiper-button-next:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 100px;
    transition: .3s all ease;
}
#trade .news-inner .swiper-button-prev:hover:before,
#trade .news-inner .swiper-button-next:hover:before {
    background: rgba(0, 0, 0, 0.5);
}
#trade .news-inner .swiper-button-prev{
    left: 4%;
}
#trade .news-inner .swiper-button-prev:after{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 50%;
    transform: rotate(-135deg);
    margin-left: -5px;
}

#trade .news-inner .swiper-button-next{
    right: 4%;
}
#trade .news-inner .swiper-button-next:after{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 50%;
    transform: rotate(45deg);
    margin-right: -5px;
}




#trade .sp-mv-text {
  font-size: 18px;
  font-weight: bold;
}

#trade .mv-text {
  margin-top: 21px;
}

#trade .fv {
    width: 100%;
    margin: 0 auto 0;
    border-radius: 12px;
    position: relative;
    z-index: 0;
}
#trade .fv  .bg_wave_white {
    z-index: -1;
}
#trade .system_wave {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  line-height: 0;
  width: 100%;
}
#trade .fv-inner {
    padding-top: 60px;
}
#trade .fv-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  max-width: 89%;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #trade .fv-contents {
    display: block;
  }
}

#trade .fv-text-box {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 0 0 30px;
}

#trade .no1 {
  font-size: 42px;
  font-weight: bold;
  margin-top: 74px;
  padding: 0 70px;
  position: relative;
  display: inline-block;
}
#trade .fv-text-box .fvTit {
  font-size: 20px;
  text-align: left;
  line-height: 1.5em;
  margin-bottom: 25px;
  font-weight: 600;
}
#trade .fv-text-box .fvTxt {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 15px;
}
#trade .fv-text-box .num {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 10px;
}
#trade .fv-text-box .num span {
  font-size: 16px;
  font-weight: 600;
}
#trade .caution {
  font-size: 10px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  #trade .no1 {
    padding: 0 40px;
    margin-top: 0;
  }
}

@media (max-width: 1000px) {
  #trade .no1 {
    font-size: 16px;
  }
  #trade .no1 span {
    display: block;
    font-size: 10px;
    line-height: 1em;
    letter-spacing: 0;
    margin: 5px 0 0 0;
  }
}

#trade .no1::before {
  position: absolute;
  content: "";
  background: #f68058;
  width: 43px;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  left: 0;
}

@media (max-width: 1000px) {
  #trade .no1::before {
    width: 45px;
    height: 3px;
  }
}

#trade .no1::after {
  position: absolute;
  content: "";
  background: #f68058;
  width: 43px;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  right: 0;
}

@media (max-width: 1000px) {
  #trade .no1::after {
    width: 45px;
    height: 3px;
  }
}

#trade .fv-title-decorates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 455px;
  margin: 26px auto 0;
}

@media (max-width: 1000px) {
  #trade .fv-title-decorates {
    max-width: 80%;
    margin: 15px auto 0;
  }
}

#trade .fv-title-decorate {
  width: 143px;
  font-size: 24px;
  font-weight: bold;
  height: 37px;
  line-height: 37px;
  color: #fff;
}

@media (max-width: 1000px) {
  #trade .fv-title-decorate {
    width: calc(33.3% - 5px * 2 / 3);
    font-size: 12px;
    height: 20px;
    line-height: 20px;
  }
}

#trade .fv-title-decorate:not(:first-child) {
  margin-left: 20px;
}

@media (max-width: 1000px) {
  #trade .fv-title-decorate:not(:first-child) {
    margin-left: 5px;
  }
}

#trade .fv-title-decorate:nth-child(1) {
  background: #a962b9;
}

#trade .fv-title-decorate:nth-child(2) {
  background: #ffaa61;
}

#trade .fv-title-decorate:nth-child(3) {
  background: #5fb689;
}

#trade .fv-sub-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 35px;
  text-align: center;
}

@media (max-width: 1000px) {
  #trade .fv-sub-title {
    font-size: 10px;
    margin-top: 20px;
  }
}

#trade .fv-title {
  max-width: 583px;
  margin: 14px auto 0;
}

@media (max-width: 1000px) {
  #trade .fv-title {
    padding: 0 20px;
    margin-top: 0;
  }
}

#trade .fv-btn {
  margin-top: 0;
  text-align: center;
}

#trade .fv-btn a {
    width: 100%;
    height: auto;
    line-height: 1.5em;
    padding: 10px;
    box-sizing: border-box;
    max-width: 100%;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    border-radius: 29.5px;
    border: none;
}

#trade .fv-sp-img {
    position: absolute;
    bottom: 27%;
    width: 38%;
    right: 0;
    line-height: 0;
}
#trade .fv-sp-img img {
  width: 100%;
}

#trade .flow {
  padding: 0 0 60px;
  background: #f5f5f5;
}

#trade .flow-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

#trade .flow-decorate {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  width: 199px;
  background: #d97272;
  border-radius: 22px;
  height: 44px;
  line-height: 44px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1000px) {
  #trade .flow-decorate {
    width: 40%;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}

#trade .flow-sub-title {
  font-size: 18px;
  margin-top: 17px;
  text-align: center;
  letter-spacing: 0.02em;
}
#trade .flow-sub-title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
}

#trade .flow-title {
  letter-spacing: 0.02em;
  font-size: 34px;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
  line-height: 1.41667;
}

#trade .flow-cap {
  font-size: 16px;
  margin: 0 auto 10px;
  text-align: center;
  font-weight: 600;
}
#trade .flow-title {
  font-size: 20px;
  margin-top: 0px;
}

#trade .flow-img-area {
  position: relative;
}

#trade .flow-img {
  margin: 75px auto 0;
  text-align: center;
}

@media (max-width: 1000px) {
  #trade .flow-img {
    margin-top: 30px;
  }
}

#trade .flow-img img {
  width: 90%;
}

@media (max-width: 1000px) {
  #trade .flow-img img {
    width: 100%;
  }
}

#trade .sp-flow-texts-contents {
  margin-top: 10px;
}

#trade .sp-flow-content {
  background: #f5f5f5;
  padding: 15px 10px;
}

#trade .sp-flow-content:not(:first-child) {
  margin-top: 15px;
}

#trade .sp-flow-content:last-child {
  padding-top: 1px;
}

#trade .sp-flow-sub-title {
  color: #999;
  font-size: 12px;
  padding-bottom: 5px;
  position: relative;
}

#trade .sp-flow-sub-title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #999;
  left: 0;
  bottom: 0;
}

#trade .sp-flow-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}

#trade .sp-flow-title span {
  font-weight: bold;
  font-size: 12px;
}

#trade .sp-flow-text {
  font-size: 14px;
  margin-top: 10px;
}
#trade .sp-flow-text span {
  font-size: 10px;
}

#trade .flow-text-box-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

#trade .flow-text-box-title span {
  font-size: 14px;
  font-weight: bold;
}

#trade .flow-text-box-text {
  margin-top: 20px;
  line-height: 1.57143;
  letter-spacing: 0.06em;
}
#trade .flow-img2 {
  margin-top: 179px;
}

@media (max-width: 1000px) {
  #trade .flow-img2 {
    margin-top: 30px;
  }
}

#trade .feature {
  background: #f5f5f5;
    padding: 0 0 60px;
}

#trade .feature-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

#trade .feature-title {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  padding: 0 0 10px;
}
#trade .feature-lead {
  line-height: 1.3em;
  font-weight: 600;
}

#trade .feature-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 84px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  #trade .feature-lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    max-width: 70%;
    margin: 40px auto 0;
  }
}

#trade .feature-list {
  border-radius: 50%;
  text-align: center;
  color: #fff;
}

@media (max-width: 1000px) {
  #trade .feature-list {
    width: calc(33.3% - 10px * 2 / 3);
    height: auto;
    position: relative;
  }
  #trade .feature-list::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}

#trade .feature-list:nth-child(1) {
  background: #4a5b93;
}

#trade .feature-list:nth-child(2) {
  background: #a97cc1;
}

#trade .feature-list:nth-child(3) {
  background: #76c19a;
}

#trade .feature-list:nth-child(4) {
  background: #f8b454;
}

#trade .feature-list:nth-child(5) {
  background: #ea835b;
}

@media (max-width: 1000px) {
  #trade .feature-list:nth-child(2),
  #trade .feature-list:nth-child(3),
  #trade .feature-list:nth-child(5) {
    margin-left: 10px;
  }
}

#trade .feature-list-text {
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 1000px) {
  #trade .feature-list-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
  }
}

#trade .feature-details {
  margin-top: 50px;
}

#trade .feature-detail-box {
  background: #fff;
  border-radius: 14px;
  position: relative;
  padding: 60px 20px 20px;
}

#trade .feature-detail-box:not(:first-child) {
  margin-top: 57px;
}

#trade .feature-number {
  position: absolute;
  left: 40px;
  font-family: "Roboto";
  font-size: 108px;
  font-weight: bold;
  color: #e6e4e4;
}

@media (max-width: 1000px) {
  #trade .feature-number {
    left: 20px;
    font-size: 54px;
    top: -10px;
  }
}

#trade .feature-detail-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#trade .feature-detail-img {
  position: absolute;
  right: 20px;
  top: 20px;
}
#trade .feature-detail-img img {
  width: 40px;
}
#trade .feature-detail-texts {
  margin: 0;
  padding: 0;
}

#trade .feature-detail-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
}

#trade .feature-detail-sub-title {
  font-size: 16px;
  margin-top: 26px;
}

@media (max-width: 1000px) {
  #trade .feature-detail-sub-title {
    font-size: 14px;
    margin-top: 10px;
  }
}

#trade .feature-btn {
  margin-top: 90px;
  text-align: center;
}

@media (max-width: 1000px) {
  #trade .feature-btn {
    margin-top: 40px;
  }
}

#trade .feature-btn a {
  display: inline-block;
  width: 507px;
  max-width: 100%;
  height: 111px;
  line-height: 111px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: #f68058;
  border-radius: 55.5px;
  border: none;
  position: relative;
}

@media (max-width: 1000px) {
  #trade .feature-btn a {
    height: 80px;
    line-height: 80px;
    font-size: 12px;
    font-weight: bold;
  }
}

#trade .feature-btn a:hover {
  color: #f68058;
  border: 1px solid #f68058;
}

#trade .feature-btn a::after {
  position: absolute;
  content: "";
  background: url(/static/tixplus/img/trade/arrow.png) no-repeat center
    center/contain;
  width: 13px;
  height: 21px;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1000px) {
  #trade .feature-btn a::after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
}

#trade .playguide {
  background: #fff;
  padding: 60px 0;
}

#trade .playguide-inner {
  margin: 0 auto;
  padding: 0 20px;
}
#trade .playguide-cap {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px;
}
#trade .playguide-title {
    font-weight: bold;
    text-align: center;
    font-size: 22px;
    padding: 0 0 20px;
    line-height: 1.5em;
}
#trade .playguideLogo {
  margin: 0 auto 20px;
}

#trade .playguideLogo .playguideLogoList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#trade .playguideLogo .playguideLogoList li {
  width: 50%;
  line-height: 0;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 0 20px;
}
#trade .playguideLogo .playguideLogoList li img {
  max-width: 120px;
}
#trade .eplustrade {
  padding: 20px;
  box-sizing: border-box;
  background: #f5f5f5;
}
#trade .eplustrade .eplustrade_tit {
  line-height: 0;
  margin: 0 0 20px;
  width: 80%;
}
#trade .eplustrade .eplustrade_txt {
  font-weight: 600;
  margin-bottom: 20px;
}
#trade .eplustrade .eplustrade_List li {
  font-size: 14px;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  line-height: 1.4em;
  text-indent: -14px;
  padding: 0 0 0 14px;
}
#trade .eplustrade .eplustrade_List li:last-child {
  margin: 0;
}

#trade .artist {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

#trade .artist-inner {
  margin: 0 auto;
  padding: 0 20px;
}
#trade .artist-cap {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px;
}
#trade .artist-title {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  padding: 0 0 20px;
  letter-spacing: 0;
}
#trade .artist-inner .artistThumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: baseline;
  margin: 0 0 20px;
}
#trade .artist-inner .artistThumb li {
  width: 50%;
  box-sizing: border-box;
  margin: 0 0 20px;
}
#trade .artist-inner .artistThumb li:nth-child(odd) {
  padding: 0 10px 0 0;
}
#trade .artist-inner .artistThumb li:nth-child(even) {
  padding: 0 0 0 10px;
}
#trade .artist-inner .artistThumb li .artistname {
  font-size: 12px;
  font-weight: 600;
  line-height: 1em;
  padding: 5px 0 0;
}
#trade .artist-inner .swiper {
  margin: 0 0 20px;
}
#trade .artist-inner .swiper-wrapper {
  transition-timing-function: linear;
}
#trade .artist-inner .swiper-slide img {
  height: auto;
  width: 100%;
}
#trade .artist-inner .artistListBlock .listTit {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 20px;
}
#trade .artist-inner .artistListBlock .ListBlock-inner {
  display: flex;
  flex-wrap: wrap;
}
#trade .artist-inner .artistListBlock .txtBlock {
  font-weight: 600;
  line-height: 2em;
  font-size: 10px;
  width: 50%;
  letter-spacing: 0;
}
#trade .artist-inner .artistListBlock .txtBlock:nth-child(1) {
  order: 1;
}
#trade .artist-inner .artistListBlock .txtBlock:nth-child(2) {
  order: 3;
}
#trade .artist-inner .artistListBlock .txtBlock:nth-child(3) {
  order: 2;
}
#trade .artist-inner .artistListBlock .txtBlock:nth-child(4) {
  order: 4;
}
#trade .premium {
  background: url(/static/tixplus/img/trade/mv2.png) no-repeat center
    center/cover;
}

#trade .premium-inner {
  text-align: center;
    padding: 60px 20px;
}

#trade .premium-sub-title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

@media (max-width: 1000px) {
  #trade .premium-sub-title {
    font-size: 20px;
  }
}

#trade .premium-img {
  width: 470px;
  margin: 30px auto 0;
}

@media (max-width: 1000px) {
  #trade .premium-img {
    width: 90%;
  }
}

#trade .premium-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-top: 44px;
}

@media (max-width: 1000px) {
  #trade .premium-text {
    margin-top: 30px;
  }
}

#trade .premium-btn {
  margin-top: 54px;
}


#trade .premium-btn {
  margin: 30px auto 0;
  width: 100%;
}


#trade .premium-btn a {
    display: inline-block;
    width: 50%;
    line-height: 1.5em;
    padding: 10px;
    box-sizing: border-box;
    max-width: 100%;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #f68058;
    border-radius: 100px;
    border: none;
}

#trade .premium-btn a:hover {
  color: #f68058;
  border: 1px solid #f68058;
}

#trade .usage {
  background: #f5f5f5;
  padding: 114px 0 94px;
}

@media (max-width: 1000px) {
  #trade .usage {
    padding: 60px 20px;
  }
}

#trade .usage-inner {
  max-width: 1050px;
  margin: 0 auto;
}

#trade .usage-title {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  padding-top: 55px;
}

@media (max-width: 1000px) {
  #trade .usage-title {
    font-size: 28px;
    padding-top: 40px;
    line-height: 1.5;
  }
}

#trade .usage-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1050px;
  margin: 75px auto 0;
}

@media (max-width: 1000px) {
  #trade .usage-contents {
    display: block;
    margin-top: 30px;
  }
}

#trade .usage-content {
  text-align: center;
}

@media (max-width: 1000px) {
  #trade .usage-content {
    width: 100%;
  }
  #trade .usage-content:not(:first-child) {
    margin-top: 30px;
  }
}

#trade .usage-content-box-q {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #997fbf;
  padding: 13px 10px;
  border-radius: 10px 10px 0 0;
}

#trade .q-2 {
  background: #6b4e97;
}

#trade .usage-content-box-a {
  border: 3px solid #997fbf;
  font-size: 70px;
  font-weight: bold;
  background: #fff;
  padding: 42px 10px;
}

#trade .usage-content-box-a span {
  font-size: 36px;
}

@media (max-width: 1000px) {
  #trade .usage-content-box-a {
    font-size: 50px;
  }
  #trade .usage-content-box-a span {
    font-size: 28px;
  }
}

#trade .a-2 {
  border-color: #6b4e97;
}

#trade .usage-attention {
  margin-top: 14px;
  text-align: right;
  font-size: 16px;
}

#trade .available {
  padding: 86px 20px;
}

@media (max-width: 1000px) {
  #trade .available {
    padding: 40px 20px;
  }
}

#trade .available-inner {
  max-width: 1050px;
  margin: 0 auto;
  border: 2px solid #ccc;
  border-radius: 20px;
}

@media (max-width: 1000px) {
  #trade .available-box {
    padding: 30px 20px;
  }
}

#trade .available-img {
  width: 367px;
}

@media (max-width: 1000px) {
  #trade .available-img {
    width: 100%;
  }
}

#trade .available-title {
  margin-top: 30px;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 1000px) {
  #trade .available-title {
    font-size: 20px;
  }
}

#trade .available-title span {
  color: #e55c74;
  font-weight: bold;
}

#trade .available-texts {
  margin-top: 27px;
}

@media (max-width: 1000px) {
  #trade .available-texts {
    margin-top: 15px;
  }
}

#trade .available-text {
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.02em;
}

@media (max-width: 1000px) {
  #trade .available-text {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 1em;
    text-indent: -1em;
  }
  #trade .available-text:not(:first-child) {
    margin-top: 10px;
  }
}

#trade .works {
  padding-top: 132px;
  padding-bottom: 150px;
}

@media (max-width: 1000px) {
  #trade .works {
    padding: 40px 20px;
  }
}

#trade .works-main-title {
  padding-top: 60px;
}

@media (max-width: 1000px) {
  #trade .works-main-title {
    padding-top: 40px;
  }
}

#trade .works-detail {
  margin-top: 74px;
}

@media (max-width: 1000px) {
  #trade .works-detail {
    margin-top: 30px;
  }
}

@media (max-width: 1000px) {
  #trade .domain-normal {
    top: 47%;
  }
}

#trade .function {
  background-color: #f5f5f5;
}
#trade .out-sight {
    background: #F5F5F5;
}
/*===================================================

	リニューアル:202209:eticketapp

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

#eticketapp .mv {
  background-color: #000;
  background-image: url(/static/tixplus/img/eticketapp/mv-bg-eticketapp.png);
  background-position: 72% 0px;
}
#eticketapp .mv-logo {
  margin-bottom: 20px;
  position: relative;
}
#eticketapp .mv-logo:after {
  content: "";
}
#eticketapp .fvInner_bg {
  position: absolute;
  z-index: -1;
  bottom: 400px;
  right: 0;
  width: 80%;
  line-height: 0;
}
#eticketapp .fv {
  position: relative;
  padding: 60px 0;
}
#eticketapp .fv:before {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  background: #f5f5f5;
  z-index: -1;
}
#eticketapp .fv .fvInner {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
#eticketapp .fv .fvInner .column {
  margin: 0 auto 20px;
}

#eticketapp .fv .fvInner .column .mocCl {
  display: none;
}
#eticketapp .fv .fvInner .column .txtCl {
  width: 100%;
}
#eticketapp .fv .fvInner .column .txtCl .tit {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 40px;
  line-height: 1.5em;
}
#eticketapp .fv .fvInner .column .txtCl .titSub {
  text-align: center;
}
#eticketapp .fv .fvInner .column .txtCl .titSub span {
  text-align: center;
  border-bottom: 1px solid #f68057;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto 40px;
  padding: 0 0 5px;
}
#eticketapp .fv .fvInner .column .txtCl .titSub .fa-solid {
  transform: scale(0.7);
  padding: 0 5px;
}
#eticketapp .fv .fvInner .column .txtCl .iconList {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
  flex-wrap: wrap;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li {
  line-height: 0;
  width: 50%;
  box-sizing: border-box;
  margin: 0 0 20px;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li:nth-child(odd) {
  padding: 0 10px 0 0;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li:nth-child(even) {
  padding: 0 0 0 10px;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li img {
  border: 1px solid #f6855e;
  box-sizing: border-box;
  width: 100%;
  border-radius: 3px;
}
#eticketapp .fv .fvInner .column .txtCl .txt {
  width: 100%;
  margin: 0 auto 40px;
  line-height: 1.5em;
  font-size: 14px;
}
#eticketapp .fv .fvInner .column .txtCl .moc_sp {
  line-height: 0;
  width: 60%;
  margin: 0 auto 40px;
}
#eticketapp .fv .fvInner .column .txtCl .appDown {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  flex-wrap: wrap;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dt {
  width: 100%;
  line-height: 0;
  text-align: center;
  margin: 0 0 20px;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dt img {
  width: 100px;
  line-height: 0;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
  border-radius: 30px;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dd {
  text-align: center;
  padding: 0 15px;
  width: 50%;
  box-sizing: border-box;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dd:last-child {
  border-left: 1px solid;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dd .detailTit {
  font-size: 12px;
  line-height: 1em;
  margin: 0 0 10px;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dd .detailTxt {
  font-size: 20px;
  font-weight: 600;
}
#eticketapp .fv .fvInner .column .txtCl .appDown dd .detailTxt .fa-star {
  font-size: 80%;
  vertical-align: 2px;
}
#eticketapp .fv .fvInner .column .txtCl .badge {
  display: flex;
  justify-content: center;
  margin: 0 auto 15px;
}
#eticketapp .fv .fvInner .column .txtCl .badge li {
    width: auto;
    line-height: 0;
    padding: 0 10px;
}
#eticketapp .fv .fvInner .column .txtCl .badge li a {
  display: block;
}
#eticketapp .fv .fvInner .column .txtCl .badge li a img{
    width: auto;
    height: 40px;
}
#eticketapp .fv .fvInner .column .txtCl .app-attentions{
    padding: 20px 0 0;
}
#eticketapp .fv .fvInner .column .txtCl .app-attentions .app-attention{
    margin: 0 0 10px;
    padding: 0 0 0 20px;
    position: relative;
    font-size: 10px;
    line-height: 1.5em;
}
#eticketapp .fv .fvInner .column .txtCl .app-attentions .app-attention:before{
    top: 4px;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #000;
    left: 0;
    border-radius: 50%;
}
#eticketapp .fv .fvInner .column .txtCl .app-attentions .app-attention:last-child{
    margin: 0;
}


#eticketapp .fv .fvInner .column .txtCl .cap {
  text-align: center;
  font-size: 14px;
}
#eticketapp .fv .fvInner .btnSale {
}
#eticketapp .fv .fvInner .btnSale a {
    position: relative;
    display: block;
    text-align: center;
    border: 1px solid #f68057;
    width: 100%;
    font-size: 16px;
    padding: 10px;
    border-radius: 100px;
    margin: 0 auto;
    color: #f68057;
    overflow: hidden;
    z-index: 0;
    line-height: 1.5em;
    box-sizing: border-box;
}
#eticketapp .fv .fvInner .btnSale a:hover {
  color: #fff;
  border-color: transparent;
}
#eticketapp .fv .fvInner .btnSale a span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #f68057;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#eticketapp .fv .fvInner .btnSale a:hover span {
  width: 225%;
  height: 562.5px;
}

#eticketapp .news {
  padding: 0 0 60px;
  background: #f5f5f5;
}
#eticketapp .news .news-btn {
    margin-top: 40px;
}
#eticketapp .news .news-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
#eticketapp .news .news-contents {
    margin-top: 30px;
}
#eticketapp .ticketType {
  background-image: url(/static/tixplus/img/eticketapp/ph_tickettype_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#eticketapp .ticketType .ticketType-inner {
  padding: 60px 20px 60px;
  margin: 0 auto 0;
}
#eticketapp .ticketType .ticketType-inner .ticketTypeTit {
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
}
#eticketapp .ticketType .ticketType-inner .ticketTypeTitSub {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin: 0 0 40px;
}
#eticketapp .ticketType .ticketType-inner .ticketTypeHead {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
}
#eticketapp .ticketType .ticketType-inner .ticketTypeIllust {
  width: 100%;
  margin: 0 0 0 auto;
  line-height: 0;
}
#eticketapp .ticketType .ticketType-inner .floatTxtBox {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
#eticketapp .ticketType .ticketType-inner .floatTxt {
  font-size: 14px;
  line-height: 1.6em;
  margin: 0;
  letter-spacing: 0;
}
#eticketapp .ticketType .ticketType-inner .floatTxtBox .btn {
  display: none;
}
#eticketapp .ticketType .ticketType-inner .btn a {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    font-size: 16px;
    padding: 10px;
    border-radius: 100px;
    color: #f68057;
    overflow: hidden;
    z-index: 0;
    background: #fff;
    box-sizing: border-box;
    margin: 0 auto 40px;
    line-height: 1.5em;
}
#eticketapp .ticketType .ticketType-inner .btn a:hover {
  color: #fff;
  border-color: transparent;
}
#eticketapp .ticketType .ticketType-inner .btn a span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #f68057;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#eticketapp .ticketType .ticketType-inner .btn a:hover span {
  width: 225%;
  height: 562.5px;
}
#eticketapp .ticketType .ticketType-inner .typeList {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
#eticketapp .ticketType .ticketType-inner .typeList li {
  line-height: 0;
  width: 50%;
  box-sizing: border-box;
  margin: 0 0 20px;
}
#eticketapp .ticketType .ticketType-inner .typeList li:nth-child(odd) {
  padding: 0 10px 0 0;
}
#eticketapp .ticketType .ticketType-inner .typeList li:nth-child(even) {
  padding: 0 0 0 10px;
}
#eticketapp .ticketType .ticketType-inner .typeList li:nth-child(3),
#eticketapp .ticketType .ticketType-inner .typeList li:nth-child(4) {
  margin: 0;
}
#eticketapp .point {
    padding: 60px 0;
    background:#FFF;
}
#eticketapp .point .point-inner {
  margin: 0 auto;
  padding: 0 20px;
}
#eticketapp .point .point-inner .pointTit {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px;
}
#eticketapp .point .point-inner .pointTitSub {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 65px;
}
#eticketapp .point .point-inner .pointArea {
  position: relative;
}
#eticketapp .point .point-inner .pointArea .pointBlock {
  background: #f5f5f5;
  padding: 60px 20px 20px;
  border-radius: 20px;
  position: relative;
  margin: 0 0 60px;
}
#eticketapp .point .point-inner .pointArea .pointBlock.pointPromotion {
  padding-bottom: 0;
}
#eticketapp .point .point-inner .pointArea .pointBlock:last-child {
  margin: 0;
}
#eticketapp .point .pointBlock .blockNum {
  position: absolute;
  top: 0;
  font-family: "Roboto", sans-serif;
  font-size: 68px;
  color: #e6e4e4;
  font-weight: 600;
  left: 30px;
  line-height: 1em;
  transform: translateY(-50%);
}
#eticketapp .point .pointBlock .blockTit {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  margin: 0 0 40px;
}
#eticketapp .point .pointBlock.pointPromotion .blockTit {
}
#eticketapp .point .pointBlock .contentList {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
#eticketapp .point .pointBlock .contentList li {
  line-height: 0;
  text-align: center;
  width: 50%;
  box-sizing: border-box;
  margin: 0 0 20px;
}
#eticketapp .point .pointBlock .contentList li:nth-child(odd) {
  padding: 0 10px 0 0;
}
#eticketapp .point .pointBlock .contentList li:nth-child(even) {
  padding: 0 0 0 10px;
}
#eticketapp .point .pointBlock .contentList li .icon {
  margin: 0 auto 10px;
  width: 80%;
  padding: 0;
}
#eticketapp .point .pointBlock .contentList li .cap {
    line-height: 1em;
    font-size: 10px;
    margin: 0 0 10px;
    letter-spacing: 0;
    text-align: center;
}
#eticketapp .point .pointBlock .contentList li .txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
}

#eticketapp .point .pointBlock .innerTit {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 40px;
  line-height: 1.5em;
}
#eticketapp .point .pointBlock .vaccination {
  display: flex;
  flex-wrap: wrap;
}
#eticketapp .point .pointBlock .vaccination dt {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto 20px;
}
#eticketapp .point .pointBlock .vaccination dt .moc {
  line-height: 0;
  width: 32%;
}
#eticketapp .point .pointBlock .vaccination dd {
  padding: 0;
}
#eticketapp .point .pointBlock .vaccination dd .icon {
  line-height: 0;
  width: 20%;
  padding: 0 20px 0 0;
  margin: 0;
  float: left;
}
#eticketapp .point .pointBlock .vaccination dd .lead {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
  letter-spacing: 0;
}

#eticketapp .point .pointBlock .image {
  line-height: 0;
  width: 70%;
  margin: 0 auto 20px;
}
#eticketapp .point .pointBlock .cap {
  text-align: left;
  font-size: 14px;
  line-height: 1.5em;
}

#eticketapp .point .pointBlock .measuresList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#eticketapp .point .pointBlock .measuresList li {
  width: 50%;
  text-align: center;
  margin-bottom: 20px;
  box-sizing: border-box;
}
#eticketapp .point .pointBlock .measuresList li:nth-child(odd) {
  padding: 0 10px 0 0;
}
#eticketapp .point .pointBlock .measuresList li:nth-child(even) {
  padding: 0 0 0 10px;
}
#eticketapp .point .pointBlock .measuresList li:nth-child(5),
#eticketapp .point .pointBlock .measuresList li:nth-child(6) {
  margin-bottom: 0;
}
#eticketapp .point .pointBlock .measuresList li .measuresIcon {
  line-height: 0;
  width: 80%;
  margin: 0 auto 10px;
}
#eticketapp .point .pointBlock .measuresList li .measuresTxt {
  font-size: 12px;
  line-height: 1em;
  margin: 0 0 3px;
}
#eticketapp .point .pointBlock .measuresList li .measuresTit {
  font-size: 14px;
  font-weight: 600;
}
#eticketapp .point .pointBlock .measuresList li .btn a {
}
#eticketapp .point .pointBlock .promotionList {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  align-items: end;
}
#eticketapp .point .pointBlock .promotionList li {
  width: 32%;
}
#eticketapp .point .pointBlock .promotionList li .cap {
  font-size: 11px;
  line-height: 1.4em;
  margin: 0 0 20px;
  height: 20px;
  text-align: center;
  letter-spacing: 0;
}
#eticketapp .point .pointBlock .promotionList li .promotionimage {
  line-height: 0;
  width: 100%;
}
#eticketapp .point .pointBlock .valueBox {
}
#eticketapp .point .pointBlock .valueBox .valueBoxImage {
  line-height: 0;
  margin-bottom: 30px;
}
#eticketapp .point .pointBlock .valueBox .memokoreBox {
}
#eticketapp .point .pointBlock .valueBox .memokoreBox .iconMemokore {
  width: 40%;
  margin: 0 auto 30px;
}
#eticketapp .point .pointBlock .valueBox .btnWhiteLine {
  line-height: 0;
  text-align: center;
  margin: 0 0 30px;
}
#eticketapp .point .pointBlock .valueBox .btnWhiteLine a {
    display: inline-block;
    width: 50%;
    max-width: 100%;
    font-size: 16px;
    text-align: center;
    border-radius: 29.5px;
    line-height: 1.5em;
    padding: 10px;
}

#eticketapp .sdk {
  margin-top: 0;
}
#eticketapp .sdk .sdk-inner {
    padding: 60px 20px;
}
#eticketapp .sdk-title {
  font-size: 18px;
}
#eticketapp .sdk .sdk-btn a {
  border: none;
}
#eticketapp .sdk .sdk-btn a:after {
  border: 1px solid #fff;
}
#eticketapp .sdk .sdk-btn a:hover:after {
  border: 1px solid #f68058;
}

#eticketapp .function .leftBlock {
    margin: 0;
}
#eticketapp .function .detailList:last-child{
    margin: 0;
}
/*===================================================

	リニューアル:202209:FACE

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

.popup.facePop {
  transform: initial;
  left: -100%;

  display: flex;
  overscroll-behavior: contain;
  overflow-y: scroll;
}
.popup.facePop.popActive {
  transform: initial;
  left: 0;
}
.popup.facePop .shade {
  left: -100%;
  z-index: -1;
  top: 0;
}
.popup.facePop.popActive .shade {
  left: 0;
}
.popup.facePop .close {
  box-sizing: border-box;
  border-radius: 100px;
  background: #000;
  z-index: 999;
  right: 100%;
  transition: transform 0.3s ease;
}
.popup.facePop .close::before,
.popup.facePop .close::after {
  width: 60%;
}
.popup.facePop .popInBox {
  height: auto;
  min-height: 100%;
  width: 100%;
  padding: 0;
  display: block;
  pointer-events: none;
}
.popup.facePop .popIninner {
  padding: 80px 0;
}
.popup.facePop .contentBox {
  position: relative;
  overflow: hidden;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 00;
  pointer-events: auto;
}
.popup.facePop .contentBox .popTitBox {
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
  width: 100%;
}
.popup.facePop .contentBox .popTitBox .popMainTit {
  width: 70%;
  line-height: 0;
  margin: 0 auto 5px;
}
.popup.facePop .contentBox .popTitBox .popMainTxt {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.popup.facePop .popImage {
  line-height: 0;
}
.popup.facePop .contentBox .contentInner {
  position: relative;
  background: #f5f5f5;
  border-radius: 0 0 15px 15px;
  color: #000;
  padding: 40px 20px;
}

.popup.facePop .popTit {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 15px;
}
.popup.facePop .popTxt {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 40px;
}
.popup.facePop .system_content {
}
.popup.facePop .system_img {
  position: relative;
  padding-top: 59.6%;
}
.popup.facePop .system_img img {
  border-radius: 10px 10px 0 0;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#face .system_img img {
  border-radius: 10px 10px 0 0;
}
.popup.facePop .system_content_textbox {
  background: #fff;
  border-radius: 0 0 20px 20px;
  padding: 30px 20px 20px;
  box-sizing: border-box;
}
.popup.facePop .system_content_textbox .textList {
  margin-bottom: 20px;
}
.popup.facePop .system_content_textbox .textList:last-child {
  margin-bottom: 0;
}
.popup.facePop .system_content_textbox .textList dt {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}
.popup.facePop .system_content_textbox .textList dd {
  text-indent: -16px;
  padding: 0 0 0 16px;
  line-height: 1.4em;
  margin: 0 0 10px;
}

.popup.facePop .c-title_decorate {
  letter-spacing: 0.06em;
  padding-top: 40px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.7647058824;
}
.popup.facePop .merit_images--pc.pc {
  margin-top: 100px;
}
.popup.facePop .merit_images--pc .meritList {
  display: flex;
  max-width: 1000px;
  align-items: center;
  margin-bottom: 40px;
}
.popup.facePop .merit_images--pc .meritList:last-child {
  margin-bottom: 0;
}
.popup.facePop .merit_images--pc .meritList dt {
  width: 290px;
  font-size: 20px;
  font-weight: 600;
  color: #828282;
  padding: 30px 0 0 0;
}
.popup.facePop .merit_images--pc .meritList dd {
  width: 710px;
}

.popup.facePop .merit_images--sp.sp {
  margin-top: 40px;
}
.popup.facePop .merit_images--sp .meritTit {
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.popup.facePop .merit_images--sp .meritTit li {
  font-weight: 600;
  width: 50%;
  text-align: center;
  line-height: 1.5em;
  font-size: 16px;
  letter-spacing: 0;
  color: #828282;
}
.popup.facePop .merit_images--sp .meritTit li:last-child {
  color: #f68057;
}
.popup.facePop .nonScroll {
  height: calc(100vh + 1px);
  width: 1px;
  background-color: transparent;
}

#face .mv {
  background-image: url(/static/tixplus/img/face/mv-bg-face.png);
}
#face .mv:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#face .intro {
}
#face .intro .txtBox {
}
#face .intro .illustTit {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
}
#face .intro .illustTxt {
  font-size: 14px;
  font-weight: 600;
}
#face .intro .illustImsage {
}
#face .sp-mv-text {
  font-size: 18px;
  font-weight: bold;
}
#face .c-title_decorate {
  letter-spacing: 0.06em;
  padding-top: 43px;
  position: relative;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  line-height: 1.7647058824;
}

@media (max-width: 1000px) {
  #face .c-title_decorate {
    font-size: 28px;
    padding-top: 30px;
  }
}
#face .l-system {
  position: relative;
}
#face .system_wave {
  position: absolute;
  z-index: -1;
  bottom: 140px;
  right: 0;
  width: 80%;
}
@media (max-width: 1000px) {
  #face .system_wave img {
    height: 90%;
  }
}
@media (max-width: 1000px) {
  #face .system_wave {
    width: 100%;
    bottom: 90px;
    height: 60%;
  }
}
#face .p-system_inner {
  max-width: 1090px;
  padding: 120px 20px 50px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #face .p-system_inner {
    padding: 50px 20px;
  }
}
#face .p-system_text {
  text-align: center;
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: 0.06em;
}
@media (max-width: 1000px) {
  #face .p-system_text {
    font-size: 16px;
    margin-top: 5px;
  }
}
#face .system_contents {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  #face .system_contents {
    display: block;
    margin-top: 40px;
  }
}
#face .system_content {
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 1000px) {
  #face .system_content {
    display: block;
  }
  #face .system_content:not(:first-child) {
    margin-top: 30px;
  }
}
#face .system_img {
  position: relative;
  padding-top: 59.6%;
}
#face .system_img img {
  border-radius: 10px 10px 0 0;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#face .system_content_textbox {
  background: #fff;
  padding: 37px 50px 53px;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 1000px) {
  #face .system_content_textbox {
    padding: 30px 20px 40px;
  }
}
#face .system_content_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.022em;
}
#face .system_content_texts {
  margin-top: 30px;
}
@media (max-width: 1000px) {
  #face .system_content_texts {
    margin-top: 20px;
  }
}
#face .system_content_text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 2.2857142857;
}
#face .system_content_textbox .textList {
  margin-bottom: 20px;
}
#face .system_content_textbox .textList:last-child {
  margin-bottom: 0;
}
#face .system_content_textbox .textList dt {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
}
#face .system_content_textbox .textList dd {
  text-indent: -16px;
  padding: 0 0 0 16px;
  line-height: 1.4em;
  margin: 0 0 10px;
}
#face .system_content_textbox .textList dd:last-child {
  margin: 0;
}
#face .merit {
  background: #f5f5f5;
}
#face .merit_inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 220px 20px 106px;
  margin-top: -150px;
}
@media (max-width: 1000px) {
  #face .merit_inner {
    padding: 200px 20px 50px;
    margin-top: -200px;
  }
}
#face .merit_title.c-title_decorate {
  letter-spacing: 0.02em;
}
#face .merit_images--pc.pc {
  margin-top: 68px;
}
#face .merit_img:not(:first-child) {
  margin-top: 54px;
}
#face .merit_images--sp.sp {
  margin-top: 50px;
}
@media (max-width: 1000px) {
  #face .merit_images--sp.sp {
    margin-top: 40px;
  }
}

#face .merit_images--sp .meritTit {
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
#face .merit_images--sp .meritTit li {
  font-weight: 600;
  width: 50%;
  text-align: center;
  line-height: 1.5em;
  font-size: 16px;
  letter-spacing: 0;
  color: #828282;
}
#face .merit_images--sp .meritTit li:last-child {
  color: #f68057;
}
#face .trade {
  background: url(/static/tixplus/img/face/bg_trade.png) no-repeat center
    center/cover;
}
#face .trade-inner {
  text-align: center;
  padding: 90px 20px;
}
@media (max-width: 1000px) {
  #face .trade-inner {
    padding: 45px 20px;
  }
}
#face .trade_text {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
#face .trade_logo_sub-title {
  color: #fff;
  font-weight: bold;
  margin-top: 50px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media (max-width: 1000px) {
  #face .trade_logo_sub-title {
    margin-top: 25px;
  }
}
#face .trade_logo {
  max-width: 445px;
  margin: 0 auto;
}
#face .trade-btn {
  margin-top: 49px;
}
@media (max-width: 1000px) {
  #face .trade-btn {
    margin: 30px auto 0;
    width: 70%;
  }
}
#face .trade-btn a {
  display: inline-block;
  width: 317px;
  max-width: 100%;
  height: 59px;
  line-height: 57px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: #f68058;
  border-radius: 29.5px;
  border: none;
  transition: all 0.3s ease 0s;
  border: 1px solid #f68058;
}
#face .trade-btn a:hover {
  color: #f68058;
}

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

	リニューアル:202209:STREAMPASS

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

#streampass .mv {
  background-image: url(/static/tixplus/img/Streampass/mv-bg-streampass.png);
}
#streampass .mv:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#streampass .news {
    position: relative;
    padding-top: 60px;
}
#streampass .news .system_wave {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  line-height: 0;
  width: 100%;
}
#streampass .news  .news-contents {
    display: block;
    margin-top: 0;
}
#streampass .news  .news-btn{
    margin-top: 40px;
}
#streampass .mv-tab-box {
  margin-top: 119px;
}

@media (max-width: 1000px) {
  #streampass .mv-tab-box {
    margin-top: 60px;
  }
}

#streampass .mv-tab-content {
  width: 50%;
  position: relative;
  padding: 0;
}

@media (max-width: 1000px) {
  #streampass .mv-tab-content {
    height: 70px;
  }
  #streampass .mv-tab-content-active {
    height: 80px;
  }
}

@media (max-width: 1000px) {
  #streampass .mv-tab-content:hover {
    height: 80px;
  }
}

@media (max-width: 1000px) {
  #streampass .mv-tab-content-active::before {
    top: 5px;
  }
}

@media (max-width: 1000px) {
  #streampass .mv-tab-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 0;
    width: 100%;
  }
}

#streampass .first-view {
  background: url(/static/tixplus/img/Streampass/firstview.png) no-repeat center
    center/cover;
  width: 100%;
  max-width: 90%;
  margin: 66px auto 30px;
  position: relative;
  border-radius: 15px;
}

@media (max-width: 1000px) {
  #streampass .first-view {
    margin-top: 30px;
  }
}

@media (max-width: 1000px) {
  #streampass .fv-inner {
    padding: 50px 20px;
  }
}

#streampass .fv-title {
  color: #fff;
  font-weight: bold;
  line-height: 1.46667;
  font-size: 30px;
  text-align: center;
}

@media (max-width: 1000px) {
  #streampass .fv-title {
    font-size: 16px;
  }
}

#streampass .fv-logo {
  max-width: 311px;
  margin: 40px auto 0;
}

@media (max-width: 1000px) {
  #streampass .fv-logo {
    margin-top: 30px;
    max-width: 70%;
  }
}

#streampass .tikepura-white-box-btn {
  margin-top: 65px;
}

@media (max-width: 1000px) {
  #streampass .tikepura-white-box-btn {
    margin-top: 30px;
  }
}

#streampass .explain {
    padding-top: 60px;
    background: #f5f5f5;
    padding-bottom: 60px;
}

#streampass .ex-inner {
  max-width: 1050px;
  margin: 0 auto;
}

#streampass .ex-main-title {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.44118;
}

@media (max-width: 1000px) {
  #streampass .ex-main-title {
    font-size: 22px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

#streampass .ex-img {
  margin-top: 118px;
}

@media (max-width: 1000px) {
  #streampass .ex-img {
    margin-top: 30px;
    padding: 0;
  }
}

#streampass .ex-lists {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  max-width: 80%;
  margin: 20px auto 0;

}

@media (max-width: 1000px) {
  #streampass .ex-list {
    width: calc(50% - 30px * 1 / 2);
  }
  #streampass .ex-list:nth-child(2n) {
    margin-left: 30px;
  }
}

#streampass .ex-sub-title {
  font-size: 13px;
  line-height: 1.84615;
  margin-top: 13px;
}

@media (max-width: 1000px) {
  #streampass .ex-sub-title {
    font-size: 10px;
  }
}

#streampass .ex-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 6px;
}

@media (max-width: 1000px) {
  #streampass .ex-title {
    font-size: 14px;
  }
}

#streampass .feature {
  background: #ff7c60;
  color: #fff;
  margin-top: 83px;
}

@media (max-width: 1000px) {
  #streampass .feature {
    margin-top: 0;
  }
}

#streampass .feature-inner {
  max-width: 1050px;
  padding: 60px 20px;
  margin: 0 auto;
}

#streampass .feature-main-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
    position: relative;
    margin: 0 0 30px;
}
#streampass .feature-main-title span {
  font-weight: bold;
  position: relative;
}
#streampass .feature-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1000px) {
  #streampass .feature-lists {
    display: block;
  }
}

#streampass .feature-list {
    width: 100%;
    margin-bottom: 40px;
}
#streampass .feature-list:last-child{
    margin-bottom: 0;
}
#streampass .feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1000px) {
  #streampass .feature-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#streampass .feature-img {
  max-width: 46px;
}

@media (max-width: 1000px) {
  #streampass .feature-img img {
    width: 30px;
  }
}

#streampass .feature-text {
  font-size: 16px;
  line-height: 1.5;
  margin-left: 29px;
  letter-spacing: 0.02em;
}

@media (max-width: 1000px) {
  #streampass .feature-text {
    margin-left: 15px;
  }
}

#streampass .lp {
  background: url(/static/tixplus/img/Streampass/fanstream-bg.png) no-repeat
    center center/cover;
  color: #fff;
}
#streampass .lp-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

#streampass .lp-logo {
  max-width: 668px;
  margin: 0 auto;
}

#streampass .lp-title {
  margin-top: 58px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}

@media (max-width: 1000px) {
  #streampass .lp-title {
    margin-top: 10px;
    font-size: 22px;
  }
}

#streampass .lp-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  margin-top: 17px;
}

@media (max-width: 1000px) {
  #streampass .lp-text {
    font-size: 16px;
    margin-top: 10px;
  }
}

#streampass .lp-spimg {
  max-width: 892px;
  margin: 73px auto 0;
}

@media (max-width: 1000px) {
  #streampass .lp-spimg {
    margin-top: 30px;
  }
}
#streampass .trade-btn a {
    display: inline-block;
    width: 100%;
    line-height: 1.5em;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #249fd4;
    border-radius: 29.5px;
    border: none;
    transition: all 0.3s ease 0s;
    border: 1px solid #249fd4;
}
#streampass .trade-btn a:hover {
  color: #249fd4;
}
#streampass .app-lists {
  margin: 60px auto 0;
}

#streampass .appstore img {
  height: 60px;
  width: auto;
}

#streampass .googleplay img {
  height: 60px;
  width: auto;
}

#streampass .apps-sp {
    max-width: 100%;
    padding: 0 20px 60px;
}
#streampass .apps-sp .trade-btn{
    line-height: 0;
}
/*===================================================

	リニューアル:202209:meetpass

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

#meetpass .mv {
  background-image: url(/static/tixplus/img/Streampass/mv-bg-streampass.png);
}
#meetpass .mv:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

#meetpass .mv-tab-content {
  width: calc(50% - 8px * 1 / 2);
}

#meetpass .img-area {
    width: 100%;
    padding: 0 20px;
    margin: 60px auto 0;
    position: relative;
    box-sizing: border-box;
}

#meetpass .img-area-logo {
  position: absolute;
  top: 46px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20%;
}

#meetpass .img-area-btn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 17%;
  width: 100%;
  text-align: center;
}


#meetpass .img-area-btn a {
display: inline-block;
    width: 50%;
    max-width: 100%;
    line-height: 1.5em;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #f68058;
    border-radius: 100px;
    border: none;
}

#meetpass .img-area-btn a:hover {
  color: #f68058;
}

#meetpass .img-area-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  color: #fff;
  position: absolute;
  top: 4%;
  left: 3%;
  width: 38%;
}

#meetpass .section-decorate {
  padding-top: 40px;
}

#meetpass .feature {
    padding: 60px 0 60px;
}

#meetpass .feature-main-title {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
}

@media (max-width: 1000px) {
  #meetpass .feature-main-title {
    font-size: 20px;
  }
}

#meetpass .feature-inner {
  max-width: 1050px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #meetpass .feature-inner {
    padding: 0 20px;
  }
}

#meetpass .feature-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
    width: 100%;
    margin: 30px auto 0;
}
#meetpass .feature-lists li{
    border-bottom: 1px dashed #DDD;
    padding: 0 0 20px;
}
#meetpass .feature-lists li:last-child{
    padding: 0;
}
@media (max-width: 1000px) {
  #meetpass .feature-list:not(:first-child) {
    margin-top: 30px;
  }
}
#meetpass .feature-lists .feature-img{
    width: 60%;
    margin: 0 auto;
}
#meetpass .feature-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 14px;
}

@media (max-width: 1000px) {
  #meetpass .feature-title {
    font-size: 18px;
  }
}

#meetpass .feature-text {
  font-size: 14px;
  line-height: 1.57143;
  margin-top: 13px;
}

#meetpass .works-main-title {
    margin-top: 60px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
}

#meetpass .works-lists {

  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 30px auto 0;

}

@media (max-width: 1000px) {
  #meetpass .works-list {
    width: calc(50% - 30px * 1 / 2);
  }
  #meetpass .works-list:not(:nth-child(2n + 1)) {
    margin-left: 30px;
  }
  #meetpass .works-list:nth-child(n + 3) {
    margin-top: 30px;
  }
}
#meetpass .works-list .works-img5{
    line-height: 0;
    width: 80%;
    margin: 0 auto;
}
@media (max-width: 1000px) {
  #meetpass .works-img1 {
    height: 100px;
    text-align: center;
  }
  #meetpass .works-img1 img {
    width: 100px;
  }
}
@media (max-width: 1000px) {
  #meetpass .works-img2 {
    height: 100px;
    text-align: center;
  }
  #meetpass .works-img2 img {
    width: 100px;
    padding-top: 10px;
  }
}

@media (max-width: 1000px) {
  #meetpass .works-img3 {
    height: 100px;
    text-align: center;
  }
  #meetpass .works-img3 img {
    width: 100px;
  }
}

@media (max-width: 1000px) {
  #meetpass .works-img4 {
    height: 100px;
    text-align: center;
  }
  #meetpass .works-img4 img {
    padding-top: 10px;
    width: 50px;
  }
}

@media (max-width: 1000px) {
  #meetpass .works-img5 {
    height: 100px;
    text-align: center;
  }
  #meetpass .works-img5 img {
    width: 100px;
  }
}
#meetpass .works-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

@media (max-width: 1000px) {
  #meetpass .works-title {
    font-size: 18px;
  }
}

#meetpass .meetpass {
  background: #1a1a1a;
}

@media (max-width: 1000px) {
  #meetpass .meetpass {
    padding: 40px 20px 0;
  }
}

#meetpass .app-inner {
  max-width: 1050px;
  margin: 0 auto;
}

#meetpass .meetpass-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 1000px) {
  #meetpass .meetpass-contents {
    display: block;
  }
}

@media (max-width: 1000px) {
  #meetpass .app-img {
    text-align: center;
    margin-top: 30px;
    margin-bottom: -7px;
  }
  #meetpass .app-img img {
    width: 80%;
  }
}

#meetpass .app-details {
  text-align: center;
    margin: 0 auto;
}


#meetpass .app-logo img {
  width: 141px;
}

#meetpass .app-content img {
  width: auto;
}

#meetpass .app-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}

@media (max-width: 1000px) {
  #meetpass .app-text {
    margin-top: 20px;
  }
}

#meetpass .app-lists {
  margin-top: 39px;
}


#meetpass .app-attentions{
    padding: 20px 0 0;
}
#meetpass .app-attentions .app-attention{
    margin: 0 0 10px;
    padding: 0 0 0 20px;
    position: relative;
    font-size: 10px;
    line-height: 1.5em;
    color: #FFF;
}
#meetpass .app-attentions .app-attention:before{
    top: 3px;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #FFF;
    left: 0;
    border-radius: 50%;
}
#meetpass .app-attentions .app-attention:last-child{
    margin: 0;
}


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

	リニューアル:202209:MEMOLKORE

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

#memokore .sectionBox {
  background: #f5f5f5;
  position: relative;
}
#memokore .sectionBoxBg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1600px;
  pointer-events: none;
  display: none;
}
#memokore .system_wave {
  line-height: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 1600px;
  z-index: 0;
}
#memokore .system_wave:before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  z-index: -1;
}
#memokore .mv {
  background-image: url(/static/tixplus/img/memokore/mv-bg-entertainment.png);
  min-height: 300px;
  height: calc(100vw + 55px);
  position: relative;
}
#memokore .mv .mv-inner {
  margin-top: 30px;
}
#memokore .mv-text {
  margin-top: 29px;
}

#memokore .fv {
  width: 90%;
  margin: 74px auto 0;
  border-radius: 8px;
  position: relative;
}

@media (max-width: 1000px) {
  #memokore .fv {
    background: url(/static/tixplus/img/memokore/mv-sp.png) no-repeat center
      center/cover;
    height: 500px;
    margin-top: 30px;
  }
}

@media (min-width: 550px) and (max-width: 1000px) {
  #memokore .fv {
    height: 750px;
  }
}

#memokore .fv-title {
  width: 100%;
  max-width: 804px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 9%;
}

@media (max-width: 1000px) {
  #memokore .fv-title {
    width: 90%;
    top: 6%;
  }
}

@media (min-width: 550px) and (max-width: 1000px) {
  #memokore .fv-title {
    width: 70%;
  }
}

#memokore .fv-flow {
  max-width: 617px;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 23%;
}

@media (max-width: 1000px) {
  #memokore .fv-flow {
    width: 95%;
  }
}

#memokore .news {
  padding-top: 0;
  position: relative;
  background: #fff;
}
#memokore .news .sectionTit {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #000;
    position: relative;
    text-align: center;
    z-index: 1;
}
#memokore .news-inner {
    overflow: hidden;
    margin: 0 auto;
    border-radius: 10px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
#memokore .news-inner .swiper-slide{
    background: #FFF;
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    overflow: hidden;
}
#memokore .news-inner .swiper-slide .newsImage{
    margin: 0 0 10px;
    line-height: 0;
}
#memokore .news-inner .swiper-slide .newsImage img{
    border-radius: 0;
    height: 57vw;
}
#memokore .news-inner .swiper-slide a:hover .newsImage img {
    transform: none;
}
#memokore .news-inner .swiper-slide .catList{
    padding: 0 10px 0;
    margin: 0 0 10px;
}
#memokore .news-inner .swiper-slide .catList li{
    display: inline-block;
    border-radius: 5px;
    padding: 6px 10px;
    margin: 0 4px 0 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    background: #AEAEAE;
    color: #FFF;
}
#memokore .news-inner .swiper-slide .catList li.category01{
    background: #e16767;
}
#memokore .news-inner .swiper-slide .catList li.category02{
    background: #7bd784;
}
#memokore .news-inner .swiper-slide .catList li.category03{
    background: #f48760;
}
#memokore .news-inner .swiper-slide .tit{
    padding: 0 10px 0;
    font-size: 12px;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 10px;
}
#memokore .news-inner .news-btn {
    margin-top: 40px;
}

#memokore .contentsFlow {
  padding: 0;
  position: relative;
  background: #FFF;
}
#memokore .contentsFlow.cf2 {
  background: #f5f5f5;
}
#memokore .contentsFlow-inner {
  margin: 0 auto;
  padding: 60px 20px 0;
  position: relative;
  background: transparent;
}
#memokore .contentsFlow .contentsFlow-title {
  font-weight: bold;
  text-align: left;
  font-size: 18px;
  padding: 0 0 15px;
  line-height: 1.5em;
}
#memokore .contentsFlow .contentsFlow-lead {
  line-height: 1.6em;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
}
#memokore .contentsFlow .contentsFlow-img {
  line-height: 0;
}

#memokore .contentsFlow .contentsFlow-sp {
  background: #fff;
  padding: 40px 20px 20px;
  position: relative;
}
#memokore .contentsFlow .contentsFlow-sp:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 42px;
  display: block;
  width: 2px;
  height: calc(100% - 100px);
  background: #f68057;
}
#memokore .contentsFlow .contentsFlow-sp:after {
  content: "";
  position: absolute;
  bottom: 60px;
  left: 37px;
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #f68057;
  border-bottom: 2px solid #f68057;
  transform: rotate(-45deg);
}
#memokore .contentsFlow .contentsFlow-list {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
  align-items: stretch;
}
#memokore .contentsFlow .contentsFlow-list dt {
  position: relative;
  width: 30%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}
#memokore .contentsFlow .contentsFlow-list dt .txt {
  font-size: 13px;
  font-weight: 600;
}
#memokore .contentsFlow .contentsFlow-list dt .txt span {
  color: #f68057;
  font-weight: 600;
  font-size: 18px;
}
#memokore .contentsFlow .contentsFlow-list dt .badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #f68057;
  color: #fff;
  font-weight: 600;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transform: translateY(-60%);
}
#memokore .contentsFlow .contentsFlow-list dd {
  width: 70%;
  padding: 0 0 0 20px;
  font-size: 13px;
}
#memokore .contentsFlow .cap {
  padding: 0 0 0 20px;
  font-size: 12px;
  color: #f68057;
  font-weight: 600;
}

#memokore .pack {
  padding: 0 0 60px;
  background: #f5f5f5;
}

#memokore .section-decorate {
  padding-top: 40px;
}

#memokore .pack-inner {
  max-width: 1050px;
  margin: 0 auto;
}

#memokore .pack-sub-title {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    font-weight: bold;
    text-align: center;
}

#memokore .pack-main-title {
  max-width: 100%;
  margin: 25px auto 0;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  #memokore .pack-main-title {
    width: 90%;
    margin-top: 30px;
    padding: 0 20px;
  }
}

#memokore .pack-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 846px;
  margin: 62px auto 0;
}

@media (max-width: 1000px) {
  #memokore .pack-contents {
    margin-top: 45px;
  }
}

#memokore .contents-box {
  max-width: 1050px;
  margin: 71px auto 0;
  border: 3px solid #f68058;
  border-radius: 22px;
  background: #fdf6f4;
  padding: 56px 10px;
}

@media (max-width: 1000px) {
  #memokore .contents-box {
    margin-top: 45px;
    padding: 30px 10px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

#memokore .contents-box-inner {
  max-width: 846px;
  margin: 0 auto;
}

#memokore .contents-box-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

#memokore .contents-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 43px;
}

@media (max-width: 1000px) {
  #memokore .contents-lists {
    margin-top: 30px;
    gap: 8px;
  }
}

#memokore .contents-list {
  border: 1px solid #f68058;
  border-radius: 22px;
  background: #fff;
  color: #f68058;
  padding: 10px 30px;
}

@media (max-width: 1000px) {
  #memokore .contents-list {
    white-space: nowrap;
    padding: 5px 10px;
  }
}

#memokore .flow {
    margin-top: 60px;
}

#memokore .flow-inner {
  max-width: 1050px;
}

@media (max-width: 1000px) {
  #memokore .flow-inner {
    padding: 0 20px;
  }
}

#memokore .flow-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

#memokore .flow-sub-title {
  font-size: 16px;
  text-align: center;
  margin-top: 17px;
}

#memokore .flow-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 79px;
  display: block;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1000px) {
  #memokore .flow-lists:not(:first-child) {
    margin-top: 65px;
  }
}

#memokore .flow-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 14px;
  padding: 100px 23px 24px;
  border: 3px solid #9bac4b;
  background: #fff;
  border-radius: 13px;
  position: relative;
}

@media (max-width: 1000px) {
  #memokore .flow-lists {
    gap: 8px;
    padding: 90px 10px 30px;
    white-space: nowrap;
  }
}

#memokore .flow-box-decorate {
    position: absolute;
    width: 112px;
    height: 112px;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 0;
}

#memokore .flow-list {
  border: 1px solid #f68058;
  border-radius: 22px;
  background: #fff;
  color: #f68058;
  padding: 10px 20px;
}

@media (max-width: 1000px) {
  #memokore .flow-list {
    padding: 5px 10px;
  }
}

#memokore .kuji {
    padding-top: 60px;
}

#memokore .kuji-inner {
  text-align: center;
}

#memokore .kuji-sub-title {
  color: #f68058;
  font-size: 42px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 3px solid #f68058;
  display: inline-block;
}

#memokore .kuji-text {
  font-size: 30px;
  font-weight: bold;
  margin-top: 23px;
}

#memokore .kuji-text-sp {
    padding: 0 20px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

#memokore .kuji-text-sp span {
  color: #f68058;
  font-weight: 600;
}

#memokore .kuji-title {
  max-width: 420px;
  margin: 30px auto 0;
}

@media (max-width: 1000px) {
  #memokore .kuji-title {
    margin-top: 20px;
    padding: 0 20px;
  }
}

#memokore .kuji-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  max-width: 1050px;
  margin: 30px auto 0;
}

@media (max-width: 1000px) {
  #memokore .kuji-images {
    padding: 0 20px;
  }
}

#memokore .kuji-img:not(:first-child) {
  margin-left: 62px;
}

@media (max-width: 1000px) {
  #memokore .kuji-img:not(:first-child) {
    margin-left: 20px;
  }
}

@media (max-width: 1000px) {
  #memokore .kuji-img {
    width: calc(50% - 20px * 1 / 2);
  }
}

#memokore .kuji-img img {
  max-width: 239px;
}

#memokore .kuji-img-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  background: #adce43;
  padding-top: 328px;
  padding-bottom: 80px;
  margin-top: -286px;
}

@media (max-width: 1000px) {
  #memokore .kuji-img-text {
    font-size: 16px;
    padding-top: 230px;
    margin-top: -200px;
    padding-bottom: 60px;
  }
}

#memokore .kujipura {
  background: url(/static/tixplus/img/memokore/kujipura-bg.png) no-repeat center
    center/cover;
}

#memokore .kujipura-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding-top: 60px;
}

#memokore .kujipura-box {
  background: #fff;
  border-radius: 22px;
  padding: 68px 72px 98px 79px;
}

@media (max-width: 1000px) {
  #memokore .kujipura-box {
    padding: 45px 20px 60px;
    margin: 0 10px;
  }
}

#memokore .kujipura-sub-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

@media (max-width: 1000px) {
  #memokore .kujipura-sub-title {
    font-size: 18px;
  }
}

#memokore .kujipura-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 33px;
}

@media (max-width: 1000px) {
  #memokore .kujipura-titles {
    display: block;
  }
}

#memokore .kujipura-logo {
  max-width: 307px;
}

@media (max-width: 1000px) {
  #memokore .kujipura-logo {
    width: 80%;
    margin: 20px auto 0;
  }
}

#memokore .kujipura-text {
  font-weight: bold;
  font-size: 24px;
  margin-left: 67px;
  color: #f68058;
  letter-spacing: 0.02em;
}

@media (max-width: 1000px) {
  #memokore .kujipura-text {
    margin-left: 0;
    text-align: center;
    font-size: 16px;
    margin-top: 10px;
  }
}

#memokore .kujipura-contents {
display: block;
  margin-top: 35px;
  max-width: 870px;
  margin: 35px auto 0;
}
#memokore .example {
    margin-top: 40px;
}
#memokore .example .exampleTit{
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 30px;
}
#memokore .example .exampleImage{
    display: block;
    margin: 0 0 20px;
}
#memokore .example .exampleImage li{
    width:100%;
    margin:0 0 20px;
}
#memokore .example .exampleImage li:last-child{
    margin:0;
}
#memokore .example .exampleImage li a{
    display: block;
    line-height: 0;
}
#memokore .example .exampleTxt{
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8
}


#memokore .kujipura-img {
  max-width: 265px;
}

@media (max-width: 1000px) {
  #memokore .kujipura-img {
    width: 100%;
    margin: 30px auto 0;
  }
}

@media (max-width: 1000px) {
  #memokore .kujipura-texts {
    margin-top: 45px;
  }
}

#memokore .kujipura-text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#memokore .kujipura-text-box:not(:first-child) {
  margin-top: 33px;
}

@media (max-width: 1000px) {
  #memokore .kujipura-text-box {
    display: block;
    text-align: center;
  }
  #memokore .kujipura-text-box:not(:first-child) {
    margin-top: 60px;
  }
}

#memokore .kujipura-number {
  font-family: "Roboto";
  font-size: 82px;
  color: #e6e4e4;
  font-weight: bold;
}

#memokore .kujipura-title {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
}

#memokore .kujipura-text-sub-title {
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  #memokore .kujipura-text-sub-title {
    margin-top: 20px;
  }
}

#memokore .kujipura-btn {
  margin-top: 51px;
  text-align: center;
}


#memokore .kujipura-btn {
  width: 100%;
  margin: 40px auto 0;
}


#memokore .kujipura-btn a {
    display: inline-block;
    width: 50%;
    max-width: 100%;
    line-height: 1.5em;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #f68058;
    border-radius: 29.5px;
    border: none;
}

#memokore .kujipura-btn a:hover {
  color: #f68058;
  border: 1px solid #f68058;
}

#memokore .kujipura-img-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 27px;
}

@media (max-width: 1000px) {
  #memokore .kujipura-img-contents {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 20px;
  }
}

@media (max-width: 1000px) {
  #memokore .kujipura-img-content {
    width: calc(50% - 10px * 1 / 2);
  }
  #memokore .kujipura-img-content:nth-child(2n) {
    margin-left: 10px;
  }
  #memokore .kujipura-img-content:nth-child(n + 3) {
    margin-top: 10px;
  }
}

#memokore .kujibiki {
  background: #f5f5f5;
  padding: 150px 0 60px;
  margin-top: -100px;
}

#memokore .kujibiki-img {
  max-width: 421px;
  margin: 0 auto;
}

#memokore .kujipura-btn2 {
  margin-top: 24px;
  text-align: center;
}

#memokore .kujipura-btn2 {
  margin-top: 45px;
  width: 100%;
  margin: 45px auto 0;
}

#memokore .kujipura-btn2 a {
    display: inline-block;
    width: 50%;
    max-width: 100%;
    line-height: 1.5em;
    padding: 10px;
    font-size: 16px;
    text-align: center;
    color: #f68058;
    background: #fff;
    border-radius: 29.5px;
}

#memokore .kujipura-btn2 a:hover {
  color: #fff;
}

#memokore .kuji-works {
  padding: 109px 0 118px;
}

@media (max-width: 1000px) {
  #memokore .kuji-works {
    padding: 60px 0;
  }
}

#memokore .kuji-works-inner {
  max-width: 1050px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #memokore .kuji-works-inner {
    padding: 0 20px;
  }
}

#memokore .kuji-works-main-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

#memokore .kuji-works-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 570px;
  margin: 30px auto 0;
}

#memokore .kuji-works-list {
  width: 50%;
  font-size: 15px;
}

@media (max-width: 1000px) {
  #memokore .kuji-works-list {
    width: 100%;
    text-indent: -1em;
    padding-left: 2em;
  }
  #memokore .kuji-works-list:not(:first-child) {
    margin-top: 10px;
  }
}

#memokore .domain {
  padding-top: 83px;
}

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

	リニューアル:202209:SDK

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

#sdk .mv {
  background-image: url(/static/tixplus/img/sdk/mv-bg-fanapp.png);
}
#sdk .mv-inner {
}
#sdk .mv-tab-content {
  width: calc(33.3% - 5.3333333333px);
}
#sdk .mv-tab-box {
  margin-top: 118px;
}
#sdk .p-fv_inner {
  max-width: 1310px;
  padding: 0 20px;
  margin: 74px auto 0;
  background: url(/static/tixplus/img/sdk/fv.png) no-repeat center center/cover;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  #sdk .p-fv_inner {
    margin: 50px 20px 0;
  }
}
#sdk .p-fv_contents {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1150px;
  padding: 71px 20px 55px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #sdk .p-fv_contents {
    display: block;
    padding: 40px 0 0;
  }
}
#sdk .p-fv_texts {
  width: calc(100% - 300px);
  margin-top: 47px;
}
@media (max-width: 1000px) {
  #sdk .p-fv_texts {
    width: 100%;
  }
}
#sdk .p-fv_text_title {
  text-align: center;
  font-size: 44px;
  line-height: 1.4545454545;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1000px) {
  #sdk .p-fv_text_title {
    font-size: 28px;
  }
}
#sdk .p-fv_text_sub-title {
  margin-top: 23px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.8333333333;
  text-align: center;
  color: #fff;
}
@media (max-width: 1000px) {
  #sdk .p-fv_text_sub-title {
    font-size: 18px;
    margin-top: 30px;
  }
}
#sdk .p-fv_features {
  display: flex;
  margin-top: 43px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  #sdk .p-fv_features {
    margin: 30px auto 0;
    max-width: 80%;
  }
}
@media (max-width: 1000px) {
  #sdk .p-fv_feature {
    width: calc(50% - 5px);
  }
  #sdk .p-fv_feature:nth-child(2n) {
    margin-left: 10px;
  }
  #sdk .p-fv_feature:nth-child(n + 3) {
    margin-top: 10px;
  }
}
#sdk .p-fv_btn {
  margin-top: 52px;
}
@media (max-width: 1000px) {
  #sdk .p-fv_btn {
    margin-top: 50px;
  }
}
#sdk .p-fv_btn a {
  width: 317px;
  max-width: 100%;
  height: 59px;
  line-height: 59px;
  color: #fff;
  background: #f47e56;
  border-radius: 30px;
  border: none;
}
#sdk .p-fv_btn a:hover {
  background: #fff;
  color: #f47e56;
}
#sdk .p-fv_sp_img {
  max-width: 330px;
  width: 100%;
}
@media (max-width: 1000px) {
  #sdk .p-fv_sp_img {
    margin: 30px auto 0;
    width: 90%;
  }
}
#sdk .l-introduction {
  margin-top: 100px;
}
@media (max-width: 1000px) {
  #sdk .l-introduction {
    margin-top: 80px;
  }
}
#sdk .p-introduction_inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px 56px;
}
#sdk .p-introduction_title {
  padding-top: 61px;
  font-size: 34px;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  font-weight: bold;
}
#sdk .p-introduction_title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  background: #f47e56;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#sdk .p-introduction_contents {
  display: flex;
  flex-wrap: wrap;
  margin-top: 61px;
}
@media (max-width: 1000px) {
  #sdk .p-introduction_contents {
    display: block;
  }
}
@media (max-width: 1000px) {
  #sdk .p-introduction_content {
    width: 100%;
  }
  #sdk .p-introduction_content:not(:first-child) {
    margin-top: 30px;
  }
}
#sdk .p-introduction_content_img {
  position: relative;
  padding-top: 61.1111%;
}
#sdk .p-introduction_content_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sdk .p-introduction_content_title {
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 21px;
}
@media (max-width: 1000px) {
  #sdk .p-introduction_content_title {
    margin-top: 15px;
  }
}
#sdk .domain {
  background: #fff;
}

#sdk .l-engage {
  margin-top: 80px;
}
#sdk .p-engage_inner {
  margin: 0 auto;
  padding: 0 20px 0;
}
#sdk .p-engage_title {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 20px;
}
#sdk .p-engage_List {
  line-height: 1.5em;
  font-size: 16px;
}
#sdk .p-engage_List li {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
}
#sdk .p-engage_List li:last-child {
  margin: 0;
}

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

	リニューアル:202209:NFT

====================================================*/
#nft .mv {
  background-image: url(/static/tixplus/img/nft/mv-bg-nft.png);
  background-position: 45% 0;
}
#nft .mv-inner {
}
#nft .mv-tab-content {
  width: 50%;
}
#nft .mv-tab-box {
  margin-top: 118px;
}
#nft .mv-tab-content-active {
    background: #232323;
}
#nft .mv-tab-content-active a{
    color: #FFF;
}
#nft .mv-tab-content:not(:first-child) {
    border-left: 1px solid #232323;
}
#nft .mv-title-box{
    text-align:center;
}
#nft .mv-title {
    display: inline-block;
    font-size: 18px;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid rgba(255,255,255,0.6);
}
#nft .mv-sub {
    font-size: 18px;
    display: block;
    margin-top: 0;
    font-weight: bold;
    padding: 0;
}
#nft .pageContainer {
    background: #151515;
}
#nft .sectionBoxBg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 1600px;
    pointer-events: none;
}
#nft .bg_wave_white:before {
    background: #232323;
}
#nft .news {
    position: relative;
    padding: 65px 20px;
}
#nft .news-inner {
    padding: 0;
    position: relative;
}
#nft .news .sectionTit {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #FFF;
    position: relative;
    text-align: center;
    z-index: 1;
}
#nft .news .system_wave {
    line-height: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    max-width: 1600px;
}
#nft .news .system_wave {
    line-height: 0;
    position: absolute;
    right: 0;
    z-index: 0;
    width: 80%;
    max-width: 1100px;
}
#nft .news .system_wave:before {
    position: absolute;
    top: 0;
    right: 100%;
    display: block;
    content: "";
    width: 100vw;
    height: 100%;
    background: #232323;;
}
#nft .news .newsBlockList:after{
    content:none;
}
#nft .news .newsBlockList li {
    width: 100%;
    margin: 0 0 40px;
}
#nft .news .newsBlockList li:last-child{
    margin: 0;
}
#nft .news .newsBlockList li .catList dt {

}
#nft .news .newsBlockList li .catList dd {
    color: #FFF;
}
#nft .news .newsBlockList li .newsImage {
    border-radius: 10px;
    overflow: hidden;
    height: 80%;
    margin: 0 0 20px;
}
#nft .news .newsBlockList li .txtArea {
    display: block;
}
#nft .news .newsBlockList li .txtArea .tit{
    color: #FFF;
    font-size: 14px;
    margin: 0 0 10px;
}
#nft .news .newsBlockList li .txtArea .btn a{
    position: relative;
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
    z-index: 0;
    transform: rotateZ(0.03deg);
    background: #F0EFF0;
    display: inline-block;
    line-height: 1em;
    font-size: 14px;
    padding: 9px 25px 8px;
    border-radius: 100px;
    font-weight: 600;
}
#nft .content_TxtBox{
    padding: 0 20px 60px;
    position: relative;
}
#nft .content_TxtBox .txt span{
    display: inline-block;
    margin: 0 0 10px;
}
#nft .content_TxtBox .tit{
    font-size: 18px;
    color: #FFF;
    text-align: center;
    font-weight: 600;
    line-height: 1.5em;
    margin: 0 0 20px;
}
#nft .content_TxtBox .txt{
    font-size: 15px;
    color: #FFF;
    text-align: left;
    font-weight: 600;
    line-height: 1.5em;
}
#nft .whatNft{
    background-color: #141414;
    background-image: url(/static/tixplus/img/nft/ph_bg_whatsnft.png);
    background-size: 200%;
    background-position: bottom left;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 0 40px;
}
#nft .whatNft:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 200px;
    background: linear-gradient( 0deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 1) 100% );
}
#nft .whatNft .column{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column-reverse;
    margin: 0 auto;
    position: relative;
    align-items: end;
    padding: 0 20px;
    box-sizing: border-box;
}
#nft .whatNft .columnImage{
    max-width: 100%;
    padding: 40px 0 0;
}
#nft .whatNft .columnTxt{
    max-width: 100%;
    color: #FFF;
}
#nft .whatNft .columnTxt .tit{
    font-size: 18px;
    margin: 0 0 30px;
    font-weight: 600;
    text-align: center;
}
#nft .whatNft .columnTxt .textList{
    margin: 0 0 60px;
}
#nft .whatNft .columnTxt .textList li{
    font-size: 14px;
    margin: 0 0 10px;
}
#nft .whatNft .columnTxt .textList li:last-child{
    margin: 0;
}
#nft .whatNft .columnTxt  .iconList{
    display: flex;
    justify-content: center;
}
#nft .whatNft .columnTxt  .iconList li{
    width: 50%;
    text-align: center;
}
#nft .whatNft .columnTxt  .iconList li .icon{
    margin: 0 0 25px;
    padding: 0;
    position: relative;
}
#nft .whatNft .columnTxt  .iconList li .icon img{
    width: auto;
    height: 100px;
}
#nft .whatNft .columnTxt  .iconList li:nth-child(1) .icon:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-33%,-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    border-top: 3px solid #F68057;
    border-right: 3px solid #F68057;
}
#nft .whatNft .columnTxt  .iconList li:nth-child(1) .icon:before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 99%;
    transform: translate(-50%,-50%);
    width: 30px;
    height: 3px;
    background: #F68057;
}
#nft .whatNft .columnTxt  .iconList li .iconTxt{
    font-size: 11px;
    text-align: center;
    line-height: 1.5em;
}
#nft .nftDetail{
    background: #232323;
    padding: 40px 20px;
}
#nft .nftDetail .nftDetailTit{
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    margin: 0 auto 20px;
}
#nft .nftDetailList{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
#nft .nftDetailList li{
    width: 100%;
    box-sizing: border-box;
    color: #f5f5f5;
    margin: 0 0 30px;
    border-bottom: 1px solid #3e3e3e;
    padding: 0 0 30px;
}
#nft .nftDetailList li:last-child{
    margin: 0;
    border-bottom: none;
    padding: 0;
}

#nft .nftDetailList li .icon{
    margin: 0 0 10px;
    padding: 0;
    text-align: center;
}
#nft .nftDetailList li .icon img{
    width: auto;
    height: 120px;
}
#nft .nftDetailList li .iconTit{
    font-size: 16px;
    text-align: left;
    margin: 0 0 10px;
    font-weight: 600;
}
#nft .nftDetailList li .iconTxt{
    font-size: 14px;
}
#nft .nftDetailList li .link{
    padding: 15px 0 0;
    text-align: center;
}
#nft .nftDetailList li .link a{
    position: relative;
    color: #f68057;
    font-size: 13px;
}
#nft .nftDetailList li .link a:before {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: -10px;
    top: 50%;
    transform: rotate(45deg) translateY(-70%);
    background: #f68057;
    border-radius: 100px;
}
#nft .nftDetailList li .link a:after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    right: -9px;
    top: 50%;
    transform: rotate(45deg) translateY(-65%);
}

#nft .circulation{
    background: #F5F5F5;
    padding: 40px 20px 60px;
}
#nft .circulation .circulationTit{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 20px;
}
#nft .circulation .circulationSub{
    color: #4D4397;
    text-align: center;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 600;
}
#nft .circulation .flowImage{
    width:100%;
    margin: 0 auto 20px;
}
#nft .circulation .cap{
    color: #1a1a1a;
    font-size: 12px;
    line-height: 1.6em;
    text-indent: -6px;
}



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

	リニューアル:202209:SPORTSDX

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

#sportsdx .mv {
  background-image: url(/static/tixplus/img/sportsdx/mv-bg-fanapp_sp_202406.png);
  background-position: top;
  height: calc(100vw + 55px);
}
#sportsdx .mv-inner {
}
#sportsdx .sectionBox {
  background: #f5f5f5;
  position: relative;
}
#sportsdx .sectionBox .sectionBoxBg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1600px;
  pointer-events: none;
}
#sportsdx .mv-tab-content {
  width: 50%;
}
#sportsdx .mv-tab-box {
  margin-top: 118px;
}
#sportsdx .l-feature {
    overflow: hidden;
    position: relative;
}
#sportsdx .l-feature .system_wave {
  line-height: 0;
  position: absolute;
  right: 0;
  z-index: 0;
  width: 80%;
  max-width: 1100px;
}
#sportsdx .l-feature .system_wave:before {
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: #ffffff;
}
#sportsdx .l-feature .p-feature_inner {
    position: relative;
    padding: 0 20px 60px;
    margin: 0 auto;
}
#sportsdx .featureTxtBox {
}
#sportsdx .p-feature_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  margin: 0 0 20px;
}
#sportsdx .p-feature_txt {
  margin: 0 0 20px;
}
#sportsdx .p-featu#idol .p-idol_flow_inner re_txt {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
}
#sportsdx .l-feature .p-feature_inner .featureTxtBox .pointIcon {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sportsdx .l-feature .p-feature_inner .featureTxtBox .pointIcon li {
  width: 20vw;
  height: 20vw;
  background: #f68057;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0 0 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 10px 0 rgb(0 0 0/ 20%);
}
#sportsdx .p-support_inner.c-inner {
  padding: 0 20px 20px;
}
#sportsdx .p-support_inner .p-support_title {
  padding-top: 0;
}
#sportsdx .c-inner {
  max-width: 1090px;
  padding: 120px 20px 105px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #sportsdx .c-inner {
    padding: 65px 20px;
  }
}
#sportsdx .c-section-title {
  font-size: 22px;
  padding-top:0;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  font-weight: bold;
  line-height: 1.4166666667;
}
#sportsdx .c-section-title::before {
  content: none;
}
#sportsdx .p-feature_lists {
  display: flex;
  margin-top: 17px;
  justify-content: center;
}
#sportsdx .p-feature_list {
  width: calc(25% - 15px);
  max-width: 98px;
}
#sportsdx .p-feature_list:not(:first-child) {
  margin-left: 20px;
}
#sportsdx .p-feature_flow_img {
  width: 90%;
  margin: 20px auto 0;
}
#sportsdx .l-support {
  background: #f5f5f5;
}
#sportsdx .p-support_contents {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#sportsdx .p-support_content {
  width: 50%;
  box-sizing: border-box;
  margin: 0 0 40px;
}

#sportsdx .p-support_content:nth-child(odd) {
  padding: 0 10px 0 0;
}
#sportsdx .p-support_content:nth-child(even) {
  padding: 0 0 0 10px;
}

#sportsdx .p-support_content_inner {
  border-radius: 14px;
  background: #fff;
  position: relative;
  text-align: center;
  padding: 40px 20px 20px;
}
#sportsdx .p-support_content_inner img {
  width: 60%;
  max-width: 150px;
}

#sportsdx .p-support_content_inner .cap {
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: bold;
  text-align: center;
  font-size: 13px;
}
#sportsdx .p-support_content_number {
  position: absolute;
  top: 6px;
  left: 40px;
  font-size: 108px;
  color: #e6e4e4;
  font-family: "Roboto";
  font-weight: bold;
}
@media (max-width: 1000px) {
  #sportsdx .p-support_content_number {
    font-size: 62px;
    left: 20px;
    top: -10px;
  }
}
#sportsdx .l-slide {
  padding: 53px 0 77px;
  background: #1a1a1a;
}
@media (max-width: 1000px) {
  #sportsdx .l-slide {
    padding: 60px 0;
  }
}
#sportsdx .slide-inner {
  max-width: 1050px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #sportsdx .slide-inner {
    padding: 0 20px;
  }
}
#sportsdx .slide1 {
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  #sportsdx .slide1 {
    margin-top: -20px;
  }
}
#sportsdx .slide-contents {
  display: flex;
  flex-direction: row-reverse;
  color: #fff;
}
@media (max-width: 1000px) {
  #sportsdx .slide-contents {
    display: block;
  }
}
#sportsdx .slide-cap {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5357142857;
  color: #fff;
}
#sportsdx .slide-titles {
  display: flex;
  margin-top: 62px;
  padding-left: 8px;
  align-items: center;
  border-bottom: 3px solid #666;
  padding-bottom: 35px;
}
@media (max-width: 1000px) {
  #sportsdx .slide-titles {
    padding-bottom: 15px;
  }
}
#sportsdx .slide-number {
  font-size: 80px;
  font-weight: bold;
  font-family: "Roboto";
  color: #666;
}
@media (max-width: 1000px) {
  #sportsdx .slide-number {
    font-size: 40px;
  }
}
#sportsdx .slide-title {
    font-size: 22px;
    margin-left: 20px;
    font-weight: bold;
    line-height: 1.3em;
}
#sportsdx .mt45 {
  margin-top: 45px;
}
#sportsdx .slide-text {
  margin-top: 37px;
}
@media (max-width: 1000px) {
  #sportsdx .slide-text {
    margin-top: 15px;
  }
}
#sportsdx .slide-images {
  display: flex;
  margin-top: 23px;
}
@media (max-width: 1000px) {
  #sportsdx .slide-images {
    display: none;
  }
}
#sportsdx .slide-img {
  width: calc(33.3% - 40px);
}
#sportsdx .slide-img:not(:first-child) {
  margin-left: 40px;
}
#sportsdx .slide-big-img {
  padding-left: 20px;
  margin-top: 29px;
}
@media (max-width: 1000px) {
  #sportsdx .slide-big-img {
    margin-top: 30;
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #sportsdx .slide-big-img img {
    width: 70%;
  }
}
#sportsdx .swiper-pagination {
  bottom: 0;
}
@media (max-width: 1000px) {
  #sportsdx .swiper-pagination {
    bottom: 10px;
  }
}
#sportsdx .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #bdbdbd;
  border-radius: 50%;
  opacity: 1;
  margin: 0 12px;
}
#sportsdx .swiper-pagination-bullet-active {
  background: #f68058;
}
#sportsdx .l-resale {
  background: #f5f5f5;
}
#sportsdx .p-resale_contents_wrap {
  margin-top: 40px;
}
#sportsdx .p-resale_contents {
  display: flex;
}
#sportsdx .p-resale_contents:not(:first-child) {
  margin-top: 53px;
}
@media (max-width: 1000px) {
  #sportsdx .p-resale_contents {
    display: block;
  }
}
#sportsdx .p-resale_content {
  background: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 25px 20px;
}
#sportsdx .p-resale_content p {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
  margin-top: 21px;
}
@media (max-width: 1000px) {
  #sportsdx .p-resale_content {
    width: 100%;
    padding: 0;
  }
  #sportsdx .p-resale_content:not(:first-child) {
    margin-top: 20px;
  }
  #sportsdx .p-resale_content img {
    width: 33%;
    max-width: 150px;
  }
  #sportsdx .p-resale_content p {
    text-align: left;
    margin-left: 30px;
    font-size: 16px;
    margin-top: 0;
  }
}
#sportsdx .p-resale_content.seller,
#sportsdx .p-resale_content.buyer {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
#sportsdx .p-resale_content.seller span,
#sportsdx .p-resale_content.buyer span{
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1.8125;
    font-weight: 600;
    margin: 0 30px 0 0;
    position: relative;
}
#sportsdx .p-resale_content.seller span:after,
#sportsdx .p-resale_content.buyer span:after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
}
#sportsdx .p-resale_content_inner {
    display: flex;
    align-items: center;
    padding: 30px 20px;
}

#sportsdx .l-nft {
  background: #1a1a1a;
}
#sportsdx .p-nft_title.c-section-title {
  color: #fff;
}
#sportsdx .p-nft_text {
  color: #fff;
  text-align: center;
  margin-top: 11px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
}
@media (max-width: 1000px) {
  #sportsdx .p-nft_text {
    text-align: left;
    font-size: 16px;
  }
}
#sportsdx .p-nft_img {
  margin: 22px auto 0;
  max-width: 1020px;
}
#sportsdx .p-sp_inner.c-inner {
  max-width: 1040px;
}
#sportsdx .p-sp_contents {
  display: flex;
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_contents {
    display: block;
  }
}
#sportsdx .p-sp_content {
  width: 33%;
  position: relative;
}
#sportsdx .p-sp_content.pluspay {
  background: #1a1a1a;
  color: #fff;
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content.pluspay {
    border-radius: 10px 10px 0 0;
  }
}
#sportsdx .p-sp_content.queueticket {
  background: #f5f5f5;
}
#sportsdx .p-sp_content.mobileorder {
  background: url(/static/tixplus/img/sportsdx/bg_mobileorder.png) no-repeat
    center center/cover;
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content.mobileorder {
    border-radius: 0 0 10px 10px;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content_inner {
    padding: 35px 50px 0;
  }
}
#sportsdx .p-sp_content_title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content_title {
    font-size: 19px;
  }
}
@media (min-width: 1001px) and (max-width: 1100px) {
  #sportsdx .p-sp_content_title {
    font-size: 24px;
  }
}
#sportsdx .p-sp_content_text {
  margin-top: 28px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.8125;
  font-size: 16px;
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content_text {
    font-size: 14px;
    margin-top: 20px;
  }
}
#sportsdx .p-sp_content_img {
  margin-top: 69px;
  padding-top: 163.006%;
  position: relative;
}
#sportsdx .p-sp_content_img img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  #sportsdx .p-sp_content_img {
    margin-top: 25px;
    padding-top: 90%;
    overflow: hidden;
  }
  #sportsdx .p-sp_content_img img {
    height: auto;
    top: 0;
  }
}
#sportsdx .l-cace {
  background: #FFF;
  padding: 60px 0 0;
}
#sportsdx .p-case_inner.c-inner {
  max-width: 1050px;
  padding: 0 20px 65px;
}
#sportsdx .p-case_inner.c-inner .p-case_title {
  padding-top: 0;
}
#sportsdx .p-case_inner.c-inner .c-section-title-cap {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}
#sportsdx .p-case_contents {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 66px;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_contents {
    display: block;
    margin-top: 40px;
  }
}
#sportsdx .p-app_slide {
    width: 70%;
    margin: 0 auto;
}
#sportsdx .p-case_explain {
  margin-top: 46px;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain {
    width: 100%;
    margin-top: 30px;
  }
}
#sportsdx .p-case_explain_title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5357142857;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain_title {
    font-size: 20px;
    text-align: center;
  }
}
#sportsdx .p-case_explain_text {
  margin-top: 23px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain_text {
    margin-top: 10px;
  }
}
#sportsdx .p-case_explain_works-title {
  margin-top: 57px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1.6111111111;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain_works-title {
    margin-top: 50px;
  }
}
#sportsdx .p-case_explain_works_lists {
  margin-top: 20px;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain_works_lists {
    margin-top: 15px;
  }
}
#sportsdx .p-case_explain_works_lists_inner {
  display: flex;
  flex-wrap: wrap;
  padding: 28px 40px;
  background: #f5f5f5;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain_works_lists_inner {
    padding: 20px 25px;
  }
}
#sportsdx .p-case_explain_works_list {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
}
#sportsdx .p-case_explain_works_list:not(:last-child) {
  margin-right: 1em;
}
@media (max-width: 1000px) {
  #sportsdx .p-case_explain_works_list {
    font-size: 13px;
  }
}
#sportsdx .p-apps {
  margin-top: 83px;
}
@media (max-width: 1000px) {
  #sportsdx .p-apps {
    margin-top: 50px;
  }
}
#sportsdx .p-app_contents {
  display: flex;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_contents {
    align-items: center;
    padding: 0 20px;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-app_icon {
    max-width: 90px;
    margin-top: 10px;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-app_copy {
    font-size: 10px;
    margin-top: -10px;
  }
}
#sportsdx .p-app_detail {
  margin-left: 30px;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_detail {
    margin-left: 15px;
  }
}
#sportsdx .p-app_texts {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_texts {
    display: block;
  }
}
#sportsdx .p-app_title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.0357142857;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_title {
    font-size: 21px;
  }
}
#sportsdx .p-app_btn {
  margin-left: 20px;
  max-width: 224px;
  margin-top: 7px;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_btn {
    margin: 10px 0 0 0;
  }
}
#sportsdx .p-app_btn a {
  display: block;
  transition: all 0.3s ease 0s;
}
#sportsdx .p-app_btn a:hover {
  opacity: 0.7;
}
#sportsdx .p-app_stores {
  display: flex;
  margin-top: 10px;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_stores {
    padding: 0 20px;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-app_stores img {
    height: 40px;
    width: auto;
    max-width: 100%;
  }
}

#sportsdx .app-attentions{
    padding: 15px 20px 0;
}
#sportsdx .app-attentions .app-attention{
    margin: 0 0 10px;
    padding: 0 0 0 20px;
    position: relative;
    font-size: 10px;
    line-height: 1.5em;
}
#sportsdx .app-attentions .app-attention:before{
    top: 4px;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #000;
    left: 0;
    border-radius: 50%;
}
#sportsdx .app-attentions .app-attention:last-child{
    margin: 0;
}

#sportsdx .p-app_ios a {
  transition: all 0.3s ease 0s;
}
#sportsdx .p-app_ios a:hover {
  opacity: 0.7;
}
#sportsdx .p-app_android {
  margin-left: 20px;
}
#sportsdx .p-app_android a {
  transition: all 0.3s ease 0s;
}
#sportsdx .p-app_android a:hover {
  opacity: 0.7;
}
#sportsdx .p-app_features {
  margin-top: 75px;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_features {
    margin-top: 50px;
  }
}
#sportsdx .p-app_features_contents {
  display: flex;
  background:#f5f5f5;
  padding: 55px 55px 50px;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_features_contents {
    display: block;
    padding: 30px 20px;
  }
}
#sportsdx .p-app_feature_img {
  width: 270px;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_feature_img {
    width: 90%;
    margin: auto;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-app_feature_texts {
    width: 100%;
    margin-top: 20px;
  }
}
#sportsdx .p-app_feature_title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.5357142857;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_feature_title {
    font-size: 21px;
    text-align: center;
  }
}
#sportsdx .p-app_feature_text {
  margin-top: 34px;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8125;
}
@media (max-width: 1000px) {
  #sportsdx .p-app_feature_text {
    margin-top: 10px;
  }
}
#sportsdx .p-app-feature_badges {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
@media (max-width: 1000px) {
  #sportsdx .p-app-feature_badges {
    margin-top: 25px;
  }
}
@media (max-width: 1000px) {
  #sportsdx .p-app_feature_badge {
    width: calc(33.3% - 10px);
  }
  #sportsdx .p-app_feature_badge:not(:first-child) {
    margin-left: 15px;
  }
}
#sportsdx .slideapp {
  padding-bottom: 40px;
  margin-top: 0;
}
#sportsdx .slideapp .swiper-pagination {
  text-align: center;
}

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

	リニューアル:202209:SDK

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

#tikepuraSdk .mv {
  background-image: url(/static/tixplus/img/sdk/mv-bg-tikepura_sdk.png);
}
#tikepuraSdk .sectionBoxBg {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1600px;
  pointer-events: none;
}
#tikepuraSdk .l-feature {
  position: relative;
}
#tikepuraSdk .l-feature .system_wave {
  line-height: 0;
  position: absolute;
  right: 0;
  z-index: 0;
  width: 100%;
  max-width: 1600px;
}
#tikepuraSdk .l-feature .system_wave:before {
  position: absolute;
  top: 0;
  right: 100%;
  display: block;
  content: "";
  width: 100vw;
  height: 100%;
  background: #ffffff;
}

#tikepuraSdk .l-feature .p-feature_inner {
  position: relative;
  padding: 60px 20px 0;
  max-width: 100%;
  margin: 0 auto;
  justify-content: flex-start;
}

#tikepuraSdk .l-feature .p-feature_inner .featureTxtBox {
  max-width: 100%;
}
#tikepuraSdk .l-feature .p-feature_inner .featureTxtBox .p-feature_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5em;
}
#tikepuraSdk .l-feature .p-feature_inner .featureTxtBox .txtList {
  margin-bottom: 20px;
}
#tikepuraSdk .l-feature .p-feature_inner .featureTxtBox .txtList li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 14px;
}
#tikepuraSdk .l-feature .p-feature_inner .featureTxtBox .txtList li:last-child {
  margin-bottom: 0;
}
#tikepuraSdk .l-feature .p-feature_inner .featureTxtBox .cap {
  font-size: 11px;
}
#tikepuraSdk .l-feature .p-feature_inner .p-feature_flow_img {
  max-width: 100%;
  margin: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-20px);
}

#tikepuraSdk .r-feature {
  position: relative;
  margin: 0 0 60px;
}

#tikepuraSdk .r-feature .p-feature_inner {
  flex-direction: column-reverse;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#tikepuraSdk .r-feature .p-feature_inner .featureTxtBox {
  max-width: 100%;
  padding: 0;
  margin: 0 0 20px;
}
#tikepuraSdk .r-feature .p-feature_inner .featureTxtBox .p-feature_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5em;
}
#tikepuraSdk .r-feature .p-feature_inner .featureTxtBox .txtList {
}
#tikepuraSdk .r-feature .p-feature_inner .featureTxtBox .txtList li {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 14px;
}
#tikepuraSdk .r-feature .p-feature_inner .featureTxtBox .txtList li:last-child {
  margin-bottom: 0;
}
#tikepuraSdk .r-feature .p-feature_inner .p-feature_flow_img {
  max-width: 100%;
  margin: 0;
  line-height: 0;
}

#tikepuraSdk .p-feature_lists {
  display: flex;
  margin-top: 17px;
  justify-content: center;
}
#tikepuraSdk .p-feature_list {
  width: calc(25% - 15px);
  max-width: 98px;
}
#tikepuraSdk .p-feature_list:not(:first-child) {
  margin-left: 20px;
}
#tikepuraSdk .p-feature_flow_img {
  max-width: 740px;
  margin: 50px auto 0;
}

#tikepuraSdk .achieve {
}
#tikepuraSdk .achieve .achieve_inner {
  padding: 0 20px 60px;
}
#tikepuraSdk .achieve .achieve_title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 0 auto 30px;
}

#tikepuraSdk .achieve .achieve_inner .achieveList {
  max-width: 100%;
  margin: 0 auto;
}
#tikepuraSdk .achieve .achieve_inner .achieveList li {
  width: 100%;
  max-width: 100%;
  margin-bottom: 40px;
}
#tikepuraSdk .achieve .achieve_inner .achieveList li:last-child {
  margin-bottom: 0;
}
#tikepuraSdk .achieve .achieve_inner .achieveList li .thumb {
  line-height: 0;
  position: relative;
  margin: 0;
}
#tikepuraSdk .achieve .achieve_inner .achieveList li .name {
  position: absolute;
  bottom: 25px;
  left: 0;
  font-weight: 600;
  margin: 0;
}
#tikepuraSdk .achieve .achieve_inner .achieveList li .icon {
  display: flex;
}
#tikepuraSdk .achieve .achieve_inner .achieveList li .icon dd {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 7px;
  border: 1px solid;
  line-height: 1em;
  border-radius: 100px;
  margin: 0 10px 0 0;
  transform: rotateZ(0.03deg);
}

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

	リニューアル:202209:DIGITAL

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

#digital .mv {
  background-image: url(/static/tixplus/img/nft/mv-bg-nft.png);
  background-position: 45% 0;
}

#digital .mv-text {
  margin-top: 28px;
}
#digital .mv-title {
    display: inline-block;
    font-size: 18px;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid rgba(255,255,255,0.6);
}
#digital .mv-sub {
    font-size: 18px;
    display: block;
    margin-top: 0;
    font-weight: bold;
    padding: 0;
}
#digital .mv-tab-content {
    width: 50%;
}
#digital .news {
  position: relative;
    padding-top: 60px;
}
#digital .news .system_wave {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  line-height: 0;
  width: 100%;
}
#digital .news .news-contents {
    margin-top: 0;
}
#digital .news  .news-btn {
    margin-top: 40px;
    text-align: center;
}
#digital .digital-applists {
    padding: 60px 0;
    background: #f5f5f5;
}


#digital .applists-inner {
  max-width: 1050px;
  margin: 0 auto;
}

#digital .applists-title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}

#digital .applists-title span {
    color: #f68058;
    font-size: 18px;
    border-bottom: 5px solid #f68058;
    font-weight: bold;
    display: inline-block;
    margin: 0 0 10px;
    line-height: 1.3em;
    padding: 0 0 15px;
    width: calc(100% - 40px);
}

#digital .digital-app-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 20px;
  margin-top: 79px;
}

@media (max-width: 1000px) {
  #digital .digital-app-lists {
    display: block;
    margin-top: 45px;
  }
}

#digital .app-list {
  position: relative;
}

@media (max-width: 1000px) {
  #digital .app-list {
    display: block;
  }
  #digital .app-list:not(:first-child) {
    margin-top: 30px;
  }
  #digital .app-list:last-child {
    margin-top: 40px;
  }
}

#digital .app-list-box {
  border-radius: 8px;
  border: 1px solid #d7d6d6;
  background: #fff;
}

#digital .app-list-box-inner {
  padding: 15px 13px;
    position: relative;
}
#digital .app-list-img {
    line-height:0;
}
#digital .app-list-img img {
  border-radius: 8px 8px 0 0;
}

#digital .app-list-titles {
    display: flex;
    align-items: flex-start;
    word-break: break-all;
}
#digital .app-list-texts {
    width: calc(100% - 50px);
    padding: 0 20px 0 0;
    box-sizing: border-box;
}
#digital .app-list-cap {
  font-size: 11px;
  line-height: 1.3;
    box-sizing: border-box;
}

#digital .app-list-title {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    line-height: 1.5em;
    letter-spacing: 0.04em;
}
#digital .app-list-title.vb span{
    text-indent: -10px;
    display: inline-block;
    font-weight: bold;
}
#digital .app-list-icon {
    width: 50px;
    margin-left: auto;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    border-radius: 11px;
    line-height: 0;
    overflow: hidden;
}

#digital .app-list-site {
  margin-top: 20px;
}

#digital .app-list-site a {
  padding-right: 15px;
  font-size: 14px;
  font-weight: bold;
  color: #f68058;
  position: relative;
  padding-top: 8px;
}

#digital .app-list-site a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-top: 2px solid #f68058;
  border-right: 2px solid #f68058;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#digital .app-list-twitter {
  margin-top: 5px;
}

#digital .app-list-twitter a {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  padding: 15px 8px 0 22px;
}

#digital .app-list-twitter a::after {
    position: absolute;
    content: "";
    right: -4px;
    top: 56%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
}

#digital .app-list-twitter a::before {
    position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    top: 73%;
    transform: translateY(-50%);
    left: 0;
    background-image: url(/static/tixplus/img/digital/icon_x.png);
    background-size: contain;
}

#digital .app-list-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

#digital .app-list-store-android {
  margin-left: 10px;
}
#digital .app-qr{
    width: 80px;
    line-height: 0;
    border: 1px solid #DDD;
    margin: 8px 0;
}
#digital .app-list-attention {
  font-size: 11px;
}

#digital .app-copy {
    font-size: 10px;
    text-align: right;
    line-height: 1.5em;
    margin: 5px 0 0;
}

#digital .and-more {
  position: absolute;
  font-size: 20px;
  font-family: "Roboto";
  color: #999;
  font-weight: 500;
}

@media (max-width: 1000px) {
  #digital .and-more {
    right: 0;
    font-size: 34px;
  }
}

@media (max-width: 1000px) {
  #digital .app-attentions {
    margin-top: 130px;
    padding: 0 20px;
  }
}

#digital .app-attention {
  font-size: 10px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5em;
}
#digital .app-attention:not(:first-child) {
  margin-top: 10px;
}
#digital .app-attention::before {
  top: 4px;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  left: 0;
  border-radius: 50%;
}

#digital .slide {
    padding: 60px 0;
  background: #1a1a1a;
}


#digital .slide-inner {
  max-width: 1050px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #digital .slide-inner {
    padding: 0 20px;
  }
}

#digital .slide1 {
  padding-bottom: 40px;
}

@media (max-width: 1000px) {
  #digital .slide1 {
    margin-top: -20px;
  }
}

#digital .slide-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  color: #fff;
}

@media (max-width: 1000px) {
  #digital .slide-contents {
    display: block;
  }
}

#digital .slide-cap {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.53571;
  color: #fff;
}

#digital .slide-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 62px;
  padding-left: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 3px solid #666;
  padding-bottom: 35px;
}

@media (max-width: 1000px) {
  #digital .slide-titles {
    padding-bottom: 15px;
  }
}

#digital .slide-number {
  font-size: 80px;
  font-weight: bold;
  font-family: "Roboto";
  color: #666;
}

@media (max-width: 1000px) {
  #digital .slide-number {
    font-size: 40px;
  }
}

#digital .slide-title {
    font-size: 22px;
    margin-left: 20px;
    font-weight: bold;
}

#digital .mt45 {
  margin-top: 45px;
}

#digital .slide-text {
  margin-top: 37px;
}

@media (max-width: 1000px) {
  #digital .slide-text {
    margin-top: 15px;
    min-height: 100px;
  }
}

#digital .slide-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 23px;
}

@media (max-width: 1000px) {
  #digital .slide-images {
    display: none;
  }
}

#digital .slide-img {
  width: calc(33.3% - 60px * 2 / 3);
}

#digital .slide-img:not(:first-child) {
  margin-left: 60px;
}

#digital .slide-big-img {
    padding-left: 0;
    text-align: center;
    width: 60%;
    margin: 30px auto 0;
}

#digital .swiper-pagination {
  bottom: 0;
}

@media (max-width: 1000px) {
  #digital .swiper-pagination {
    bottom: 10px;
  }
}

#digital .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 1;
  margin: 0 12px;
}

#digital .swiper-pagination-bullet-active {
  background: #f68058;
}

#digital .slide2 {
  background:#FFF;
  padding: 124px 0 164px;
}

@media (max-width: 1000px) {
  #digital .slide2 {
    padding: 60px 0;
  }
}

#digital .slide-main-title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
    padding: 30px 20px 0;
    line-height: 1.5;
}

#digital .slide2-text {
    font-size: 14px;
    text-align: left;
    padding: 0 20px;
    margin-top: 30px;
    line-height: 1.5em
}
#digital .slider2 {
  margin-top: 47px;
}

#digital .loop {
  background: #f5f5f5;
  padding: 109px 0 112px;
}

@media (max-width: 1000px) {
  #digital .loop {
    padding: 60px 20px;
  }
}

#digital .loop-main-title {
    text-align: center;
    font-size: 22px;
    line-height: 1.5;
    font-weight: bold;
}

#digital .loop-img {
  margin-top: 80px;
  max-width: 864px;
  margin: 84px auto 0;
}

@media (max-width: 1000px) {
  #digital .loop-img {
    margin-top: 45px;
  }
}

#digital .slider4 {
  margin-top: 10px;
}

#digital .loop-btn {
  margin-top: 79px;
  text-align: center;
  margin: 40px auto 0;
}

#digital .loop-btn a {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    color: #fff;
    background: #f68058;
    border-radius: 55.5px;
    border: none;
    position: relative;
    font-weight: bold;
    font-size: 14px;
    height: auto;
    line-height: 1.5em;
    padding: 10px;
    box-sizing: border-box;
}

#digital .loop-btn a::after {
  display: none;
  position: absolute;
  content: "";
  right: 30px;
  top: 45%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  #digital .loop-btn a::after {
    right: 30px;
    top: 43%;
  }
}

#digital .loop-btn a:hover {
  color: #f68058;
}

#digital .loop-btn a:hover::after {
  border-color: #f68058;
}

#digital .digital-works {
  background:#FFF;
  padding: 105px 0;
}

@media (max-width: 1000px) {
  #digital .digital-works {
    padding: 60px 0;
  }
}

#digital .digital-works-inner {
  max-width: 1050px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #digital .digital-works-inner {
    padding: 0 20px;
  }
}

#digital .digital-main-works {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    padding-top: 40px;
}

#digital .digital-works-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px auto 0;
  max-width: 750px;
}

@media (max-width: 1000px) {
  #digital .digital-works-list {
    width: calc(50% - 15px * 1 / 2);
  }
  #digital .digital-works-list:nth-child(2n) {
    margin-left: 15px;
  }
  #digital .digital-works-list:nth-child(n + 3) {
    margin-top: 15px;
  }
}

@media (max-width: 1000px) {
  #digital .digital-works-list span {
    text-indent: -1em;
    padding-left: 1em;
  }
}

#digital .domain {
  padding-top: 91px;
}

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

	リニューアル:202209:Idol

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

#idol .mv {
  background-image: url(/static/tixplus/img/sportsdx/mv-bg-fanapp_sp.png);
}
#idol .mv-tab-content {
  width: 50%;
}
#idol .mv-tab-box {
  margin-top: 118px;
}
#idol .c-title_decorate {
  position: relative;
  padding-top: 60px;
}
@media (max-width: 1000px) {
  #idol .c-title_decorate {
    padding-top: 45px;
  }
}
#idol .c-title_decorate::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 4px;
  background: #f68058;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
}
#idol .l-idol_ai {
  position: relative;
}
#idol .p-bg_wave {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 70%;
}
#idol .p-idol_inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 119px 20px 110px;
}
@media (max-width: 1000px) {
  #idol .p-idol_inner {
    padding: 80px 20px 40px;
  }
}
#idol .p-idol_ai_titles {
  text-align: center;
}
#idol .p-idol_ai_sub-title {
  font-size: 18px;
}
#idol .p-idol_ai_title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 15px;
}
#idol .p-idol_ai_text {
  font-size: 14px;
  text-align: left;
  margin-top: 20px;
}
#idol .l-idol_apps {
  background: #f5f5f5;
  margin-top: -10px;
}
#idol .p-idol_app_main-title {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}
#idol .p-idol_apps_inner {
  max-width: 850px;
  padding: 100px 20px 0;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  #idol .p-idol_apps_inner {
    padding: 40px 20px 0;
  }
}
#idol .p-idol_apps_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
  margin-top: 40px;
}
#idol .p_idol_app {
  border-radius: 13px;
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
}
@media (max-width: 1000px) {
  #idol .p_idol_app:not(:first-child) {
    margin-top: 60px;
  }
}
#idol .p_idol_app .p_idol_app_image {
  overflow: hidden;
  border-radius: 13px 13px 0 0;
}
#idol .p-idol_app_copy {
  position: absolute;
  right: 0;
  width: 100%;
  text-align: right;
  font-size: 10px;
}
#idol .p-idol_app_inner {
  padding: 10px 20px 30px;
}

#idol .p-idol_app_text {
  font-size: 11px;
  line-height: 1.7em;
  letter-spacing: 0.06em;
}
#idol .p-idol_app_titles {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}
#idol .p-idol_app_title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0 20px 0 0;
}
#idol .p-idol_app_icon {
  max-width: 50px;
  margin-left: auto;
  line-height: 0;
}
#idol .p-idol_app_official {
  margin-top: 0;
}
#idol .p-idol_app_official a {
  color: #f68058;
  font-weight: bold;
}
#idol .p-idol_app_twitter a {
  font-weight: bold;
}
#idol .app-attentions {
  margin-top: 60px;
  padding: 0 0 40px;
}
#idol .app-attention {
  padding-left: 20px;
  position: relative;
  font-size: 10px;
  line-height: 1.5em;
  margin: 0 0 10px;
}

#idol .app-attention::before {
  position: absolute;
  content: "";
  top: 4px;
  width: 10px;
  height: 10px;
  background: #000;
  left: 0;
  border-radius: 50%;
}
#idol .heart {
  color: #f68058;
  padding-right: 10px;
  padding-left: 2px;
}
#idol .twitter {
  padding-right: 8px;
  position: relative;
  font-size: 10px;
}
#idol .twitter::before {
  border: 1px solid #000;
  border-radius: 50%;
  padding: 3px;
}
#idol .p-idol_app_stores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
#idol .p-idol_app_android {
  margin-left: 10px;
}
#idol .p-idol_app_download {
  font-size: 11px;
}
#idol .p-idol_app_attention {
  margin-top: 70px;
  font-weight: bold;
  text-align: left;
  font-size: 12px;
  line-height: 1.6em;
}
#idol .p-idol_flow_inner {
    padding: 0 0 80px;
}
#idol .p-idol_flow_inner .p-ido_flow_title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 0;
  text-align: center;
  line-height: 1.5em;
}
#idol .p-ido_flow_title.c-title_decorate {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4166666667;
}
#idol .p-idol_flow_img {
  margin-top: 75px;
}
@media (max-width: 1000px) {
  #idol .p-idol_flow_img {
    margin-top: 45px;
  }
}
#idol .domain {
  background: #fff;
}

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

	レスポンシブ：960px

====================================================*/
@media screen and (max-width: 1000px) {
  /*===================================================
	独立スタイル
====================================================*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  /*===================================================
	レスポンシブ：フレーム
====================================================*/

  /*===================================================
	レスポンシブここまで
====================================================*/
}




@media screen and (max-width: 1000px) and (min-width: 600px) {

.home .visual {
    padding: 35% 8% 15%;
}

.home .visual .visualFrag {
    width: 60%;
}
.home .visual .visualTxt .visualTit {
    width: 40%;
}
.home .visual .visualTxt .btn a {
    width: 200px;
}
.home .newsBox {
    padding: 60px 0 60px;
}
.newsBox .inBox {
    padding: 0 5%;
}
.home .newsBox .inBox .columnLeft .newsTit {
    width: 30%;
}
.home .newsBox .btn a {
    width: 200px;
}
.home .businessBox {
    padding: 60px 0 60px;
}
.home .businessBox .businessTit {
    width: 30%;
}
.home .businessBox .liveColumn .columnTxt .columnLead {
    padding: 0 20% 0 0;
}
.home .businessBox .businessTitBox {
    padding: 0 5%;;
}
.home .businessBox .eticketColumn .columnTxt {
    padding: 0 5%;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(1) {
    width: 200px;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(2) {
    width: 322px;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(3) {
    width: 200px;
}
.home .businessBox .eticketColumn .columnTxt .serviceLogo li:nth-child(4) {
    width: 276px;
}
.home .businessBox .btn a {
    width: 200px;
}
.home .businessBox .eticketColumn .columnImage .serviceBg img {
    object-fit: cover;
    height: 400px;
    width: 100%;
}
.home .businessBox .eticketColumn .columnImage .faceImage {
    width: 20%;
}
.home .businessBox .eticketColumn .columnImage .userImage {
    bottom: -35px;
    right: 50%;
    width: 80%;
    transform: translateX(50%);
}
.home .businessBox .liveColumn .columnTxt {
    padding: 0 5%;
}
.home .businessBox .liveColumn .columnImage .serviceBg img {
    object-fit: cover;
    height: 400px;
    width: 100%;
}
.home .businessBox .liveColumn .columnImage .devicePC {
    right: 60%;
    bottom: -5%;
    width: 40%;
}
.home .businessBox .liveColumn .columnImage .liveImage {
    left: 68%;
    top: -15%;
}
.home .businessBox .liveColumn .columnImage .vrImage {
    width: 22%;
    left: 78%;
    bottom: -9%;
}
.home .businessBox .liveColumn .columnTxt .devicePhone {
    width: 18%;
}
.home .businessBox .liveColumn .columnTxt .serviceLogo li {
    width: 15%;
}
.home .businessBox .entameColumn .columnTxt {
    padding: 0 5%;
}
.home .businessBox .entameColumn .columnImage .serviceBg img {
    height: 400px;
    width: 100%;
}
.home .businessBox .entameColumn .columnImage .cardImage1 {
    width: 35%;
    bottom: -34%;
    left: 70%;
}
.home .businessBox .entameColumn .columnImage .cardImage2 {
    bottom: -23%;
    width: 26%;
    left: 45%;
}
.home .businessBox .entameColumn .columnImage .mocImage {
    width: 23%;
    top: 0;
    right: 28%;
    transform: translateY(-50%);
}
.home .businessBox .entameColumn .columnImage .prizeImage {
    right: 38%;
    width: 16%;
    top: 0;
    transform: translate(0, -85%);
}
.home .businessBox .entameColumn .columnImage.view .prizeImage {
    transform: translate(-25%, -90%);
}
.home .businessBox .entameColumn .columnTxt .serviceLogo li:nth-child(1) {
    width: 15%;
}
.home .businessBox .entameColumn .columnTxt .serviceLogo li:nth-child(2) {
    width: 20%;
}
.home .businessBox .entameColumn .columnTxt .btnBox .btn {
    width: 200px;
}
.home .sportsDxBox .sportsDxColumn .pointFlowBox {
    width: 65%;
}
.home .sportsDxBox:before{
content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: #f8f8f8;
    background: linear-gradient(0deg, rgba(248,248,248,0) 0%, rgba(248,248,248,1) 100%);
}
.home .sportsDxBox .sportsDxColumn .logoSportsdx {
    right: 10px;
    width: 27%;
    top: calc(100% + -290px);
}
.home .sportsDxBox .sportsDxColumn .columnTxt .logoIdol {
    top: 100%;
    right: 10px;
    width: 25%;
}
.home .sportsDxBox .sportsDxColumn .columnTxt .btnBox .btn {
    width: 200px;
}

.home .newsListBox {
    padding: 60px 0 60px;
}
.home .newsListBox .inBox {
    padding: 0 5%;
}
.home .newsListBox .newsTit {
    width: 30%;
}
.home .carrersBox .inBox {
    padding: 0 5%;
}
.home .carrersBox {
    padding: 60px 0 60px;
}
.home .carrersBox .carrersTit {
    width: 30%;
}
.home .carrersBox .swiper-wrapper .slideBox .columnRight .btn a {
    width: 200px;
}
.contactArea .btn a {
    width: 200px;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -40%;
    left: 50%;
    transform: translate(-50%, 0);
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    bottom: -200px;
}

footer .creditArea .corpLogo li.logoList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 50%;
    margin: 0 auto 15px;
}

/*================== 
.pageCompany
====================*/
.pageCompany .p-company_value_inner_inner {
    padding: 0 8.1%;
}
.pageCompany .p-company_detail_inner {
    padding: 80px 8.1% 50px;
}
.pageCompany .p-company_flow_inner {
    padding: 80px 8.1%;
}
.p-company_values .credo .btnCredo a{
    font-size: 22px;
    width: 60%;
}
/*================== 
.pageServices
====================*/
.pageServices .l-service .c-service_list {
    padding: 60px 8.1%;
}
.pageServices .l-service .p-service_title--en {
    font-size: 36px;
    line-height: 1.2em;
    margin: 0 0 20px;
}
/*================== 
#eticketTop
====================*/
#eticketTop .fv .fvInner {
    width: 100%;
    margin: 0 auto 0;
    padding: 60px 8.1% 0;
    box-sizing: border-box;
}
#eticketTop .fv .fvInner_bg {
    height: 500px;
    transform: translateY(-48%);
}
#eticketTop .fv .fvInner .btnNext a {
    width: 200px;
}
#eticketTop .fv .fvList .inList dt {
    min-width: 160px;
    height: 160px;
    font-size: 20px;
}
#eticketTop .fv .fvList .inList dd {
    padding: 0 0 0 20px;
}
#eticketTop .fv .fvList li:after {
    left: 80px;
}
#eticketTop .intro .introInner {
    padding: 80px 8.1% 50px;
}
#eticketTop .intro .introInner .stepList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#eticketTop .intro .stepList li {
    width: 38vw;
    height: 38vw;
    margin: 0 0 8.1%;
}
#eticketTop .intro .stepList li:nth-child(1){

}
#eticketTop .intro .stepList li:nth-child(2){
    order: 3;
}
#eticketTop .intro .stepList li:nth-child(3){
    order: 2;
}
#eticketTop .intro .stepList li:nth-child(4){
    order: 4;
}
#eticketTop .nextPlan .btn a {
    width: 300px;
}
#eticketTop .achieve .achieveInner {
    padding: 80px 8.1% 50px;
}
#eticketTop .price .priceInner {
    padding: 80px 8.1% 50px;
}
#eticketTop .function .functionInner {
    padding: 80px 8.1% 50px;
}
#eticketTop .nextPlan {
    padding: 60px 0 60px;
}
#eticketTop .nextPlan .nextPlanTit {
    padding: 0 8.1% 0;
}
#eticketTop .nextPlan .nextPlanCap {
    padding: 0 8.1% 0;
}
#eticketTop .nextPlan .nextPlanOuter {
    padding: 0 8.1% 0;
}


/*================== 
#eticketapp
====================*/
#eticketapp .fv {
    padding: 60px 0;
}
#eticketapp .fv .fvInner {
    padding: 0 8.1%;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li {
    line-height: 0;
    width: 25%;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li:nth-child(1) {
    padding: 0 18px 0 0;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li:nth-child(2) {
    padding: 0 12px 0 6px;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li:nth-child(3) {
    padding: 0 6px 0 12px;
}
#eticketapp .fv .fvInner .column .txtCl .iconList li:nth-child(4) {
    padding: 0 0 0 18px;
}
#eticketapp .fv .fvInner .column .txtCl .moc_sp {
    width: 30%;
}
#eticketapp  .news-inner {
    padding: 0 8.1%;
}
#eticketapp .ticketType .ticketType-inner .btn a {
    width: 300px;
}
#eticketapp .point .pointBlock .image {
    width: 40%;
}
#eticketapp .point .pointBlock .swiper-container{
    width: 50%;
}
#eticketapp .ticketType .ticketType-inner {
    padding: 60px 8.1% 40px;
}
#eticketapp .point {
    padding: 60px 0;
}
#eticketapp .point .point-inner {
    padding: 0 8.1%;
}
#eticketap .function .functionInner {
    padding: 80px 8.1% 50px;
}

/*================== 
#trade 
====================*/
#trade .fv {
    margin: 0 auto 0;
}

#trade .fv-contents {
    display: block;
    max-width: 100%;
    padding: 0 8.1%;
}
#trade .fv-sp-img {
    width: 35%;
    max-width: 320px;
}
#trade .fv-btn a {
    max-width: 220px;
}
#trade .artist-inner {
    padding: 0 8.1%;
}
#trade .feature-inner {
    padding: 0 8.1%;
}
#trade .flow-inner {
    padding: 0 8.1%;
}
#trade .playguide-inner {
    padding: 0 8.1%;
}
.function .functionInner {
    padding: 80px 8.1% 50px;
}
#trade .news-inner .swiper-slide .newsImage img{
    height: 17.45vw;
}
#trade .news-inner .swiper-button-prev, 
#trade .news-inner .swiper-button-next {
    display: block;
}
/*================== 
#tikepuraSdk
====================*/
#tikepuraSdk .l-feature .p-feature_inner {
    padding: 60px 8.1% 0;
}
#tikepuraSdk .r-feature .p-feature_inner {
    padding: 0 8.1%;
}
#tikepuraSdk .achieve .achieve_inner {
    padding: 0 8.1% 60px;
}

/*================== 
#streampass
====================*/
#streampass .news {
    padding-top: 60px;
}
#streampass .news-inner {
    padding: 0 8.1%;
}
#streampass .feature-inner {
    padding: 60px 8.1%;
}
#streampass .lp-inner {
    padding: 50px 8.1% 0;
}
#streampass .trade-btn{
    text-align: center;
}
#streampass .trade-btn a {
  width: 300px;
}

/*================== 
#meetpass
====================*/
#meetpass .img-area {
    width: 100%;
    padding: 0 8.1%;
    box-sizing: border-box;
    margin: 60px auto 0;
}
#meetpass .feature-inner {
    padding: 0 8.1%;
}
#meetpass .meetpass {
    padding: 60px 8.1% 0;
}
#meetpass .app-img {
    width: 50%;
    margin: 30px auto -7px;
}
#meetpass .apps-sp {
    max-width: 600px;
    margin: 20px auto 0;
    display: flex;
}
#meetpass .apps-sp div{
    padding:0 10px;
}
#meetpass .app-attentions {
    max-width: 580px;
    margin: 0 auto;
}
/*================== 
#memokore
====================*/
#memokore .mv {
    height: 80vw;
    max-height: 640px;
}
#memokore .contentsFlow-inner {
    padding: 60px 8.1%;
}
#memokore .news-inner {
    padding: 0 8.1%;
}
#memokore .pack-inner .is-sp{
    display:none!important;
}
#memokore .pack-inner .is-pc{
    display:block!important;
}
#memokore .pack-contents {
    max-width: 100%;
    padding: 0 8.1%;
    justify-content: space-between;
}
#memokore .pack-contents .pack-content {
    width: 30%;
}
#memokore .pack-main-title {
    width: 420px;

}
#memokore .kuji-images {
    padding: 0 8.1%;
    justify-content: center;
}
#memokore .kujipura-inner {
    padding: 80px 8.1% 0;
}
#memokore .kujipura-img-content:nth-child(2n) {
    margin-left: 20px;
}
#memokore .kujipura-img-content {
    width: calc(50% - 20px * 1 / 2);
}
#memokore .kuji-works-inner {
    padding: 0 8.1%;
}
.swiper-container-pointer-events {
    overflow: hidden;
    padding: 10px;
}
#memokore .news-inner .swiper-slide .newsImage img{
    height: 25vw;
}
#memokore .contents-box {
    margin-left: 8.1%;
    margin-right: 8.1%;
}
#memokore .flow-inner {
    padding: 0 8.1%;
}
/*================== 
#digital
====================*/
#digital .news-inner {
    padding: 0 8.1%;
}
#digital .digital-app-lists {
    padding: 0 8.1%;
}
#digital .app-attentions {
    padding: 0 8.1%;
}
#digital .slide-inner {
    padding: 0 8.1%;
}
#digital .slide1 {
    margin-top: -20px;
}
#digital .slide-big-img {
    width: 50%;
    margin: 30px auto 0;
}
#digital .loop {
    padding: 60px 8.1%;
}
#digital .digital-works-inner {
    padding: 0 8.1%;
}
#digital .loop-btn a{
    width: 300px;
}

/*================== 
#nft
====================*/
#nft .news {
    padding: 65px 8.1%;
}
#nft .content_TxtBox {
    padding: 0 8.1% 60px;
    position: relative;
}
#nft .whatNft .column {
    padding: 0 8.1%;
}
#nft .nftDetail {
    padding: 60px 8.1%;
}
#nft .circulation {
    padding: 60px 8.1%;
}
#nft .news .newsBlockList li .txtArea {
    display: flex;
    justify-content: space-between;
}
/*================== 
#sportsdx
====================*/
#sportsdx .mv {
    background-image: url(/static/tixplus/img/sportsdx/mv-bg-fanapp_202406.png);
}
#sportsdx .l-feature .p-feature_inner {
    padding: 65px 8.1%;
}

#sportsdx .l-feature .p-feature_inner .featureTxtBox .pointIcon li {
    width: 19vw;
    height: 19vw;
}
#sportsdx .p-support_inner.c-inner {
    padding: 0 8.1% 65px;
}
#sportsdx .p-case_inner.c-inner {
    padding: 0 8.1% 65px;
}
#sportsdx .slideapp {
    width: 50%;
}
#sportsdx .slide-inner {
    padding: 0 8.1%;
}
#sportsdx .c-inner {
    padding: 65px 8.1%;
}

/*================== 
#idol
====================*/

#idol .mv {
    background-image: url(/static/tixplus/img/sportsdx/mv-bg-fanapp.png);
}
#idol .p-idol_inner {
    padding: 80px 8.1% 40px;
}
#idol .p-idol_apps_inner {
    padding: 60px 8.1% 0;
}
#idol .p-idol_flow_inner {
    padding: 80px 0px;
}

}


@media screen and (max-width: 1000px) and (min-width: 758px) {
.pageHome .newsBlockList.sp{
    display: none!important;
}
.pageHome .columnLeft .btn{
    display: none!important;
}
.pageHome .columnRight{
    display: block!important;
    width: calc(100% + 8%);
}

.pageHome .columnRight .swiper-container{
    margin: 0 0 40px;
    overflow: hidden;
}

}
