/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li,
figure, figcaption {
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 500;
}

ol, ul {
  list-style-type: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

button,
textarea {
  margin: 0;
  padding: 0;
  color: inherit;
  border: none;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
}

button {
  cursor: pointer;
  letter-spacing: .02em;
}

input {
  border: none;
  border-radius: 0;
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

iframe {
  border: none;
}

/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
  --blue: #506B98;
  --hover-pink: #FA5F96;
  --min: "Zen Old Mincho", serif;
  --gothic: "Zen Kaku Gothic Antique", sans-serif;
  --filterW: invert(96%) sepia(10%) saturate(0%) hue-rotate(115deg) brightness(104%) contrast(104%);
  --filterB: invert(40%) sepia(6%) saturate(3883%) hue-rotate(179deg) brightness(94%) contrast(75%);
  --filterP: invert(69%) sepia(37%) saturate(6595%) hue-rotate(303deg) brightness(97%) contrast(102%);
}

/* -----------------------------------------------
= body
----------------------------------------------- */
body {
  color: #3D4960;
  background: #E9F7FF;
  font-family: 'Noto Sans JP', sans-serif;
}

/* -----------------------------------------------
= visible
----------------------------------------------- */
.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hidden-xs {
  display: none;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .hidden-xs {
    display: block;
  }

  .visible-xs-block {
    display: none;
  }
}
/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 64px;
  padding: 6px 16px 5px;
  background: #E9F7FF;
  box-sizing: border-box;
}
.header.is-open {
  color: #fff;
  background: var(--blue);
}
.header .h-logo {
  flex: 1;
}
.header .h-logo a {
  display: inline-block;
  width: 125px;
  height: 48px;
  background: url(../../../../shared/img/award/header_logo_2026.png) no-repeat 50%/100% auto;
}
.header .h-logo a span {
  display: none;
}
.header.is-open .h-logo a {
  background-image: url(../../../../shared/img/award/header_logo_2026_white.png);
}
.header .h-lang {
  display: none;
  margin-right: 16px;
  font-size: 12px;
  font-weight: 700;
}
.header .h-lang.is-show {
  display: block;
}
.header .h-lang .selected {
  position: relative;
  padding: 0 16px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.header .h-lang .selected::before {
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../../../../shared/img/award/icon_globe_2025.svg) no-repeat 50%/100% auto;
  filter: invert(100%) sepia(6%) saturate(22%) hue-rotate(171deg) brightness(106%) contrast(105%);
}
.header .h-lang .selected::after {
  content: '';
  position: absolute;
  right: -8px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: url(../../../../shared/img/award/icon_lang_arrow_2025.svg) no-repeat 50%/9px auto;
  transform: translateX(-50%);
  filter: invert(100%) sepia(6%) saturate(22%) hue-rotate(171deg) brightness(106%) contrast(105%);
}
.header .h-lang ul {
  display: none;
  position: absolute;
  top: 62px;
  right: 120px;
  width: 120px;
  z-index: 10;
  background: #DAE9F5;
  border: 1px solid #D6DCE8;
  border-radius: 4px;
}
.header .h-lang ul[aria-hidden="false"] {
  display: block;
}
.header .h-lang ul li + li {
  border-top: 1px solid #D6DCE8;
}
.header .h-lang ul li.active button span::after {
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  right: 8px;
  width: 16px;
  height: 16px;
  background: url(../../../../shared/img/award/icon_lang_check.png) no-repeat 50%/100% auto;
  font-weight: 400;
}
.header .h-lang ul button {
  width: 100%;
  height: 39px;
  color: #3D4960;
  text-align: left;
}
.header .h-lang ul button span {
  display: block;
  position: relative;
  padding-left: 28px;
}
.header .h-lang ul button span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  width: 16px;
  height: 100%;
  background: url(../../../../shared/img/award/icon_globe_2025.svg) no-repeat 50%/100% auto;
  filter: invert(27%) sepia(34%) saturate(442%) hue-rotate(181deg) brightness(91%) contrast(91%);
}
.header .search_btn {
  margin-right: 16px;
}
.header .search_btn img {
  width: 42px;
  filter: invert(35%) sepia(47%) saturate(452%) hue-rotate(179deg) brightness(104%) contrast(89%);
}
.header .search_btn[aria-expanded="true"] {
  filter: var(--filterW);
}
.header .search_cont {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  min-height: 64px;
  background: #fff;
}
.header .search_cont .inner {
  display: grid;
  grid-template-columns: auto 1fr 57px;
  gap: 0 4px;
  padding: 12px 16px;
}
.header .search_cont .back {
  width: 24px;
  margin: 7.5px 16px 7.5px 0;
}
.header .search_cont .input {
  min-width: 0;
  padding: 7px;
  border: 1px solid #D6DCE8;
  font-size: 16px;
}
.header .search_cont .input::placeholder {
  color: rgba(61, 73, 96, 0.6);
  font-size: 12px;
}
.header .search_cont .submit {
  width: 57px;
  height: 40px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  letter-spacing: .06em;
  text-align: center;
}
.header .search_cont[aria-hidden="false"] {
  display: block;
}
.header.is-open .search_btn img {
  filter: var(--filterW);
}
.header .h-menu .menu_btn {
  width: 42px;
  height: 42px;
  background: url(../../../../shared/img/award/header_icon_menu.png) no-repeat 50%/cover;
}
.header .h-menu .menu_btn[aria-expanded="true"] {
  background: url(../../../../shared/img/award/header_icon_menu_close.png) no-repeat 50%/cover;
}
.header .h-menu .menu_cont {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100svh - 64px);
  overflow-y: auto;
  overscroll-behaivior: contain;
  z-index: 5;
  color: #fff;
  background: var(--blue);
}
.header .h-menu .menu_cont[aria-hidden="false"] {
  display: block;
}
.header .h-menu .menu {
  border-top: 1px solid #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.header .h-menu .menu a {
  display: block;
  padding: 17px 16px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header .h-menu .menu .sub_btn {
  position: relative;
  width: 100%;
  padding: 17px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: left;
}
.header .h-menu .menu .sub_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(../../../../shared/img/award/icon_menu_plus.svg) no-repeat 50%/cover;
}
.header .h-menu .menu .sub_btn[aria-expanded="true"]::after {
  background-image: url(../../../../shared/img/award/icon_menu_minus.svg);
}
.header .h-menu .menu .sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(255, 255, 255, 0.1);
}
.header .h-menu .menu .sub p {
  padding: 17px 16px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header .h-menu .menu .sub a {
  padding-left: 40px;
}
.header .h-menu .menu .sub[aria-hidden="false"] {
  max-height: 1000px;
}
.header .h-menu .sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  padding: 24px 16px 80px;
}
.header .h-menu .sns .box {
  display: flex;
  align-items: center;
  gap: 0 4px;
  padding: 8px;
  color: #000;
  background: #fff;
  border: 1px solid #D6DCE8;
  border-radius: 4px;
}
.header .h-menu .sns .box p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}
.header .h-menu .sns .box ul {
  display: flex;
  gap: 0 2px;
}
.header .h-menu .sns .logo {
  max-width: 134px;
}

@media (min-width: 1200px) {
  .header {
    min-height: 76px;
    padding: 11px 20px;
  }
  .header .h-lang {
    order: 3;
    display: block;
    position: relative;
    margin-right: 20px;
  }
  .header .h-lang .selected {
    color: var(--blue);
  }
  .header .h-lang .selected::before, .header .h-lang .selected::after {
    filter: var(--filterB);
  }
  .header .h-lang ul {
    top: 32px;
    right: -20px;
    width: 143px;
    border-width: 1.5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .header .h-lang ul li.active button span::after {
    right: 12px;
  }
  .header .h-lang ul button {
    height: 56px;
  }
  .header .h-lang ul button span {
    padding-left: 34px;
  }
  .header .h-lang ul button span::before {
    width: 24px;
  }
  .header .h-search {
    order: 4;
  }
  .header .search_btn {
    display: none;
  }
  .header .search_cont {
    display: block;
    position: static;
    width: 378px;
    min-height: 52px;
    padding: 0;
    background: transparent;
  }
  .header .search_cont .inner {
    padding: 0;
  }
  .header .search_cont .input {
    padding: 13px 16px;
  }
  .header .search_cont .submit {
    width: 73px;
    height: 52px;
  }
  .header .search_cont .back {
    display: none;
  }
  .header .h-menu {
    order: 2;
  }
  .header .h-menu .menu_btn {
    display: none;
  }
  .header .h-menu .menu_cont {
    display: block;
    position: static;
    width: auto;
    height: auto;
    overflow-y: visible;
    color: var(--blue);
    background: transparent;
  }
  .header .h-menu .menu {
    display: flex;
    border-top: none;
    font-size: 16px;
  }
  .header .h-menu .menu li {
    position: relative;
  }
  .header .h-menu .menu a {
    padding: 8px;
    color: var(--blue);
    border-bottom: none;
  }
  .header .h-menu .menu .sub_btn {
    width: auto;
    padding: 8px 24px 8px 8px;
    color: var(--blue);
    border-bottom: none;
  }
  .header .h-menu .menu .sub_btn::after {
    top: calc(50% - 8px);
    right: 8px;
    width: 16px;
    height: 16px;
    background: url(../../../../shared/img/award/icon_lang_arrow_2025.svg) no-repeat 50%/9px auto;
    filter: var(--filterB);
  }
  .header .h-menu .menu .sub_btn[aria-expanded="true"]::after {
    background: url(../../../../shared/img/award/icon_lang_arrow_2025.svg) no-repeat 50%/9px auto;
  }
  .header .h-menu .menu .sub {
    position: absolute;
    top: 42px;
    left: 0;
    width: 219px;
    background: #DAE9F5;
  }
  .header .h-menu .menu .sub[aria-hidden="false"] {
    border: 1.5px solid #D6DCE8;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .header .h-menu .menu .sub p {
    padding: 8px 12px;
    color: rgba(61, 73, 96, 0.6);
    border-bottom: none;
    font-size: 14px;
  }
  .header .h-menu .menu .sub p:first-child {
    margin-top: 12px;
  }
  .header .h-menu .menu .sub ul:last-child {
    margin-bottom: 12px;
  }
  .header .h-menu .menu .sub a {
    padding-left: 32px;
  }
  .header .h-menu .sns {
    display: none;
  }
}
/* @media */
@media (hover: hover) {
  .header .h-lang .selected:hover {
    color: var(--hover-pink);
  }
  .header .h-lang .selected:hover::before, .header .h-lang .selected:hover::after {
    filter: var(--filterP);
  }
  .header .h-lang ul button:hover {
    color: var(--hover-pink);
  }
  .header .h-lang ul button:hover span::before {
    filter: var(--filterP);
  }
  .header .search_cont .submit:hover {
    background: var(--hover-pink);
  }
  .header .h-menu .menu a:hover {
    color: var(--hover-pink);
  }
  .header .h-menu .menu .sub_btn:hover {
    color: var(--hover-pink);
  }
  .header .h-menu .menu .sub_btn:hover::after {
    filter: var(--filterP);
  }
}
/* @media */
/* -----------------------------------------------
= contents
----------------------------------------------- */
.contents {
  margin-top: 64px;
}

@media (min-width: 1200px) {
  .contents {
    margin-top: 76px;
  }
}
/* @media */
/* -----------------------------------------------
= award_page
----------------------------------------------- */
.award_page {
  display: flex;
  gap: 0 8px;
  margin-bottom: 40px;
  padding: 16px;
}
.award_page li {
  width: 100%;
}
.award_page a {
  display: block;
  padding: 17px 16px;
  color: rgba(61, 73, 96, 0.6);
  background: #DAE9F5;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.award_page span {
  display: inline-block;
  padding-left: 32px;
  position: relative;
}
.award_page span::after {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
  filter: invert(52%) sepia(8%) saturate(792%) hue-rotate(180deg) brightness(101%) contrast(88%);
}
.award_page li:nth-child(1) span::after {
  background-image: url(../../../../shared/img/award/icon_nominee.svg);
}
.award_page li:nth-child(2) span::after {
  background-image: url(../../../../shared/img/award/icon_voted.svg);
}
.award_page .active {
  color: #fff;
  background: #546b9a;
}
.award_page .active span::after {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(132deg) brightness(103%) contrast(103%);
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_page {
    max-width: 1120px;
    margin: 0 auto 48px;
  }
  .award_page a {
    padding: 25px;
    font-size: 20px;
  }
  .award_page span {
    padding-left: 47px;
  }
  .award_page span::after {
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
  .award_page .active:after {
    background: rgba(19, 64, 124, 0.3);
    border: none;
  }
}
/* @media */
@media (hover: hover) {
  .award_page a {
    position: relative;
  }
  .award_page a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(52, 65, 89, 0.3);
    border: 1px solid #D6DCE8;
    opacity: 0;
  }
  .award_page a:hover::after {
    opacity: 1;
  }
  .award_page span {
    z-index: 1;
  }
}
/* @media */
/* -----------------------------------------------
= award_banner
----------------------------------------------- */
.award_banner {
  margin: 0 16px 32px;
}
.award_banner h2 {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 20px;
  font-family: var(--min);
  font-weight: 700;
  text-align: center;
  letter-spacing: 6px;
}
.award_banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.award_banner li:nth-child(1) {
  width: calc(80% - 4px);
  margin: auto;
}
.award_banner li:nth-child(2),
.award_banner li:nth-child(3) {
  width: calc(50% - 4px);
}
.award_banner li:nth-child(n+4) {
  width: calc(1 / 3 * 100% - 6px);
}
.award_banner li:nth-child(n+4) a {
  padding-block: 4px;
}
.award_banner li:nth-child(n+4) img {
  max-width: 90%;
}
.award_banner a {
  display: block;
  background: #fff;
  border: 1px solid var(--blue);
  text-align: center;
}

.c-banner02 {
  max-width: 300px;
  margin: 20px auto;
}
.c-banner02 img {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_banner {
    max-width: 536px;
    margin: 0 auto 32px;
  }
  .award_banner h2 {
    margin-bottom: 20px;
    font-size: 28px;
    letter-spacing: 12px;
  }
  .award_banner ul {
    gap: 12px;
  }
  .award_banner li:nth-child(1) {
    width: calc(80% - 6px);
  }
  .award_banner li:nth-child(2),
  .award_banner li:nth-child(3) {
    width: calc(50% - 6px);
  }
  .award_banner li:nth-child(n+4) {
    width: calc(1 / 3 * 100% - 8px);
  }

  .c-banner02 {
    max-width: 640px;
    margin: 40px auto;
  }

  .c-banner_w728_pc {
    max-width: 728px;
    margin: 0 auto 70px;
  }
}
/* @media */
@media (hover: hover) {
  .award_banner a {
    position: relative;
  }
  .award_banner a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_banner a:hover {
    opacity: 1;
  }
  .award_banner a:hover::after {
    opacity: 1;
  }
}
/* @media */
/* -----------------------------------------------
= award_title
----------------------------------------------- */
.award_title {
  scroll-margin-top: 64px;
  margin-bottom: 14px;
  color: var(--blue);
  font-family: var(--gothic);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .52em;
}
.award_title span {
  display: inline-block;
  position: relative;
  padding-inline: 4px 12px;
  color: #fff;
  font-family: var(--min);
  font-size: 41px;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 1px 1px 0 var(--blue), -1px 1px 0 var(--blue), 1px -1px 0 var(--blue), -1px -1px 0 var(--blue);
}
.award_title span::before, .award_title span::after {
  content: "";
  position: absolute;
  background: url("../../../../shared/img/award/img_deco kira.svg") no-repeat 50%/100% auto;
}
.award_title span::before {
  top: -2px;
  right: -8px;
  width: 18px;
  height: 18px;
}
.award_title span::after {
  top: 15px;
  left: -8px;
  width: 12px;
  height: 12px;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_title {
    scroll-margin-top: 76px;
    margin-bottom: 18px;
  }
}
/* @media */
/* -----------------------------------------------
= award_descripton
----------------------------------------------- */
.award_descripton {
  margin: 0 16px 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: .1em;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_descripton {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
  }
}
/* @media */
/* -----------------------------------------------
= award_department
----------------------------------------------- */
.award_department {
  margin: 0 16px 36px;
}
.award_department .tab_btn {
  display: flex;
  gap: 0 8px;
  margin-bottom: 8px;
}
.award_department .tab_btn li {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.award_department .tab_btn li + li {
  margin-left: -1px;
}
.award_department .tab_btn li.active button {
  color: #fff;
  background: var(--blue);
}
.award_department .tab_btn button {
  display: block;
  width: 100%;
  color: rgba(61, 73, 96, 0.6);
  background: #DAE9F5;
}
.award_department .tab_cont {
  display: none;
  position: relative;
  z-index: 1;
}
.award_department .tab_cont.active {
  display: block;
}
.award_department .tab_cont h3 {
  color: #3D4960;
  font-weight: 700;
}
.award_department .tab_cont ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.award_department .tab_cont li {
  width: calc(50% - 4px);
}
.award_department .tab_cont li.selected a {
  color: #fff;
  background: var(--blue);
}
.award_department .tab_cont li.selected a::after {
  background: url(../../../../shared/img/award/icon_star-check_2026.svg) no-repeat 50%/100% auto;
}
.award_department .tab_cont a {
  display: block;
  position: relative;
  padding: 16px 32px 16px 12px;
  color: var(--blue);
  background: #fff;
  border: 1px solid #D6DCE8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-sapcing: .06em;
}
.award_department .tab_cont a::after {
  content: '';
  position: absolute;
  top: 0;
  right: 16px;
  width: 16px;
  height: 100%;
  background: url(../../../../shared/img/award/icon_circle-down_2026.svg) no-repeat 50%/100% auto;
}
.award_department .tab_cont a.active {
  color: #fff;
  border: 1px solid var(--blue);
}
.award_department .tab_cont a:link, .award_department .tab_cont a:active, .award_department .tab_cont a:hover, .award_department .tab_cont a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_department {
    max-width: 1160px;
    margin: 0 auto 48px;
    background: #DAE9F5;
  }
  .award_department .tab_btn {
    display: none;
  }
  .award_department .tab_cont_warp {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 20px 36px;
  }
  .award_department .tab_cont {
    display: block !important;
    width: calc(1 / 3 * 100% - 9px);
  }
  .award_department .tab_cont:nth-child(1) {
    width: 100%;
    margin-bottom: 8px;
  }
  .award_department .tab_cont:nth-child(1) li {
    width: calc(1 / 3 * 100% - 9px);
  }
  .award_department .tab_cont h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.6;
  }
  .award_department .tab_cont ul {
    gap: 12px;
  }
  .award_department .tab_cont li {
    width: 100%;
  }
  .award_department .tab_cont li.selected a::after {
    filter: none;
  }
  .award_department .tab_cont a {
    padding: 21px 48px 21px 16px;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: .06em;
  }
  .award_department .tab_cont a::after {
    right: 20px;
    width: 24px;
  }
}
/* @media */
@media (hover: hover) {
  .award_department .tab_btn a {
    position: relative;
  }
  .award_department .tab_btn a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(52, 65, 89, 0.3);
    border: 1px solid #D6DCE8;
    opacity: 0;
  }
  .award_department .tab_btn a:hover::after {
    opacity: 1;
  }
  .award_department .tab_cont a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_department .tab_cont a:hover::before {
    opacity: 1;
  }
  .award_department .tab_cont .selected a:hover::before {
    opacity: 0;
  }
}
/* @media */
/* -----------------------------------------------
= award_subtitle
----------------------------------------------- */
.award_subtitle {
  scroll-margin-top: 64px;
  margin-bottom: 16px;
  text-align: center;
}
.award_subtitle h3 {
  max-width: 375px;
  min-height: 56px;
  margin: 0 auto 16px;
  color: #FDDE9A;
  background: url("../../../../shared/img/award/bg_title frame.png") no-repeat 50%/100% auto;
  font-family: var(--min);
  font-size: 22px;
  line-height: 51px;
}
.award_subtitle .text {
  margin: 0 16px 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}
.award_subtitle .note {
  margin-inline: 16px;
  color: rgba(61, 73, 96, 0.6);
  font-size: 10px;
  line-height: 1.5;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_subtitle {
    scroll-margin-top: 76px;
    margin-bottom: 20px;
  }
  .award_subtitle h3 {
    width: 375px;
    margin-inline: auto;
  }
  .award_subtitle .text {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 24px;
  }
  .award_subtitle .note {
    margin-inline: 0;
    font-size: 14px;
  }
}
/* @media */
/* -----------------------------------------------
= award_wrap
----------------------------------------------- */
.award_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding-inline: 16px;
}

.award_item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #D6DCE8;
}
.award_item a {
  text-decoration: underline;
}
.award_item .img img {
  width: 100%;
  border: 1px solid #D6DCE8;
}
.award_item .text_set {
  margin-bottom: 8px;
}
.award_item .catch_copy {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .01em;
}
.award_item .main_title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.award_item .sub_title {
  color: rgba(61, 73, 96, 0.6);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.award_item .trial {
  height: 24px;
  margin-bottom: 8px;
}
.award_item .trial a {
  display: block;
  padding: 0;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: 3em;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}
.award_item .trial span {
  display: inline-block;
  position: relative;
  padding-left: 24px;
}
.award_item .trial span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: url(../../../../shared/img/award/icon_book-open_2026.svg) no-repeat 50%/100% auto;
  filter: var(--filterB);
}
.award_item .trial.disabled {
  pointer-events: none;
  opacity: .3;
}
.award_item .btn_vote {
  display: block;
  width: 100%;
  height: 42px;
  margin-bottom: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
}
.award_item .btn_vote span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 22px;
}
.award_item .btn_vote span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: url(../../../../shared/img/award/icon_vote_2026.svg) no-repeat 50%/100% auto;
  filter: var(--filterW);
}
.award_item .btn_vote.voted {
  pointer-events: none;
  color: rgba(61, 73, 96, 0.42);
  background: rgba(80, 107, 152, 0.08);
}
.award_item .btn_vote.voted span::before {
  background-image: url(../../../../shared/img/award/icon_voted_2026.svg);
}
.award_item .btn_vote.closed {
  pointer-events: none;
  color: rgba(61, 73, 96, 0.42);
  background: rgba(80, 107, 152, 0.08);
}
.award_item .btn_vote.closed span {
  padding-left: 0;
}
.award_item .btn_vote.closed span::before {
  display: none;
}
.award_item .btn_comment {
  display: block;
  width: 100%;
  height: 42px;
  margin-bottom: 8px;
  background: #DAE9F5;
  border: 1px solid #D6DCE8;
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
}
.award_item .btn_comment span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.award_item .btn_comment span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: url(../../../../shared/img/award/icon_comment_2026.svg) no-repeat 50%/100% auto;
}
.award_item .btn_x {
  display: block;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
.award_item .btn_x span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 22px;
}
.award_item .btn_x span::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 16px;
  background: url(../../../../shared/img/award/logo_x_2026.svg) no-repeat 50%/100% auto;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 1160px;
    margin-inline: auto;
  }

  .award_item {
    padding: 16px;
  }
  .award_item .catch_copy {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .award_item .text_set {
    margin-bottom: 16px;
  }
  .award_item .main_title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .award_item .sub_title {
    font-size: 16px;
  }
  .award_item .trial {
    height: 40px;
  }
  .award_item .trial a {
    font-size: 16px;
    line-height: 38px;
  }
  .award_item .trial span {
    position: relative;
    z-index: 1;
    padding-left: 36px;
  }
  .award_item .trial span::before {
    width: 24px;
  }
  .award_item .btn_vote {
    font-size: 20px;
    height: 57px;
    line-height: 57px;
  }
  .award_item .btn_vote span {
    padding-left: 34px;
  }
  .award_item .btn_vote span::before {
    width: 25px;
  }
  .award_item .btn_comment {
    height: 57px;
    font-size: 20px;
    line-height: 57px;
  }
  .award_item .btn_comment span {
    padding-left: 30px;
  }
  .award_item .btn_comment span::before {
    width: 24px;
  }
  .award_item .btn_x {
    height: 57px;
    font-size: 20px;
    line-height: 57px;
  }
  .award_item .btn_x span {
    padding-left: 30px;
  }
  .award_item .btn_x span::before {
    width: 22px;
  }
}
/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {
  .award_wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* @media */
@media (hover: hover) {
  .award_item a:hover {
    text-decoration: none;
  }
  .award_item .main_title a:hover {
    color: var(--hover-pink);
  }
  .award_item .sub_title a:hover {
    color: var(--hover-pink);
  }
  .award_item .trial a {
    position: relative;
  }
  .award_item .trial a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    border-radius: 3em;
    opacity: 0;
  }
  .award_item .trial a:hover {
    color: var(--hover-pink);
  }
  .award_item .trial a:hover::after {
    opacity: 1;
  }
  .award_item .btn_vote {
    position: relative;
  }
  .award_item .btn_vote::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(52, 65, 89, 0.3);
    opacity: 0;
  }
  .award_item .btn_vote:hover::after {
    opacity: 1;
  }
  .award_item .btn_comment {
    position: relative;
  }
  .award_item .btn_comment::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_item .btn_comment:hover::after {
    opacity: 1;
  }
  .award_item .btn_comment span {
    position: relative;
    z-index: 1;
  }
  .award_item .btn_x {
    position: relative;
  }
  .award_item .btn_x::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_item .btn_x:hover::after {
    opacity: 1;
  }
}
/* @media */
/* -----------------------------------------------
= award_pagination
----------------------------------------------- */
.award_pagination {
  display: flex;
  gap: 0 16px;
  margin: 16px 16px 32px;
}
.award_pagination li {
  width: 100%;
}
.award_pagination li:first-child a {
  padding: 12px 16px 12px 32px;
}
.award_pagination li:first-child a::after {
  left: 16px;
  transform: scaleX(-1);
}
.award_pagination li:last-child a {
  padding: 12px 32px 12px 16px;
}
.award_pagination li:last-child a::after {
  right: 16px;
}
.award_pagination a {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .06em;
}
.award_pagination a::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 100%;
  background: url(../../../../shared/img/award/icon_arrow_2026.svg) no-repeat 50%/100% auto;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_pagination {
    justify-content: space-between;
    gap: 0;
    max-width: 1160px;
    margin: 20px auto;
    padding-inline: 16px;
  }
  .award_pagination li {
    width: calc(25% - 6px);
  }
  .award_pagination li:first-child a {
    padding: 18px 20px 18px 44px;
  }
  .award_pagination li:last-child a {
    padding: 18px 44px 18px 20px;
  }
  .award_pagination a {
    font-size: 16px;
  }
  .award_pagination a::after {
    width: 24px;
  }
}
/* @media */
@media (hover: hover) {
  .award_pagination a {
    position: relative;
  }
  .award_pagination a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_pagination a:hover::before {
    opacity: 1;
  }
}
/* @media */
/* -----------------------------------------------
= official_x
----------------------------------------------- */
.official_x {
  margin-bottom: 64px;
}
.official_x h2 {
  margin-bottom: 16px;
  font-family: var(--min);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .official_x {
    max-width: 560px;
    margin: 0 auto 52px;
  }
  .official_x h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }
}
/* @media */
/* -----------------------------------------------
= award_info
----------------------------------------------- */
.award_info {
  padding: 16px;
}
.award_info h2 {
  max-width: 250px;
  margin: 0 auto 16px;
  padding-block: 10px;
  color: #fff;
  background: url(../../../../shared/img/award/bg_title_2026.png) no-repeat 50%/100% auto;
  font-family: var(--gothic);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  letter-spacing: .2em;
}
.award_info .box {
  margin-bottom: 40px;
  padding: 16px;
  background: #DAE9F5;
  border: 1px solid #D6DCE8;
}
.award_info .box .subtitle01 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.award_info .box .subtitle01::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background: url(../../../../shared/img/award/icon_title_star.svg) no-repeat 50%/100% auto;
}
.award_info .box .subtitle02 {
  padding: 8px 12px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.award_info .box p, .award_info .box li {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .1em;
}
.award_info .box .note {
  color: #3D4960;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0;
}
.award_info #anchor_about_award p {
  text-align: center;
}
.award_info .about_award {
  scroll-margin-top: 64px;
}
.award_info .about_department h3 + p {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
}
.award_info .about_department p + h3 {
  margin-top: 16px;
}
.award_info .schedule p + h3 {
  margin-top: 16px;
}
.award_info .howto {
  scroll-margin-top: 64px;
}
.award_info .howto p + h3 {
  margin-top: 16px;
}
.award_info .totalling h3 + ol,
.award_info .totalling h3 + p {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
}
.award_info .totalling p + h3,
.award_info .totalling ol + h3 {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_info h2 {
    margin-bottom: 20px;
  }
  .award_info .box {
    max-width: 560px;
    margin: 0 auto 52px;
    padding: 20px;
  }
  .award_info .box .subtitle01 {
    font-size: 20px;
  }
  .award_info .box .subtitle01::before {
    width: 24px;
    height: 24px;
  }
  .award_info .box .subtitle02 {
    padding: 12px 16px;
    font-size: 20px;
  }
  .award_info .box p, .award_info .box li {
    font-size: 16px;
  }
  .award_info .box .note {
    font-size: 14px;
  }
  .award_info .about_award {
    scroll-margin-top: 76px;
  }
  .award_info .about_department h3 + p {
    padding: 12px 16px;
  }
  .award_info .about_department p + h3 {
    margin-top: 20px;
  }
  .award_info .schedule p + h3 {
    margin-top: 20px;
  }
  .award_info .howto {
    scroll-margin-top: 76px;
  }
  .award_info .howto p + p {
    margin-top: 20px;
  }
  .award_info .totalling h3 + ol,
  .award_info .totalling h3 + p {
    padding: 12px 16px;
  }
  .award_info .totalling ol + h3 {
    margin-top: 20px;
  }
}
/* @media */
/* -----------------------------------------------
= award_btn_stamp pagetop
----------------------------------------------- */
.award_btn_stamp {
  position: fixed;
  right: 85px;
  bottom: 10px;
  z-index: 10;
  transition: opacity .4s;
}
.award_btn_stamp img {
  width: 132px;
}

.award_btn_pagetop {
  position: fixed;
  right: 24px;
  bottom: 16px;
  z-index: 10;
  transition: opacity .4s;
}
.award_btn_pagetop a {
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.award_btn_pagetop img {
  width: 24px;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_btn_stamp {
    right: 120px;
    bottom: 13px;
  }
  .award_btn_stamp img {
    width: 196px;
  }

  .award_btn_pagetop {
    right: 32px;
    bottom: 20px;
  }
  .award_btn_pagetop a {
    width: 72px;
    height: 72px;
  }
  .award_btn_pagetop img {
    position: relative;
    z-index: 1;
    width: 40px;
  }
}
/* @media */
@media (hover: hover) {
  .award_btn_pagetop a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 64, 124, 0.3);
    border-radius: 50%;
    opacity: 0;
  }
  .award_btn_pagetop a:hover::after {
    opacity: 1;
  }
  .award_btn_pagetop a:hover img {
    opacity: 1;
  }
}
/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer {
  padding: 16px 20px 80px;
  background: var(--blue);
  font-size: 12px;
  text-align: center;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer ul a {
  padding-left: 10px;
  color: #fff;
  border-left: 1px solid #fff;
}
.footer p {
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .footer {
    padding-block: 20px 100px;
  }
  .footer .f-link a {
    font-size: 16px;
  }
  .footer small {
    display: block;
    margin-top: 16px;
    font-size: 14px;
  }
}
/* @media */
/* -----------------------------------------------
= modal
----------------------------------------------- */
.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #E9F7FF;
  border-radius: 8px;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #1C1C1E;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.in {
  opacity: 0.6;
}

.modal.vote .modal-dialog {
  max-width: 480px;
}
.modal.vote .modal-content {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
}

.modal.stamp .modal-dialog {
  max-width: 480px;
}
.modal.stamp .modal-content {
  margin-top: 16px;
  padding: 16px;
  color: #FF5A00;
  background-color: #FFF6E8;
  border-radius: 8px;
}
.modal.stamp .award_vote .msg {
  color: #FF5A00;
}
.modal.stamp .award_vote .btn_detail {
  background: #FF5A00;
}
.modal.stamp .award_vote .btn_delete {
  color: #3D4960;
}

.award_vote .stamp_title {
  max-width: 338px;
  margin: 0 auto 16px;
}
.award_vote .msg {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.award_vote .stamp_list {
  position: relative;
  max-width: 338px;
  margin: 0 auto 16px;
}
.award_vote .stamp_list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 101px);
  gap: 8px;
}
.award_vote .stamp_list li {
  position: relative;
}
.award_vote .stamp_list .num {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  color: #F3C5A0;
  background: #fff;
  border: 3px solid #F3C5A0;
  border-radius: 50%;
  font-size: 20px;
}
.award_vote .stamp_list .stamp {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 78px;
  height: 78px;
}
.award_vote .stamp_list .text {
  position: absolute;
  top: 63px;
  left: 0;
  width: 100%;
  text-align: center;
}
.award_vote .stamp_list .date {
  position: absolute;
  top: 82px;
  left: 4px;
  width: 70px;
  color: #fff;
  background: #FFA359;
  border-radius: 3em;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.award_vote .stamp_list li:nth-child(5) .date {
  background: #FF89B3;
}
.award_vote .stamp_list li:nth-child(10) .date {
  background: #FF5A00;
}
.award_vote .stamp_list .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 164px;
}
.award_vote .error {
  margin-bottom: 16px;
  text-align: center;
}
.award_vote .error p {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: #D84D4D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.award_vote .error p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../../../../shared/img/award/icon_error_2026.svg) no-repeat 50%/100% auto;
}
.award_vote .note {
  margin-bottom: 16px;
}
.award_vote .note.type01 {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.award_vote .note.type02 {
  color: rgba(61, 73, 96, 0.6);
  font-size: 12px;
  line-height: 1.5;
}
.award_vote .btn_detail {
  display: block;
  margin-bottom: 8px;
  padding-block: 10px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.award_vote .btn_delete {
  display: block;
  width: 100%;
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.award_vote .department {
  max-width: 375px;
  min-height: 56px;
  margin: 0 auto 16px;
  color: #FDDE9A;
  background: url("../../../../shared/img/award/bg_title frame.png") no-repeat 50%/100% auto;
  font-family: var(--min);
  font-size: 22px;
  line-height: 51px;
  text-align: center;
}
.award_vote .info {
  display: flex;
  gap: 0 16px;
  margin-bottom: 16px;
}
.award_vote .info .thm {
  width: 120px;
}
.award_vote .info .thm img {
  border: 1px solid #D6DCE8;
}
.award_vote .info .text {
  flex: 1;
}
.award_vote .info a {
  text-decoration: underline;
}
.award_vote .info .catch_copy {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .01em;
}
.award_vote .info .main_title {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.award_vote .info .sub_title {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.award_vote .info .sub_title a {
  color: rgba(61, 73, 96, 0.6);
}
.award_vote .comment {
  margin-bottom: 16px;
}
.award_vote .comment label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 17.5px;
  text-align: center;
}
.award_vote .comment textarea {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #D6DCE8;
  border-radius: 0;
  font-size: 16px;
  line-height: 24px;
}
.award_vote .comment textarea:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(18, 50, 92, 0.6);
}
.award_vote .comment textarea placeholder {
  color: rgba(61, 73, 96, 0.6);
}
.award_vote .comment .comment_text {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 18px;
}
.award_vote .btn_send {
  display: flex;
  justify-content: center;
  gap: 0 16px;
}
.award_vote .btn_send button {
  width: 100%;
  height: 42px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.award_vote .btn_send .btn_delete {
  background: #fff;
  border: 1px solid #D6DCE8;
}
.award_vote .btn_send .btn_confirm {
  color: #fff;
  background: var(--blue);
}
.award_vote .complete {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.award_vote .btn_set {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.award_vote .btn_set li {
  width: calc(50% - 5px);
}
.award_vote .btn_set a, .award_vote .btn_set button {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
}
.award_vote .btn_set span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.award_vote .btn_set span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.award_vote .btn_set .list {
  width: 100%;
}
.award_vote .btn_set .list button {
  color: #fff;
  background: var(--blue);
  line-height: 44px;
}
.award_vote .btn_set .list button span {
  padding-left: 0;
}
.award_vote .btn_set .review {
  width: 100%;
}
.award_vote .btn_set .review a {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
}
.award_vote .btn_set .review span::before {
  width: 16px;
  background: url(../../../../shared/img/award/icon_chil-chil_2025.svg) no-repeat 50%/100% auto;
}
.award_vote .btn_set .close button {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
}
.award_vote .btn_set .x a {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
}
.award_vote .btn_set .x span::before {
  width: 16px;
  background: url(../../../../shared/img/award/logo_x_2026.svg) no-repeat 50%/100% auto;
}

@media (min-width: 480px) {
  .modal-dialog {
    margin-inline: auto;
  }
}
/* @media */
@media print, screen and (min-width: 768px) {
  /* PC */
  .modal.vote .modal-content {
    margin-top: 40px;
    padding: 20px;
    border-radius: 12px;
  }

  .award_vote .stamp_title {
    margin-bottom: 20px;
  }
  .award_vote .msg {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .award_vote .stamp_list {
    margin-bottom: 22px;
  }
  .award_vote .stamp_list .date {
    font-size: 16px;
    line-height: 1.25;
  }
  .award_vote .note {
    margin-bottom: 20px;
  }
  .award_vote .note.type01 {
    font-size: 16px;
  }
  .award_vote .note.type02 {
    font-size: 14px;
  }
  .award_vote .btn_detail {
    margin-bottom: 12px;
    padding-block: 14px;
    font-size: 20px;
  }
  .award_vote .btn_delete {
    padding-block: 14px;
    font-size: 20px;
  }
  .award_vote .department {
    width: 375px;
    margin-inline: auto;
  }
  .award_vote .info {
    margin-bottom: 20px;
    padding-inline: 16px;
  }
  .award_vote .info .thm {
    margin-right: 16px;
  }
  .award_vote .info .catch_copy {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .award_vote .info .main_title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .award_vote .info .sub_title {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .award_vote .error {
    margin-bottom: 20px;
  }
  .award_vote .error p {
    padding-left: 32px;
    font-size: 20px;
  }
  .award_vote .error p::before {
    width: 24px;
    height: 24px;
  }
  .award_vote .comment {
    margin-bottom: 20px;
  }
  .award_vote .comment label {
    font-size: 20px;
    line-height: 25px;
  }
  .award_vote .comment .comment_text {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 24px;
  }
  .award_vote .note {
    margin-bottom: 20px;
  }
  .award_vote .note.type01 {
    font-size: 16px;
  }
  .award_vote .note.type02 {
    font-size: 14px;
  }
  .award_vote .btn_send {
    gap: 0 20px;
  }
  .award_vote .btn_send button {
    height: 57px;
    font-size: 20px;
  }
  .award_vote .complete {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .award_vote .num {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 25px;
  }
  .award_vote .num dt {
    margin-bottom: 12px;
  }
  .award_vote .btn_set {
    gap: 12px 10px;
  }
  .award_vote .btn_set a, .award_vote .btn_set button {
    position: relative;
    font-size: 20px;
    line-height: 57px;
  }
  .award_vote .btn_set span {
    padding-left: 32px;
  }
  .award_vote .btn_set .list button {
    line-height: 57px;
  }
  .award_vote .btn_set .review span::before {
    width: 24px;
  }
  .award_vote .btn_set .x span::before {
    width: 24px;
  }
}
/* @media */
@media (hover: hover) {
  .award_vote .info a:hover {
    text-decoration: none;
  }
  .award_vote .info .main_title a:hover {
    color: var(--hover-pink);
  }
  .award_vote .info .sub_title a:hover {
    color: var(--hover-pink);
  }
  .award_vote .btn_detail {
    position: relative;
  }
  .award_vote .btn_detail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(52, 65, 89, 0.3);
    opacity: 0;
  }
  .award_vote .btn_detail:hover::after {
    opacity: 1;
  }
  .award_vote .btn_detail span {
    position: relative;
    z-index: 1;
  }
  .award_vote .btn_delete {
    position: relative;
  }
  .award_vote .btn_delete::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    border: 1px solid #D6DCE8;
    opacity: 0;
  }
  .award_vote .btn_delete:hover::after {
    opacity: 1;
  }
  .award_vote .btn_delete span {
    position: relative;
    z-index: 1;
  }
  .award_vote .btn_confirm {
    position: relative;
  }
  .award_vote .btn_confirm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_vote .btn_confirm:hover::after {
    opacity: 1;
  }
  .award_vote .btn_confirm span {
    position: relative;
    z-index: 1;
  }
  .award_vote .btn_set a::after, .award_vote .btn_set button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .award_vote .btn_set a:hover::after, .award_vote .btn_set button:hover::after {
    opacity: 1;
  }
}
/* @media */
/* -----------------------------------------------
= award_rate
----------------------------------------------- */
.award_rate {
  display: flex;
  align-items: center;
  max-width: 350px;
  margin: 0 auto 16px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(19, 64, 124, 0.9);
  border-radius: 4px;
}
.award_rate dl {
  flex: 1;
  font-size: 12px;
  text-align: center;
}
.award_rate dt {
  color: rgba(255, 255, 255, 0.7);
}
.award_rate dd {
  padding-top: 5px;
}
.award_rate dd span {
  font-size: 24px;
  font-weight: 700;
}
.award_rate .bar {
  position: relative;
  max-width: 240px;
  width: calc(100% - 4px);
  height: 20px;
  background: #0B1430;
  border: 2px solid #4BABFF;
  border-radius: 3em;
  box-sizing: content-box;
}
.award_rate .bar span {
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  height: 20px;
  background: #4BABFF;
  border: 2px solid #4BABFF;
  border-radius: 3em;
  box-sizing: content-box;
}

.award_vote_name {
  display: flex;
  gap: 0 16px;
  max-width: 256px;
  margin: 0 auto 16px;
}
.award_vote_name li {
  width: 100%;
}
.award_vote_name input[type=radio] {
  display: none;
}
.award_vote_name input[type=radio]:checked + label {
  border: 1px solid var(--blue);
}
.award_vote_name input[type=radio]:checked + label::before {
  background-image: url(../../../../shared/img/award/icon_radio_active_2026.svg);
}
.award_vote_name label {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #D6DCE8;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  cursor: pointer;
}
.award_vote_name label::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 8px;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: url(../../../../shared/img/award/icon_radio_2025.svg) no-repeat 50%/cover;
}
.award_vote_name label span {
  position: relative;
  z-index: 3;
  padding-left: 32px;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .award_rate {
    max-width: 560px;
    margin: 0 auto 20px;
    padding: 16px 20px;
    border-radius: 6px;
  }
  .award_rate dl {
    margin-right: 12px;
    font-size: 16px;
    white-space: nowrap;
  }
  .award_rate dd span {
    font-size: 32px;
  }
  .award_rate .bar {
    max-width: 428px;
    width: calc(100% - 3px);
    height: 21px;
  }
  .award_rate .bar span {
    height: 21px;
  }

  .award_vote_name {
    gap: 0 20px;
    max-width: 380px;
    margin: 0 auto 20px;
  }
  .award_vote_name input[type=radio]:checked + label::after {
    top: 25px;
    left: 25px;
    width: 8px;
    height: 8px;
  }
  .award_vote_name label {
    border-width: 1.5px;
    border-radius: 6px;
    font-size: 20px;
    line-height: 49px;
  }
  .award_vote_name label::before {
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
  }
  .award_vote_name label::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(19, 64, 124, 0.3);
    border-radius: 6px;
    opacity: 0;
  }
  .award_vote_name label:hover::after {
    opacity: 1;
  }
  .award_vote_name label span {
    padding-left: 48px;
  }
}
/* @media */
/* -----------------------------------------------
= list
----------------------------------------------- */
.btn_to_top {
  display: block;
  max-width: 159px;
  margin: 16px auto;
  padding-block: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #D6DCE8;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.no_data {
  margin: 16px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .btn_to_top {
    max-width: 209px;
    margin: 20px auto;
    font-size: 16px;
  }

  .no_data {
    margin: 20px;
    font-size: 16px;
  }
}
/* @media */
@media (hover: hover) {
  .btn_to_top {
    position: relative;
  }
  .btn_to_top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19, 64, 124, 0.3);
    opacity: 0;
  }
  .btn_to_top:hover::after {
    opacity: 1;
  }
}
/* @media */
/* -----------------------------------------------
= search_results
----------------------------------------------- */
.search_results_title {
  scroll-margin-top: 64px;
  margin-bottom: 50px;
  padding: 20px 16px;
  color: var(--blue);
  background: #DAE9F5;
}

.search_results_title h2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}

@media print, screen and (min-width: 768px) {
  /* PC */
  .search_results_title {
    scroll-margin-top: 76px;
    margin-bottom: 65px;
    padding: 30px 20px;
  }

  .search_results_title h2 {
    max-width: 1120px;
    margin-inline: auto;
    font-size: 20px;
  }
}
/* @media */
