@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #242424;
}

img {
  max-width: 100%;
  max-height: 100%;
}

h2 {
  font-weight: bolder;
}

main {
  overflow: hidden;
}

strong {
  display: contents;
}

.underLine {
  background: linear-gradient(transparent 60%, #64ab1d 30%);
}

.keyV {
  overflow: hidden;
  position: relative;
}

.contentAllWrap {
  position: relative;
}

.js-target {
  transition: all 0.5s;
}

.mainV__sec {
  display: flex;
  background: url(../images/mainV.jpg) no-repeat 50% 35% / cover;
  justify-content: center;
  align-items: center;
  height: 35vh;
}
.mainV__sec h1 {
  color: #fff;
  text-align: center;
}
.mainV__sec h1.js-active {
  transform: translateY(0);
  opacity: 1;
}

.evenSec {
  background-color: #e8e8e8;
}

.oddSec {
  background-color: #fff;
}

.h2Wrap {
  opacity: 0;
  transform: translateY(20px);
}
.h2Wrap.js-active {
  opacity: 1;
  transform: translateY(0);
}

.sec01 {
  position: relative;
  z-index: 1;
}
.sec01 .introTxt {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  opacity: 0;
  transform: translateY(20px);
}
.sec01 .introTxt.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec01 .arsenal__ph.js-active,
.sec01 .arsenal__name.js-active {
  transform: translateY(0);
  opacity: 1;
}

.sec02 .point__wrap {
  display: block;
}
.sec02 .point__wrap__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sec02 .point__wrap__txt {
  text-align: left;
}
.sec02 .point__wrap__box {
  opacity: 0;
  transform: translateY(20px);
}
.sec02 .point__wrap__box.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec02 .point__underWrap {
  display: flex;
  justify-content: space-around;
}
.sec02 .point__underWrap__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sec02 .point__underWrap__txt {
  text-align: left;
}

.sec03 .userVoice__1st {
  opacity: 0;
  transform: translateY(20px);
}
.sec03 .userVoice__1st.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec03 .userVoice__2nd {
  opacity: 0;
  transform: translateY(20px);
}
.sec03 .userVoice__2nd.js-active {
  opacity: 1;
  transform: translateY(0);
}

.sec04 .table__wrap {
  overflow-x: auto;
  opacity: 0;
  transform: translateY(20px);
}
.sec04 .table__wrap.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec04 .table__wrap::-webkit-scrollbar {
  width: 10px;
  height: 20px;
  background-color: #9c9c9c;
}
.sec04 .table__wrap::-webkit-scrollbar-thumb {
  background: #fff;
  width: 2px;
  border-radius: 45px;
  border: 6px solid #9c9c9c;
}
.sec04 table {
  border-collapse: collapse;
  background-color: #fff;
}
.sec04 th,
.sec04 td {
  border: 1px solid #c0c0c0;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.sec04 th {
  background-color: #64ab1d;
  color: white;
}
.sec04 .highlight {
  background-color: #e0f0e0;
}

.sec05 .bizInfo__wrap h2,
.sec05 .bizInfo__wrap p {
  opacity: 0;
  transform: translateY(20px);
}
.sec05 .bizInfo__wrap h2.js-active,
.sec05 .bizInfo__wrap p.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec05 .bizInfo__intro__txt {
  opacity: 0;
  transform: translateY(20px);
}
.sec05 .bizInfo__intro__txt.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec05 .bizInfo__intro__img li {
  opacity: 0;
  transform: translateY(20px);
}
.sec05 .bizInfo__intro__img li.js-active {
  opacity: 1;
  transform: translateY(0);
}
.sec05 .bizInfo__point__list li {
  opacity: 0;
  transform: translateY(20px);
}
.sec05 .bizInfo__point__list li.js-active {
  opacity: 1;
  transform: translateY(0);
}

footer {
  background: #3e8156;
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 5rem 0 2.5rem;
}

#footer:before {
  content: '';
  position: absolute;
  width: calc(100% + 0.8rem);
  left: 0;
  background: #fff url(../images/bg_wave03.svg) no-repeat 50% / auto 2.8rem;
  top: 0;
  z-index: 1;
  height: 2.7rem;
}

.fixedBtn {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.fixedBtn a {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl; /* IE対応 */
  background-color: #64ab1d;
  color: #fff;
  padding: 15px;
}
.fixedBtn.is-visible {
  opacity: 1;
  visibility: visible;
}

.cvWrap {
  position: relative;
}
.cvWrap:after {
  animation: 2s 0s shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  content: '';
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
}

.fixedBtn.is-animation {
  animation: ani 0.5s;
}

@keyframes ani {
  0% {
    transform: scale(100);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shine {
  20% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@media only screen and (min-width: 769px) {
  .viewPcOnly {
    display: block;
  }
  .viewSpOnly {
    display: none !important;
  }
  .contentAllWrap p {
    font-size: 16px;
  }
  .contentWrap {
    padding: 80px 0;
  }
  .h2Wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(24px, 10vw, 36px);
  }
  .h2Wrap__before,
  .h2Wrap__after {
    width: 50px;
    height: 4px;
    background-color: #242424;
  }
  .h2Wrap__before {
    margin-right: 15px;
  }
  .h2Wrap__after {
    margin-left: 15px;
  }
  .mainV__sec {
    min-height: 500px;
  }
  .mainV__sec h1 {
    color: #fff;
    font-size: clamp(24px, 10vw, 48px);
    font-weight: bolder;
    text-shadow: 5px 5px 0px #242424;
    margin-bottom: clamp(157px, 12vh, 180px);
    line-height: 1.5;
  }
  .mainV__sec h1 span {
    font-size: clamp(18px, 8vw, 42px);
  }
  .sec01 {
    padding-bottom: 100px;
  }
  .sec01 .arsenal {
    margin-top: clamp(-210px, -20vh, -300px);
    margin-right: auto;
    margin-left: auto;
    width: 375px;
    max-width: 375px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sec01 .arsenal__ph {
    max-width: 120px;
  }
  .sec01 .arsenal__name {
    margin-top: clamp(24px, 10vw, 40px);
    font-size: clamp(48px, 20vw, 68px);
  }
  .sec01 .introTxt {
    margin-top: clamp(50px, 3%, 50px);
    width: 740px;
    max-width: 750px;
    line-height: 2;
  }
  .sec02 .point__wrap {
    margin-top: 80px;
    display: block;
  }
  .sec02 .point__wrap__box {
    width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  .sec02 .point__wrap__box h2 {
    font-size: clamp(24px, 10vw, 36px);
  }
  .sec02 .point__wrap__img {
    width: 100%;
    max-width: 90px;
    margin-top: 15px;
  }
  .sec02 .point__wrap__txt {
    margin-top: 15px;
    line-height: 2;
  }
  .sec02 .point__underWrap {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
  }
  .sec03 .userVoice__wrap {
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
  }
  .sec03 .userVoice__wrap dl {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
    height: 100%;
    min-height: 250px;
    background-color: #e8e8e8;
    box-shadow: 20px 20px 0 #4b4b4b;
  }
  .sec03 .userVoice__wrap dd {
    box-sizing: border-box;
    line-height: 2;
  }
  .sec03 .userVoice__wrap dd p {
    padding: 4%;
  }
  .sec03 .userVoice__1st {
    flex-direction: row-reverse;
  }
  .sec03 .userVoice__1st dt {
    background: url(../images/voice01.jpg) no-repeat 50% / cover;
    width: 100%;
    min-width: 250px;
    height: 100%;
    min-height: 250px;
  }
  .sec03 .userVoice__2nd dt {
    background: url(../images/voice02.jpg) no-repeat 50% / cover;
    width: 100%;
    min-width: 250px;
    height: 100%;
    min-height: 250px;
  }
  .sec04 .table__wrap {
    width: 80%;
    margin: 0 auto;
    min-width: 768px;
    max-width: 1000px;
  }
  .sec04 table {
    width: 100%;
    max-width: 1280px;
    min-width: 1280px;
    font-size: 12px;
    margin-top: 80px;
  }
  .sec05 .bizInfo__wrap {
    width: 90%;
    max-width: 1000px;
    margin: 80px auto 0;
  }
  .sec05 .bizInfo__wrap h2 {
    font-size: clamp(24px, 10vw, 36px);
    text-align: center;
  }
  .sec05 .bizInfo__intro__txt {
    margin-top: 40px;
    line-height: 2;
    display: flex;
    justify-content: center;
  }
  .sec05 .bizInfo__intro__img {
    margin-top: 40px;
    line-height: 2;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .sec05 .bizInfo__intro__img li {
    margin-right: 15px;
  }
  .sec05 .bizInfo__intro__img li:last-child {
    margin-right: 0;
  }
  .sec05 .bizInfo__point {
    margin-top: 80px;
  }
  .sec05 .bizInfo__point P {
    font-size: 80%;
  }
  .sec05 .bizInfo__point__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 80px;
  }
  .sec05 .bizInfo__point__list li {
    width: 300px;
    height: 295px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    box-sizing: border-box;
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-radius: 15px;
  }
  .sec05 .bizInfo__point__list li:nth-child(1) {
    background: url(../images/strongPoint01.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(2) {
    background: url(../images/strongPoint02.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(3) {
    background: url(../images/strongPoint03.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(4) {
    background: url(../images/strongPoint04.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(5) {
    background: url(../images/strongPoint05.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(6) {
    background: url(../images/strongPoint06.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point .cvWrap {
    margin-top: 80px;
  }
  .sec05 .bizInfo__point .cvWrap img {
    width: 100%;
    height: auto;
  }
  .mainItemSec {
    max-width: 765px;
    max-height: 326px;
    width: 70vw;
    text-align: center;
    position: relative;
    margin: 0 auto;
  }
  .u_inner {
    width: 100rem;
    max-width: calc(100% - 4rem);
    margin: 0 auto;
  }
  .f_logo img {
    width: 18.4rem;
  }
  .f_logo p {
    font-weight: bold;
    margin: 1.2em 0 0.8em;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .viewPcOnly {
    display: none !important;
  }
  .viewSpOnly {
    display: block;
  }
  .contentAllWrap p {
    font-size: 16px;
  }
  .contentWrap {
    padding: 60px 0;
  }
  .h2Wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(24px, 7vw, 36px);
  }
  .h2Wrap__before,
  .h2Wrap__after {
    width: 25px;
    height: 4px;
    background-color: #242424;
  }
  .h2Wrap__before {
    margin-right: 15px;
  }
  .h2Wrap__after {
    margin-left: 15px;
  }
  .mainV__sec {
    min-height: 400px;
  }
  .mainV__sec h1 {
    color: #fff;
    font-size: clamp(24px, 8vw, 48px);
    font-weight: bolder;
    text-shadow: 3px 3px 0px #242424;
    margin-bottom: clamp(157px, 12vh, 180px);
    line-height: 1.5;
  }
  .mainV__sec h1 span {
    font-size: clamp(18px, 7vw, 42px);
  }
  .sec01 {
    padding-bottom: 60px;
  }
  .sec01 .arsenal {
    margin-top: clamp(-185px, -20vh, -300px);
    margin-right: auto;
    margin-left: auto;
    width: 375px;
    max-width: 375px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sec01 .arsenal__ph {
    max-width: 110px;
  }
  .sec01 .arsenal__name {
    margin-top: clamp(24px, 10vw, 40px);
    font-size: clamp(48px, 15vw, 68px);
  }
  .sec01 .introTxt {
    margin-top: clamp(50px, 3%, 50px);
    width: 100%;
    max-width: 90vw;
    line-height: 2;
  }
  .sec02 .point__wrap {
    margin-top: 60px;
    display: block;
  }
  .sec02 .point__wrap__box {
    width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  .sec02 .point__wrap__box h2 {
    font-size: clamp(24px, 10vw, 36px);
  }
  .sec02 .point__wrap__img {
    width: 100%;
    max-width: 90px;
    margin-top: 15px;
  }
  .sec02 .point__wrap__txt {
    margin-top: 15px;
    line-height: 2;
  }
  .sec02 .point__underWrap {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
  }
  .sec02 .point__underWrap .point__wrap__box {
    margin: 60px auto 0;
  }
  .sec03 .userVoice__wrap {
    width: 90vw;
    margin: 0 auto;
    max-width: 500px;
  }
  .sec03 .userVoice__wrap dl {
    display: block;
    margin-top: 60px;
    height: 100%;
    min-height: 250px;
    background-color: #e8e8e8;
    box-shadow: 10px 10px 0 #4b4b4b;
  }
  .sec03 .userVoice__wrap dd {
    box-sizing: border-box;
    line-height: 2;
  }
  .sec03 .userVoice__wrap dd p {
    padding: 4%;
  }
  .sec03 .userVoice__1st {
    flex-direction: row-reverse;
  }
  .sec03 .userVoice__1st dt {
    background: url(../images/voice01.jpg) no-repeat 50% / cover;
    width: 100%;
    min-width: 250px;
    height: 100%;
    min-height: 250px;
  }
  .sec03 .userVoice__2nd dt {
    background: url(../images/voice02.jpg) no-repeat 50% / cover;
    width: 100%;
    min-width: 250px;
    height: 100%;
    min-height: 250px;
  }
  .sec04 .table__wrap {
    width: 90vw;
    margin: 0 auto;
  }
  .sec04 table {
    width: 100%;
    max-width: 1280px;
    min-width: 1280px;
    font-size: 12px;
    margin: 60px 0 0 0;
  }
  .sec05 .h2Wrap {
    font-size: clamp(24px, 7vw, 36px);
  }
  .sec05 .bizInfo__wrap {
    width: 90%;
    max-width: 1000px;
    margin: 60px auto 0;
  }
  .sec05 .bizInfo__wrap h2 {
    font-size: clamp(22px, 8vw, 32px);
    text-align: center;
  }
  .sec05 .bizInfo__intro__txt {
    margin-top: 40px;
    line-height: 2;
    display: block;
  }
  .sec05 .bizInfo__intro__img {
    margin-top: 40px;
    line-height: 2;
    display: block;
  }
  .sec05 .bizInfo__intro__img li {
    margin-top: 20px;
  }
  .sec05 .bizInfo__point {
    margin-top: 80px;
  }
  .sec05 .bizInfo__point P {
    font-size: 80%;
  }
  .sec05 .bizInfo__point__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 80px;
  }
  .sec05 .bizInfo__point__list li {
    width: 300px;
    height: 295px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    box-sizing: border-box;
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-radius: 15px;
  }
  .sec05 .bizInfo__point__list li:nth-child(1) {
    background: url(../images/strongPoint01.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(2) {
    background: url(../images/strongPoint02.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(3) {
    background: url(../images/strongPoint03.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(4) {
    background: url(../images/strongPoint04.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(5) {
    background: url(../images/strongPoint05.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point__list li:nth-child(6) {
    background: url(../images/strongPoint06.png) no-repeat 50% / cover;
  }
  .sec05 .bizInfo__point .cvWrap {
    margin-top: 40px;
  }
  .f_logo img {
    width: 10.4rem;
  }
  .f_logo p {
    font-weight: bold;
    margin: 1.2em 0 0.8em;
    font-size: 0.8rem;
  }
  .u_inner {
    margin: 0 3rem;
  }
  .f_logo p {
    font-size: 1.4rem;
  }
  .f_info {
    font-size: 0.8rem !important;
    line-height: 1.2;
  }
  .f_copy {
    font-size: 0.8rem !important;
  }
}
.swiperModalButton {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: clamp(10px, 3vw, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: clamp(10px, 3vw, 30px);
}

.modal_inner {
  filter: drop-shadow(0px 0px 4px #ddd);
  background: #fff;
  width: 100%;
  margin: 0 auto;
  border-radius: 2px;
  padding: clamp(10px, 2vw, 20px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.modalOpen {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid #ccc;
  padding: clamp(10px, 3vw, 15px);
}

/* 閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
  text-align: center;
}

.modal__close-btn:hover {
  opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #313131;
  line-height: 1;
  width: 2rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}

.lineClose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

p.swiperText {
  margin: 0;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.storeLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.storeLogo li {
  width: calc(33.3333333333% - 45px);
  margin-left: 35px;
  text-indent: unset !important;
}

.storeLogo li a {
  display: block;
  transition: 0.3s all;
  opacity: 1;
}

.storeLogo li a:hover {
  opacity: 0.7;
}

.storeLogo li img {
  width: 100%;
}

.storeLogo li:first-child {
  margin-left: 0;
}

.NewRegistInfoQA {
  display: block !important;
  margin-top: 20px !important;
}

.NewRegistInfoQA dt,
.NewRegistInfoQA dd {
  border: none;
  padding: 0;
  vertical-align: middle;
}

.NewRegistInfoQA dt {
  display: block;
  width: 100%;
  text-align: left;
  font-weight: normal;
  font-size: 16px;
  background-color: transparent;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 20px;
}

.NewRegistInfoQA dt:first-child {
  margin-top: 0;
}

.NewRegistInfoQA dt:before {
  content: 'Q.';
  color: #a80c00;
}

.NewRegistInfoQA dd {
  display: block;
  width: 100%;
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 5px;
  word-break: break-all;
}

.NewRegistInfoQA dd:before {
  content: 'A.';
  font-size: 16px;
}

.page dl {
  display: block;
  margin-top: clamp(20px, 2vw, 30px);
}

.page dl dt,
.page dl dd {
  width: 100%;
  display: block;
  text-align: left;
}

.page dl dt {
  position: relative;
  transition: 0.3s all;
  cursor: pointer;
  padding: 30px 35px 30px 10px;
}

.page dl dd {
  display: none;
}

.page dl dt:before,
.page dl dt:after {
  content: '';
  width: clamp(20px, 2vw, 30px);
  height: clamp(3px, 1vw, 3px);
  position: absolute;
  background-color: #000;
  transition: all 0.3s;
}

.page dl dt:before {
  top: 50%;
  right: clamp(10px, 3vw, 30px);
}

.page dl dt:after {
  top: 50%;
  right: clamp(10px, 3vw, 30px);
  transform: rotate(90deg);
}

/* アコーディオン収縮時 */
.accordion__content {
  display: none;
}

/* アコーディオン展開時 */
.accordion__content.is-open {
  display: block;
}

.page dl.is-active dt:after {
  transform: rotate(180deg);
  opacity: 0;
}

.pageIndexUl li {
  text-indent: 0 !important;
  width: calc(25% - 15px);
  margin-top: 15px;
}

@media (min-width: 769px) {
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (max-width: 768px) {
  .storeLogo li {
    width: calc(33.3333333333% - 20px);
    margin-left: 20px;
  }
  .pageIndexUl li {
    width: 49%;
  }
}
.atentionTxt {
  color: #f00;
}

.pageIndexUl {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pageIndexUl li a {
  display: block;
  text-align: center;
  background: #ccc;
  font-weight: 600;
  color: #525263;
  border: 6px double #fff;
}

.page h2 {
  margin-top: 35px;
} /*# sourceMappingURL=style.css.map */
