
.fc-pageNavi {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
}
.fc-pageNavi > li {
  width: 32%;
  position: relative;
}
.fc-pageNavi > li.is-half {
  width: 49%;
}
.fc-pageNavi > li > a {
  display: block;
  background-color: #01860e;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 131%;
  font-feature-settings: "palt";
  font-weight: bold;
  padding: 12px 0 25px 0;
  border-radius: 6px;
  position: relative;
}
.fc-pageNavi > li > a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 50%;
  bottom: 12px;
  margin-left: -4px;
  transform: rotate(45deg);
}
.fc-pageNavi > li:hover > a {
  opacity: 1;
  background-color: #00491e;
}

.fc-pageNavi ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  background-color: #fff;
}
.fc-pageNavi li:hover ul {
  visibility: visible;
  opacity: 1;
}
.fc-pageNavi ul li {
  margin-bottom: 2px;
}
.fc-pageNavi ul a {
  display: block;
  background-color: #f0f0f0;
  color: #01860e;
  font-weight: bold;
  font-size: 124%;
  font-feature-settings: "palt";
  text-decoration: none;
  padding: 15px 10px;
  text-align: center;
}
.fc-pageNavi ul a:hover {
  background-color: #e0e0e0;
  opacity: 1;
}

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

  .fc-pageNavi {
    display: block;
    padding-top: 20px;
  }
  .fc-pageNavi > li,
  .fc-pageNavi > li.is-half {
    width: auto;
    margin-bottom: 2px;
  }
  .fc-pageNavi > li > a {
    font-size: 108%;
    padding: 12px 0 12px 0;
    border-radius: 6px;
  }
  .fc-pageNavi > li > a::after {
    width: 5px;
    height: 5px;
    right: 15px;
    left: auto;
    bottom: 50%;
    margin-left: -2px;
  }

  .fc-pageNavi ul {
    position: static;
    left: 0;
    top: 100%;
    width: 100%;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  .fc-pageNavi li:hover ul {
  }
  .fc-pageNavi ul li {
  }
  .fc-pageNavi ul a {
    font-size: 108%;
    padding: 12px 10px;
  }

}



/*
heading
*/

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

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

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

}


/*
section
*/

.fc-section{
  padding-top: 80px;
}

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

.fc-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) {

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

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

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

}

/*
btn
*/

.fc-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;
}
.fc-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  transform: rotate(45deg);
}

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

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

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


}

/*
title
*/

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

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

.fc-minTitle {
  font-size: 185%;
  font-feature-settings: "palt";
  line-height: 1.2;
  color: #ff6000;
  margin-bottom: 15px;
}
.fc-underLine {
  display: inline-block;
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 0, 0) 0%,rgba(255, 255, 0, 0) 60%, #ffff00 61%);
}
.fc-underLine02 {
  text-decoration: underline;
}

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

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

  .fc-subTitle {
    font-size: 131%;
  }
  .fc-minTitle {
    font-size: 139%;
    margin-bottom: 10px;
  }

}


/* color */

.fc-theme-gold .fc-title{
  border-color: #d1a100;
}
.fc-theme-green .fc-title{
  border-color: #00a83d;
}
.fc-theme-blue .fc-title{
  border-color: #00a7ea;
}
.fc-theme-pink .fc-title{
  border-color: #f1407d;
}

.fc-theme-orange .fc-title{
  border-color: #ff6c00;
}

/*
schedule
*/

.fc-schedule {
  font-weight: bold;
  font-feature-settings: "palt";
  font-size: 185%;
  text-align: center;
  padding: 30px 0;
  color: #ff6000;
}

.fc-subLead{
  color: #ff6000;
  font-weight: bold;
  font-feature-settings: "palt";
  font-size: 185%;
  text-align: center;
}

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

  .fc-schedule {
    font-size: 131%;
    padding: 20px 0 ;
  }
}


/*
header
*/

.fc-catch {
  color: #f00;
  font-size: 200%;
  font-weight: bold;
  margin-bottom: 15px;
}
.fc-catch img {
  margin-right: 15px;
  vertical-align: middle;
}
.fc-catch small{
  font-size: 13px;
  color: #000;
  margin-left: 1em;
}

.fc-header {
  background-color: #555;
  color: #fff;
  display: flex;
  padding: 30px 0;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}
.fc-header-heading {
  text-align: center;
  width: 36%;
  padding: 20px 10px 20px 20px;
  text-align: center;
}
.fc-header-heading-lead {
  font-weight: bold;
  font-size: 124%;
  font-feature-settings: "palt";;
  line-height: 1.3;
  padding-bottom: 10px;
}
.fc-header-heading-title {
}

.fc-header-inner {
  flex: 1;
  padding: 20px 10px;
}
.fc-header-data {
  display: flex;
  align-items: flex-start;
}
.fc-header-data:not(:last-child) {
  margin-bottom: 10px;
}
.fc-header-data dt {
  width: 9em;
  padding: 5px 0px;
  text-align: center;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 124%;
  font-weight: bold;
  font-feature-settings: "palt";
}
.fc-header-data dd {
  flex: 1;
  padding-left: 15px;
}
.fc-header-price {
  font-size: 250%;
  font-weight: bold;
  line-height: 1.1;
}
.fc-header-underline {
  display: inline-block;
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%,rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.3) 61%);
}
.fc-header-text {
  font-size: 147%;
  font-weight: bold;
  font-feature-settings: "palt";
}
.fc-header-tips {
  padding-top: 0.5em;
  font-size: 85%;
  font-feature-settings: "palt";
  letter-spacing: 1.3;
}



.fc-header-character01 {
  position: absolute;
  right: -20px;
  top: 0px;
}
.fc-header-character02 {
  position: absolute;
  right: -20px;
  top: 0px;
}
.fc-header-character03 {
  position: absolute;
  right: 20px;
  top: -60px;
}
.fc-header-character04 {
  position: absolute;
  right: 0px;
  top: 0px;
}

/* color */

.fc-theme-gold .fc-header{
  background-color: #d1a100;
}
.fc-theme-green .fc-header{
  background-color: #00a83d;
}
.fc-theme-blue .fc-header{
  background-color: #00a7ea;
}
.fc-theme-pink .fc-header{
  background-color: #eb6fa3;
}

.fc-theme-orange .fc-header{
  background-color: #ff6c00;
}

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

  .fc-header-character01 {
    width: 120px;
    top: -20px;
  }
  .fc-header-character02 {
    width: 120px;
    top: -50px;
  }
  .fc-header-character03 {
    width: 120px;
    right: 0px;
    top: -30px;
  }
  .fc-header-character04 {
    width: 120px;
    right: 0px;
    top: -30px;
  }
}


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

  .fc-catch {
    font-size: 154%;
    font-feature-settings: "palt";
    margin-bottom: 10px;
    text-align: center;
  }
  .fc-catch img {
    display: block;
    margin: 0 auto 2px;
    max-width: 110px;
  }

  .fc-header {
    display: block;
    padding: 20px 0;
    margin-bottom: 30px;
  }
  .fc-header-heading {
    width: auto;
    padding: 10px 10px 0 10px;
    text-align: center;
  }
  .fc-header-heading-lead {
    font-size: 124%;
    padding-bottom: 5px;
  }
  .fc-header-heading-title {
  }
  .fc-header-heading-title img {
    width: 80%;
    max-width: 300px;
  }

  .fc-header-inner {
    flex: 1;
    padding: 20px 10px;
  }
  .fc-header-data {
  }
  .fc-header-data:not(:last-child) {
    margin-bottom: 8px;
  }
  .fc-header-data dt {
    width: 7.5em;
    padding: 2px 0px;
    font-size: 100%;
  }
  .fc-header-data dd {
    padding-top: 2px;
    padding-left: 10px;
  }
  .fc-header-price {
    font-size: 154%;
  }
  .fc-header-text {
    font-size: 124%;
    line-height: 1.3;
  }
  .fc-header-tips {
    font-size: 77%;
  }

  .fc-header-character01 {
    width: 80px;
    top: 90px;
    right: -10px;
  }
  .fc-header-character02 {
    width: 80px;
    right: 0;
    top: -80px;
  }
  .fc-header-character03 {
    width: 80px;
    right: 0;
    top: -50px;
  }
  .fc-header-character04 {
    width: 80px;
    right: 0px;
    top: -50px;
  }

}


/*
benefit
*/

.fc-benefit {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3%;
  margin-bottom: -30px;
}
.fc-benefit > li {
  width: 31%;
  margin-left: 2.3%;
  margin-bottom: 40px;
}
.fc-benefit-img {
}
.fc-benefit-inner {
  padding-top: 15px;
  font-feature-settings: "palt";
}
.fc-benefit-title {
  font-size: 147%;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 1.3;
}
.fc-benefit-text {
  padding-top: 10px;
  font-size: 108%;
  line-height: 1.7;
}
.fc-benefit-tips {
  padding-top: 10px;
  font-size: 85%;
  line-height: 1.7;
}

.fc-benefit-box{
  background-color: #f0f0f0;
  border: 2px solid #d1a100;
  padding: 1.2em;
  margin-top: 1em;
}

.fc-benefit-subTitle {
  color: #d1a100;
}

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

  .fc-benefit {
    margin-left: -2%;
    margin-bottom: -20px;
  }
  .fc-benefit > li {
    width: 48%;
    margin-left: 2%;
    margin-bottom: 30px;
  }
  .fc-benefit-img {
  }
  .fc-benefit-inner {
    padding-top: 12px;
  }
  .fc-benefit-title {
    font-size: 108%;
  }
  .fc-benefit-text {
    padding-top: 8px;
    font-size: 93%;
    line-height: 1.5;
  }
  .fc-benefit-tips {
    padding-top: 8px;
    font-size: 77%;
    line-height: 1.5;
  }

}

/*
flow
*/

.fc-flow{
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-top: 30px;
}
.fc-flow li {
  width: 32.3%;
  margin-left: 1%;
  margin-bottom: 12px;
}
.fc-flow li img {
  border: 1px solid #ccc;
}
.fc-flow li a:hover img {
  cursor: zoom-in;
}


/*
pageLink
*/

.fc-pageLink {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
.fc-pageLink li {
  width: 49%;
}
.fc-pageLink img {
}

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

  .fc-pageLink {
    display: block;
    padding-top: 20px;
  }
  .fc-pageLink li {
    width: auto;
    padding-bottom: 10px;
  }

}

/*
webValue
*/

.fc-webValue {
  border: 8px solid #ffb62a;
  background-color: #ffbe41;
  box-shadow: 0 0 0 1px #fff inset ;
  padding: 20px 20px;
  position: relative;
}

.fc-webValue-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.fc-webValue-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  background: url(/img/fan/fan_club2022/character01.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  right: 0;
  top: -45px;
  z-index: 9;
}
.fc-webValue-title img {
}

.fc-webValue-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fc-webValue-list li {
  width: 50%;
  padding: 5px;
}
.fc-webValue-list li.is-wide {
  width: 100%;
}
.fc-webValue-list img {
}

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

  .fc-webValue {
    border: 5px solid #ffb62a;
    padding: 10px 10px;
  }

  .fc-webValue-title {
    max-width: 80%;
    margin: 0 auto;
  }
  .fc-webValue-title::after {
    width: 80px;
    height: 80px;
    top: -75px;
    right: -20px;
  }
  .fc-webValue-title img {
  }

  .fc-webValue-list {
    display: block;
    text-align: center;
  }
  .fc-webValue-list li {
    width: auto;
    padding: 2px;
  }

}

/*
stadiumValue
*/

.fc-stadiumValue {
  border: 8px solid #90ca2b;
  background-color: #acd760;
  box-shadow: 0 0 0 1px #fff inset ;
  padding: 20px 20px 15px 80px;
  margin-top: 40px;
  position: relative;
  text-align: center;
}
.fc-stadiumValue::after {
  content: "";
  display: block;
  width: 100px;
  height: 160px;
  background: url(/img/fan/fan_club2022/character02.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 0px;
  top: -35px;
  z-index: 9;
}

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

  .fc-stadiumValue {
    border: 5px solid #90ca2b;
    padding: 10px 10px 15px 10px;
    margin-top: 30px;
  }
  .fc-stadiumValue::after {
    width: 50px;
    height: 80px;
    left: auto;
    right: 0;
    top: -70px;
  }

}

/*
typeNavi
*/

.fc-typeNavi {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  padding-bottom: 40px;
  justify-content: space-between;
}
.fc-typeNavi li {
  width: 50%;
  padding: 0 0 5px 10px;
}

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

.fc-typeNavi {
  display: block;
  margin-left: 0px;
  padding-bottom: 20px;
}
.fc-typeNavi li {
  width: auto;
  padding: 0 0 5px 0;
  text-align: center;
}

}

/*
fc-asteriskList
*/

.fc-asteriskList {

}
.fc-asteriskList li {
  margin-left: 1em;
}
.fc-asteriskList li::before {
  content: "※";
  margin-left: -1em;
}

.fc-asteriskList.is-num{
  counter-reset : asteriskList_num;
  margin-left: 2.5em;
}
.fc-asteriskList.is-num li::before{
  display: marker;
  counter-increment:asteriskList_num;
  content: '※'counter(asteriskList_num)'. ';
  margin-left: -2.3em;
  width: 2.5em;
}


/*
terms
*/

.fc-terms {
  padding: 20px;
  background-color: #d6e6bc;
}
.fc-terms-box {
  background-color: #fff;
  overflow: hidden;
  height: 300px;
}

.fc-terms-box iframe {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.fc-terms-pdf {
  text-align: right;
  padding: 5px 0;
}
.fc-terms-pdf a {
  color: #000;
}
.fc-terms-check {
  text-align: center;
  padding-bottom: 10px;
}
.fc-terms-check label {
  white-space: nowrap;
  display: inline-block;
  background-color: #01860e;
  color: #fff;
  font-size: 18px;
  font-feature-settings: "palt";
  font-weight: bold;
  padding: 15px 30px 15px 50px;
  border-radius: 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}



.fc-terms-check input{
  display: none;
}
.fc-terms-check input + label::before{
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.fc-terms-check input + label::after{
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 3px solid #aaa;
  border-bottom: 3px solid #aaa;
  position: absolute;
  left: 18px;
  top: 50%;
  margin-top: -9px;
  transform: rotate(-45deg) translateY(50%);
  opacity: 0;
}
.fc-terms-check input:checked + label::after{
  opacity: 1;
}
.fc-terms-check input:checked + label::before{
  border-color: #000;
}
.fc-terms-check input:checked + label::after{
  opacity: 1;
  border-color: #000;
}

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

  .fc-terms {
    padding: 5px;
  }
  .fc-terms-box {
    height: 200px;
  }

  .fc-terms-check {
    padding-bottom: 10px;
  }
  .fc-terms-check label {
    font-size: 12px;
    padding: 15px 20px 15px 40px;
    border-radius: 5px;
  }

  .fc-terms-check input{
    display: none;
  }
  .fc-terms-check input + label::before{
    left: 10px;
  }
  .fc-terms-check input + label::after{
    left: 8px;
  }


}











/*
box
*/

.fc-box {
  background-color: #e0edc9;
  padding:  2.5em 3em;
}

.fc-lead{
  font-size: 170%;
  font-feature-settings: "palt";
  padding-bottom: 0.8em;
}

.fc-lead img{
  vertical-align: top;
}

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

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

  .fc-lead{
    font-size: 131%;
  }
  .fc-lead img{
    width: 1em;
  }

}


/************************************
2023
************************************/

/*
gifut2023
*/

.fc2023-gift{
  border: 5px solid #acd760;
}
.fc2023-gift-inner{
  padding: 0 2em 2em;
}

.fc2023-card{
  float: right;
  padding: 0 0 1em 1em;
}


.fc2023-accentBox{
  border: 3px solid #f00;
  padding:2em 3em;
}

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

  .fc2023-gift{
    border-width: 2px;
  }
  .fc2023-gift-inner{
    padding: 0 5px 1em;
  }

  .fc2023-card{
    width: 40%;
    max-width: 180px;
    padding: 0;
  }


  .fc2023-accentBox{
    border-width: 2px;
    padding:1em;
  }

}




















































