@charset "UTF-8";
/******************************************************************
Theme Name: こうちデジ活アワード2025
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;
}

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

構造調整タグ

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

汎用パーツ

******************************************************************/
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;
}

.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-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 {
  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;
}
#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)

******************************************************************/
.bg-tile {
  background-image: url("./assets/images/home/bg_tile.webp");
  background-repeat: repeat;
  background-size: 28px;
}

.content {
  padding-bottom: 3rem;
}
.content .section_header {
  margin-bottom: 2rem;
}
.content .section_header .section_title_wrapper .section_title {
  background-color: #2624a8;
  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;
}
.content .section_main .catchphrase_wrapper {
  text-align: center;
  margin-bottom: 1rem;
}
.content .section_main .catchphrase_wrapper .catchphrase {
  font-weight: 700;
  line-height: 1.5;
}
.content .section_main .catchphrase_wrapper .catchphrase.large {
  font-size: 4.375rem;
}
.content .section_main .catchphrase_wrapper .catchphrase.middle {
  font-size: 2.625rem;
}
.content .section_main .numbered-list {
  list-style: none;
  counter-reset: numbered;
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.content .section_main .numbered-list .numbered-list__item {
  line-height: 1.5;
  padding-left: 1.8em;
  margin: 0.25em 0;
  position: relative;
}
.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;
}
.content .section_main .numbered-list .numbered-list__item .pink {
  color: #ff4c7e;
}

#lead {
  padding-bottom: 3rem;
}
#lead .mainvisual {
  text-align: center;
}
#lead .mainvisual img {
  width: 100%;
  max-width: 960px;
}
#lead .lead_title_wrapper {
  margin-bottom: 0.5rem;
}
#lead .lead_title_wrapper .lead_title {
  font-size: 2.5rem;
  text-align: center;
}
#lead .lead_description_wrapper .lead_description {
  font-size: 1.125rem;
  font-weight: 500;
}

#entry .section_main .deadline {
  text-align: center;
  max-width: 565px;
  margin: 0 auto 2rem;
  border-radius: 30px;
}
#entry .section_main .deadline p {
  font-size: 1.9375rem;
}
#entry .section_main .new {
  color: #ff4c7e;
  text-align: center;
  max-width: 565px;
  margin: 0 auto 2rem;
}
#entry .section_main .new p {
  font-size: 1.625rem;
}
#entry .section_main .new p span {
  margin-right: 1rem;
}
#entry .section_main .new p span:last-child {
  margin-right: 0;
}
#entry .section_main .btn-entry_wrapper {
  max-width: 440px;
  margin: 0 auto;
}

#about .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}

#example .section_main .example_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2%;
}
#example .section_main .example_list .example_item {
  max-width: 23.5%;
}

#method .section_main .numbered-list {
  margin-bottom: 3rem;
}
#method .section_main .numbered-list .link {
  color: #ff4c7e;
}
#method .section_main .numbered-list .link:hover {
  text-decoration: underline;
}

#types .section_main .award_wrapper {
  display: flex;
  gap: 2rem 2%;
}
#types .section_main .award_wrapper .detail img {
  width: 100%;
  max-width: 611px;
}
#types .section_main .award_wrapper .image img {
  width: 100%;
  max-width: 278px;
}

#benefits .section_main .description {
  text-align: center;
  margin-bottom: 3rem;
}
#benefits .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}
#benefits .section_main .benefit_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2%;
  max-width: 680px;
  margin: 0 auto;
}
#benefits .section_main .benefit_list .benefit_item {
  width: 100%;
  max-width: 32%;
}

#event {
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}
#event .section_main .description {
  margin-bottom: 3rem;
}
#event .section_main .description p {
  font-size: 1.125rem;
  font-weight: 500;
}
#event .section_main .event-info {
  background-color: #f2f2f2;
  border: 1px solid #b3b3b3;
  border-radius: 10px;
  max-width: 640px;
  padding: 1rem 2.5rem;
  margin: 0 auto;
  font-size: 1.75rem;
}

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

投稿（お知らせ）

******************************************************************/
/* 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;
}

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

固定ページ(page)

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

カスタム投稿

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

404 Page Not Found

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

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

メディアクエリー

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