@charset "UTF-8";
/******************************************************************
サイトコンテンツスタイルシート（スマホ版）
Author: Y.Yokoyama
Author URI: http://fromdime.com
******************************************************************/
/******************************************************************

共通

******************************************************************/
/*-------------------------------------------
ヘッダーバー
-------------------------------------------*/
/*
メニューボタン
*/
.menu-btn a,
.menu-btn a span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-btn a {
  position: relative;
  width: 40px;
  height: 40px;
}

.menu-btn a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #515151;
  border-radius: 4px;
}

.menu-btn a span:nth-of-type(1) {
  top: 7px;
}

.menu-btn a span:nth-of-type(2) {
  top: 18px;
}

.menu-btn a span:nth-of-type(3) {
  bottom: 7px;
}

.menu-btn a.btn-close span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}

.menu-btn a.btn-close span:nth-of-type(2) {
  opacity: 0;
}

.menu-btn a.btn-close span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

/*
メニュー
*/
.overlay {
  position: fixed;
  z-index: 100;
  background-color: #f1f1f1;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 1.2rem;
  height: calc(100% - 72px);
}

/* スクロールバーのカスタマイズ */
.overlay::-webkit-scrollbar {
  /*    width: 10px;*/
  width: 5px;
}

.overlay::-webkit-scrollbar-track {
  background: #ffffff;
  border-left: solid 1px #ececec;
}

.overlay::-webkit-scrollbar-thumb {
  background: #bbbbbb;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.overlay_inner {
  /*        overflow-y: scroll;*/
}

.wrap-globalnavi-sp {
  margin-bottom: 1.5rem;
}

.wrap-globalnavi-sp .globalnavi {
  background-color: #ffffff;
}

.wrap-globalnavi-sp .globalnavi > ul {
  flex-flow: wrap;
}

.wrap-globalnavi-sp .globalnavi > ul > li {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0;
}

.wrap-globalnavi-sp .globalnavi ul li a {
  /*    font-size: 0.9rem;*/
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #dddddd;
}

.wrap-globalnavi-sp .globalnavi .globalnavi-ul > li:last-child a {
  border-bottom: none;
}

.wrap-globalnavi-sp .globalnavi ul li a:hover {
  opacity: 1;
}

.globalnavi-sp ul li .dropdown li a {
  padding: 0.8rem 0.5rem 0.8rem 2.5rem;
}

.overlay .internal-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay .internal-item {
  text-align: center;
}

.overlay .internal-item {
  margin-right: 4%;
}

.overlay .internal-item:last-child {
  margin-right: 0;
}

.overlay .internal-item > a {
  display: block;
}

.overlay .internal-item img {
  max-width: 40px;
}

.overlay .internal-item span {
  display: block;
  font-size: 0.7rem;
}

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

メディアクエリー

*******************************************************************
******************************************************************/
/* 1281px ~ : PC Large screens -> Default */
/* ~ 1280px : PC screens */
@media only screen and (max-width: 80em) {
  .effects .chara {
    display: none;
  }
}
/* ~ 1024px : Medium screens */
/* ~ 960px : Tablet screens */
/* ~ 896px : スマホ横 */
@media only screen and (max-width: 56em) {
  /* 会場案内
  -------------------------------------------------------*/
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header {
    width: 100%;
    max-width: 100%;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_main {
    max-width: 100%;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_main .stamp-rally_desc__image {
    text-align: right;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_main .stamp-rally_desc__image img {
    max-width: 400px;
  }
} /* 896px以下 End */
/* ~ 812px : iphone X screens */
/* ~ 767px : Tablet screens */
/* 641px ~ */
/* 640px以下:Small screens */
@media only screen and (max-width: 40em) {
  /******************************************************************

    共通

  ******************************************************************/
  html {
    overflow-x: hidden;
  }
  /******************************************************************

    構造調整タグ

  ******************************************************************/
  .base_width {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .base_width.base_width_sp {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .inner_width {
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  /*-------------------------------------------
    テーブルの基本レイアウト
  -------------------------------------------*/
  table.base_table {
    border: 1px solid #dbdbdb;
  }
  table.base_table tr th,
  table.base_table tr td {
    display: block;
    width: 100%;
  }
  table.base_table tr th {
    text-align: left;
    font-weight: normal;
    background-color: #eaeaea;
    padding: 0.3rem 1.3rem;
    border-bottom: 1px solid #dbdbdb;
  }
  table.base_table tr td {
    background-color: #ffffff;
    padding: 0.7rem 1.3rem;
    border-bottom: 1px solid #dbdbdb;
  }
  table.base_table tr:last-child td {
    border-bottom: none;
  }
  /******************************************************************

    汎用パーツ

  ******************************************************************/
  /*
    横並びレイアウト
  */
  .flexbox {
    flex-flow: row wrap;
  }
  .contact-sns {
    justify-content: center;
  }
  .wrap_menulist {
    margin-bottom: 1rem;
  }
  .wrap_menulist .menutab li a {
    padding: 0rem 0.2rem;
  }
  /* 文字折り返し用
  -------------------------------------------*/
  .span-wrap {
    display: inline;
  }
  /*-------------------------------------------
  固有スタイル
  -------------------------------------------*/
  /*-------------------------------------------
  パンくずリスト
  -------------------------------------------*/
  .breadcrumb {
    margin-bottom: 1.5rem;
  }
  /*-------------------------------------------
  ページナビ
  -------------------------------------------*/
  .wrap_pagination {
    margin: 2.4rem 0;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 5px 10px;
    margin: 5px;
  }
  .link-button {
    font-size: 0.875rem;
    max-width: 200px;
  }
  /******************************************************************

    プラグイン

  ******************************************************************/
  .product-introduction-slider .slide-arrow {
    width: 40px;
  }
  /******************************************************************

    ヘッダー

  ******************************************************************/
  #header {
    margin-bottom: 2rem;
  }
  #head-bar-sp {
    position: relative;
    padding: 0.5rem 2%;
    background-color: #ffffff;
  }
  #head-bar-sp .head-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #head-bar-sp .head-bar-inner .head-bar-left {
    flex: 1;
  }
  #head-bar-sp .head-bar-inner .head-bar-left .menu-btn {
    display: flex;
  }
  #head-bar-sp .head-bar-inner .head-bar-center {
    flex-basis: 70%;
    max-width: 70%;
    text-align: center;
  }
  #head-bar-sp .head-bar-inner .head-bar-center .link {
    padding: 0 1rem;
  }
  #head-bar-sp .head-bar-inner .head-bar-center .link:hover {
    opacity: 0.6;
  }
  #head-bar-sp .head-bar-inner .head-bar-center .link img {
    max-width: 160px;
  }
  #head-bar-sp .head-bar-inner .head-bar-right {
    flex: 1;
  }
  .wrap-globalnavi-sp ul li a {
    position: relative;
  }
  .wrap-globalnavi-sp ul li a::after {
    font-family: FontAwesome;
    content: "\f105";
    color: inherit;
    font-weight: normal;
    position: absolute;
    right: 15px;
  }
  .wrap-globalnavi-sp ul li a:hover, .wrap-globalnavi-sp ul li a:focus {
    color: #515151;
    opacity: 1;
  }
  .wrap-globalnavi-sp ul li.menu-item-has-children > a::after {
    content: "\f196";
  }
  .wrap-globalnavi-sp ul li.menu-item-has-children.dropdown_open > a::after {
    content: "\f147";
  }
  /******************************************************************

    サイドバー

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

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

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

    フッター

  ******************************************************************/
  #footer {
    padding: 1.5rem 0;
  }
  #footer-main .organizer {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  #footer-main .sponsor {
    font-size: 0.875rem;
  }
  /******************************************************************

    トップページ(toppage)

  ******************************************************************/
  .home section {
    margin-bottom: 2rem;
  }
  .home section .section_header {
    margin-bottom: 0.5rem;
  }
  .home section .section_header .section_title {
    font-size: 1.75rem;
  }
  /* 会場案内
  -------------------------------------------------------*/
  .home #venue-info {
    margin-bottom: 2rem;
  }
  .home #venue-info .effects .spark {
    --spark-w: 50px;
  }
  .home #venue-info .effects .spark--01 {
    top: 0;
    left: clamp(0px, 50% + 510px, 100% - var(--spark-w) - 64px);
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--02 {
    top: 12%;
    left: clamp(0px, 50% + 510px, 100% - var(--spark-w));
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--03 {
    top: 14%;
    left: clamp(0px, 50% + 560px, 100% - var(--spark-w) - 48px);
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--04 {
    top: 18%;
    left: clamp(0px, 50% + 450px, 100% - var(--spark-w));
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--05 {
    top: 30%;
    left: clamp(0px, 50% + 500px, 100% - var(--spark-w));
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--06 {
    top: 33%;
    left: clamp(0px, 50% + 510px, 100% - var(--spark-w) - 32px);
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--07 {
    top: 55%;
    left: clamp(0px, 50% + 475px, 100% - var(--spark-w));
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--08 {
    top: 60%;
    left: clamp(0px, 50% + 530px, 100% - var(--spark-w) - 32px);
    max-width: var(--spark-w);
  }
  .home #venue-info .effects .spark--09 {
    top: 67%;
    left: clamp(0px, 50% + 510px, 100% - var(--spark-w));
    max-width: var(--spark-w);
  }
  .home #venue-info .section_main .section_content .floor-info {
    margin-bottom: 3rem;
  }
  .home #venue-info .section_main .section_content .floor-info .floor {
    margin-bottom: 2rem;
  }
  .home #venue-info .section_main .section_content .floor-info .place-info {
    margin-bottom: 2rem;
  }
  .home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem 5%;
  }
  .home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text {
    width: 100%;
    max-width: 100%;
  }
  .home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__title {
    font-size: 1.625rem;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
  }
  .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: 1rem;
  }
  .home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__text .place-info__text__list li {
    font-size: 1rem;
  }
  .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 1%;
  }
  .home #venue-info .section_main .section_content .floor-info .place-info .place-info__inner .place-info__images .place-info__image {
    width: 100%;
    max-width: 32.6666666667%;
  }
  .home #venue-info .section_main .section_content .stamp-rally {
    padding-top: 25vw;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner {
    gap: 1rem;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header {
    width: 100%;
    max-width: 100%;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_header .stamp-rally_desc__text .prize-list li {
    font-size: 1.25rem;
  }
  .home #venue-info .section_main .section_content .stamp-rally .stamp-rally_inner .stamp-rally_main .stamp-rally_desc__image img {
    max-width: 270px;
  }
  /* アクセス
  -------------------------------------------------------*/
  .home #access .effects .spark {
    --spark-w: 50px;
  }
  .home #access .effects .spark--01 {
    top: -37%;
    right: clamp(0px, 50% + 510px, 100% - var(--spark-w) - 16px);
    max-width: var(--spark-w);
  }
  .home #access .effects .spark--02 {
    top: 0%;
    left: clamp(0px, 50% + 560px, 100% - var(--spark-w) - 48px);
    max-width: var(--spark-w);
  }
  .home #access .effects .spark--03 {
    top: 104%;
    left: clamp(0px, 50% + 450px, 100% - var(--spark-w) - 16px);
    max-width: var(--spark-w);
  }
  .home #access .section_main .section_content .access-info {
    font-size: 1rem;
  }
  /* お問い合わせ先
  -------------------------------------------------------*/
  .home #contact-info .section_main .section_content {
    font-size: 1rem;
  }
  /******************************************************************

    投稿（お知らせ）

  ******************************************************************/
  .postlist .postlist-ul li .hover_ul {
    padding: 1.5rem 1rem;
  }
  /* single
  -------------------------------------------------------*/
  .single-post .single_inner_width {
    width: 100% !important;
    margin: 0 auto !important;
  }
  .single-post .post-category {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .single-post .article-header .single-title_wrapper {
    margin-bottom: 2rem;
    border: none;
    border-bottom: 1px solid #dddddd;
    padding: 0;
    padding-bottom: 1rem;
    border-radius: 0;
  }
  h1.page-title,
  h1.single-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .single-post .entry-content p {
    font-size: 0.875rem;
  }
  .single-post .article-footer {
    margin-bottom: 2.4rem;
  }
  /******************************************************************

    固定ページ(page)

  ******************************************************************/
  .page-job .venue-map > .base_width {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /******************************************************************

    カスタム投稿

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

    404 Page Not Found

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

    お問い合わせフォーム

  ******************************************************************/
} /* 641以下end */
/* 479px以下: SP screens *//*# sourceMappingURL=style-sp.css.map */