.header {
  top: 0;
}

body {
  padding-top: 110px;
}

.breadcrumb {
  width: 95%;
  margin: 0 auto;
  padding: 6px 0;
  font-size: 12px;
}
.breadcrumb span {
  color: #999;
}

.pagetitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140px;
  margin-bottom: 40px;
  background: url("/calendar/img/bg_title.png") no-repeat center center/cover;
}
.pagetitle h1 {
  font-size: 35px;
  font-weight: bold;
  color: #333;
}

.list-index {
  max-width: 800px;
  width: 90%;
  margin: 0 auto 120px;
}
.list-index__txt {
  margin-bottom: 40px;
  text-align: center;
}
.list-index ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.list-index ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px 15px 35px;
  min-height: 80px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}
.list-index ul li a:before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg) translateY(-50%);
}
.list-index ul li a:hover {
  background-color: #f3e2b8;
  text-decoration: none;
}

.table-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 120px;
}
.table-wrap table {
  border-collapse: collapse;
}
.table-wrap table thead th {
  width: 11.11%;
  background-color: #f3e2b8;
}
.table-wrap table thead th a {
  text-decoration: underline;
}
.table-wrap table th, .table-wrap table td {
  padding: 10px 5px;
  border: 1px solid #ccc;
  font-size: 15px;
}
.table-wrap table tbody tr:nth-of-type(2n) td {
  background-color: #f9f9f9;
}
.table-wrap table tbody td {
  text-align: center;
}
.table-wrap table tbody td p {
  line-height: 1.5;
}
.table-wrap table tbody td p:nth-of-type(3) {
  font-weight: bold;
}

.fortune {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 120px;
}
.fortune__ttl {
  margin-bottom: 40px;
  font-size: 30px;
  text-align: center;
}
.fortune__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 2%;
}
.fortune__in .box {
  width: 32%;
  padding: 20px;
  border: 1px solid #000;
}
.fortune__in .box__catch {
  font-weight: bold;
  text-align: center;
}
.fortune__in .box__ttl {
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.fortune__in .box__txt {
  margin-bottom: 5px;
}
.fortune__in .box__link a {
  display: block;
  font-size: 15px;
  text-align: right;
  text-decoration: underline;
}
.fortune__in .box:nth-of-type(1) {
  border-color: #4d6f9e;
  background-image: linear-gradient(#e0eaf8, #fff 30%);
}
.fortune__in .box:nth-of-type(1) .box__ttl {
  color: #4d6f9e;
}
.fortune__in .box:nth-of-type(2) {
  border-color: #999;
  background-image: linear-gradient(#eee, #fff 30%);
}
.fortune__in .box:nth-of-type(2) .box__ttl {
  color: #888;
}
.fortune__in .box:nth-of-type(3) {
  border-color: #448a99;
  background-image: linear-gradient(#d8f2f8, #fff 30%);
}
.fortune__in .box:nth-of-type(3) .box__ttl {
  color: #448a99;
}
.fortune__in .box:nth-of-type(4) {
  border-color: #63834a;
  background-image: linear-gradient(#f6faf2, #fff 30%);
}
.fortune__in .box:nth-of-type(4) .box__ttl {
  color: #63834a;
}
.fortune__in .box:nth-of-type(5) {
  border-color: #8e863e;
  background-image: linear-gradient(#f4f3e8, #fff 30%);
}
.fortune__in .box:nth-of-type(5) .box__ttl {
  color: #8e863e;
}
.fortune__in .box:nth-of-type(6) {
  border-color: #8a6047;
  background-image: linear-gradient(#f4f3e8, #fff 30%);
}
.fortune__in .box:nth-of-type(6) .box__ttl {
  color: #8a6047;
}
.fortune__in .box:nth-of-type(7) {
  border-color: #aa4c42;
  background-image: linear-gradient(#f2e9e4, #fff 30%);
}
.fortune__in .box:nth-of-type(7) .box__ttl {
  color: #aa4c42;
}
.fortune__in .box:nth-of-type(8) {
  border-color: #b85d46;
  background-image: linear-gradient(#f5ebe9, #fff 30%);
}
.fortune__in .box:nth-of-type(8) .box__ttl {
  color: #b85d46;
}
.fortune__in .box:nth-of-type(9) {
  border-color: #97528b;
  background-image: linear-gradient(#f3e9f1, #fff 30%);
}
.fortune__in .box:nth-of-type(9) .box__ttl {
  color: #97528b;
}

/*===========================================================================*/
/*  media quary:767px  */
/*===========================================================================*/
@media screen and (max-width: 767px) {
  body {
    padding-top: 0;
  }
  #spHeader {
    border-bottom: 1px solid #eee;
  }
  .breadcrumb {
    font-size: 10px;
  }
  .pagetitle {
    height: 100px;
  }
  .pagetitle__sub {
    font-size: 14px;
  }
  .pagetitle h1 {
    font-size: 24px;
    line-height: 1.5;
  }
  .list-index__txt {
    margin-bottom: 30px;
  }
  .list-index ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  .list-index ul li {
    width: 100%;
    max-width: 300px;
  }
  .list-index ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .table-wrap {
    overflow-x: scroll;
    padding-left: 15px;
    padding-right: 15px;
  }
  .table-wrap table {
    width: 960px;
    table-layout: fixed;
  }
  .table-wrap table th, .table-wrap table td {
    padding: 5px 2px;
    font-size: 13px;
  }
  .table-wrap table tbody tr:nth-of-type(2n) td {
    background-color: #f9f9f9;
  }
  .table-wrap table tbody td {
    text-align: center;
  }
  .table-wrap table tbody td p {
    line-height: 1.5;
  }
  .table-wrap table tbody td p:nth-of-type(3) {
    font-weight: bold;
  }
  .fortune__ttl {
    font-size: 24px;
  }
  .fortune__in {
    gap: 20px 4%;
  }
  .fortune__in .box {
    width: 48%;
    padding: 20px 13px;
  }
  .fortune__in .box__ttl {
    font-size: 20px;
  }
  .fortune__in .box__catch {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .fortune__in .box__catch br {
    display: none;
  }
  .fortune__in .box__txt {
    font-size: 13px;
    line-height: 1.6;
  }
  .fortune__in .box__link a {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */