/* =========================
  Header / Footer
========================= */
.header {
  background: #fff;
}
.header__container{
  width:100%;
  border-bottom:#ddd solid 1px;
  padding: 5px 16px;
}
.header__inner{
  max-width: 1140px;
  display: flex;
  justify-content:space-between;
  align-items: center;
  margin:0 auto;
}

/*headerロゴエリア*/
.header__logo {
  margin: 0;
  font-size: 0px;
  max-width: 900px;
}
.header__logo h1{
  margin:0;
}
.header__logo img{
  max-width: 200px;
}
.header__content{
  display: flex;
  text-align: center;
  align-items: center;
}
.header__content img{
  vertical-align: middle;
  width: 20px;
    height: 20px;
}
.header__content a{
  text-decoration: none;
  font-size: 9px;
  color: #333;
}
.header__btn{
  display: block;
  min-width: 35px;
}
.header__news{
  position: relative;
}
.header__badge{
  position: absolute;
  top:-1px;
  right: 0;
  background-color: #dd2525;
  color: #fff;
  border-radius: 10px;
  width: 15px;
}
.header__txt {
display: block;
    font-size: 10px;
    bottom: 5px;
}

/*header検索エリア*/
.header__search{
  padding:5px 15px;
}

.search__label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  top: 0px !important;
  left: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
     before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
  visibility: visible !important;
}

.search__field {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.search__input {
  width: 100%;
  padding: 5px 20px 5px 16px;
  font-size: 14px;
  background-color: #f3f4f6;
  border-radius: 15px;
  border: none;

}

.search__input:focus {
  outline: none;
  border-color: #0077cc;
}

.search__button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.search__icon {
  width: 20px;
  height: 20px;
  display: block;
}

/*headerユーザー情報エリア*/
.header__user{
  background-color: #f3f4f6;
}
.header__userInfo{
  max-width: 500px;
  margin: 5px auto 10px;
}
.header__userName{
  text-align: center;
  padding: 10px 0;
  border-bottom:1px solid #fff;
}
.user-name{
  font-size: 1.1em;
  font-weight: bold;
}
.userRank{
  display: flex;
  font-size: 1rem;
}
.userRank-area{
  display: flex;
  gap: 15px;
  padding: 10px 0 0;
  align-items:center
}
.userRank-ttl{
  background-color: #fff;
  width: 120px;
  font-size: .85em;
  font-weight: bold;
  padding: 3px;
  text-align: center;
  border-left: 3px solid #00a0dc;
}
.userRank-ttl span{  
  display: inline-block;
vertical-align: middle;
line-height: 1;
}
.userRank{
  font-weight: bold;
}

.userPoint-area{
  display: flex;
  gap: 15px;
  padding: 10px 0 0;
  align-items:center
}
.userPoint-ttl{
  background-color: #fff;
  width: 120px;
  font-size: .85em;
  font-weight: bold;
  padding: 3px;
  text-align: center;
  border-left: 3px solid #00a0dc;
}
.userPoint-ttl span{  
  display: inline-block;
vertical-align: middle;
line-height: 1;
}
.userPoint{
  font-weight: bold;
  display: flex;
      line-height: 1.3;
}
@media screen and (max-width: 768px){
  .userRank-ttl{
  width: 90px;
  }
  .userPoint-ttl{
  width: 90px;
  }
.userPoint{
  flex-direction: column; 
}
}

.pointlimit{
  font-size: .8em;
  font-weight: normal;
  display: flex;
  align-items: flex-end;
}

/*ポイント説明 テーブル*/
table{
  width: 100%;
  border-collapse: collapse;
}
table th,table td{
  padding: 3px 6px;
  border: none;
}
thead th{
  background-color: #669caf;
  color: #fff;
  font-size: .9em;
  font-weight: bold;
  text-align: center;
  border:#fff 1px solid;
}
tbody th{
  background-color: #bbdae6;
  text-align: left;
  border-bottom: #669caf solid 1px;
  border-right: #669caf solid 1px;
}
tbody td{
    border-bottom: #669caf solid 1px;
    width: 27%;
    text-align: center;
}

/*ヘッダー ナビゲーション*/
.header__nav {
  max-width: 800px;
  margin: 0 auto;
}
.header__navWrap{
  padding: 5px 0;
}

.mainMenu {
  display: flex;
}

.mainMenu li {
  width: calc(100% / 4);
  text-align: center;
  position: relative; 
  font-size: .9em;
}

.mainMenu a {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-decoration: none;
  color: #2f2725;
  font-weight: bold;
}

.mainMenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px; 
  width: 100%;
  height: 2px;
  background: #00a0dc;
  opacity: 0;
}

.mainMenu a:hover {
  color: #00a0dc;
}

.mainMenu a:hover::after {
  opacity: 1;
}

.mainMenu li.is-active a {
  color: #00a0dc;
}
.mainMenu li.is-active a::after {
  opacity: 1;
}

/* =========================
  FOOTER
========================= */
.footer {
  color: #fff;
  background-color: #2f2725;
}

.footer__container{
  max-width: 1140px;
  margin: auto;
  text-align: left;
  padding: 20px 16px 30px;
}
.footer__title{
  font-size: 1.2em;
  font-weight: bold;
}

.footerMenu a{
  color:#fff;
  text-decoration: none;
  display: block;
  padding-left: 16px;
  position: relative;
}

.footerMenu a {
  position: relative;
  padding-left: 15px; 
  display: block;
  text-decoration: none;
}

.footerMenu a::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.footerMenu a:hover {
  opacity: 0.7;
}

/* footer menu */
.footerMenu {
    max-width: 1140px;
  display: grid;
  gap: 2px 12px;
  margin-top: 12px;
}

@media screen and (min-width: 769px) {
  .footerMenu {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .footerMenu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 450px) {
  .footerMenu {
    grid-template-columns: repeat(2, 1fr);
  }
}

.copyright__container{
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 20px 16px;
  background-color: #fff;
  color:#595757;
  font-size: .8rem;
}

/* =========================
  Section
========================= */
.section--menu {
  background: #fff;
  padding: 16px 0;
  border-radius: 4px;
}
.section__inner{
  max-width: 800px;
  margin: auto;
  padding:20px 16px;
}
.section__title{
margin-bottom:12px;
}