@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;800&display=swap');

/* TOPへスクロールボタン */
.back-to-top {
  margin: 0 14px 14px auto;
  display: none;
  width: 48px;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .back-to-top {
    display: block;
  }
}

/*追跡バナー追加*/
.sec-bnr-wrap {
  position: fixed;
  bottom: 0px;
  right: 0;
  z-index: 999;
  font-family: "Noto Serif JP", serif;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  max-width: 222px;
}
.sec-bnr {
  position: relative;
}
.fx-bnr {
  padding: 10px 10px 14px;
  color: #FFF;
  background: #2a476a;
}
.fx-bnr.green {
  background: #628a4e;
}
.fx-bnr.blue-green {
  background: #0098a3;
}
.fx-bnr > a.mt0 {
  margin-top: 0;
}
.fx-bnr.brown {
  background-color: #7f6a52;
}
.fx-bnr.brown > a {
  color: #7f6a52;
}
.fx-bnr > p {
  font-size: 14px;
  text-align: center;
}
.fx-bnr > a {
  display: block;
  padding: 5px 10px;
  margin-top: 10px;
  font-size: 13px;
  color: #2a476a;
  background: #fff;
  border-radius: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-bnr-wrap {  
    left: 0;
    right: auto;
    bottom: 0;
    width: 100%;
    text-align: center;
    max-width: unset;
  }
  .fx-bnr {
    padding: 8px 16px;
  }
  .fx-bnr > p {
    font-size: 13px;
  }
  .fx-bnr > a {
    padding: 4px 10px;
    margin-top: 4px;
    font-size: 10px;
  }
}

.close {
  display: flex;
  width: 19px;
  height: 19px;
  padding: 5px 1px 2px;
  margin: 0 2px -22px auto;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
}
.close:hover {
  color: #fff;
  background: #000;
}

/*2月バナー変更*/
.sec-bnr {
  width: 100%;
}
.sec-bnr.sec-bnr2 .fx-bnr {
  background: #f4b642;
}
.sec-bnr.sec-bnr2 .fx-bnr > a {
  color: #f4b642;
  font-size: 18px;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .sec-bnr {
    max-width: 100%;
  }
  .sec-bnr.sec-bnr2 .fx-bnr > a {
    font-size: 14px;
  }
  .sec-bnr--list {
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
  }
  .sec-bnr--list .fx-bnr--main {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: linear-gradient(to right, #00135f 50%, #2a476a 50%);
  }
  .sec-bnr--list .fx-bnr--main > p {
    margin: auto;
    height: fit-content;
  }
  .sec-bnr--list .fx-bnr--main > a {
    margin-top: 0;
  }
}
.sec-bnr.sec-bnr2.bottom0 {
  bottom: 0;
}