@charset "UTF-8";

/* 1_共通 */
:root {
  --cp-container-width: 1100px;
  --cp-font-title: "Noto Sans JP", sans-serif;
  --cp-color-main: #007a88;
  --cp-color-light-yellow: #FEF6E4;
  --cp-color-white: #fff;
  --cp-color-beige: #eeeeee;
  --cp-shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.1);
  --cp-shadow-pop: 0 4px 8px rgba(0, 0, 0, 0.2);
  --cp-transition-ease: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-width: inherit;
}

.cp-wrap {
  color: #21081d;
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}

.cp-wrap * {
  box-sizing: border-box;
}

.cp-container {
  max-width: var(--cp-container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-inline: 4%;
}

.cp-wrap h1 {
  margin: 0;
}

.cp-wrap h2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='612' height='72' viewBox='0 0 612 72'%3E%3Cpath d='M0,0l17.105,37.485L0,72h612l-17.41-34.516,17.41-37.485Z' fill='%23a72324'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px !important;
  width: 100% !important;
  max-width: 612px;
  height: 50px;
  aspect-ratio: 612 / 72;
  padding: 0 40px !important;
}

.cp-wrap h2 span {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .1em;
}

.f-white {
  color: #fff;
}

.f-red {
  color: #a72324;
}

.f-bold {
  font-weight: bold;
}

.cp-icon-window {
  color: inherit;
  height: 1em;
  margin: -0.15em 0.4rem auto;
  transition: opacity 0.2s;
  vertical-align: middle;
  width: 1em;
}

.cp-section-inner {
  margin: 0 auto;
  max-width: var(--cp-container-width);
  padding: 60px 4%;
  width: 100%;
}

.display-pc {
  display: none;
}

.display-sp {
  display: block;
}

.bg-light-green {
  background: #FEF6E4;
}

.bg-green {
  background: #007a88;
}

.mb-20 {
  margin-bottom: 20px;
}

.btn-apply {
  background-color: #e66c00 !important;
  color: #fff !important;
  margin-bottom: 1rem;
  margin-inline: auto;
  text-decoration: none !important;
  width: 100%;
  max-width: 400px;
  height: 50px;
  display: grid;
  place-content: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 2px;
  letter-spacing: .05em;
}

.apply-for-campaign {
  padding: 0 4%;
}

.cp-wrap a:hover {
  opacity: 0.8;
}

@media (min-width: 641px) {
  .cp-wrap h2 span {
    font-size: 26px;
  }

  .display-pc {
    display: block;
  }

  .display-sp {
    display: none;
  }
}

@media (min-width: 1191px) {
  .cp-section-inner {
    padding: 60px 0;
  }
}

/* 2_ヘッダー */
.cp-header {
  margin: 0;
  text-align: center;
}

.cp-header-kv-inner {
  width: 100%;
  background-image: url(../images/dot.png);
  background-size: 50px;
}

.cp-header-wrap img {
  height: auto;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.cp-period {
  background: #007a88;
  height: 50px;
}

.img-repeat {
  background-image: url(../images/bravo_arms.png);
  background-repeat: repeat-x;
  background-size: contain;
  height: 50px;
  margin-top: 10px;
}

.cp-nav {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.cp-nav li {
  background-color: #007a88;
  border-bottom: 2px solid #fff;
  transition: background-color 0.3s, color 0.3s;
}

.cp-nav li:last-child {
  border-bottom: none;
}

.cp-nav li a {
  align-items: center;
  color: #fff !important;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  justify-content: center;
  min-height: 50px;
  text-decoration: none !important;
  width: 100%;
  padding: 10px;
}

.cp-nav li:hover {
  background-color: #fff;
}

.cp-nav li:hover a {
  color: #007a88 !important;
}

@media (min-width: 641px) {
  .cp-period-text {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
    padding-top: 9px;
  }

  .cp-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .cp-nav li:nth-child(odd) {
    border-right: 2px solid #fff;
  }
}

@media (min-width: 1025px) {
  .cp-header-wrap img {
    max-width: var(--cp-container-width);
  }

  .cp-period-text {
    font-size: 28px;
    padding-top: 3px;
  }

  .cp-nav {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
    margin-inline: auto;
  }

  .cp-nav li a {
    font-size: 1.2rem;
  }

  .cp-nav li {
    border-bottom: none;
  }

  .cp-nav li:nth-child(even) {
    border-right: 2px solid #fff;
  }

  .cp-nav li:nth-child(1) {
    border-left: 2px solid #fff;
  }
}

/* 3_CHOICE年間大賞とは */
.about-text {
  font-size: 16px;
  line-height: 1.6;
}

.about-text a {
  color: #a72324 !important;
  text-decoration: underline !important;
}

.about-notes {
  font-size: 16px;
  margin-top: 10px;
}

.about-pic {
  display: block;
  margin: 40px auto 0;
  max-width: 320px;
  width: 100%;
}

@media (min-width: 641px) {
  .about-text {
    font-size: 18px;
    text-align: center;
  }

  .about-notes {
    text-align: center;
  }
}

/* 4_プレゼント内容 */
#nav-gift {
  background: #FEF6E4;
}

.gift-pic-wrap {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}


@media (min-width: 641px) {
  .gift-pic-wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    margin: 60px auto;
  }

  .gift-pic {
    width: 48%;
  }
}

/* 5_ノミネート作品 */
.month-nav-container {
  margin: 30px auto;
}

.js-scrollable {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.month-nav-inner {
  display: flex;
  gap: 15px;
  width: max-content;
  padding: 10px;
}

.month-nav-item {
  width: 150px;
  flex-shrink: 0;
}

.month-nav-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.month-nav-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.month-nav-item span {
  display: block;
  text-align: center;
  font-weight: bold;
  margin-bottom: 5px;
}

@media (min-width: 1025px) {
  .js-scrollable {
    overflow-x: visible;
  }

  .month-nav-inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px 15px;
  }

  .month-nav-item {
    width: 100%;
  }

  .scroll-hint-icon {
    display: none !important;
  }

  .js-scrollable.is-scrollable::after,
  .js-scrollable.is-scrollable::before {
    display: none !important;
  }
}

.nominated-work-box-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.nominated-work-box {
  background-color: #fff;
  border: 2.6px solid #007a88;
  border-radius: 10px;
  padding: 20px;
  max-width: 100%;
  overflow: hidden;
}

.nominated-work a {
  text-decoration: none !important;
  color: inherit;
}

.nominated-head-ttl {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 8px;
}

.nominated-head-vote {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='612' height='72' viewBox='0 0 612 72'%3E%3Cpath d='M0,0l17.105,37.485L0,72h612l-17.41-34.516,17.41-37.485Z' fill='%23007a88'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  aspect-ratio: 612 / 72;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto 20px;
  padding: 0 16px;
  width: 100%;
  flex-wrap: wrap;
  text-align: center;
}

.nominated-head-vote::after {
  content: url(../images/ico_bravo.svg);
  margin-left: 8px;
  width: 24px;
}

.nominated-work img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.nominated-work-ttl {
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  color: #21081d !important;
}

.nominated-author-name {
  font-size: 20px;
  margin-block: 4px 15px;
  text-align: center;

}

.nominated-author-name-link {
  color: #21081d !important;
  text-decoration: none !important;
}

.campaign-gallery-camera-lens-wrap {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.campaign-gallery-camera,
.campaign-gallery-lens {
  font-size: 16px;
  color: #555;
  margin: 2px 0;
  display: flex;
  align-items: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.campaign-gallery-camera::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_camera.svg) no-repeat center/contain;
  margin-right: 8px;
}

.campaign-gallery-lens::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_lens.svg) no-repeat center/contain;
  margin-right: 8px;
}

.nominated-comment-ttl {
  font-size: 18px;
  font-weight: bold;
  border-left: 4px solid #007a88;
  padding-left: 10px;
  margin: 20px 0 10px;
}

.nominated-comment-wrap {
  gap: 12px;
  background: #FEF6E4;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.nominated-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nominated-comment {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.bravo_btn_wrap {
  margin-top: 20px;
  text-align: center;
  transition: transform .3s ease
}

.bravo_btn_wrap a {
  text-decoration: none !important;
}

.bravo_btn_wrap :hover {
  opacity: 0.8;
}

.bravo_btn_wrap img {
  max-width: 240px;
  width: 100%;
}

.bravo,
.finish-bravo-btn>div {
  width: inherit;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
  font-weight: 700;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.click-bravo-btn>div {
  background: var(--cp-color-main);
  color: var(--cp-color-light-yellow) !important
}

.click-bravo-btn-one>div {
  background: var(--cp-color-light-yellow);
  color: var(--cp-color-main);
  border: 2px solid var(--cp-color-main);
}

.click-bravo-btn-two>div {
  background: #BCE2D7;
  color: #21081d;
  border: 2px solid var(--cp-color-main);
}

.finish-bravo-btn>div {
  background: #888;
  color: var(--cp-color-white)
}

@media (min-width: 641px) {
  .nominated-head-vote {
    font-size: 1.1rem;
    aspect-ratio: 612 / 45;
  }

  .nominated-comment-wrap {
    display: flex;
  }

  .nominated-work-box {
    border: 3.3px solid #007a88;
  }
}

@media (min-width: 1025px) {
  .nominated-work-box-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .nominated-work img {
    margin-bottom: 0;
  }

  .nominated-author-name {
    margin-bottom: 0;
  }

  .nominated-comment-ttl {
    margin-top: 0;
  }

  @supports (grid-template-rows: subgrid) {
    .nominated-work-box-wrap {
      display: grid;
      grid-auto-flow: row;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: auto;
      grid-template-rows: repeat(7, auto);
    }

    .nominated-work-box {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 7;
      align-content: start;
    }

    .nominated-head-ttl {
      grid-row: 1;
      margin-bottom: 0;
    }

    .nominated-head-vote {
      grid-row: 2;
    }

    .nominated-work {
      grid-row: 3;
      display: flex;
      align-items: center;
    }

    .nominated-comment-wrap-1 {
      grid-row: 4;
    }

    .nominated-comment-wrap-1 a {
      color: #21081d !important;
      text-decoration: none !important;
    }

    .campaign-gallery-camera-lens-wrap {
      grid-row: 5;
      margin-bottom: 0;
    }

    .nominated-detail {
      grid-row: 6;
    }

    .bravo_btn_wrap {
      grid-row: 7;
      align-self: end;
      margin-top: 0;
    }
  }

  .nominated-work-box {
    border: 4px solid #007a88;
  }

  .nominated-head-ttl {
    font-size: 1.6rem;
  }

  .nominated-head-vote {
    font-size: 1.3rem;
    aspect-ratio: 612 / 72;
    margin-bottom: 0;
  }
}

/* 6_投票方法 */
.vote-step-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.vote-bravo-btn-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
}

.vote-text-wrap {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  margin: 20px 0 40px;
}

.vote-cap-1 {
  font-size: 16px;
  line-height: 1.7;
}

.vote-cap-2 {
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 0;
}

.vote-cap-1 a,
.vote-cap-2 a {
  color: #a72324 !important;
  text-decoration: underline !important;
}

@media (min-width: 641px) {
  .vote-step-text {
    font-size: 22px;
    text-align: center;
  }

  .vote-cap-1,
  .vote-cap-2 {
    font-size: 16px;
    text-align: center;
  }
}

/* 7_プレゼント・発表 */
#nav-overview h5 {
  font-size: 20px !important;
  font-weight: bold;
  margin: 0;
  padding-top: 36px;
  letter-spacing: .1em;
}

.cp-overview-wrap {
  padding: 60px 4%;
}

.overview-group {
  margin-bottom: 40px;
}

.overview-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.overview-text-wrapper {
  border-top: 1px solid #c6c6c6;
  margin: 8px auto 0;
  max-width: 640px;
  text-align: left;
}

.overview-text {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
  text-align: left;
  margin-block: 4px 0;
}

.overview-text-detail-wrapper {
  background-color: #FEF6E4;
  padding: 16px 20px;
  margin-block: 12px;
}

#nav-overview .overview-text a {
  color: #a72324 !important;
  text-decoration: underline !important;
}

@media (min-width: 641px) {
  .overview-text {
    line-height: 1.7;
  }
}

/* 8_投稿チャレンジ */
#nav-tips {
  background: #FEF6E4;
  padding-block: 60px;
}

#nav-tips .cp-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.tips-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--cp-shadow-subtle);
  transition: transform 0.3s;
}

.tips-item img:hover {
  transform: translateY(-5px);
}

.recipe-banner {
  display: block;
  margin-top: 40px;
}

.recipe-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: var(--cp-shadow-subtle);
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .tips-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  #nav-tips .cp-text {
    font-size: 22px;
    text-align: center;
  }
}

@media (min-width: 1025px) {
  .tips-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

/* 9_アサイド */
.cp-wrap aside {
  padding: 40px 4%;
}

/* 10_おすすめコンテンツ */
#recommended {
  background-color: #FEF6E4;
  padding-block: 60px;
}

.cp-banner-grid {
  display: grid;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.cp-banner-grid img {
  width: min(380px, 100%);
  height: auto;
  transition: opacity 0.3s;
  margin-inline: auto;
  display: flex;
}

.cp-banner-grid img:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .cp-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .cp-banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}