
/*******
index
*******/

.tkIndex{
  padding-top: 2em;
}
.tkIndex-lead{
  text-align: center;
  font-weight: bold;
  font-size: 170%;
  padding-bottom: 1em;
}
.tkIndex-list{
  display: flex;
  justify-content: space-between;
}
.tkIndex-list li {
  width: 48%;
}

@media screen and (max-width:768px) {

  .tkIndex{
  }
  .tkIndex-lead{
    font-size: 131%;
  }
  .tkIndex-list{
    display: block;
    text-align: center;
    padding: 0 5%;
  }
  .tkIndex-list li {
    width: auto;
    padding-bottom: 15px;
  }

}


/*******
heading
*******/

.tk-heading {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.tk-heading-title {
  display: inline-block;
  font-size: 250%;
  font-weight: bold;
  font-feature-settings: "palt";
  min-width: 400px;
  line-height: 1.4;
  padding-bottom: 15px;
  background: url(/img/ticket/line01.png) repeat-x left bottom;
}

@media screen and (max-width:768px) {

  .tk-heading {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .tk-heading-title {
    font-size: 170%;
    min-width: initial;
    padding-bottom: 10px;
    background-size: auto 6px;
  }

}


/*******
section
*******/

.tk-section{
  padding-top: 60px;
}
.tk-section.is-noOffset{
  padding-top: 0;
}

.tk-section-block:not(:last-of-type) {
  padding-bottom: 50px;
}

.tk-section-title {
  background-color: #dbefb9;
  font-size: 170%;
  font-feature-settings: "palt";
  line-height: 1.4;
  padding: 12px 25px 10px;
  border-bottom: 3px solid #8ac12a;
  margin-bottom: 30px;
}


@media screen and (max-width:768px) {

  .tk-section{
    padding-top: 50px;
  }

  .tk-section-block:not(:last-of-type) {
    padding-bottom: 30px;
  }

  .tk-section-title {
    font-size: 131%;
    padding: 12px 15px 10px;
    border-bottom: 2px solid #8ac12a;
    margin-bottom: 20px;
  }

}

/*******
btn
*******/

.tk-btn {
  display: inline-block;
  padding: 20px 40px;
  width: auto;
  min-width: 320px;
  background-color: #ff6000;
  color: #fff;
  box-shadow: 0 3px 0 rgba(255, 96, 0, 0.5);
  border-radius: 100px;
  font-size: 139%;
  font-feature-settings: "palt";
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.tk-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg);
}

.tk-btn.is-disabled{
  opacity: 0.4;
  pointer-events: none;
  filter: grayscale(100%);
}

@media screen and (max-width:768px) {

  .tk-btn {
    padding: 12px 25px;
    min-width: 260px;
    font-size: 124%;
  }
  .tk-btn::after {
    width: 6px;
    height: 6px;
    right: 12px;
    margin-top: -3px;
  }


}


/*******
container
*******/

.tk-container {
  padding-bottom: 1px;
}

.tk-container-heading{
  background-color: #61ae16;
  position: relative;
  cursor: pointer;
}
.tk-container-heading:not(.is-active):hover{
  filter: brightness(108%);
}

.tk-container-heading-title {
  font-size: 170%;
  color: #fff;
  padding: 12px 20px 12px 20px;
}
.tk-container-heading-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background-color: #3f7f00;
}
.tk-container-heading-icon::before,
.tk-container-heading-icon::after{
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 50%;
  transition: 0.3s;
}
.tk-container-heading-icon::after{
  transform: rotate(90deg);
}
.tk-container-heading.is-active .tk-container-heading-icon::after{
  opacity: 0;
}
.tk-container-block {
  display: none;
  padding-top: 40px;
  padding-bottom: 80px;
}


@media screen and (max-width:768px) {

  .tk-container {
  }

  .tk-container-heading{
  }
  .tk-container-heading:not(.is-active):hover{
    filter: brightness(100%);
  }

  .tk-container-heading-title {
    font-size: 131%;
    font-feature-settings: "palt";
    padding: 10px 50px 10px 15px;
  }
  .tk-container-heading-icon {
    width: 50px;
  }
  .tk-container-heading-icon::before,
  .tk-container-heading-icon::after{
    width: 15px;
    left: 16px;
  }
  .tk-container-block {
    display: none;
    padding-top: 30px;
    padding-bottom: 60px;
  }

}



/*******
title
*******/


.tk-title {
  font-size: 162%;
  font-feature-settings: "palt";
  padding: 2px 0 2px 15px;
  margin-bottom: 25px;
  border-left: 4px solid #01860e;
  line-height: 1.3;
}
.tk-title.is-num {
  padding-left: 35px;
}
.tk-title-num {
  margin-left: -1em;
}

.tk-subTitle {
  font-size: 154%;
  font-feature-settings: "palt";
  line-height: 1.4;
  margin-bottom: 10px;
}

.tk-boxTitle {
  font-size: 154%;
  font-feature-settings: "palt";
  line-height: 1.4;
  padding: 0.4em 1.2em;
  margin-bottom: 1em;
  border: 2px solid #90be25;
}

.tk-minTitle {
  font-size: 131%;
  margin-bottom: 5px;
}

@media screen and (max-width:768px) {

  .tk-title {
    font-size: 131%;
    padding: 2px 0 2px 10px;
    margin-bottom: 20px;
  }

  .tk-title.is-num {
    padding-left: 28px;
  }
  .tk-subTitle {
    font-size: 131%;
  }
  .tk-boxTitle {
    font-size: 124%;
  }
  .tk-minTitle {
    font-size: 124%;
  }

}


/*******
zoneOutline
*******/

.zoneOutline {
  display: flex;
  padding-top: 20px;
}
.zoneOutline li {
}
.zoneOutline img {
}
.zoneOutline .zoneOutline-text {
  text-align: center;
  padding-top: 0.8em;
  font-size: 108%;
}

@media screen and (max-width:768px) {

  .zoneOutline {
    display: block;
    padding-top: 20px;
  }
  .zoneOutline li {
    padding-bottom: 20px;
  }
  .zoneOutline .zoneOutline-text {
    font-size: 100%;
  }

}


/*******
zoneGuide
*******/

.zoneGuide {
  padding: 30px 30px 30px;
  background: url(/img/ticket/zone/bg01.jpg) no-repeat center center / cover;
}
.zoneGuide-title {
  font-size: 250%;
  font-weight: 700;
  font-style: italic;
  font-family: 'Noto Sans JP',Hiragino Sans,Hiragino Kaku Gothic ProN,YuGothic,'Yu Gothic',Meiryo,sans-serif;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
  padding-bottom: 0.2em;
  margin-bottom: 20px;
}

.zoneGuide-list {
  display: flex;
  justify-content: space-between;
}
.zoneGuide-list li {
  width: 23.5%;
  height: 12em;
  border-radius: 6px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.zoneGuide-list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 8px solid #f0c43e;
  border-right: 8px solid #f0c43e;
  position: absolute;
  right:2px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg) translateY(-50%);
  z-index: 9;
}
.zoneGuide-step {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 50px;
  position: absolute;
  left: 0;
  top: 5px;
  color: #c8e7d5;
  transform: skewY(-10deg) scaleX(0.9);
  transform-origin: left bottom;
}

.zoneGuide-text {
  font-weight: bold;
  font-size: 116%;
  font-feature-settings: "palt";
  color: #00491e;
  position: relative;
}


@media screen and (max-width:768px) {

  .zoneGuide {
    padding: 15px 15px 15px;
  }
  .zoneGuide-title {
    font-size: 154%;
    margin-bottom: 15px;
  }

  .zoneGuide-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
    justify-content: space-between;
  }
  .zoneGuide-list li {
    width: 49%;
    height: 10em;
    padding: 12px;
    margin-bottom: 10px;
  }
  .zoneGuide-list li:not(:last-child)::after {
    width: 12px;
    height: 12px;
    border-top: 4px solid #f0c43e;
    border-right: 4px solid #f0c43e;
    right:2px;
  }
  .zoneGuide-step {
    font-size: 30px;
  }

  .zoneGuide-text {
    font-size: 108%;
  }

}


/*******
zoneFlow
*******/

.zoneFlow {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
  margin-left: -2%;
}
.zoneFlow li {
  width: 23%;
  margin-left: 2%;
  margin-bottom: 40px;
}
.zoneFlow-img {
}
.zoneFlow-num {
  display: inline-block;
  background-color: #00491e;
  color: #fff;
  font-size: 124%;
  font-weight: bold;
  padding: 0.3em 1em;
  margin-top: 15px;
  margin-bottom: 0.8em;
}
.zoneFlow-text {
  font-size: 116%;
  font-feature-settings: "palt";
  line-height: 1.6;
}
.zoneFlow-tips {
  padding-top: 0.5em;
  font-size: 93%;
}

@media screen and (max-width:768px) {

  .zoneFlow {
    display: flex;
    margin-left: -2%;
  }
  .zoneFlow li {
    width: 48%;
    margin-left: 2%;
  }
  .zoneFlow-img {
  }
  .zoneFlow-num {
    font-size: 93%;
    margin-top: 10px;
  }
  .zoneFlow-text {
    font-size: 93%;
  }
  .zoneFlow-tips {
    font-size: 77%;
  }

}


/*******
resaleFlow
*******/

.resaleFlow {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
  margin-left: -2%;
}
.resaleFlow li {
  width: 31.3%;
  margin-left: 2%;
  margin-bottom: 40px;
}
.resaleFlow-num {
  color: #01860e;
  font-size: 124%;
  font-weight: bold;
  padding-bottom: 0.5em;
}
.resaleFlow-img {
  padding-bottom: 1em;
}
.resaleFlow-text {
  font-size: 116%;
  font-feature-settings: "palt";
  line-height: 1.6;
}
.resaleFlow-tips {
  padding-top: 0.5em;
  font-size: 93%;
}

@media screen and (max-width:768px) {

  .resaleFlow {
    display: block;
    margin-left: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  .resaleFlow li {
    width: auto;
    margin-left: 0;
  }
  .resaleFlow-img {
    text-align: center;
  }
  .resaleFlow-num {
    font-size: 108%;
    margin-top: 10px;
    text-align: center;
  }
  .resaleFlow-text {
    font-size: 93%;
  }
  .resaleFlow-tips {
    font-size: 77%;
  }

}

/*******
lead
*******/

.tk-lead{
  font-size: 152%;
  font-feature-settings: "palt";
  font-weight: bold;
  letter-spacing: 0.05em;
}
.tk-lead img{
  vertical-align: top;
}

@media screen and (max-width:834px) {

  .tk-lead{
    font-size: 131%;
  }
}

/*******
resaleTrigger
*******/

.resaleTrigger{
  border-bottom: 3px solid #00491e;
  display: flex;
  justify-content: space-between;
}
.resaleTrigger li{
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  background-color: #01860e;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  font-size: 139%;
  font-feature-settings: "palt";
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.resaleTrigger li a{
  display: block;
  padding: 20px 0;
  margin: -20px 0;
  color: #fff;
  text-decoration: none;
}

.resaleTrigger.is-half li{
  width: 49%;
}
.resaleTrigger.is-x5 li{
  width: 19%;
}

.resaleTrigger li.is-active,
.resaleTrigger li:hover{
  background-color: #00491e;
}
.resaleTrigger li a:hover{
  opacity: 1;
}


@media screen and (max-width:834px) {

  .resaleTrigger{
    border-bottom: 2px solid #00491e;
    display: flex;
    margin-left: -3%;
    margin-right: -3%;
    padding: 0 5px;
  }
  .resaleTrigger li{
    width: 32.8%;
    border-radius: 5px 5px 0 0;
    padding: 15px 5px 12px;
    font-size: 100%;
    line-height: 1.6;
  }
  .resaleTrigger li a{
    padding: 12px 0;
    margin: -12px 0;
  }

}

/*******
box
*******/

.tk-box {
  background-color: #e0edc9;
  padding:  50px 50px;
}

.tk-figure {
  text-align: center;
}
.tk-figure figcaption {
  padding-top: 10px;
  font-size: 124%;
  font-weight: bold;
  color: #01860e;
  font-feature-settings: "palt";
}
.tk-figure-img{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.tk-separate {
  display: flex;
}
.tk-separate.is-center{
  align-items: center;
}
.tk-separate-small {
  width: 45%;
}
.tk-separate-large {
  width: 50%;
}

@media screen and (max-width:834px) {

  .tk-box {
    padding: 25px 15px;
  }

  .tk-figure {
  }
  .tk-figure figcaption {
    font-size: 85%;
    font-weight: normal;
  }
  .tk-figure-img{
  }

  .tk-separate {
    display: block;
  }
  .tk-separate-small ,
  .tk-separate-large {
    width: auto;
  }
  .tk-separate-small:first-child ,
  .tk-separate-large:first-child {
    padding-bottom: 20px;
  }

}


/*******
tk-line
*******/

.tk-line{
  display: flex;
}
.tk-line-item + .tk-line-item {
  margin-left: 5em;
}

@media screen and (max-width:834px) {

  .tk-line{
  }
  .tk-line-item + .tk-line-item {
    margin-left: 1em;
  }

}

/*******
data
*******/

.tk-dataTable {
  font-size: 139%;
  font-weight: 600;
  line-height: 1.7;
}
.tk-dataTable th {
  text-align: left;
  vertical-align: top;
}
.tk-dataTable td {
  text-align: left;
  vertical-align: top;
  padding-left: 1.5em;
  color: #e00;
  text-decoration: underline;
}

@media screen and (max-width:834px) {

  .tk-dataTable,
  .tk-dataTable thead,
  .tk-dataTable tbody,
  .tk-dataTable tr,
  .tk-dataTable th,
  .tk-dataTable td {
    display: block;
  }
  .tk-dataTable {
    font-size: 116%;
    line-height: 1.7;
  }
  .tk-dataTable th {
  }
  .tk-dataTable td {
    padding-left: 1.5em;
    padding-bottom: 0.5em;
  }
}

/*******
qu-flow
*******/

.qu-flow {
  display: flex;
  margin-left: -4%;
}
.qu-flow li {
  width: 21%;
  margin-left: 4%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.qu-flow-text {
  padding-bottom: 1.5em;
  font-size: 139%;
  font-weight: 600;
  font-feature-settings: "palt";
}
.qu-flow-text small{
  display: inline-block;
  line-height: 1.4;
  padding-top: 0.5em;
}

.qu-flow-img {
  position: relative;
  text-align: center;
}
.qu-flow li:not(:last-child) .qu-flow-img::after {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  background: url(../../img/ticket/queue/arrow01.png) no-repeat center center / 90% auto;
  position: absolute;
  left: 100%;
  top: 0;
}

/*
half
*/


.qu-flow.is-half {
  justify-content: center;
  margin-left: -14%;
}
.qu-flow.is-half li {
  width: 21%;
  margin-left: 14%;
}
.qu-flow.is-half li:not(:last-child) .qu-flow-img::after {
  width: 30%;
  height: 100%;
  background: url(../../img/ticket/queue/arrow02.png) no-repeat center center / 90% auto;
  margin-left: 18%;
}

@media screen and (max-width:834px) {

  .qu-flow {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8%;
    margin-bottom: -40px;
  }
  .qu-flow li {
    width: 42%;
    margin-left: 8%;
    margin-bottom: 40px;
  }
  .qu-flow-text {
    padding-bottom: 1em;
    font-size: 100%;
  }

  .qu-flow-img {
  }
  .qu-flow li:not(:last-child) .qu-flow-img::after {
    width: 15%;
    left: 100%;
    background-size: 100% 40px;
  }

  /*
  half
  */


  .qu-flow.is-half {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8%;
    margin-bottom: -40px;
  }
  .qu-flow.is-half li {
    width: 42%;
    margin-left: 8%;
    margin-bottom: 40px;
  }
  .qu-flow.is-half li:not(:last-child) .qu-flow-img::after {
    width: 15%;
    left: 100%;
    background-image: url(../../img/ticket/queue/arrow01.png) ;
    background-size: 100% 40px;
    margin-left: 0;
  }

}

/*******
tk-accentLink
*******/

.tk-accentLink{
  display: inline-block;
  color: #f00;
  border-bottom: 2px solid #f00;
  padding-bottom: 0.05em;
  text-decoration: none;
}
.tk-accentLink:hover{
  border-color: transparent;
}

/*******
step
*******/

.tk-step {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -7em;
}
.tk-step li {
  width: 48%;
  margin-bottom: 7em;
}
.tk-step li.is-wide {
  width: 100%;
}
.tk-step-upper {
  padding-bottom: 2em;
}

.tk-step-title {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 1.5em;
  position: relative;
}
.tk-step-title > span{
  display: inline-block;
  padding: 5px 30px 8px 40px;
  color: #fff;
  font-size: 200%;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #6eb92b;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%,85% 100%, 0 100%);
}
.tk-step-title > span small{
  padding-right: 0.3em;
}
.tk-step-title::before {
  content: "";
  display: block;
  width: 53px;
  height: 76px;
  background: url(../../img/hand_icon.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: -20px;
  bottom: -5px;
  z-index: 2;
}
.tk-step-title small {
}
.tk-stop-lower {
}

.tk-step-flow {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5%;
  margin-bottom: -5em;
}
.tk-step-flow li {
  width: 45%;
  margin-left: 5%;
  margin-bottom: 5em;
  position: relative;
}
.tk-step-flow li:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 4px solid #61ae16;
  border-right: 4px solid #61ae16;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.tk-step-flow img {
}


@media screen and (max-width:520px) {


  .tk-step {
    margin-bottom: -5em;
  }
  .tk-step li {
    width: auto;
    margin-bottom: 5em;
  }
  .tk-step-upper {
    padding-bottom: 1.5em;
  }

  .tk-step-title {
    margin-left: 20px;
  }
  .tk-step-title > span{
    padding: 3px 30px 5px 30px;
    font-size: 170%;
  }
  .tk-step-title::before {
    width: 40px;
    height: 56px;
    left: -20px;
  }
  .tk-step-title small {
  }
  .tk-stop-lower {
  }



.tk-step-flow {
  display: block;
  margin: 0;
  margin-bottom: -5em;
}
.tk-step-flow li {
  width: auto;
  margin-left: 0;
  margin-bottom: 5em;
}
.tk-step-flow li:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: none;
  border-right: 4px solid #61ae16;
  border-bottom: 4px solid #61ae16;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: 6%;
  transform: rotate(45deg) translate(-50%, 0);
}
.tk-step-flow img {
}

}


/*******
xxx
*******/


/*******
xxx
*******/


/*******
xxx
*******/


/*******
xxx
*******/


/*******
xxx
*******/















































