@charset "UTF-8";
/******************************************************************
Theme Name: こうちデジ活アワード2026
Author: Y.Yokoyama
Author URI: http://fromdime.com
******************************************************************/
/******************************************************************

共通

******************************************************************/
/* root
-------------------------------------------------------*/
:root {
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --default-transition-duration: 150ms;
}

/* 電話リンクなし
-------------------------------------------------------*/
.notel a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
}

/* 電話リンク
-------------------------------------------------------*/
a.tel {
  color: inherit;
}
a.tel:hover {
  text-decoration: underline !important;
}

body {
  background-color: #dde9de;
}

/******************************************************************

構造調整タグ

******************************************************************/
br.br-sp {
  display: none;
}

/******************************************************************

汎用パーツ

******************************************************************/
a {
  transition-property: all;
  transition-timing-function: var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
  transition-duration: var(--default-transition-duration, 150ms);
}

/* 文字折り返し用
-------------------------------------------*/
.span-wrap {
  display: inline-block;
}

/* ボタン
-------------------------------------------*/
.button {
  color: #888888;
  position: relative;
  display: inline-block;
  background-color: #fff;
  width: 100%;
  max-width: 240px;
  height: 56px;
  border: 1px solid #888888;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}
.button:hover, .button:focus, .button:active {
  color: white;
  background-color: #888888;
}

.link-button-wrapper {
  text-align: center;
}

.link-button {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  width: 100%;
  max-width: 240px;
  height: 56px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}
.link-button::after, .link-button::before {
  position: absolute;
  content: "";
  display: block;
}
.link-button::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(90deg);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.link-button::after {
  top: 50%;
  right: -20px;
  width: 60px;
  height: 1px;
  transition: all 0.25s ease 0.05s;
}
.link-button:hover {
  color: #ffffff !important;
}
.link-button:hover::before {
  transform: rotateY(0deg);
  transform-origin: left;
}
.link-button:hover::after {
  width: 20px;
  background-color: #ffffff;
  transform: translate(-40px);
}
.link-button .link-button__text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 4px 0 0;
  z-index: 1;
}

.link-button--large {
  width: 100%;
  max-width: 410px;
}

/*-------------------------------------------
テーブルの基本レイアウト
-------------------------------------------*/
table.base_table tr th {
  width: 20%;
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 0;
  border-bottom: 1px solid #dbdbdb;
}

table.base_table tr td {
  width: 80%;
  background-color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-bottom: 1px solid #dbdbdb;
}

/*-------------------------------------------
ページナビ
-------------------------------------------*/
.wrap_pagination {
  text-align: center;
  margin: 4.7rem 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: white;
  font-weight: 400 !important;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  padding: 10px 20px;
  margin: 10px;
  background-color: #dddddd;
  border-radius: 0;
  font-size: 0.9375rem;
  display: inline-block;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current,
.wp-pagenavi span.pages {
  color: white;
  border: 1px solid #aaca3f;
  background-color: #aaca3f;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: white;
  border: 1px solid #e5e5e5;
}

/*-------------------------------------------
パンくずリスト
-------------------------------------------*/
#after-header {
  position: relative;
}

.breadcrumb {
  padding: 1rem 0;
  margin-bottom: 3rem;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/*-------------------------------------------
ホバーでスケール
-------------------------------------------*/
.scale-img {
  position: relative;
  overflow: hidden;
}

.scale-img a:hover {
  opacity: 1;
}

.scale-img a,
.scale-img .thumb,
.scale-img .of_hide {
  position: relative;
  overflow: hidden;
  display: block;
}

.scale-img img {
  width: 100%;
  transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
}

.scale-img:hover img {
  transform: scale(1.1);
}

/*-------------------------------------------
横並びレイアウト
-------------------------------------------*/
.flexbox {
  display: flex;
  flex-flow: row;
  align-content: flex-start;
}

.flexbox-wrap {
  flex-flow: row wrap;
}

.flexbox-center {
  align-items: center;
}

/*-------------------------------------------
YouTube枠レスポンシブ
-------------------------------------------*/
.video-frame {
  position: relative;
  width: 100%;
}

.video-frame:before {
  content: "";
  display: block;
  padding-top: 56.3%;
  position: relative;
}

.video-frame-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------
固有スタイル
-------------------------------------------*/
#main {
  border: 2px solid #2624a8;
  border-radius: 0 0 20px 20px;
}

#wrap-content {
  margin-bottom: 3rem;
}

.border-trl-indigo {
  border-top: 2px solid #2624a8;
  border-radius: 20px 20px 0 0;
}

.bg-white {
  background-color: #ffffff;
}

.bg-light-gray {
  background-color: #f2f2f2;
}

.bg-indigo {
  background-color: #2624a8;
}

.bg-sand {
  background-color: #dab964;
}

.btn_wrapper {
  text-align: center;
  margin-bottom: 1rem;
}
.btn_wrapper:last-child {
  margin-bottom: 0;
}

.btn img {
  width: 100%;
  max-width: 440px;
}
.btn:hover, .btn:focus, .btn:active {
  opacity: 0.5;
}

.rounded-top-corners {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.rounded-bottom-corners {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/******************************************************************

プラグイン

******************************************************************/
.slick-slider {
  margin-bottom: 1rem;
}

.slick-track {
  overflow: hidden;
}

.slick-dots {
  bottom: 25px;
}

.slick-dots li {
  margin: 0 27px;
}

.slick-dots li button:before {
  width: 70px;
  height: 5px;
  content: "";
  background-color: #ffffff;
}

/******************************************************************

ヘッダー

******************************************************************/
.overlay {
  display: none;
}

#header {
  padding-top: 2rem;
}

/* head-bar
-------------------------------------------------------*/
#head-bar {
  background-color: #2624a8;
  border-radius: 20px 20px 0 0;
  padding: 1rem 1rem;
  margin: 0 auto;
}
#head-bar .head-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1rem;
}
#head-bar .head-bar-inner .head-bar-left {
  width: 100%;
  max-width: 267px;
}
#head-bar .head-bar-inner .head-bar-left .link:hover {
  opacity: 0.5;
}
#head-bar .head-bar-inner .head-bar-left img {
  width: 100%;
}
#head-bar .head-bar-inner .head-bar-center {
  flex: 1;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: flex-end;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item {
  position: relative;
  text-align: center;
  padding: 0.5rem 0;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item > a {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 0.5rem;
  white-space: nowrap;
  border-left: 1px solid #ffffff;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item:first-child a {
  border-left: none;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item.current-page-ancestor > a, #head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item.active > a, #head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item:hover > a {
  color: #ff4c7e;
  background-color: #5c5cad;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: stretch;
  min-width: 100%;
  background-color: #2624a8;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item .dropdown .menu-item {
  padding: 0;
  text-align: left;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul .menu-item .dropdown .menu-item > a {
  display: block;
  border-left: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4;
}
#head-bar .head-bar-inner .head-bar-right {
  display: none;
}

/******************************************************************

サイドバー

******************************************************************/
/******************************************************************

ユーティリティナビゲーション

******************************************************************/
/******************************************************************

フッター

******************************************************************/
#footer {
  background-color: #2624a8;
}

#footer-main {
  padding: 5rem 0;
}
#footer-main .footer__info {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 5%;
}
#footer-main .footer__info .footer__logo .link:hover {
  opacity: 0.5;
}
#footer-main .footer__info .footer__logo .link img {
  width: 100%;
  max-width: 88px;
}
#footer-main .footer__info .footer__details {
  color: #ffffff;
}
#footer-main .footer__info .footer__details .detail_item {
  margin-bottom: 1rem;
}
#footer-main .footer__info .footer__details .detail_item:last-child {
  margin-bottom: 0;
}
#footer-main .footer__info .footer__details .detail_item .large {
  font-size: 1.375rem;
}

/******************************************************************

トップページ(toppage)

******************************************************************/
.home .bg-tile-goldenrod {
  background-image: url("./assets/images/home/bg_tile_goldenrod.webp");
  background-repeat: repeat;
  background-size: 28px;
}
.home .bg-tile-indigo {
  background-image: url("./assets/images/home/bg_tile_indigo.webp");
  background-repeat: repeat;
  background-size: 28px;
}
.home .bg-tile-coral-pink {
  background-image: url("./assets/images/home/bg_tile_coral_pink.webp");
  background-repeat: repeat;
  background-size: 28px;
}
.home .about-area {
  background-image: linear-gradient(#ffffff, #ffffff), url("./assets/images/home/bg_tile_coral_pink.webp");
  background-position: 0 20px, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 100% calc(100% - 20px), 28px;
}
.home .content {
  padding-bottom: 3rem;
}
.home .content .section_header {
  margin-bottom: 2rem;
}
.home .content .section_header .section_title_wrapper .section_title {
  border-radius: 0 0 25px 25px;
  color: #ffffff;
  font-size: 1.625rem;
  text-align: center;
  width: 100%;
  max-width: 440px;
  padding: 0.5rem 1rem;
  margin: 0 auto;
}
.home .content .section_main .catchphrase_wrapper {
  text-align: center;
  margin-bottom: 1rem;
}
.home .content .section_main .catchphrase_wrapper .catchphrase {
  font-weight: 700;
  line-height: 1.5;
}
.home .content .section_main .catchphrase_wrapper .catchphrase.large {
  font-size: 4.0625rem;
}
.home .content .section_main .catchphrase_wrapper .catchphrase.middle {
  font-size: 2.8125rem;
}
.home .content .section_main .catchphrase_wrapper .catchphrase.small {
  font-size: 2.625rem;
}
.home .content .section_main .numbered-list {
  list-style: none;
  counter-reset: numbered;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.home .content .section_main .numbered-list .numbered-list__item {
  line-height: 1.5;
  padding-left: 1.8em;
  margin: 0.25em 0;
  position: relative;
}
.home .content .section_main .numbered-list .numbered-list__item::before {
  background-color: #c6a457;
  border-radius: 50%;
  box-sizing: content-box;
  color: #ffffff;
  content: counter(numbered);
  counter-increment: numbered;
  display: block;
  height: 1.8em;
  left: 1px;
  line-height: 1.8;
  padding: 0;
  position: absolute;
  text-align: center;
  top: -0.15em;
  transform: scale(0.75);
  transform-origin: 0 50%;
  width: 1.8em;
}
.home .content .section_main .numbered-list .numbered-list__item .pink {
  color: #ff4c7e;
}
.home #lead {
  padding-bottom: 3rem;
}
.home #lead .mainvisual {
  text-align: center;
  margin-bottom: 1rem;
}
.home #lead .mainvisual img {
  width: 100%;
  max-width: 960px;
}
.home #lead .lead_title_wrapper {
  margin-bottom: 1rem;
}
.home #lead .lead_title_wrapper .lead_title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.home #lead .lead_description_wrapper {
  margin-bottom: 1rem;
}
.home #lead .lead_description_wrapper .lead_description {
  font-size: 1.125rem;
  font-weight: 500;
}
.home #lead .lead_entry_finished_wrapper {
  border-radius: 14px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.home #lead .lead_entry_finished_wrapper .lead_entry_finished {
  font-size: 2.1875rem;
  font-weight: 700;
  text-align: center;
}
.home #entry .section_main .catchphrase {
  text-align: center;
}
.home #entry .section_main .deadline {
  text-align: center;
  max-width: 565px;
  margin: 0 auto 2rem;
  border-radius: 30px;
}
.home #entry .section_main .deadline p {
  color: #f0466e;
  font-size: 1.9375rem;
  font-weight: 500;
}
.home #entry .section_main .btn-entry_wrapper {
  max-width: 440px;
  margin: 0 auto;
}
.home #awards-event {
  color: #ffffff;
}
.home #awards-event .section_header .section_title_wrapper .section_title {
  color: #2624a8;
}
.home #awards-event .section_main .description {
  margin-bottom: 1rem;
}
.home #awards-event .section_main .event-info {
  max-width: 630px;
  margin: 0 auto 1rem;
}
.home #awards-event .section_main .event-info .row {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
}
.home #awards-event .section_main .event-info dt,
.home #awards-event .section_main .event-info dd {
  margin: 0;
}
.home #awards-event .section_main .event-info dt {
  color: #2624a8;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #dab964;
  border-radius: 25px;
  width: 100%;
  max-width: 90px;
  text-align: center;
}
.home #awards-event .section_main .event-info dd {
  font-size: 1.9375rem;
}
.home #awards-event .section_main .link-youtube {
  text-align: center;
  margin-bottom: 2rem;
}
.home #awards-event .section_main .link-youtube .link-youtube__title {
  font-size: 1.5625rem;
  font-weight: 700;
}
.home #awards-event .section_main .link-youtube > a {
  color: #ffffff;
  font-size: 1.25rem;
}
.home #awards-event .section_main .link-youtube > a:hover {
  text-decoration: underline;
}
.home #awards-event .section_main .link-youtube > p {
  font-size: 1.25rem;
}
.home #awards-event .section_main .btn-entry_wrapper {
  max-width: 380px;
  margin: 0 auto;
}
.home #about {
  padding-bottom: 3rem;
}
.home #about .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}
.home #example .section_main .example_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2%;
}
.home #example .section_main .example_list .example_item {
  max-width: 23.5%;
}
.home #method .section_main .numbered-list {
  margin-bottom: 3rem;
}
.home #method .section_main .numbered-list .link {
  color: #ff4c7e;
}
.home #method .section_main .numbered-list .link:hover {
  text-decoration: underline;
}
.home #prizes .section_main .description {
  margin-bottom: 2rem;
}
.home #prizes .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}
.home #prizes .section_main .prize_list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.home #prizes .section_main .prize_list .prize_item {
  width: calc((100% - 4rem) / 3);
}
.home #prizes .section_main .prize_list .prize_item img {
  display: block;
  width: 100%;
  height: auto;
}
.home #types .section_main .award_detail_image img {
  display: block;
  width: 100%;
  height: auto;
}
.home #benefits .section_main .benefit_detail_list {
  counter-reset: benefit;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home #benefits .section_main .benefit_detail_item {
  counter-increment: benefit;
  display: grid;
  grid-template-columns: 1fr 248px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: center;
}
.home #benefits .section_main .benefit_detail_item + .benefit_detail_item {
  margin-top: 2rem;
}
.home #benefits .section_main .benefit_detail_body {
  display: grid;
  grid-template-columns: 54px 1fr;
  -moz-column-gap: 18px;
       column-gap: 18px;
  align-items: flex-start;
}
.home #benefits .section_main .benefit_detail_number {
  position: relative;
  width: 54px;
  aspect-ratio: 1/1;
  background-image: url(assets/images/home/icon_benefit_number.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.home #benefits .section_main .benefit_detail_number::before {
  content: counter(benefit);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #2f2f98;
}
.home #benefits .section_main .benefit_detail_title {
  margin: 0 0 0.5rem;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.45;
  color: #2f2f98;
}
.home #benefits .section_main .benefit_detail_description {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  color: #2f2f98;
}
.home #benefits .section_main .benefit_detail_image img {
  display: block;
  width: 100%;
  height: auto;
}
.home #awards-event {
  color: #2624a8;
}
.home #awards-event .section_header .section_title_wrapper .section_title {
  color: #ffffff;
}
.home #awards-event .section_main .description {
  margin-bottom: 2rem;
}
.home #awards-event .section_main .description p {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
}
.home #awards-event .section_main .event_card {
  display: grid;
  grid-template-columns: 1fr 38%;
  align-items: center;
  gap: 2rem;
  background-color: #f2f2f2;
  border: 1px solid #b3b3b3;
  border-radius: 8px;
  padding: 2rem 2rem;
  margin-bottom: 3rem;
}
.home #awards-event .section_main .event_detail .title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.home #awards-event .section_main .event-info {
  margin: 0;
}
.home #awards-event .section_main .event-info .row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
}
.home #awards-event .section_main .event-info .row + .row {
  margin-top: 0.5rem;
}
.home #awards-event .section_main .event-info dt,
.home #awards-event .section_main .event-info dd {
  margin: 0;
}
.home #awards-event .section_main .event-info dt {
  color: #2624a8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background-color: #fedd6b;
  border-radius: 999px;
  text-align: center;
  padding: 0.25rem 0.75rem;
}
.home #awards-event .section_main .event-info dd {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.45;
}
.home #awards-event .section_main .image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-inline: auto;
}
.home .awards-event_entry {
  padding: 0 1rem;
  margin-bottom: 3rem;
}
.home {
  /*
  受賞企業
  */
}
.home #award .section_header .section_title {
  border-radius: 30px;
  color: #2624a8;
  border: 1px solid #2624a8;
  background-color: #dab964;
  position: relative;
  top: -1.7rem;
}
.home #award .section_main .section_inner.description {
  background-color: #232f8e;
  color: #ffffff;
  text-align: center;
  padding: 0.7rem 0.5rem;
  margin-bottom: 3rem;
}
.home #award .section_main .section_inner.description a {
  color: inherit;
  text-decoration: underline;
}
.home #award .section_main .section_inner.description a:hover {
  text-decoration: none;
}
.home #award .section_main .section_inner.award-rank {
  margin-bottom: 3rem;
}
.home #award .section_main .section_inner_title_wrapper {
  background-image: url(assets/images/home/bg-title-03.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 30px;
  border: 1px solid #2624a8;
  color: #2624a8;
  text-align: center;
  padding: 0.3rem 0.5rem;
  margin-bottom: 3rem;
}
.home #award .section_main .section_inner_title {
  font-size: 1.5rem;
}
.home #award .section_main .award-company-list-wrapper {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.home #award .section_main .award-company-list-wrapper .icon-award {
  flex-basis: 20%;
  max-width: 145px;
}
.home #award .section_main .award-company-list-wrapper .award-company-list {
  flex: 1;
}
.home #award .section_main .award-company-list-wrapper .award-company-list li {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  flex-basis: 100%;
  margin: 0.2rem 0;
  position: relative;
  right: 72.5px;
}
.home #award .section_main .award-company-list-wrapper .award-company-list li a {
  color: inherit;
}
.home #award .section_main .award-company-list-wrapper .award-company-list li a:hover {
  text-decoration: underline;
}
.home #award .section_main #award-01 .section_inner_title_wrapper {
  background-image: url(assets/images/home/bg-title-01.webp);
}
.home #award .section_main #award-01 .award-company-list li {
  font-size: 2.65rem;
}
.home #award .section_main #award-02 .section_inner_title_wrapper {
  background-image: url(assets/images/home/bg-title-02.webp);
}
.home #award .section_main #award-02 .award-company-list li {
  font-size: 2.35rem;
}
.home #award .section_main #award-05 .award-company-list-wrapper {
  align-items: flex-start;
}
.home #award .section_footer {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.home #award .section_footer .note {
  display: inline-block;
  width: 100%;
  background-color: #2624a8;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 1.625rem;
  color: #ffffff;
  line-height: 1.6;
}
.home #award .section_footer .note-list {
  width: 100%;
  background-color: #dce7dc;
  padding: 1rem 3%;
  border-radius: 20px;
  font-size: 1.125rem;
  border: 1px solid #2624a8;
}

/******************************************************************

固定ページ(page)

******************************************************************/
/**
 * 2025年度アーカイブ
 */
.page-archive-2025 .bg-tile-goldenrod {
  background-image: url("./assets/images/home/bg_tile_goldenrod.webp");
  background-repeat: repeat;
  background-size: 28px;
}
.page-archive-2025 .bg-tile-indigo {
  background-image: url("./assets/images/home/bg_tile_indigo.webp");
  background-repeat: repeat;
  background-size: 28px;
}
.page-archive-2025 #main > div {
  padding-top: 5rem;
}
.page-archive-2025 .content {
  padding-bottom: 3rem;
}
.page-archive-2025 .content .section_header {
  margin-bottom: 2rem;
}
.page-archive-2025 .content .section_header .section_title_wrapper .section_title {
  border-radius: 0 0 25px 25px;
  color: #ffffff;
  font-size: 1.625rem;
  text-align: center;
  width: 100%;
  max-width: 440px;
  padding: 0.5rem 1rem;
  margin: 0 auto;
}
.page-archive-2025 .content .section_main .catchphrase_wrapper {
  text-align: center;
  margin-bottom: 1rem;
}
.page-archive-2025 .content .section_main .catchphrase_wrapper .catchphrase {
  font-weight: 700;
  line-height: 1.5;
}
.page-archive-2025 .content .section_main .catchphrase_wrapper .catchphrase.large {
  font-size: 4.0625rem;
}
.page-archive-2025 .content .section_main .catchphrase_wrapper .catchphrase.middle {
  font-size: 2.625rem;
}
.page-archive-2025 .content .section_main .numbered-list {
  list-style: none;
  counter-reset: numbered;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.page-archive-2025 .content .section_main .numbered-list .numbered-list__item {
  line-height: 1.5;
  padding-left: 1.8em;
  margin: 0.25em 0;
  position: relative;
}
.page-archive-2025 .content .section_main .numbered-list .numbered-list__item::before {
  background-color: #c6a457;
  border-radius: 50%;
  box-sizing: content-box;
  color: #ffffff;
  content: counter(numbered);
  counter-increment: numbered;
  display: block;
  height: 1.8em;
  left: 1px;
  line-height: 1.8;
  padding: 0;
  position: absolute;
  text-align: center;
  top: -0.15em;
  transform: scale(0.75);
  transform-origin: 0 50%;
  width: 1.8em;
}
.page-archive-2025 .content .section_main .numbered-list .numbered-list__item .pink {
  color: #ff4c7e;
}
.page-archive-2025 #lead {
  padding-bottom: 3rem;
}
.page-archive-2025 #lead .mainvisual {
  text-align: center;
}
.page-archive-2025 #lead .mainvisual img {
  width: 100%;
  max-width: 960px;
}
.page-archive-2025 #lead .lead_title_wrapper {
  margin-bottom: 0.5rem;
}
.page-archive-2025 #lead .lead_title_wrapper .lead_title {
  font-size: 2.5rem;
  text-align: center;
}
.page-archive-2025 #lead .lead_description_wrapper {
  margin-bottom: 1rem;
}
.page-archive-2025 #lead .lead_description_wrapper .lead_description {
  font-size: 1.125rem;
  font-weight: 500;
}
.page-archive-2025 #lead .lead_entry_finished_wrapper {
  border-radius: 14px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.page-archive-2025 #lead .lead_entry_finished_wrapper .lead_entry_finished {
  font-size: 2.1875rem;
  font-weight: 700;
  text-align: center;
}
.page-archive-2025 #awards-event {
  color: #ffffff;
}
.page-archive-2025 #awards-event .section_header .section_title_wrapper .section_title {
  color: #2624a8;
}
.page-archive-2025 #awards-event .section_main .description {
  margin-bottom: 1rem;
}
.page-archive-2025 #awards-event .section_main .event-info {
  max-width: 630px;
  margin: 0 auto 1rem;
}
.page-archive-2025 #awards-event .section_main .event-info .row {
  display: flex;
  align-items: center;
  gap: 0.5rem 1rem;
}
.page-archive-2025 #awards-event .section_main .event-info dt,
.page-archive-2025 #awards-event .section_main .event-info dd {
  margin: 0;
}
.page-archive-2025 #awards-event .section_main .event-info dt {
  color: #2624a8;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #dab964;
  border-radius: 25px;
  width: 100%;
  max-width: 90px;
  text-align: center;
}
.page-archive-2025 #awards-event .section_main .event-info dd {
  font-size: 1.9375rem;
}
.page-archive-2025 #awards-event .section_main .link-youtube {
  text-align: center;
  margin-bottom: 2rem;
}
.page-archive-2025 #awards-event .section_main .link-youtube .link-youtube__title {
  font-size: 1.5625rem;
  font-weight: 700;
}
.page-archive-2025 #awards-event .section_main .link-youtube > a {
  color: #ffffff;
  font-size: 1.25rem;
}
.page-archive-2025 #awards-event .section_main .link-youtube > a:hover {
  text-decoration: underline;
}
.page-archive-2025 #awards-event .section_main .link-youtube > p {
  font-size: 1.25rem;
}
.page-archive-2025 #awards-event .section_main .btn-entry_wrapper {
  max-width: 380px;
  margin: 0 auto;
}
.page-archive-2025 #about {
  padding-bottom: 5rem;
}
.page-archive-2025 #about .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}
.page-archive-2025 #example .section_main .example_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2%;
}
.page-archive-2025 #example .section_main .example_list .example_item {
  max-width: 23.5%;
}
.page-archive-2025 #types .section_main .award_wrapper {
  display: flex;
  gap: 2rem 2%;
}
.page-archive-2025 #types .section_main .award_wrapper .detail img {
  width: 100%;
  max-width: 611px;
}
.page-archive-2025 #types .section_main .award_wrapper .image img {
  width: 100%;
  max-width: 278px;
}
.page-archive-2025 #benefits .section_main .description {
  text-align: center;
  margin-bottom: 3rem;
}
.page-archive-2025 #benefits .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}
.page-archive-2025 #benefits .section_main .benefit_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2%;
  max-width: 680px;
  margin: 0 auto;
}
.page-archive-2025 #benefits .section_main .benefit_list .benefit_item {
  width: 100%;
  max-width: 32%;
}
.page-archive-2025 {
  /*
  受賞企業
  */
}
.page-archive-2025 #award .section_header .section_title {
  border-radius: 30px;
  color: #2624a8;
  border: 1px solid #2624a8;
  background-color: #dab964;
  position: relative;
  top: -1.7rem;
}
.page-archive-2025 #award .section_main .section_inner.description {
  background-color: #232f8e;
  color: #ffffff;
  text-align: center;
  padding: 0.7rem 0.5rem;
  margin-bottom: 3rem;
}
.page-archive-2025 #award .section_main .section_inner.description a {
  color: inherit;
  text-decoration: underline;
}
.page-archive-2025 #award .section_main .section_inner.description a:hover {
  text-decoration: none;
}
.page-archive-2025 #award .section_main .section_inner.award-rank {
  margin-bottom: 3rem;
}
.page-archive-2025 #award .section_main .section_inner_title_wrapper {
  background-image: url(assets/images/home/bg-title-03.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 30px;
  border: 1px solid #2624a8;
  color: #2624a8;
  text-align: center;
  padding: 0.3rem 0.5rem;
  margin-bottom: 3rem;
}
.page-archive-2025 #award .section_main .section_inner_title {
  font-size: 1.5rem;
}
.page-archive-2025 #award .section_main .award-company-list-wrapper {
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
.page-archive-2025 #award .section_main .award-company-list-wrapper .icon-award {
  flex-basis: 20%;
  max-width: 145px;
}
.page-archive-2025 #award .section_main .award-company-list-wrapper .award-company-list {
  flex: 1;
}
.page-archive-2025 #award .section_main .award-company-list-wrapper .award-company-list li {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  flex-basis: 100%;
  margin: 0.2rem 0;
  position: relative;
  right: 72.5px;
}
.page-archive-2025 #award .section_main .award-company-list-wrapper .award-company-list li a {
  color: inherit;
}
.page-archive-2025 #award .section_main .award-company-list-wrapper .award-company-list li a:hover {
  text-decoration: underline;
}
.page-archive-2025 #award .section_main #award-01 .section_inner_title_wrapper {
  background-image: url(assets/images/home/bg-title-01.webp);
}
.page-archive-2025 #award .section_main #award-01 .award-company-list li {
  font-size: 2.65rem;
}
.page-archive-2025 #award .section_main #award-02 .section_inner_title_wrapper {
  background-image: url(assets/images/home/bg-title-02.webp);
}
.page-archive-2025 #award .section_main #award-02 .award-company-list li {
  font-size: 2.35rem;
}
.page-archive-2025 #award .section_main #award-05 .award-company-list-wrapper {
  align-items: flex-start;
}
.page-archive-2025 #award .section_footer {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.page-archive-2025 #award .section_footer .note {
  display: inline-block;
  width: 100%;
  background-color: #2624a8;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 1.625rem;
  color: #ffffff;
  line-height: 1.6;
}
.page-archive-2025 #award .section_footer .note-list {
  width: 100%;
  background-color: #dce7dc;
  padding: 1rem 3%;
  border-radius: 20px;
  font-size: 1.125rem;
  border: 1px solid #2624a8;
}

/**
 * エントリー受付開始前
 */
.page-entry #main {
  border: none;
}
.page-entry #entry-notice {
  padding: 5rem 1rem 6rem;
}
.page-entry #entry-notice .entry-notice_box {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border: 2px solid #2624a8;
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
}
.page-entry #entry-notice .message {
  color: #2624a8;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
}

/******************************************************************

投稿（お知らせ）

******************************************************************/
/* single
-------------------------------------------------------*/
.single-post .single_inner_width {
  width: 80% !important;
  margin: 0 auto !important;
}
.single-post .post-category {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.single-post .post-category .taxonomy {
  color: #ffffff;
  display: inline-block;
  padding: 0.1rem 0.5rem;
}

h1.page-title,
h1.single-title {
  font-weight: bold;
  background: none;
  margin-bottom: 1rem;
  /* border: 1px solid #dddddd; */
  padding: 0;
  /* border-radius: 3px; */
  font-size: 1.6rem;
}

.single-post .article-header .single-title_wrapper {
  margin-bottom: 2rem;
  border: 1px solid #dddddd;
  padding: 1.5rem;
  border-radius: 3px;
}

.single-post .article-header .single-title_wrapper .date {
  /*    text-align: right;*/
  color: #666666;
  font-size: 0.9rem;
}

/* 文章 */
.single-post .entry-content img {
  width: auto;
}

.single-post .entry-content p {
  margin-bottom: 0.5rem;
}

.single-post .entry-content a {
  color: #01a93b;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  margin-bottom: 1rem;
}

.single-post .article-footer {
  margin-bottom: 4.7rem;
}

.single-post .article-footer .post_link {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.single-post .article-footer .post_link a:hover {
  text-decoration: underline !important;
}

/******************************************************************

カスタム投稿

******************************************************************/
/******************************************************************

404 Page Not Found

******************************************************************/
.error404 #main {
  border: none;
}
.error404 .floatingButton_wrapper {
  display: none;
}

/******************************************************************
*******************************************************************

メディアクエリー

*******************************************************************
******************************************************************/
/* style-sp.cssにコーディング *//*# sourceMappingURL=style.css.map */