@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
  /*line-height: 1.5;*/
  color: #333333;
  background-image: url("../images/common/bg_wafu.jpg");
  background-size: cover;
}
.sp {
    display: none;
}
@media (max-width: 500px) {
    .sp {
        display: block;
    }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
.main_wrapper {
  max-width: 948px;
  margin: 0 auto 100px;
  padding: 0 24px;
}
.top_decoration {
  height: 60px;
  background-image: url("../images/common/bg_red.jpg");
  background-size: cover;
  margin-bottom: 16px;
}
.navigation {
  margin-bottom: 30px;
}
.nav_list {
  display: flex; /* リストを横並びに */
  list-style: none; /* リストスタイルを無しに */
}
.list_item:not(:last-of-type)::after {
  content: ">"; /* 区切り文字 */
  margin: 0 .6em; /* 区切り文字の左右の余白 */
}
.list_item a {
  text-decoration: underline;
}
.cp_description {
  background-color: #fff;
  padding: 30px 45px 40px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 3px 3px 5px rgb(0, 0, 0, 0.3);
}
.cp_description_year {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  background-color: #BE361F;
  padding: 5px;
  margin-bottom: 10px;
}
.cp_description_title {
  font-size: 1.5rem;
  color: #BE361F;
  font-weight: 600;
  margin-bottom: 5px;
}
.cp_description_subtitle {
  font-weight: 600;
  font-size: 1.25rem;
  border-bottom: dotted 4px #BE361F;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.cp_description_detaile {
  font-weight: 600;
  line-height: 1.3rem;
}
.heading {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.heading::before, .heading::after {
  content: '';
  height: 3px;
  background-color: #BE361F;
  flex-grow: 1;
}
.heading h3 {
  position: relative;
  font-size: 1.625rem;
  font-weight: 600;
  margin: 0 20px;
}
.heading h3::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #BE361F;
  position: absolute;
  left: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.heading h3::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #BE361F;
  position: absolute;
  right: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
@media(max-width: 768px) {
  .heading {
    margin-bottom: 36px;
  }
  .heading h3::before {
    width: 16px;
    height: 16px;
  }
  .heading h3::after {
    width: 16px;
    height: 16px;
  }
}
@media(max-width: 600px) {
  .top_decoration {
    height: 30px;
  }
  .cp_description {
    padding: 20px 20px 30px;
    margin-bottom: 30px;
  }
  .cp_description_year {
    padding: 5px;
    margin-bottom: 10px;
  }
  .cp_description_title {
    font-size: 1.25rem;
    margin-bottom: 5px;
  }
  .cp_description_subtitle {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .cp_description_detaile {
    font-size: .875rem;
    font-weight: 400;
  }
  .heading h3 {
    font-size: 1.25rem;
  }
}
.winner_content {
  margin-bottom: 90px;
}
.winner_parent {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.winner_award_content {
  width: 48%;
  margin-bottom: 15px;
}
.winner_award_image {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.winner_award_image:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.winner_award_image img {
  width: 100%;
}
@media (min-width: 800px) {
  .winner_award_content {
    width: 32%;
  }
  .winner_parent::after {
    content: "";
    width: 32%;
    display: block;
  }
}
.other_flex {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  margin-bottom: 30px;
}
.other_year_image {
  max-width: 320px;
  position: relative;
}
.other_year_image img {
  width: 100%;
}
.other_year_image p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.625rem;
  z-index: 101;
}
.other_year_image p::after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.other_year_image:hover {
  opacity: 0.8;
  transition: 0.3s;
}
@media(max-width: 600px) {
  .main_wrapper {
    margin: 0 auto 50px;
  }
  .navigation {
    margin-bottom: 20px;
  }
  .winner_content {
    margin-bottom: 50px;
  }
  .other_flex {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }
  .other_year_image {
    display: inline-block;
    max-width: 90%;
    margin-bottom: 20px;
  }
}
/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 999; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 700px;
  padding: 20px 30px 30px;
  background-color: #fff;
  height: auto;
  max-height: 80%;
  overflow: auto;
}
.modalContents {
  display: flex;
}
.modal_image_content {
  width: 50%;
  flex-shrink: 0;
}
.modal_image_content p {
  margin: 0 0 10px;
}
.modal_image {
  margin-right: 20px;
}
.modal_image img {
  width: 100%;
}
.modal_text {
  font-size: 14px;
}
.modal_text p {
  margin: 30px 0 0;
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  font-size: 30px;
}
/* 以下ボタンスタイル */
#openModal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 700px) {
  .modalWrapper {
    width: 80%;
    padding: 20px 18px;
    height: 80%;
  }
  .modalContents {
    display: block;
  }
  .modal_image_content {
    width: 100%;
  }
    .modal_image {
  margin-right: 0;
}
}
/*もっと見るボタン設定*/
.winner_parent .winner_award_content.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}
.more {
  text-align: center;
  margin-top: 20px;
}
.more button {
  background-color: #BEA91F;
  border: none;
  cursor: pointer;
  outline: none;
  color: #fff;
  font-weight: 600;
  padding: 0;
  line-height: 40px;
  width: 180px;
  box-shadow: 3px 3px 5px rgb(0, 0, 0, 0.3); /*水平方向の距離　垂直方向の距離　影のぼかし　影の色　不透明度*/
  -webkit-transition: all .2s;
  transition: all .2s;
}
.more button:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
}
.footer {
  background-image: url("../images/common/bg_red.jpg");
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 40px 0 20px;
}
.footer_inner {
  padding: 0 24px;
}
.footer_logo {
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  max-width: 300px;
  margin-bottom: 32px;
}
.footer_logo img {
  width: 100%;
}
.footer p {
  font-weight: 400;
  font-size: .875rem;
  line-height: 1.2rem;
}
@media(max-width: 768px) {
  .footer {
    padding: 30px 0 10px;
  }
  .footer_logo {
    max-width: 270px;
  }
  .footer p {
    font-size: .75rem;
    line-height: 1.2rem;
  }
}