@charset "utf-8";

/*=== メインレイアウト ===*/
.main-section {
  padding: 70px 30px;
}
.main-section > *:first-child {
  margin-top: 0;
}
.main-cont {
  margin-top: 0;
}
.main-ttl {
  font-size: 36px;
  text-align: center;
}
.main-ttl .type-highlight {
  color: #e22331;
}
.main-subttl {
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  line-height: 1.4;
}


/*=== 遷移パターン ===*/
.transition {
  padding: 0 20px;
  text-align: center;
}
.transition-item {
  max-width: 500px;
  margin: 50px auto 0;
}
a.transition-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 10px 45px;
  border: 2px solid #333;
  color: #333;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2;
  text-decoration: none;
  background-color: #fff;
  border-radius: 50px;
}
a.transition-btn:visited {
  color: #333;
}
a.transition-btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
a.transition-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 20px;
  background-color: #333;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
}


/*=== メインビジュアル ===*/
.mainvisual {
  margin: 20px auto;
}
.mainvisual-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}


/*=== 表彰 ===*/
.award .main-section {
  background-color: #fffcf2;
}
.award-wrap {
  margin-top: 90px;
  border: 4px solid #f7d95b;
  background-color: #fff;
  border-radius: 10px;
}
.award-wrap.pattern-second {
  border-color: #c8c8c8;
}
.award-wrap.pattern-third {
  border-color: #e4a97f;
}
.award-wrap.pattern-nice {
  border-color: #ffd2d2;
}
.award-cont {
  padding: 0 30px 50px;
  text-align: center;
}
.award-icon {
  max-width: 110px;
  margin: -56px auto 0;
}
.award-gift {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  background-color: #c6a82c;
  border-radius: 10px;
}
.pattern-second .award-gift {
  background-color: #7c7c7c;
}
.pattern-third .award-gift {
  background-color: #8e6447;
}
.pattern-nice .award-gift {
  background-color: #dc3514;
}
.award-name {
  margin-top: 20px;
  font-weight: bold;
  font-size: 24px;
}
.pattern-nice .award-name {
  margin-top: 0;
  font-size: 20px;
}
.award-txt {
  margin-top: 30px;
  font-weight: bold;
  font-size: 30px;
}
.award-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-top: 50px;
}
.award-item {
  width: calc((100% - 20px) / 2);
  padding: 40px 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
}


/*=== 票 ===*/
.ballot {
  margin-top: 50px;
}
.ballot-txt {
  display: inline-block;
  position: relative;
  padding-left: 58px;
  border-bottom: 4px solid #e22331;
  font-weight: bold;
  font-size: 24px;
}
.ballot-txt::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 48px;
  height: 35px;
  background: url(images/ballot_ic_001.png) no-repeat 0 0 / 100% auto;
}
.ballot-txt .type-accent {
  color: #e22331;
  font-size: 36px;
  line-height: 1;
}


/*=== コメント ===*/
.comment .main-section {
  background-color: #f7d95b;
}
.pattern-second .comment .main-section {
  background-color: #c8c8c8;
}
.pattern-third .comment .main-section {
  background-color: #e4a97f;
}
.comment-list {
  margin-top: 40px;
}
.comment-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.comment-item:not(:first-child) {
  margin-top: 50px;
}
.comment-item:nth-child(even) {
  flex-direction: row-reverse;
}
.comment-cont {
  display: flex;
  align-items: center;
  position: relative;
  flex-grow: 1;
  min-height: 120px;
  padding: 40px 30px;
  font-size: 18px;
  background-color: #fff;
  border-radius: 100px;
}
.comment-cont::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -15px;
  width: 16px;
  height: 20px;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
}
.comment-item:nth-child(even) .comment-cont::after {
  right: auto;
  left: -15px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.comment-icon {
  flex-shrink: 0;
}


/*=== スタッフより ===*/
.staff {
  margin-top: 50px;
}
.staff-ttl {
  display: inline-block;
  padding: 3px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  background-color: #333;
  border-radius: 10px 10px 0 0;
}
.staff-cont {
  padding: 40px 30px;
  border: 2px solid #333;
  font-size: 18px;
  background-color: #fff;
  border-radius: 0 10px 10px 10px;
}


/*=== ご参加ありがとうございました ===*/
.thanks {
  margin-top: 50px;
  text-align: center;
}
.thanks .main-section {
  background-color: #fffcf2;
}
.thanks .main-ttl {
  color: #e92228;
}
.thanks-thumb {
  margin-top: 40px;
}


@media print, screen and (max-width: 768px) {
  /*=== メインレイアウト ===*/
  .main-section {
    padding: 30px 15px 35px;
  }
  .main-ttl {
    font-size: 22px;
  }
  .main-subttl {
    font-size: 20px;
  }
  /*=== 遷移パターン ===*/
  .transition {
    margin-top: 40px;
    padding: 0 15px;
  }
  .transition-item {
    margin-top: 25px;
  }
  a.transition-link {
    font-size: 16px;
  }
  a.transition-btn {
    min-height: 48px;
    padding: 10px 35px;
    font-size: 18px;
  }
  a.transition-btn::after {
    right: 15px;
    width: 10px;
    height: 15px;
  }
  /*=== メインビジュアル ===*/
  .mainvisual {
    margin-top: 0;
  }
  .mainvisual-main {
    max-width: 550px;
    padding: 0 10px;
  }
  /*=== 表彰 ===*/
  .award-wrap {
    margin-top: 80px;
    border-width: 2px;
  }
  .award-cont {
    padding: 0 15px 35px;
  }
  .award-icon {
    max-width: 70px;
    margin-top: -47px;
  }
  .award-gift {
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 18px;
  }
  .award-name {
    font-size: 18px;
  }
  .pattern-nice .award-name {
    font-size: 18px;
  }
  .award-txt {
    margin-top: 25px;
    font-size: 18px;
  }
  .award-list {
    display: block;
    margin-top: 30px;
  }
  .award-item {
    width: 100%;
    margin-top: 15px;
    padding: 25px 15px;
    border-width: 1px;
  }
  /*=== 票 ===*/
  .ballot {
    margin-top: 30px;
  }
  .ballot-txt {
    padding: 0 0 5px 42px;
    border-width: 2px;
    font-size: 18px;
  }
  .ballot-txt::before {
    top: 0;
    width: 32px;
    height: 23px;
  }
  .ballot-txt .type-accent {
    font-size: 22px;
  }
  /*=== コメント ===*/
  .comment-list {
    margin-top: 55px;
  }
  .comment-item {
    display: block;
    position: relative;
  }
  .comment-item:not(:first-child) {
    margin-top: 55px;
  }
  .comment-cont {
    display: block;
    min-height: auto;
    padding: 30px 15px 20px;
    font-size: 14px;
    border-radius: 10px;
  }
  .comment-cont::after {
    content: none;
  }
  .comment-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    width: 60px;
    transform: translateX(-50%);
  }
  /*=== スタッフより ===*/
  .staff {
    margin-top: 30px;
  }
  .staff-ttl {
    padding: 5px 15px;
    font-size: 16px;
  }
  .staff-cont {
    padding: 20px 15px;
    border-width: 1px;
    font-size: 14px;
  }
  /*=== ご参加ありがとうございました ===*/
  .thanks {
    margin-top: 15px;
  }
  .thanks-thumb {
    max-width: 110px;
    margin: 20px auto 0;
  }
}
