@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
:root {
  --font_base:16px/1.7 "Noto Sans JP", "Hiragino Sans","YakuHanJP","Roboto", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

:root {
  --default-black: #333;
  --default-white: #fff;
  --default-blue: #009CEF;
  --color-blue-dark:#00008b;
  --base-gray-default: #F4F6F8;
  --base-gray-dark:#6C6C6C;
  --color-black:#000;
  --color-purple-light:#eddfff;
  --color-purple:#660066;
  --color-yellow-light:#fffb90;
  --color-yellow:#fdf75a;
  --color-yellow02: #ffe400;
  --color-red: #d40000;
  --color-red02: #b3173b;
  --color-orange:#D94100;
  --color-orange02:#ffc107;
}

.u-bg {
  padding: 10px;
  box-sizing: border-box;
}
.u-bg-white {
  background: #fff !important;
}
.u-bg-gray {
  background: #f8f8f8;
}
.u-bg-purple {
  background: var(--color-purple);
}
.u-bg-purple-light {
  background: var(--color-purple-light) !important;
}
.u-bg-yellow {
  background: var(--color-yellow02);
}
.u-bg-yellow-light {
  background: var(--color-yellow-light) !important;
}
.u-bg-mosgreen {
  background: #B6AF00 !important;
}
.u-bg-green {
  background: #42AA87 !important;
}
.u-bg-orange {
  background: #ED6E46 !important;
}
.u-bg-pink {
  background: #DF7D84 !important;
}
.u-bg-none {
  background: none !important;
}

/* ==========================================================================
 営業時間一覧
 ※トップページはcss_renew/top_schedule.css参照
========================================================================== */
.page_title_schedule {
  height: 100px;
  background-color: rgb(247, 247, 247);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-top: 2px solid #b3173b;
}
@media screen and (max-width: 767px) {
  .page_title_schedule {
    height: 60px;
  }
}
.page_title_schedule h1 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page_title_schedule h1 {
    font-size: 1.25rem;
  }
}

#Contents_schedule {
  width: 978px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #Contents_schedule {
    width: auto;
    margin: 0 15px;
  }
}

.nav_shop_link {
  display: flex;
  justify-content: center;
}
.nav_shop_link ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nav_shop_link ul .btn-shop {
  display: inline-block;
  background: #D0EAFF;
  color: #0262ae;
  padding: 12px 16px;
  border-bottom: 2px solid #0262ae;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.15s ease, transform 0.08s ease;
}
@media screen and (max-width: 767px) {
  .nav_shop_link ul .btn-shop {
    padding: 12px 14px;
  }
}
.nav_shop_link ul .btn-shop .arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 2px;
  margin: 3.9px 0;
  margin-left: 8px;
  border-radius: 9999px;
  background-color: #0262ae;
}
@media screen and (max-width: 767px) {
  .nav_shop_link ul .btn-shop .arrow {
    margin-left: 6px;
  }
}
.nav_shop_link ul .btn-shop .arrow::before,
.nav_shop_link ul .btn-shop .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0262ae;
  transform-origin: calc(100% - 1px) 50%;
}
.nav_shop_link ul .btn-shop .arrow::before {
  transform: rotate(45deg);
}
.nav_shop_link ul .btn-shop .arrow::after {
  transform: rotate(-45deg);
}
.nav_shop_link ul .btn-shop:hover {
  background: #abd9ff;
}

#MonthNav {
  margin: 20px 0;
}
#MonthNav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 2px;
}
#MonthNav ul li {
  width: calc(33.3333333333% - 2px);
  padding: 0;
  list-style: none;
}
#MonthNav ul li.on a {
  background: var(--color-orange02);
  color: #000;
  transition: 0.15s ease;
  pointer-events: none;
}
#MonthNav ul li a {
  background: #CACACA;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  color: inherit;
  padding: 12px 15px;
  text-decoration: none;
  transition: 0.15s ease;
}
@media screen and (max-width: 767px) {
  #MonthNav ul li a {
    font-size: 17px;
    padding: 15px 10px;
  }
}
#MonthNav ul li a:hover {
  background: var(--color-orange02);
}
#MonthNav ul li::before {
  display: none;
}

.pagesummary_schedule {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .pagesummary_schedule {
    margin-bottom: 40px;
  }
}
.pagesummary_schedule ul {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
@media screen and (max-width: 767px) {
  .pagesummary_schedule ul {
    flex-direction: column;
  }
}
.pagesummary_schedule ul li {
  width: calc((100% - 20px) / 3);
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .pagesummary_schedule ul li {
    width: 100%;
  }
}
.pagesummary_schedule ul li a {
  background: #fff;
  display: block;
  color: #000;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  padding: 5px 50px;
  border-radius: 100vh;
  position: relative;
  box-sizing: border-box;
  border: 1px solid #a71d35;
  /* 矢印 */
}
@media screen and (max-width: 767px) {
  .pagesummary_schedule ul li a {
    width: 100%;
    padding: 5px 20px 5px 30px;
    text-align: left;
  }
}
.pagesummary_schedule ul li a::before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #a71d35;
  border-bottom: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 767px) {
  .pagesummary_schedule ul li a::before {
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 6px solid #a71d35;
    left: 12px;
  }
}
.pagesummary_schedule__external::before {
  background: url("../common/ico_external.svg") no-repeat center center !important;
  transform: translateY(-50%) !important;
  top: 50% !important;
  background-size: contain !important;
  width: 8px !important;
  height: 8px !important;
}

.schedule_section {
  margin-bottom: 60px;
}

.h2_title01_schedule {
  margin-bottom: 15px;
  padding: 10px 0 10px 12px;
  font-size: 1.538em;
  border-left: solid 7px #b3173b;
  background-color: #e9e9e9;
}

/* 店舗別カレンダー */
.shopTimeTable {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
@media all and (min-width: 768px) {
  .shopTimeTable {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .shopTimeTable {
    flex-direction: column;
  }
}
.shopTimeTable > div {
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .shopTimeTable > div {
    width: calc(33.3333333333% - 14px);
  }
}
.shopTimeTable > div:last-child {
  margin-right: 0px;
}
.shopTimeTable h3 {
  background: var(--color-red02);
  color: #fff;
  font-size: 0.875rem;
  padding: 8px 5px;
  box-sizing: border-box;
  text-align: center;
}
.shopTimeTable table {
  width: 100%;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  line-height: 1.4;
  border-collapse: collapse;
  border-spacing: 0;
}
.shopTimeTable table th,
.shopTimeTable table td {
  text-align: center;
  border-top: 1px solid #999;
  border-left: 1px solid #999;
  background-clip: padding-box !important;
}
.shopTimeTable table th {
  padding: 5px;
  background: #f0f0f0;
  font-size: 0.875rem;
}
.shopTimeTable table td {
  position: relative;
  padding: 20px 6px 4px;
}
.shopTimeTable table td.schedule_info {
  padding: 8px 8px 3px;
  text-align: left;
}
.shopTimeTable table span.num {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  font-size: 0.857em;
  color: #000;
}

.schedule_info dl {
  clear: both;
  overflow: hidden;
  margin-bottom: 5px;
}
.schedule_info dt {
  float: left;
  width: 30px;
  text-align: center;
  padding: 3px 3px 2px;
  border: solid 1px #ccc;
  box-sizing: border-box;
}
.schedule_info dd {
  margin-left: 35px;
}

.shopTimeTable .base_yellow01 {
  background: #FBFFCD;
}
.shopTimeTable .base_pink01 {
  background: #FFE1F2;
}
.shopTimeTable .base_pink02 {
  background: #FFD3D3;
}
.shopTimeTable .base_blue01 {
  background: #e4f3ff;
}
.shopTimeTable .base_grey01 {
  background: #EEE;
}
.shopTimeTable .base_green01 {
  background: #e7ffde;
}
.shopTimeTable .base_green02 {
  background: #d8fff9;
}
.shopTimeTable .base_purple01 {
  background: #f6e8ff;
}
.shopTimeTable .base_beige01 {
  background: #ffeee9;
}
.shopTimeTable .base_blue02 {
  background: #e0ebff;
}
.shopTimeTable .base_yellow02 {
  background: #fff0c9;
}

/*追加color*/
.txt_shoptime_ready {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

.h3_title_time {
  font-size: 0.875rem;
  text-align: center;
  font-weight: bold;
}