@charset "UTF-8";
/*********************************************
ALL
*********************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  word-break: normal;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9375rem;
    margin: 0;
  }
}

.spOnly {
  display: none;
}
@media screen and (max-width: 767px) {
  .spOnly {
    display: inherit;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  line-height: 3.5rem;
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}

h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  line-height: 2.4rem;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.125rem;
    line-height: 1.6rem;
  }
}

main .inner,
.info .inner,
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  main .inner,
  .info .inner,
  footer .inner {
    width: 94%;
  }
}
/*********************************************
余白 / 文字
*********************************************/
.tCenter,
.tCenter-pc {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tCenter-pc {
    text-align: left;
  }
}
.tLeft {
  text-align: left;
}

.inLineBlock {
  display: inline-block;
  width: auto;
}

.ptrbl20 {
  padding: 20px;
}

.ptb60_prl40 {
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .ptb60_prl40 {
    padding: 30px 20px;
  }
}

.ptb20 {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .ptb20 {
    padding: 15px 0;
  }
}

.ptb30 {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .ptb30 {
    padding: 15px 0;
  }
}

.ptb60 {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .ptb60 {
    padding: 30px 0;
  }
}

.ptb80 {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .ptb80 {
    padding: 40px 0;
  }
}

.ptb120 {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .ptb120 {
    padding: 60px 0;
  }
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mr10 {
  margin-right: 10px;
}

.mb15 {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .mb15 {
    margin-bottom: 5px;
  }
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

.mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .mb60 {
    margin-bottom: 30px;
  }
}

.pb40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .pb40 {
    padding-bottom: 20px;
  }
}

.fSize16 {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .fSize16 {
    font-size: 0.8125rem;
  }
}

.fSize20 {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .fSize20 {
    font-size: 1.125rem;
  }
}

.fSize30 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .fSize30 {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 10px;
  }
}

.fSize70 {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .fSize70 {
    font-size: 2.7rem;
  }
}

.lHeight1_5 {
  line-height: 1.5rem;
}

.lHeight2 {
  line-height: 2rem;
}

.tBold,
strong {
  font-weight: 600;
}

.text-primary {
  color: #b60005;
}

.u-border {
  color: #b60005;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #ffec7b), to(#ffec7b));
  background: linear-gradient(transparent 0%, transparent 50%, #ffec7b 50%, #ffec7b 100%);
  padding: 0 0.4rem;
}

p {
  line-height: 1.8rem;
}
@media screen and (max-width: 767px) {
  p {
    line-height: 1.6rem;
  }
}

a {
  color: #b60005;
  font-weight: 700;
}
a:hover {
  color: #62c3d0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*********************************************
bg
*********************************************/
.bgWhite {
  background: #fff;
}

.bgGray {
  background: #f2f2f2;
}

.bgLightGreen {
  background: #e9f1ec;
}

.bgPinkTranslucent {
  background: rgba(255, 239, 232, 0.9);
}

/*********************************************
CVボタン
*********************************************/
a.btn {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.6rem;
  padding: 1.5rem 2rem;
  border-radius: 1.2rem;
  color: #fff;
  font-weight: bold;
  width: 100%;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  background: #b60005;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a.btn {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    line-height: 1.8rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
  }
}
a.btn:hover {
  color: #b60005;
  background: #ffec7b;
  cursor: pointer;
}

main .btn-wrap {
  text-align: center;
  margin: 0 auto;
  width: 350px;
}
@media screen and (max-width: 767px) {
  main .btn-wrap {
    width: 300px;
  }
}
main .btn-wrap span {
  color: #b60005;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
  display: block;
}
main .btn-wrap.btnWide {
  width: 90%;
  max-width: 640px;
}
main .btn-wrap.arrowRightWhite {
  position: relative;
}
main .btn-wrap.arrowRightWhite::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  border-radius: 2px;
}
main .btn-wrap.arrowRightWhite:hover:before {
  border-right: 3px solid #b60005;
  border-bottom: 3px solid #b60005;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

/*********************************************
CVエリア　SP
*********************************************/
.cvaSp {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
}
.cvaSp .btn-wrap {
  margin-top: 0;
}

/*********************************************
リピONEフェスに参加してもっと選ばれるお店に
*********************************************/
.overviewArea div img {
  width: 100%;
  max-width: 740px;
}
@media screen and (max-width: 767px) {
  .overviewArea div img {
    max-width: 400px;
    margin: 0 auto;
  }
}

/*********************************************
リピONEフェス 福岡の流れ
*********************************************/
@media screen and (max-width: 767px) {
  .flowArea {
    display: block;
    clear: both;
    float: none;
  }
}
.flowArea .flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .flowArea .flexCenter {
    display: inline;
  }
}
.flowArea .inner dl {
  width: 33%;
  margin: 0 -1%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .flowArea .inner dl {
    width: 94%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    clear: both;
    float: none;
  }
}
.flowArea .inner dl dt {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flowArea .inner dl dt {
    width: 17%;
    max-width: 45px;
    float: left;
  }
}
.flowArea .inner dl dt img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .flowArea .inner dl dd {
    width: 80%;
    float: right;
  }
}
.flowArea .inner dl dd img {
  width: 100%;
  max-width: 130px;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .flowArea .inner dl dd img {
    max-width: 99px;
    margin: 0.9375rem 0;
  }
}
.flowArea .inner dl dd.bgGray {
  width: 90%;
  padding: 20px;
  margin: 0 auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .flowArea .inner dl dd.bgGray {
    width: 80%;
  }
}
.flowArea .inner dl dd.bgGray span {
  display: block;
}
.flowArea .inner .remarks {
  margin: 15px 25px;
}
@media screen and (max-width: 767px) {
  .flowArea .inner .remarks {
    clear: both;
    float: none;
    margin: 15px 0;
  }
}

/*********************************************
評価・分析方法と結果の勉強会について
*********************************************/
.analysisArea .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .analysisArea .inner {
    display: inline;
  }
}
.analysisArea .inner dl {
  width: 49%;
  background: #fff;
  border: 1px solid #dddddd;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .analysisArea .inner dl {
    width: 94%;
    margin: 0 auto;
  }
  .analysisArea .inner dl:nth-last-child(1) {
    margin-top: 20px;
  }
}
.analysisArea .inner dl img {
  width: 100%;
  border: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .analysisArea .inner dl img {
    max-width: 500px;
  }
}
.analysisArea .inner dl .analysis_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0;
}
.analysisArea .inner dl .analysis_icon img {
  max-width: 110px;
  border: 0;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .analysisArea .inner dl .analysis_icon img {
    display: none;
  }
}
.analysisArea .inner dl li {
  line-height: 1.4rem;
  list-style: disc;
  margin: 0 0 0.8rem 1rem;
}
.analysisArea .inner dl li::marker {
  font-size: 0.5rem;
}
.analysisArea .inner dl li span {
  vertical-align: -0.15rem;
}

/*********************************************
備考
*********************************************/
.remarks {
  text-align: left !important;
  font-size: 0.9375rem;
  line-height: 1.5rem;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .remarks {
    font-size: 0.8rem;
  }
}

/*********************************************
参加費用
*********************************************/
.priceArea .inner {
  margin: 0 auto;
}
.priceArea .inner .priceBox {
  font-weight: bold;
  text-align: center;
  margin: 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .priceArea .inner .priceBox {
    margin: 30px 0 30px;
  }
}

/*********************************************
よくある質問
*********************************************/
.faq_area {
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.faq_area .accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.faq_area .accordion-area li {
  margin: 20px 0;
  background: #fff;
}
.faq_area .accordion-area section {
  border: 1px solid #c4c4c4;
}
.faq_area .qa-title {
  text-align: left;
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: bold;
  line-height: 2rem;
  padding: 1.25rem 3.2rem 1.25rem 1.25rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .faq_area .qa-title {
    font-size: 1.125rem;
    line-height: 1.7rem;
    padding: 0.9375rem 3.2rem 0.9375rem 0.9375rem;
  }
}
.faq_area .qa-title::before,
.faq_area .qa-title::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 4px;
  background-color: #b60005;
}
.faq_area .qa-title::before {
  top: 48%;
  right: 1.25rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq_area .qa-title::after {
  top: 48%;
  right: 1.25rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq_area .qa-title.qa-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq_area .qa-title.qa-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.faq_area .qa-box {
  font-size: 1rem;
  display: none; /*はじめは非表示*/
  background: #f2f2f2;
  margin: 0 1.25rem 1.25rem 1.25rem;
  padding: 1.25rem;
}
.faq_area .accordion-area h3 {
  margin: 0;
}

/*********************************************
フォーム
*********************************************/
#contents .formWrapper {
  text-align: left;
  font-weight: 400;
  /*	max-width: 980px;*/
  max-width: 700px;
  width: 90%;
  margin: 0px auto;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper {
    width: 100%;
    margin: 0 auto 60px;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}
#contents .bgLightGreen .formWrapper {
  background: #fff;
  padding: 1rem;
}

#contents .formWrapper dl {
  display: table;
  padding-bottom: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper dl {
    width: 100%;
    padding: 10px 0;
    border: none;
    display: block;
  }
}
#contents .formWrapper dl:nth-last-of-type(1) {
  border: none;
}

#contents .formWrapper dl dt {
  letter-spacing: 0.5px;
  min-width: 280px;
  width: 27%;
  padding: 15px;
  background: #f2f2f2;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper dl dt {
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }
}
#contents .formWrapper dl dt span {
  display: inherit;
}

#contents .formWrapper dl dt,
#contents .formWrapper dl dd {
  font-size: 16px;
  line-height: 1.6em;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper dl dt,
  #contents .formWrapper dl dd {
    font-size: 15px;
    line-height: 1.5em;
  }
}
#contents .formWrapper dl dd {
  padding: 10px 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper dl dd {
    width: 100%;
    display: block;
  }
}
#contents .formWrapper dl dd p:nth-last-of-type(1) {
  margin: 0;
}

#contents .formWrapper .policy {
  width: 100%;
  margin: 20px auto;
  padding: 10px;
  height: 150px;
  overflow: scroll;
  font-size: 14px;
  border: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper .policy {
    width: 94%;
  }
}
#contents .formWrapper .policy dl {
  display: block;
}

#contents .formWrapper .policy dl dt,
#contents .formWrapper .policy dl dd {
  width: 100%;
}

#contents .formWrapper .policy dl dt {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  background: none;
  padding: 0;
  min-width: inherit;
  display: inherit;
}

#contents .formWrapper .policy dl dd {
  font-size: 13px;
  display: inherit;
  padding: 0;
}

#contents .formWrapper .policy h3 {
  margin: 0;
  padding: 0 0 10px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px dotted #ccc;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper .policy h3 {
    font-size: 14px;
  }
}
#contents .formWrapper .termsInput {
  text-align: center;
  padding: 20px 0;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper .termsInput {
    font-size: 14px;
  }
}
#contents .formWrapper .required {
  font-size: 0.68rem;
  line-height: 1.2rem;
  color: #fff;
  width: 33px;
  background: #62c3d0;
  padding: 2px 5px;
  margin-top: 3px;
  margin-right: 15px;
  display: inline-block;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper .required {
    font-size: 11px;
    line-height: 1.3em;
  }
}
#contents .formWrapper .termsInput .required {
  float: none;
  margin: 0 0 0 15px;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper .termsInput .required {
    margin: 0 0 0 10px;
  }
}
#contents .formWrapper .termsInput .wpcf7-list-item label {
  margin: 0;
}

.mw_wp_form label a {
  margin-left: 6px;
}

.mw_wp_form label input[type=checkbox],
.mw_wp_form label input[type=radio] {
  margin-right: 4px;
}

/* #contents form input,  */
#contents form textarea,
#contents form select,
#contents form input[type=email],
#contents form input[type=text] {
  font-family: "Noto Sans Japanese", sans-serif;
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  border-radius: 4px;
}

#contents form input[type=tel] {
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  border-radius: 4px;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 10px;
}

#contents form textarea {
  width: 97%;
}

#contents form select {
  padding: 8px 10px 8px 5px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #fff;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 575px) {
  #contents form input,
  #contents form textarea,
  #contents form select {
    max-width: 100%;
  }
}
#contents form input:focus,
#contents form textarea:focus,
#contents form select:focus {
  outline: none;
  border: 1px solid #e5004f;
  background-color: #f2f2f2;
}

#contents form input.alert,
#contents form textarea.alert,
#contents form select.alert {
  border: 1px solid #eb6e6e;
  background-color: #ffebeb;
}

#contents form input.alert::-webkit-input-placeholder, #contents form textarea.alert::-webkit-input-placeholder, #contents form select.alert::-webkit-input-placeholder {
  color: #eb6e6e;
}

#contents form input.alert::-moz-placeholder, #contents form textarea.alert::-moz-placeholder, #contents form select.alert::-moz-placeholder {
  color: #eb6e6e;
}

#contents form input.alert:-ms-input-placeholder, #contents form textarea.alert:-ms-input-placeholder, #contents form select.alert:-ms-input-placeholder {
  color: #eb6e6e;
}

#contents form input.alert::-ms-input-placeholder, #contents form textarea.alert::-ms-input-placeholder, #contents form select.alert::-ms-input-placeholder {
  color: #eb6e6e;
}

#contents form input.alert::placeholder,
#contents form textarea.alert::placeholder,
#contents form select.alert::placeholder {
  color: #eb6e6e;
}

#contents form input.button-L1 {
  font-size: 1.4rem;
  border: none;
  width: 300px;
  margin: 15px auto 30px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1.2rem;
  font-weight: bold;
  padding: 1.4rem 3rem;
  text-decoration: none;
  color: #fff;
  position: relative;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  background: #b60005;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

#contents form input.button-L1:after {
  position: absolute;
  margin: auto;
}

#contents form input.button-L1:hover {
  text-decoration: none;
  color: #b60005;
  background: #ffec7b;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 575px) {
  #contents form input.button-L1 {
    width: 80%;
  }
}
#contents form input.button-L1:after {
  display: none;
}

#contents form input.button-L1.disable,
a.button-L1.disable {
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

#contents form .error {
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
}

#contents form .error:before {
  content: "※";
}

#contents .aroundLink {
  width: 100%;
  margin: 20px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

input#companyName,
input#your-email,
input#subject {
  width: 100%;
}

/****************************************************
 * Contact Form 7 
/***************************************************/
.wpcf7 form .wpcf7-response-output {
  /* margin: -50px auto 5%;*/
  margin: 0 auto 5%;
  max-width: 800px;
}

.wpcf7 form .wpcf7-list-item {
  margin: 0;
}

.wpcf7 form #siryou .wpcf7-list-item {
  display: block;
}

.formWrapper label,
.formWrapper label input[type=checkbox],
.formWrapper label input[type=radio] {
  cursor: pointer;
}

.formWrapper label a {
  margin-right: 4px;
}

.wpcf7 form label a:hover {
  color: #62c3d0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*********************************************
MV　下層ページ（福岡）
*********************************************/
.pageMv {
  background-image: url("../img/main_img.jpg");
  background-size: cover;
  background-position: center bottom;
  text-indent: -99999px;
  height: 340px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .pageMv {
    height: 267px;
  }
}
.pageMv h1 {
  text-indent: -9999px;
  height: 0;
  background: url("../img/logoWhite.png") center bottom no-repeat;
  background-size: 100%;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .pageMv h1 {
    top: 50px;
    width: 160px;
    height: 160px;
  }
}

/*********************************************
MV　下層ページ
*********************************************/
.pageMvLogo {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .pageMvLogo {
    padding-top: 50px;
  }
}
.pageMvLogo h1 {
  text-indent: -9999px;
  height: 0;
  background: url("../../img/logo_all_blue.png") center bottom no-repeat;
  background-size: 100%;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
/*********************************************
ToC：ALL
*********************************************/
body.aichi2026 {
  background-image: url("../img/bg_img.webp");
  background-size: cover;
  background-position: center 15%;
  background-attachment: fixed;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.aichi2026 {
    background-position: 20% 42%;
  }
}

/*********************************************
ToC：メインビジュアル
*********************************************/
.main_area_toc {
  background-color: rgba(137, 19, 22, 0.8);
}
@media screen and (max-width: 767px) {
  .main_area_toc {
    background: none;
  }
}
.main_area_toc .main_img_toc {
  background: url("../img/main_img.webp") center bottom no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  max-width: 850px;
  height: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .main_area_toc .main_img_toc {
    background: url("../img/main_img_sp.webp");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 700px;
  }
}
.main_area_toc h1 {
  text-indent: -9999px;
  height: 0;
}

.mv-top-text {
  text-align: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem 0 1.2rem 0;
}
.mv-top-text img {
  width: 86%;
  max-width: 430px;
}

.main_txt_toc {
  color: #fff;
  background: rgba(190, 36, 40, 0.8);
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
}
.main_txt_toc p {
  width: 87%;
  margin: 0 auto;
}

/*********************************************
ToC：開催期間
*********************************************/
.eventPeriodArea dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .eventPeriodArea dl {
    display: inline;
  }
}
.eventPeriodArea dl dt {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  background: #b60005;
  padding: 0.5rem 1.2rem 0.6rem 1.5rem;
  margin-right: 1.25rem;
  border-radius: 30rem;
}
@media screen and (max-width: 767px) {
  .eventPeriodArea dl dt {
    font-size: 1.25rem;
    width: 140px;
    margin: 0 auto;
    margin-bottom: 0.625rem;
  }
}
.eventPeriodArea dl dd {
  color: #b60005;
  font-size: 1.4375rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .eventPeriodArea dl dd {
    font-size: 1.125rem;
    text-align: center;
  }
}
.eventPeriodArea dl dd span {
  font-size: 2.4375rem;
  line-height: 1.9rem;
  display: inline-block;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .eventPeriodArea dl dd span {
    font-size: 1.6875rem;
  }
}

/*********************************************
ToC：さらにWチャンス
*********************************************/
.rewardsArea div {
  text-align: center;
}
.rewardsArea div img {
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .rewardsArea div img {
    display: block;
  }
}

/*********************************************
ToC：フロー
*********************************************/
@media screen and (max-width: 767px) {
  .processArea {
    display: block;
    clear: both;
    float: none;
  }
}
.processArea .flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .processArea .flexCenter {
    display: inline;
  }
}
.processArea .inner dl {
  width: 300px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .processArea .inner dl {
    width: 94%;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    display: block;
  }
}
.processArea .inner dl dt {
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .processArea .inner dl dt {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.25rem;
  }
}
.processArea .inner dl dt img {
  width: 100%;
}

/*********************************************
ToC：このポスターが目印
*********************************************/
.posterArea div .posterWrap {
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  padding: 3.75rem;
  margin: 0 auto;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .posterArea div .posterWrap {
    display: block;
    padding: 1.875rem 1rem;
  }
}
.posterArea div .posterWrap img {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .posterArea div .posterWrap img {
    width: 215px;
    display: block;
    margin: 0 auto;
  }
}
.posterArea div .posterWrap h2 {
  width: 416px;
}
@media screen and (max-width: 767px) {
  .posterArea div .posterWrap h2 {
    width: 100%;
  }
}

/*********************************************
ToC：MAP
*********************************************/
.mapArea .mapWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  height: 0;
}
.mapArea .mapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
.mapArea.faq_area .accordion-area ul li {
  width: 100%;
  background: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.875rem;
  margin: 0.875rem 0 0;
  border-bottom: 1px solid #ddd;
}
.mapArea.faq_area .accordion-area ul li:last-child {
  border-bottom: none;
  padding-bottom: none;
}
.mapArea.faq_area .accordion-area ul li div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mapArea.faq_area .accordion-area ul li div span {
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mapArea.faq_area .accordion-area ul li div span {
    line-height: 1.2rem;
  }
}
.mapArea.faq_area .accordion-area ul li div span.storeListArea2 {
  font-size: 0.875rem;
  line-height: 1.3rem;
  background: #e6e6e6;
  padding: 4px 10px;
}
.mapArea.faq_area .accordion-area ul li a {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1rem;
  text-decoration: none;
  padding: 0.4rem 0.875rem;
  border-radius: 0.25rem;
  background: #b60005;
}
.mapArea.faq_area .accordion-area ul li a:hover {
  color: #b60005;
  background: #ffec7b;
}

/*********************************************
ToC：最新情報はこちら
*********************************************/
.snsArea {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .snsArea .snsWrap {
    width: 90%;
    margin: 0 auto;
  }
}
.snsArea .snsWrap .twitter-timeline {
  margin: 0 auto;
}

/*********************************************
ToC：協賛企業
*********************************************/
.sponsorshipArea .sponsorshipWrap {
  border-radius: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sponsorshipArea .sponsorshipWrap {
    width: 100%;
  }
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul {
  width: 94%;
  margin: 0 auto 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.2rem;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul:last-child {
  margin-bottom: 0;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul li a {
  display: block;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul:last-child {
  margin-bottom: 1.25rem;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul.supporterLogoGroup1 li {
  width: 30%;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul.supporterLogoGroup2 li {
  width: 25%;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul.supporterLogoGroup3 li {
  width: 15%;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul .supporter_sLogo {
  width: 10% !important;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul {
    gap: 1.5rem;
  }
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul:last-child {
    margin-bottom: 1.25rem;
  }
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul.supporterLogoGroup1 li {
    width: 40%;
  }
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul.supporterLogoGroup2 li {
    width: 35%;
  }
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul.supporterLogoGroup3 li {
    width: 20%;
  }
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo ul .supporter_sLogo {
    width: 15% !important;
  }
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 {
    gap: 0.625rem;
  }
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div {
    gap: 0.625rem;
  }
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div span {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.25rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  height: 70px;
  border: 1px solid #ddd;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div span {
    font-size: 0.75rem;
    padding: 0.375rem;
  }
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div ul li img {
  width: 100%;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div ul li img {
    max-width: 160px;
  }
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div.sponsorshipLogo2-1 li {
  max-width: 100px;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div.sponsorshipLogo2-2 li {
  max-width: 169px;
}
.sponsorshipArea .sponsorshipWrap .sponsorshipLogo2 div.sponsorshipLogo2-3 li {
  max-width: 146px;
}

/*********************************************
footer
*********************************************/
footer {
  width: 100%;
  background: #757575;
}
footer .footerEventCopy {
  padding: 1.875rem;
}
footer .footerEventCopy .inner {
  color: #ffffff;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
footer .footerEventCopy .inner p {
  margin-bottom: 0;
}
footer .footerEventCopy .inner img {
  width: 50%;
  max-width: 210px;
}
@media screen and (max-width: 767px) {
  footer .footerEventCopy .inner img {
    margin-top: 6px;
  }
}
footer .footer-wrap .logo_f {
  width: 100%;
  text-align: center;
  background: #fff;
  padding: 2% 0;
  display: block;
}
footer .footer-wrap .logo_f img {
  width: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .logo_f img {
    width: 30%;
  }
}
footer .footer-wrap a {
  color: #444;
  font-weight: bold;
}
footer .footer-wrap a:hover {
  color: #b60005;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-wrap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .inner {
    display: block;
  }
}
footer .footer-wrap .inner .f_left {
  width: 25%;
  max-width: 200px;
  margin-right: 10%;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .inner .f_left {
    width: 100%;
    text-align: center;
    margin: 0 auto 10%;
  }
}
footer .footer-wrap .inner .f_left img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .inner .f_right {
    width: 100%;
    display: block;
  }
}
footer .footer-wrap .inner .f_right dl {
  margin-right: 7%;
  width: 80%;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .inner .f_right dl {
    margin: 0 auto;
    width: 100%;
  }
}
footer .footer-wrap .inner .f_right dl dt {
  font-weight: bold;
  line-height: 1.6em;
}
footer .footer-wrap .inner .f_right dl dt:nth-child(1) {
  font-size: 1.5em;
  margin-bottom: 4%;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .inner .f_right dl dt:nth-child(1) {
    font-size: 1.2em;
  }
}
footer .footer-wrap .inner .f_right dl dd {
  margin-bottom: 2%;
}
footer .footer-wrap .inner .f_right .pmark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .inner .f_right .pmark {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .footer-wrap .inner .f_right .pmark img {
  width: 65px;
}
footer .footer-wrap .inner .f_right .pmark p {
  font-size: 0.7rem;
  line-height: 1.2rem;
  width: 220px;
  margin: 0 0 0 20px;
  display: block;
}