@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --bg-lgray: #FAFAFA;
  --txt-gray: #989898;
  --bd-gray:	#CDD4DE;
  --header-height: 60px;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
  body.wrap {
    overflow: visible;
  }
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  min-width: 190px;
  width: 190px;
  min-height: 65px;
  height: 65px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bd-gray);
  color: #000;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn {
    min-width: 230px;
    width: 230px;
    min-height: 60px;
    height: 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.btn::after {
  content: "";
  width: 11px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn_wrap_btm {
  margin-top: 50px;
}
.btn_inner_min {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_inner_min {
    font-size: 14px;
  }
}
.btn_floor {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 91px;
  height: 27px;
  margin-left: 18px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  border: 1px solid #000;
}
.btn_pdf {
  padding-right: 25px;
  background: url(https://tw.whity.osaka-chikagai.jp/front/common/img/icon_pdf.svg) no-repeat right center/17px 20px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn_pdf {
    font-size: 14px;
  }
}

.bg_gray {
  padding-top: 40px;
  background: var(--bg-lgray);
}
@media screen and (min-width: 768px) {
  .bg_gray {
    padding-top: 60px;
  }
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.font_robo {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

.container {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.indent_list.circle_list li::before {
  content: "●";
}
.indent_list.dot_list li::before {
  content: "・";
}
.indent_list.kome_list li::before {
  content: "※";
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--site-title-size);
          flex: 0 0 var(--site-title-size);
  max-width: var(--site-title-size);
  width: var(--site-title-size);
  overflow: hidden;
}
#site_title a {
  display: block;
}

.title_first {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .title_first {
    font-size: 26px;
  }
}
.title_first::first-letter {
  color: var(--fc-main);
}
.title_center {
  text-align: center;
}
.title_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 110px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title_page {
    font-size: 26px;
  }
}

/* ▼ リスト共通
--------------------------------------- */
.list_inner {
  display: block;
  position: relative;
}
.list_badge {
  --size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: var(--size);
  height: var(--size);
  background: #FFFB9F;
  border-radius: 50%;
  color: #27AEEB;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 1;
}
.list_badge_inner {
  text-align: center;
}
.list_badge_close {
  background: #9BABC7;
  color: #fff;
}
.list_img {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .list_img {
    font-size: 20px;
  }
}
.list_img_inner {
  overflow: hidden;
}
.list_img_inner img {
  width: 100%;
  background: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.list_title {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .list_title {
    font-size: 16px;
  }
}
.list_date {
  color: var(--txt-gray);
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .list_date {
    font-size: 14px;
  }
}
.list_cat, .list_shop, .list_place {
  color: var(--txt-gray);
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .list_cat, .list_shop, .list_place {
    font-size: 14px;
  }
}
.list_infocat {
  display: inline-block;
  min-width: 85px;
  padding: 2px 5px;
  background: #E8E8E8;
  border-radius: 3px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .list_infocat {
    min-width: 100px;
    font-size: 14px;
  }
}
.list_taxfree {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 65px;
  height: 23px;
  margin-top: 5px;
  background: #F7E5E5;
  border-radius: 3px;
  color: #B92A2D;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.list_close {
  background: var(--bg-lgray);
  margin-top: 5px;
  padding: 12px 10px;
  color: #535353;
  font-size: 12px;
}

.event_list .list_img_inner img {
  aspect-ratio: 3/2;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.no_result {
  padding: 70px 20px;
  text-align: center;
}

.tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tag_list_wrap {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tag_list li {
  white-space: nowrap;
  margin-right: 7px;
}
.tag_list a {
  --height:32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: var(--height);
  padding: 0 12px;
  border-radius: calc(var(--height) / 2);
  background: var(--fc-btn);
  color: #fff;
  font-size: 13px;
}

.share_wrap {
  margin-top: 50px;
}
.share_block {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  padding: 20px;
  background: #FFF;
  border-radius: 3px;
}
.share_title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 30px;
}
.share_list a {
  display: block;
}

.btm_sns_list {
  --sns-icon-width: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}
.btm_sns_list li {
  --sns-icon-width: 31px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--sns-icon-width);
          flex: 0 0 var(--sns-icon-width);
  width: var(--sns-icon-width);
  max-width: var(--sns-icon-width);
}
.btm_sns_list li a {
  display: block;
}
.btm_sns_list li img {
  width: 100%;
}

.bnr_wrap {
  padding: 20px 0 30px;
}
@media screen and (min-width: 768px) {
  .bnr_wrap {
    padding: 50px 0;
  }
}
.bnr_wrap_gray {
  background: var(--bg-lgray);
}
.bnr_wrap_floor {
  padding: 50px 0 0;
}
@media screen and (min-width: 768px) {
  .bnr_wrap_floor {
    padding: 50px 0 0;
  }
}
.bnr_title {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bnr_title {
    font-size: 20px;
  }
}
.bnr_list {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bnr_list {
    gap: 20px;
  }
}
.bnr_inner {
  display: block;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  --header-height: 60px;
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  header {
    --header-height: 80px;
  }
}
header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  padding: 0 75px 0 20px;
  height: var(--header-height);
  background: #fff;
  position: relative;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header .header_inner {
    padding: 0 110px 0 40px;
  }
}

.h_emergency {
  background: #ED0912;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .h_emergency {
    font-size: 18px;
  }
}
.h_emergency a {
  display: block;
  text-align: center;
}
.h_emergency a::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 32px;
  margin-right: 5px;
  background: url(https://tw.whity.osaka-chikagai.jp/front/common/img/icon_emergency.svg) no-repeat center center/21px 19px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .h_emergency a::before {
    width: 27px;
    height: 50px;
    background-size: 27px 24px;
  }
}
.h_emergency a span {
  vertical-align: middle;
}

.h_btn {
  padding: 0 16px;
  text-align: center;
  cursor: pointer;
}
.h_btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.h_btn:not(:last-child) {
  border-right: 1px solid #EAEAEA;
}
.h_btn_lang {
  font-weight: bold;
  position: relative;
}
.h_btn_icon {
  width: 15px;
}
@media screen and (min-width: 768px) {
  .h_btn_icon {
    width: 20px;
  }
}
.h_btn_txt {
  display: block;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .h_btn_txt {
    font-size: 14px;
  }
}

html #h_lang .h_btn_txt::after {
  content: "JP";
}
html[lang=en] #h_lang .h_btn_txt::after {
  content: "EN";
}
html[lang=zh-hans] #h_lang .h_btn_txt::after {
  content: "CN";
}
html[lang=zh-hant] #h_lang .h_btn_txt::after {
  content: "TW";
}
html[lang=ko] #h_lang .h_btn_txt::after {
  content: "KO";
}

#h_lang_menu {
  display: none;
  width: 100px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#h_lang_menu ul {
  background: #fff;
  font-size: 13px;
}
#h_lang_menu a {
  display: block;
  padding: 10px;
  text-align: center;
}

.menu {
  --menu-width:37px;
  --menu-height:37px;
  --menu-bg-color:#000;
  --menu-bar-color:#FFF;
  --menu-bar-width:14px;
  --menu-bar-height:1px;
  --menu-bar-gap:5px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  background: var(--menu-bg-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2000;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .menu {
    --menu-width:50px;
    --menu-height:50px;
    --menu-bar-width:20px;
    --menu-bar-height:1px;
    --menu-bar-gap:7px;
    right: 30px;
  }
}
.menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  top: 50%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon span:before {
  content: "Menu";
  color: var(--menu-bar-color);
  font-size: 12px;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  bottom: 0;
}
.menu .icon.active span:before {
  content: "Close";
}

/* グローバルナビゲーション */
#gnav {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  max-width: 100%;
  width: 340px;
  max-height: 100vh;
  margin: 0;
  background: #FFF;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
#gnav.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.gnav {
  padding: 20px 0 20px;
}
.gnav_search {
  padding: 0 20px;
}
.gnav_search_box {
  --height: 55px;
  display: grid;
  grid-template-columns: 1fr var(--height);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: var(--height);
  border-radius: calc(var(--height) / 2);
  padding: 0 0 0 20px;
  background: #eee;
}
.gnav_search_box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12px;
}
.gnav_search_box button {
  display: block;
  height: var(--height);
  border: none;
  outline: none;
  background: url("https://tw.whity.osaka-chikagai.jp/front/common/img/icon_search.svg") no-repeat center center/19px 19px, transparent;
}
.gnav_main_list {
  --height:110px;
  --bd-color: #D8D8D8;
  --bd-vgap: 15px;
  --bd-hgap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #FFF;
}
.gnav_main_list li {
  position: relative;
}
.gnav_main_list li::after {
  background: var(--bd-color);
  position: absolute;
  right: -1px;
  top: var(--bd-vgap);
}
.gnav_main_list li:not(:last-child):not(:nth-child(3n))::after {
  content: "";
  width: 1px;
  height: calc(var(--height) - var(--bd-vgap) * 2);
}
.gnav_main_list li:nth-last-child(n+3):nth-child(3n+2)::before {
  content: "";
  width: calc(300% - var(--bd-hgap) * 2);
  height: 1px;
  background: var(--bd-color);
  position: absolute;
  bottom: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.gnav_main_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: var(--height);
}
.gnav_main_inner {
  text-align: center;
}
.gnav_main_txt {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
}
.gnav_btm {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 20px 150px;
}
.gnav_bnr {
  max-width: 100%;
  text-align: center;
}
.gnav_bnr_list {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px 0;
}
.gnav_bnr_list:not(:first-child) {
  margin-top: 20px;
}
.gnav_bnr a {
  display: block;
  margin: 0 auto;
}
.gnav_bnr img {
  width: 100%;
}
.gnav_btn_wrap {
  margin-top: 15px;
}
.gnav_sns_wrap {
  margin-top: 25px;
}
.gnav_btm_link_wrap .btm_list {
  margin-top: 25px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 99999;
}

.md_btn {
  cursor: pointer;
}
.md_overlay {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 5000;
}
.md_contents {
  display: block;
  width: min(100% - 40px, 340px);
  height: auto;
  max-height: 80vh;
  background: #fff;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: scroll;
  z-index: 6000;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.md_contents::-webkit-scrollbar {
  display: none;
}
.md_inner {
  padding: 25px 20px 35px;
}
.md_time_title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.md_time_holiday {
  margin-top: 20px;
  padding: 10px 15px;
  background: var(--bg-lgray);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.md_time_list {
  margin: 15px 0 20px;
  line-height: 1.4;
}
.md_time_list li:not(:first-child) {
  margin-top: 10px;
}
.md_time_cat {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.md_time_limit {
  display: block;
  color: var(--fc-main);
  font-size: 26px;
  font-weight: 600;
}
.md_time_kome {
  font-size: 12px;
}
.md_icon {
  padding-top: 1px;
}
.md_icon_list {
  display: grid;
  grid-template-columns: 100%;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
}
.md_icon_list_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
  margin-top: 25px;
}
.md_icon_list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
}
.md_icon_txt {
  font-size: 12px;
}
.md_icon img {
  display: block;
}
.md_color_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
  margin: 60px auto 30px;
}
.md_color_list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
}
.md_color_box {
  height: 20px;
}
.md_color_box_food {
  background: #F9BFBB;
}
.md_color_box_goods {
  background: #E6CDE2;
}
.md_color_box_gourmet {
  background: #F8C284;
}
.md_color_box_fashi {
  background: #D9EACB;
}
.md_color_box_cafe {
  background: #FEE6A5;
}
.md_color_box_service {
  background: #CAE9FA;
}
.md_color_txt {
  font-size: 12px;
}
.md_pdf_list {
  margin: 50px auto 30px;
  display: grid;
  grid-template-columns: 100%;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-line-pack: start;
      align-content: start;
  font-size: 14px;
}
.md_pdf_list a {
  text-decoration: underline;
}
.md_close.btn {
  margin-top: 20px;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  padding-top: var(--header-height);
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

.menu_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .menu_fixed {
    position: relative;
    width: auto;
    height: auto;
  }
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin: 50px 0 0;
  padding-bottom: 10px;
  font-size: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #path {
    margin: 50px 0 0;
    padding-bottom: 30px;
    font-size: 14px;
  }
}
#path ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#path li:not(:last-child):after {
  content: "〉";
  margin-left: 10px;
}
#path li a {
  color: var(--txt-gray);
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ fixnav
===================================== */
.fix_nav {
  --fixnav-height:80px;
  display: none;
  width: 100%;
  height: var(--fixnav-height);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 150;
}
.fix_nav_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fc-main);
  color: #fff;
  font-size: 11px;
}
.fix_nav_list li {
  position: relative;
}
.fix_nav_list li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(var(--fixnav-height) - 10px);
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 50%;
  right: -1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fix_nav_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: var(--fixnav-height);
  text-align: center;
}
.fix_nav_list a span {
  display: block;
  text-align: center;
}
.fix_nav_inner {
  text-align: center;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 40px 0 120px;
  border-top: 1px solid #e8e8e8;
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 50px 0;
  }
}

.flogo {
  width: var(--flogo-size);
  margin: 0 auto;
}
.flogo a {
  display: block;
}
.flogo img {
  width: 100%;
}

.fnav_wrap {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .fnav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .fnav_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 60px;
  }
}
.fnav a {
  display: block;
  padding: 5px 0;
}

.fpdf_list {
  margin-top: 40px;
}
.fpdf_list li {
  text-align: center;
}
.fpdf_list a {
  text-decoration: underline;
}

.fbtm_logo_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.fbtm_logo_list_wrap {
  margin-top: 35px;
  padding: 25px 0;
  background: #F4EFEF;
}
@media screen and (min-width: 768px) {
  .fbtm_logo_list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.fbtm_logo_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 15px 12px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .fbtm_logo_list a {
    padding: 17px;
  }
}

.fbnr_list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.fbnr_list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  max-width: 100%;
  width: 300px;
}
.fbnr_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  height: 70px;
  border: 1px solid #CDD4DE;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.fbnr_list li a.fbnr_list_contact::before {
  content: "";
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33px;
          flex: 0 0 33px;
  width: 33px;
  max-width: 33px;
  height: 24px;
  background: url(https://tw.whity.osaka-chikagai.jp/front/common/img/icon_bnr_contact.svg) no-repeat center center/33px 24px;
}

.btm_list {
  width: 100%;
  margin: 30px auto 0;
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btm_list {
    margin-top: 40px;
  }
}
.btm_list li {
  display: inline-block;
}
.btm_list li:not(:last-child)::after {
  content: "｜";
}
.btm_list li a {
  text-align: center;
}
.btm_list li a span {
  display: inline-block;
}

.pagenav {
  --nav-size:43px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .pagenav {
    --nav-size:50px;
    margin-top: 70px;
  }
}
.pagenav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
}
.pagenav_list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--nav-size);
          flex: 0 0 var(--nav-size);
  width: var(--nav-size);
  max-width: var(--nav-size);
}
.pagenav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  height: var(--nav-size);
  background: var(--bg-lgray);
}
.pagenav_inner.active {
  color: #fff !important;
  background: var(--fc-btn);
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  --size: 43px;
  --arrow-size: 11px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--fc-main);
  bottom: 100px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pagetop {
    --size: 60px;
    bottom: 20px;
  }
}
.pagetop::after {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  margin-top: 30px;
  color: #242424;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #copyright {
    margin-top: 20px;
  }
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 768px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 39px;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 768px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 42px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #not_found p.arial + p {
    font-size: 18px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}