@charset "UTF-8";
/*=========== お知らせ ===========*/
.news__wrap { /*news__wrap*/
  max-width: 1024px;
  margin: 0 auto;
}
.news__article { /*news__article*/
  padding-top: 50px;
  margin: -50px 0 50px;
}
@media (min-width: 600px) {
  .news__article {
    margin: -50px 0 80px;
  }
}
.news__text { /*news__text*/
  margin-bottom: 30px;
  padding: 0 8px;
}
@media (min-width: 600px) {
  .news__text {
    margin-bottom: 50px;
    font-size: 1.6rem;
  }
}
.news__text h4 {
  margin-bottom: 5px;
}
.news__text p:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .news__text p:not(:last-child) {
    margin-bottom: 20px;
  }
}
.news__text ul {
  margin-bottom: 20px;
}
.news__text ul li:before {
  content: "・";
}
.news__text a {
  color: #2dd2d2;
  font-weight: bold;
  text-decoration: underline;
}
.news__text a:hover {
  text-decoration: none;
}
.news__heading { /*news__heading*/
  display: flex;
  margin-bottom: 20px;
  padding: 10px 15px;
  background: #f5f5f5;
}
@media (max-width: 599px) {
  .news__heading {
    font-size: 1.6rem;
  }
}
@media (min-width: 600px) {
  .news__heading {
    font-size: 2.2rem;
  }
}
.news__date {
  margin: 0 0 20px 10px;
  font-weight: normal;
  color: #999;
}
.news__date:before {
  content: "-";
}
@media (max-width: 599px) {
  .news__date {
    font-size: 1.2rem;
  }
}
@media (min-width: 600px) {
  .news__date {
    flex-shrink: 0;
    font-size: 1.4rem;
  }
}

/*　文字装飾　*/
.resolved {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.emphasis {
  font-weight: bold;
}

.red {
  color: #df211c;
}

/*=========== コピーボタン ===========*/
.copy-msg {
  color: #fff;
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: block;
  padding: 11px 0 11px;
  background: #f57f7f;
  cursor: pointer;
}
@media (min-width: 600px) {
  .copy-msg {
    font-size: 1.5rem;
    padding: 10px 0;
    width: 380px;
  }
}

#msg_success {
  display: none;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  width: 200px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 15px;
}
@media (min-width: 600px) {
  #msg_success {
    top: 30px;
    padding: 10px 20px;
  }
}

#msg_error {
  display: none;
  color: #fff;
  text-align: center;
  background: rgba(146, 10, 10, 0.8);
  width: 200px;
  border-radius: 5px;
  position: fixed;
  top: 20px;
  left: 50%;
  margin-left: -100px;
  padding: 5px 15px;
}
@media (min-width: 600px) {
  #msg_error {
    top: 30px;
    padding: 10px 20px;
  }
}

#vacation-web .news__vacation__table td:nth-child(1) {
  width: 28%;
}
#vacation-web .news__vacation__table td:nth-child(n+2) {
  width: 24%;
}

#vacation-shop .news__vacation__table td:nth-child(1) {
  width: 30%;
}
#vacation-shop .news__vacation__table td:nth-child(n+2) {
  width: 35%;
}

.news__vacation__table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #2e2e2e;
  border-collapse: collapse;
}
@media (min-width: 600px) {
  .news__vacation__table {
    width: 500px;
  }
}
.news__vacation__table tr:nth-child(1) td {
  background: #ccc;
  font-size: 1.3rem;
}
.news__vacation__table td {
  padding: 5px;
  text-align: center;
  border: 1px solid #2e2e2e;
  font-weight: bold;
}

.vacation__holiday {
  background: #FDF4EF;
}