@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:"] {
  color: inherit;
  pointer-events: none;
  text-decoration: none;
}

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

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

構造調整タグ

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

汎用パーツ

******************************************************************/
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_wrapper {
  text-align: center;
}

.button {
  color: #515151;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 100%;
  max-width: 320px;
  height: 64px;
  border: 1px solid #515151;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}
.button .fas {
  color: #f0e800;
  margin-left: 0.5rem;
}
.button:hover, .button:focus, .button:active {
  color: #ffffff;
  background-color: #f0e800;
}
.button:hover .fas, .button:focus .fas, .button:active .fas {
  color: #ffffff;
}

.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: #f0e800;
  font-weight: 400 !important;
  text-decoration: none;
  border: 1px solid #f0e800;
  padding: 10px 20px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 0;
  font-size: 1rem;
  display: inline-block;
}

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

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

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

.breadcrumb {
  color: #f0e800;
}

.breadcrumb span {
  color: #515151;
}

.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%;
}

/*-------------------------------------------
固有スタイル
-------------------------------------------*/
/******************************************************************

プラグイン

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

.slick-track {
  overflow: hidden;
}

.slick-dots li button:before {
  color: #f0e800;
}

.slick-dots li.slick-active button:before {
  color: #f0e800;
}

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

ヘッダー

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

#header {
  margin-bottom: 4rem;
}

#inner-header .main-image img {
  width: 100%;
}

/* head-bar
-------------------------------------------------------*/
#head-bar {
  padding: 0rem 1rem;
  margin: 0 auto;
  background-color: #ffffff;
}
#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: 285px;
}
#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;
  display: block;
  height: 100px;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item > a {
  color: #515151;
  font-weight: 600;
  padding: 0 1rem;
  white-space: nowrap;
}
#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: #f0e800;
}
#head-bar .head-bar-inner .head-bar-right {
  display: none;
}

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

サイドバー

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

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

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

フッター

******************************************************************/
#footer {
  background-color: #f0e800;
  padding: 3rem 0;
}

#footer-main .organizer {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
#footer-main .sponsor {
  font-size: 0.875rem;
}

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

トップページ(toppage)

******************************************************************/
.home section {
  margin-bottom: 3rem;
}
.home section .section_header {
  margin-bottom: 1rem;
}
.home section .section_header .section_title {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 2.1875rem;
  font-weight: 800;
}
.home section .section_header .section_title .section_title__icon {
  width: 1em;
  height: auto;
}

.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

@keyframes INVIEW_SCALE {
  0% {
    transform: scale(0);
  }
  65% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
.effects {
  inset: 0;
  z-index: -1;
}
.effects .spark {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  transform: scale(0);
}
.effects .spark img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.effects .spark.on {
  animation: INVIEW_SCALE 0.55s ease-out forwards;
}
.effects .chara {
  width: 100%;
  overflow: hidden;
  transform: scale(0);
}
.effects .chara img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.effects .chara.on {
  animation: INVIEW_SCALE 0.55s ease-out forwards;
}

/* 会場案内
-------------------------------------------------------*/
.home #venue-info {
  margin-bottom: 10rem;
}
.home #venue-info .effects .spark--01 {
  --spark--01-w: 175px;
  top: 0;
  left: clamp(0px, 50% + 510px, 100% - var(--spark--01-w));
  max-width: var(--spark--01-w);
}
.home #venue-info .effects .spark--02 {
  --spark--02-w: 155px;
  top: 15%;
  right: clamp(0px, 50% + 510px, 100% - var(--spark--02-w));
  max-width: var(--spark--02-w);
}
.home #venue-info .effects .spark--03 {
  --spark--03-w: 175px;
  top: 19.5%;
  right: clamp(0px, 50% + 560px, 100% - var(--spark--03-w));
  max-width: var(--spark--03-w);
}
.home #venue-info .effects .spark--04 {
  --spark--04-w: 295px;
  top: 23%;
  left: clamp(0px, 50% + 450px, 100% - var(--spark--04-w));
  max-width: var(--spark--04-w);
}
.home #venue-info .effects .spark--05 {
  --spark--05-w: 180px;
  top: 48%;
  right: clamp(0px, 50% + 500px, 100% - var(--spark--05-w));
  max-width: var(--spark--05-w);
}
.home #venue-info .effects .spark--06 {
  --spark--06-w: 220px;
  top: 51%;
  left: clamp(0px, 50% + 510px, 100% - var(--spark--06-w));
  max-width: var(--spark--06-w);
}
.home #venue-info .effects .spark--07 {
  --spark--07-w: 155px;
  top: 63%;
  left: clamp(0px, 50% + 475px, 100% - var(--spark--07-w));
  max-width: var(--spark--07-w);
}
.home #venue-info .effects .spark--08 {
  --spark--08-w: 245px;
  top: 73%;
  right: clamp(0px, 50% + 530px, 100% - var(--spark--08-w));
  max-width: var(--spark--08-w);
}
.home #venue-info .effects .spark--09 {
  --spark--09-w: 175px;
  top: 86%;
  left: clamp(0px, 50% + 510px, 100% - var(--spark--09-w));
  max-width: var(--spark--09-w);
}
.home #venue-info .effects .chara--01 {
  --chara--01-w: 114px;
  top: 10%;
  left: clamp(0px, 50% + 550px, 100% - var(--chara--01-w));
  max-width: var(--chara--01-w);
}
.home #venue-info .effects .chara--02 {
  --chara--02-w: 128px;
  top: 38%;
  right: clamp(0px, 50% + 510px, 100% - var(--chara--02-w));
  max-width: var(--chara--02-w);
}
.home #venue-info .effects .chara--03 {
  --chara--03-w: 186px;
  top: 66%;
  left: clamp(0px, 50% + 475px, 100% - var(--chara--03-w));
  max-width: var(--chara--03-w);
}
.home #venue-info .section_main .section_content .floor-info {
  margin-bottom: 6rem;
}
.home #venue-info .section_main .section_content .floor-info .floor {
  margin-bottom: 4rem;
}
.home #venue-info .section_main .section_content .floor-info .place-info {
  margin-bottom: 4rem;
}
.home #venue-info .section_main .section_content .floor-info .place-info:last-child {
  margin-bottom: 0;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem 3%;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text {
  width: 100%;
  max-width: 345px;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__title.pink {
  background-color: #db6aa4;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__title.green {
  background-color: #00b097;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__title.orange {
  background-color: #ed6d0f;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__list {
  padding-left: 1.5rem;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__list li {
  font-size: 1.25rem;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__images {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__images .place-info__image {
  width: 100%;
  max-width: 201px;
}
.home #venue-info .section_main .section_content .stamp-rally {
  padding-top: 10vw;
}
.home #venue-info .section_main .section_content .stamp-rally .effects .spark {
  inset: 0;
  max-width: 800px;
  margin: 0 auto;
}
.home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner {
  display: flex;
  justify-content: center;
}
.home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header {
  width: 100%;
  max-width: 500px;
}
.home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header .stamp-rally_desc__text .prize-list {
  padding-top: 2rem;
}
.home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header .stamp-rally_desc__text .prize-list li {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}
.home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header .stamp-rally_desc__text .prize-list li span {
  color: #a40035;
}
.home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_main {
  width: 100%;
  max-width: 465px;
}

/* アクセス
-------------------------------------------------------*/
.home #access .effects .spark--01 {
  --spark--01-w: 155px;
  top: -13%;
  right: clamp(0px, 50% + 510px, 100% - var(--spark--01-w));
  max-width: var(--spark--01-w);
}
.home #access .effects .spark--02 {
  --spark--02-w: 175px;
  top: 14%;
  right: clamp(0px, 50% + 560px, 100% - var(--spark--02-w));
  max-width: var(--spark--02-w);
}
.home #access .effects .spark--03 {
  --spark--03-w: 295px;
  top: 33%;
  left: clamp(0px, 50% + 450px, 100% - var(--spark--03-w));
  max-width: var(--spark--03-w);
}
.home #access .effects .chara--01 {
  --chara--01-w: 120px;
  top: -48%;
  right: clamp(0px, 50% + 525px, 100% - var(--chara--01-w));
  max-width: var(--chara--01-w);
}
.home #access .effects .chara--02 {
  --chara--02-w: 84px;
  top: 85%;
  left: clamp(0px, 50% + 560px, 100% - var(--chara--02-w));
  max-width: var(--chara--02-w);
}
.home #access .section_main .section_content .access-info {
  font-size: 1.25rem;
}

/* お問い合わせ先
-------------------------------------------------------*/
.home #contact-info .section_main .section_content {
  font-size: 1.25rem;
  line-height: 1.5;
}
.home #contact-info .section_main .section_content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.8em;
}
.home #contact-info .section_main .section_content .corporate-name {
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.home #contact-info .section_main .section_content .info-line--last {
  margin-bottom: 0.5rem;
}
.home #contact-info .section_main .section_content .prefecture-commission .title {
  border: 1px solid #231815;
  padding: 0 0.5rem;
}

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

投稿（お知らせ）

******************************************************************/
.category-news #category-news {
  margin-bottom: 0;
}

.postlist .postlist-ul li {
  border-bottom: none;
}
.postlist .postlist-ul li .hover_ul {
  display: block;
  padding: 1.5rem 2rem;
}
.postlist .postlist-ul li .hover_ul:hover, .postlist .postlist-ul li .hover_ul:focus, .postlist .postlist-ul li .hover_ul:active {
  color: #515151;
}
.postlist .postlist-ul li .hover_ul .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.postlist .postlist-ul li .hover_ul .text .list-title {
  font-size: 1rem;
  font-weight: 500;
}
.postlist .postlist-ul li .hover_ul .text .list-title .fas {
  color: #f0e800;
  margin-right: 0.5rem;
}
.postlist .postlist-ul li .hover_ul .text .date {
  font-size: 0.875rem;
  line-height: 1;
}
.postlist .postlist-ul li .hover_ul .text .date .publication {
  margin-right: 0.5rem;
}

/* 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;
  padding: 0;
  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 {
  padding: 0;
  margin-bottom: 0;
}

.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)

******************************************************************/
.page-job #header {
  margin-bottom: 0;
}
.page-job .venue-map {
  background: #ddd;
}
.page-job .venue-map .venue-map-inner {
  width: 100%;
}
.page-job .venue-map #mapcontainer {
  width: 100%;
  height: 100vh;
  background: #ffffff;
}
.page-job .venue-map .leaflet-control-attribution {
  display: none;
}

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

カスタム投稿

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

404 Page Not Found

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

メディアクエリー

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