@charset "UTF-8";

html, body {
  overflow-x: hidden;
}

body {
  color: var(--mono-color-1);
}

body.menu-open {
  height: 100vh;
  overflow: hidden;
  scrollbar-gutter: stable both-edges;
}

/* =========================================================
  link color
========================================================= */
a {
  color: var(--a-color);
}

a:hover {
  color: var(--a-hover-color);
}

a:visited {
  color: var(--a-visited-color);
}

/* =========================================================
  site layout
========================================================= */
.pcNone {
  display: none;
}

#container {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  overflow-x: hidden;
}

#pageHeader {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 15px 3rem 15px 2rem;
}

#main {
  flex-grow: 1;
  width: 100%;
  background-color: var(--ac-color-yellow-5);
}

#wrapper {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1240px) {
  #pageHeader {
    padding: 20px 20px 30px;
  }

  #main {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 959px) {
  .pcNone {
    display: block;
  }

  .spNone {
    display: none;
  }

  #pageHeader {
    display: inline-block;
    padding: 0 10px;
  }

  #pageNav {
    margin-bottom: 0;
  }

  #main {
    padding: 0 10px;
  }

  #wrapper {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

/* body
----------------------------------------------- */
.body p,
.summary p {
  margin: 0 0 1rem;
}

.body table {
  margin-bottom: 1rem;
  border: 1px solid var(--mono-color-6);
}

/* button
----------------------------------------------- */
#back a,
.back a,
a[href].more,
.more a[href] {
  display: block;
  margin: 20px 0 0;
  padding: 8px;
  border: 1px solid var(--mono-color-6);
  border-radius: 6px;
  color: var(--mono-color-1);
  text-align: center;
  text-decoration: none;
}

#newsButton .more {
  text-align: center;
}

#newsButton .more a {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 1em 2em;
  border: 1px solid var(--ac-color-brown-2);
  text-align: right;
}

#newsButton .more a::before,
#newsButton .more a::after {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  height: 2rem;
  border-radius: 6px;
  content: "";
}

#newsButton .more a::before {
  z-index: -3;
  opacity: 0.3;
  background-image: url('/_themes/site/images/footprints.svg');
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}

#newsButton .more a::after {
  z-index: -1;
  background-color: var(--ac-color-yellow-5);
  transition: 0.5s ease-in-out;
}

@media (hover: hover) {

  #newsButton .more a:hover {
    transition: 0.2s;
  }

  #newsButton .more a:hover::after {
    width: 0;
    right: 0;
    left: auto;
  }
}

@media (hover: none) {

  #newsButton .more a:active {
    transition: 0.2s;
  }

  #newsButton .more a:active::after {
    width: 0;
    right: 0;
    left: auto;
  }
}

/*----------------------------------------------- 
 #pageHeader 
----------------------------------------------- */
#pageHeader {
  display: flex;
}

/* site-logo
----------------------------------------------- */
#siteLogo {
  flex-basis: 240px;
  z-index: 2;
  margin-right: auto;
}

#siteLogo h1 a {
  display: block;
  width: 180px;
}

@media only screen and (max-width: 959px) {
  #siteLogo h1 a {
    padding: 13px 0;
  }

  #siteLogo h1 img {
    max-width: 150px;
  }
}

@media only screen and (max-width: 559px) {
  #siteLogo h1 img {
    max-width: 130px;
  }
}

/* #globalNavi 
----------------------------------------------- */
/* smart-menu
-------------- */
#smartMenu {
  display: none;
}

@media only screen and (max-width: 959px) {
  #smartMenu {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
  }

  #smartMenu .globalNavi {
    background-image: url("/_themes/site/images/ic-menu-bw.svg");
  }

  #smartMenu ul {
    display: flex;
  }

  #smartMenu li {
    list-style: none;
  }

  #smartMenu li:not(:first-child) {
    margin-left: 8px;
  }

  #smartMenu button {
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 32px 32px;
    font-size: 0;
    white-space: nowrap;
    cursor: pointer;
  }

  #smartMenu button.open {
    background-image: url("/_themes/site/images/ic-close.svg");
  }

  #smartMenu #globalNavi ul.mainMenu {
    background-image: url("/_themes/site/images/ic-menu-bw.svg");
  }
}

/* mainMenu
-------------- */
#globalNavi ul.mainMenu {
  display: flex;
  gap: 1rem;
}

#globalNavi ul.mainMenu a {
  position: relative;
  padding: 0.2rem 0.5rem 0.8rem;
  color: var(--mono-color-1);
  text-decoration: none;
}

#globalNavi ul.mainMenu>li>a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scaleY(0);
  transform-origin: left;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right,
      var(--ac-color-brown-2) 0px,
      var(--ac-color-brown-2) 6px,
      transparent 6px,
      transparent 12px);
  content: "";
  transition: transform 0.35s ease;
}

#globalNavi ul.mainMenu>li>a:hover::after,
#globalNavi ul.mainMenu>li>a.current::after {
  transform: scaleY(1);
}

#globalNavi ul.mainMenu li.menu>a {
  padding-right: 10px;
}

#globalNavi ul.mainMenu li.menu>a::after {
  display: none;
}

#globalNavi ul.mainMenu li.menu>a::before {
  position: absolute;
  right: -10px;
  content: "▼";
}

@media (min-width: 960px) {
  #globalNavi ul.mainMenu li:hover .menuSubMenu {
    display: block;
  }
}

#globalNavi ul.menuSubMenu {
  display: none;
  position: absolute;
  bottom: -10px;
  transform: translateY(100%);
  margin-top: 10px;
  background-color: #e4decd98;
}

#globalNavi ul.menuSubMenu a {
  display: block;
  padding: 4px 0.7rem;
}

#globalNavi ul.menuSubMenu a:hover {
  background-color: var(--ac-color-brown-2);
  color: var(--mono-color-9);
}

@media only screen and (max-width: 959px) {
  #globalNavi .pieceBody {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    transform: translateX(100%);
    width: 100vw;
    height: 100vh;
    padding: 8rem 5rem;
    overflow-y: scroll;
    background-color: #FFF9ED;
    background-image: url("/_themes/site/images/sp-g-nav.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    transition: 0.3s;
  }

  #globalNavi ul.mainMenu {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  #globalNavi ul.mainMenu li {
    border-bottom: 1.5px solid var(--ac-color-brown-1);
  }

  #globalNavi ul.mainMenu ul.menuSubMenu li {
    border: none;
  }

  #globalNavi ul.mainMenu a {
    display: block;
    padding: 0.25rem 0 0.25rem 3rem;
    background-position: bottom 0.6rem left 0.5rem;
    background-repeat: no-repeat;
    font-weight: normal;
    font-size: 1.3rem;
    font-family: var(--font-family-pop);
  }

  #globalNavi ul.mainMenu>li>a:hover::after,
  #globalNavi ul.mainMenu>li>a.current::after {
    display: none;
  }

  #globalNavi ul.mainMenu li.news a {
    background-image: url("/_themes/site/images/gn-news.svg");
  }

  #globalNavi ul.mainMenu li.menu a {
    background-image: url("/_themes/site/images/gn-menu.svg");
  }

  #globalNavi ul.mainMenu li.about a {
    background-image: url("/_themes/site/images/gn-about.svg");
    background-position: bottom 0.7rem left 0.5rem;
  }

  #globalNavi ul.mainMenu li.faq a {
    background-image: url("/_themes/site/images/gn-faq.svg");
    background-position: bottom 0.7rem left 0.5rem;
  }

  #globalNavi ul.mainMenu li.menu>a {
    position: relative;
  }

  #globalNavi ul.mainMenu li.menu>a::before,
  #globalNavi ul.mainMenu li.menu>a::after {
    display: block;
    position: absolute;
    top: 1rem;
    right: 0.5rem;
    transition: transform 0.3s ease;
    content: "";
  }

  #globalNavi ul.mainMenu li.menu>a::before {
    transform: translateY(-50%);
    width: 20px;
    height: 0;
    border-top: 2px solid var(--mono-color-1);
  }

  #globalNavi ul.mainMenu li.menu>a::after {
    transform: translate(-9px, -50%);
    width: 0;
    height: 20px;
    right: 0.5rem;
    left: auto;
    border-left: 2px solid var(--mono-color-1);
  }

  #globalNavi ul.mainMenu li.menu>a.open::after {
    transform: translate(-8px, -55%) rotate(90deg);
  }

  #globalNavi ul.menuSubMenu {
    position: static;
    transform: none;
    margin-top: 0;
    background-color: unset;
  }

  #globalNavi ul.mainMenu ul.menuSubMenu li a {
    background-image: none;
    font-weight: normal;
  }

  .subMenu .tel a {
    display: block;
    margin-bottom: 2rem;
    padding: 0.8rem;
    background-color: var(--ac-color-brown-2);
    color: var(--mono-color-9);
    font-size: 1.5rem;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.2rem;
  }

  .subMenu .tel a img {
    margin-right: 1rem;
  }

  #globalNavi .subMenu .sns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: end;
  }

  #globalNavi .subMenu .sns a {
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
  }

  #globalNavi .subMenu .sns .fb a {
    padding: 1rem 0.93rem;
    background-image: url("/_themes/site/images/sm-fb.png");
  }

  #globalNavi .subMenu .sns .insta a {
    padding: 1rem 0.9rem;
    background-image: url("/_themes/site/images/sm-insta.png");
  }

  #globalNavi .subMenu .sns a img {
    display: none;
  }

}

@media only screen and (max-width: 559px) {
  #globalNavi .pieceBody {
    padding: 7rem 2rem;
    background-size: contain;
  }
}

/* breadCrumbs
----------------------------------------------- */
#breadCrumbs .pieceBody {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.7);
}

#breadCrumbs ol,
#breadCrumbs li {
  list-style: none;
}

#breadCrumbs li {
  display: inline-block;
}

#breadCrumbs li:not(:first-child)::before {
  margin: 0 5px;
  content: ">";
}

.bc-more a {
  display: inline-block;
  padding: 0 0 0 16px;
  background: url("/_themes/site/images/ic-breadcrumbs.png") left 0.5rem no-repeat;
}

.bc-more::after {
  display: table;
  clear: both;
  content: "";
}

@media only screen and (max-width: 959px) {
  #breadCrumbs {
    display: none;
  }
}

/* page-title
----------------------------------------------- */
#pageTitle h1 {
  margin-bottom: 1rem;
  padding: 14px 20px;
  background-color: var(--main-color-3);
  color: var(--mono-color-9);
  font-size: 1.5rem;
}

/* #pageTitle
------------------------------------ */
#pageTitle {
  margin-bottom: 3rem;
  background: url("/_themes/site/images/title-menu.png") no-repeat center/cover;
}

#pageTitle .pieceContainer {
  padding: 5rem 1rem;
  background-color: #ffffffdc;
}

#pageTitle h1 {
  background-color: transparent;
  color: var(--mono-color-1);
  font-weight: normal;
  font-family: var(--font-family-pop);
  text-align: center;
}

/* commonFooter
----------------------------------------------- */
#commonFooter {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  margin-top: -1px;
  padding: 20px 0 30px;
  background: url("/_themes/site/images/bg-footer.svg") var(--ac-color-brown-1) no-repeat 60%;
  color: var(--mono-color-9);
  font-size: 0.875rem;
}

#commonFooter .pieceContainer {
  width: 100%;
  max-width: var(--site-width);
  margin-bottom: 6px;
  padding-bottom: 10px;
}

#commonFooter .pieceBody {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

#commonFooter .pieceBody .site-name img {
  width: 220px;
  margin-bottom: 1rem;
}

#commonFooter ul {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}

#commonFooter address ul {
  flex-direction: column;
}

#commonFooter address li {
  width: fit-content;
  background-color: var(--ac-color-brown-1)bf;
}

#commonFooter a {
  display: inline-block;
  color: var(--mono-color-9);
}

#commonFooter .sns p {
  margin-bottom: 5px;
  text-align: center;
}

#commonFooter .sns ul {
  align-items: center;
  gap: 1.5rem;
}

#commonFooter .sns ul a {
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
}

#commonFooter .sns ul a:hover {
  opacity: 0.8;
}

#commonFooter .sns .fb a {
  padding: 1rem 0.93rem;
  background-image: url("/_themes/site/images/ic-fb.png");
}

#commonFooter .sns .insta a {
  padding: 1rem 0.9rem;
  background-image: url("/_themes/site/images/ic-insta.svg");
}

#commonFooter .sns ul a img {
  display: none;
}

@media only screen and (max-width: 1240px) {
  #commonFooter {
    padding: 20px 20px 10px;
  }
}

@media only screen and (max-width: 959px) {
  #commonFooter {
    flex-direction: column;
    align-items: baseline;
    padding-bottom: 4px;
  }

  #commonFooter .pieceContainer {
    background: none;
  }

  #commonFooter ul {
    flex-wrap: wrap;
  }

  #commonFooter .copyright {
    align-self: center;
    margin-top: 6px;
  }
}

@media only screen and (max-width: 759px) {
  #commonFooter {
    background-size: 80%;
    background-position: 50% 75%;
  }

  #commonFooter .pieceBody {
    flex-direction: column;
    align-items: center;
  }

  #commonFooter .pieceBody .sns {
    align-self: flex-end;
  }

  #commonFooter .copyright {
    display: block;
    text-align: center;
  }
}

/* pageTop
----------------------------------------------- */
#pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 44px;
  height: 44px;
  padding-top: 20px;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--mono-color-9);
  font-size: 0.8125rem;
  text-align: center;
  text-decoration: none;
}

#pageTop a::after {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent var(--mono-color-9) transparent;
  content: "";
}

/* calendar
----------------------------------------------- */
.calendarCalendarEvents table,
div[id^="calendar"] .pieceContainer {
  font-family: var(--font-family-pop2);
}

.calendarCalendarEvents h2,
#content div[id^="calendar"] .pieceHeader h2 {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1.3rem;
  font-family: var(--font-family-pop2);
  letter-spacing: unset;
  text-align: left;
}

#content div[id^="calendar"] .pieceHeader h2 {
  margin-bottom: -1.8rem;
}

div[id^="calendar"] h3 {
  margin-bottom: 8px;
  font-weight: normal;
  text-align: right;
}

div[id^="calendar"] h3 a {
  color: var(--mono-color-1);
  text-decoration: none;
}

.calendarCalendarEvents table,
.calendarCalendarEvents th,
.calendarCalendarEvents td,
div[id^="calendar"] .scroll,
div[id^="calendar"] table,
div[id^="calendar"] th,
div[id^="calendar"] td {
  border-color: #DDCDAC;
  border-style: solid;
}

.calendarCalendarEvents .scroll,
div[id^="calendar"] .scroll {
  overflow: hidden;
  border-width: 2px;
}

.calendarCalendarEvents .scroll {
  border-width: 1px;
}

.calendarCalendarEvents table,
div[id^="calendar"] table {
  width: 100%;
  border-width: 2px;
}

.calendarCalendarEvents th,
.calendarCalendarEvents td,
div[id^="calendar"] th,
div[id^="calendar"] td {
  padding: 5px;
  border-width: 0 1px 1px 0;
  text-align: center;
}

.calendarCalendarEvents th,
div[id^="calendar"] th {
  font-weight: normal;
  font-size: 1.3rem;
}

.calendarCalendarEvents td,
div[id^="calendar"] td {
  padding: 10px 0 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.calendarCalendarEvents td {
  text-align: center;
}

.calendarCalendarEvents td ul {
  font-size: 1rem;
}

.calendarCalendarEvents th.sun,
.calendarCalendarEvents td.sun,
.calendarCalendarEvents td.holiday,
.calendarCalendarEvents li.holiday,
.calendarCalendarEvents th.sat,
.calendarCalendarEvents td.sat,
div[id^="calendar"] th.sun,
div[id^="calendar"] td.sun,
div[id^="calendar"] td.holiday,
div[id^="calendar"] th.sat,
div[id^="calendar"] td.sat {
  background-color: unset;
}

.calendarCalendarEvents td:nth-child(n+7),
.calendarCalendarEvents th:nth-child(n+7),
div[id^="calendar"] td:nth-child(n+7),
div[id^="calendar"] th:nth-child(n+7) {
  border-right: none;
}

.calendarCalendarEvents tr:last-of-type td,
div[id^="calendar"] tr:last-of-type td {
  border-bottom: 0;
}

.calendarCalendarEvents table td:has(span),
div[id^="calendar"] table .event {
  position: relative;
  background: url("/_themes/site/images/bg-calendar.svg") no-repeat center;
}

.calendarCalendarEvents table td:has(span) {
  background-position: top 30% center;
}

.calendarCalendarEvents .nextMonth.event,
.calendarCalendarEvents .prevMonth.event,
div[id^="calendar"] table .nextMonth.event,
div[id^="calendar"] table .prevMonth.event {
  opacity: 0.3;
}

div[id^="calendar"] table .event:after {
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%);
  width: 100%;
  color: var(--mono-color-1);
  font-size: 0.7rem;
  font-family: var(--font-family);
  content: "定休日";
}

div[id^="calendar"] table .event:has(a[href*="/12/#day30"]):after,
div[id^="calendar"] table .event:has(a[href*="/12/#day31"]):after,
div[id^="calendar"] table .event:has(a[href*="/01/#day01"]):after,
div[id^="calendar"] table .event:has(a[href*="/01/#day02"]):after,
div[id^="calendar"] table .event:has(a[href*="/01/#day03"]):after {
  content: "休業日";
}

div[id^="calendar"] table a {
  color: var(--mono-color-1);
  text-decoration: none;
}

.calendarCalendarEvents table .holiday,
div[id^="calendar"] table .holiday a {
  color: #d90000;
}

/* pagination 
------------------ */
.links>div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

div[id^="calendar"] .links .prev_page,
div[id^="calendar"] .links .next_page {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-size: 0;
}

div[id^="calendar"] .links .prev_page {
  background-image: url("/_themes/site/images/calendar_prev.svg");
}

div[id^="calendar"] .links .next_page {
  background-image: url("/_themes/site/images/calendar_next.svg");
}

div[id^="calendar"] .links .current_page {
  padding-top: 0;
  color: var(--mono-color-1);
  text-decoration-color: #795930;
}

.pagination .separator {
  display: none;
}

div[id^="calendar"] .pagination a {
  padding: 6px;
}

@media only screen and (max-width: 959px) {
  div[id^="calendar"] .pieceContainer {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 559px) {

  .calendarCalendarEvents table li.holiday,
  .calendarCalendarEvents table span {
    font-size: 0.8rem;
  }
}

/* articleHeader
----------------------------------------------- */
.articleHeader h2 {
  position: relative;
  min-height: 40px;
  padding: 7px 15px 2px 22px;
  background-color: var(--ac-color-orange-4);
  font-weight: bold;
  font-size: 1.125rem;
}

.articleHeader h2::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 24px;
  border-left: 8px solid var(--ac-color-orange-3);
  content: "";
}

@media only screen and (max-width: 959px) {

  .contentOrganizationGroupDepartment .articleHeader h2,
  .contentOrganizationGroupUnit .articleHeader h2 {
    margin: 0;
  }
}

/* =========================================================
  docs
========================================================= */
.docs-all li,
#news .docs li,
.content li,
#feedDocs li,
#pickup li,
.entries li,
.contentGpCategory>section>h2+ul li,
div[id*="menu"].piece .pieceBody>ul>li,
.contentGpCategoryCategory ul li,
.contentOrganizationGroupUnit ul li {
  display: flex;
  gap: 0 1rem;
  padding: 15px 0;
}

#topicsDocs .docs li:first-child,
#feedDocs li:first-child {
  padding: 0 0 15px;
}

li span[class$="date"]:first-child {
  flex: 0 0 8rem;
}

.links>div {
  display: flex;
}

.links>div .more {
  flex-basis: calc(100% - 7.5rem);
  margin-left: auto;
}

.articleHeader+ul+.more,
.articleHeader+ul+div .more {
  margin: 20px 0 0 auto;
}

.contentGpArticleDocs,
.contentGpCategory,
.contentOrganization,
.contentPortalEntries {
  position: relative;
}

body#page-news-index .contentGpArticleDocs .docs>ul>li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px dotted var(--mono-color-1);
}

.new_mark {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: #c000c0;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
}

@media only screen and (max-width: 559px) {

  .docs-all li,
  .docs li,
  .content li,
  .entries li,
  .contentGpCategory>section>h2+ul li,
  .contentGpCategoryCategory ul li,
  .contentOrganizationGroupDepartment ul li,
  .contentOrganizationGroupUnit ul li {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px 1rem;
    word-break: break-all;
  }

  li span[class$="date"]:first-child {
    flex: 1 0 auto;
  }

  li span[class^="title"]:nth-child(2),
  li .titleBlock {
    flex-basis: 100%;
  }
}

/* contentGpArticleDocs, contentPortalEntries
----------------------------------------------- */
.contentGpArticleDocs h2.date,
.contentPortalEntries h2.date {
  min-height: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  background-color: transparent;
  border-bottom: 2px solid var(--main-color-4);
  color: var(--main-color-4);
  font-size: 1rem;
}

/* category-list
----------------------------------------------- */
div[id^="categoryList"] .pieceBody {
  padding: 12px;
}

div[id^="categoryList"] h3 {
  font-weight: normal;
  font-size: 1rem;
}

div[id^="categoryList"] h3,
div[id^="categoryList"] li {
  padding: 0 0 0 16px;
  background: url("/_themes/site/images/ic-arrow.svg") left center no-repeat;
}

div[id^="categoryList"] section:not(:last-child) h3,
div[id^="categoryList"] li:not(:last-child) {
  margin: 0 0 5px;
}

div[id^="categoryList"] br {
  display: none;
}

@media only screen and (max-width: 959px) {
  div[id^="categoryList"] .pieceBody {
    padding: 0;
  }

  div[id^="categoryList"] h3,
  div[id^="categoryList"] li {
    margin: 0;
    padding: 11px 12px;
    background: none;
  }

  div[id^="categoryList"] section:not(:last-child) h3,
  div[id^="categoryList"] section:not(:last-child) li {
    border-bottom: 1px solid var(--mono-color-6);
  }

  div[id^="categoryList"] a {
    display: block;
  }
}

/* #menu.piece 
-----------------------------------------------*/
.contentGpCategoryCategoryType,
#menu.piece ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem 3rem;
}

.contentGpCategoryCategoryType section,
#menu.piece ul li {
  width: calc(100% / 3 - 2rem);
}

.contentGpCategoryCategoryType section h2,
#menu.piece ul li {
  box-shadow: 0 0 10px var(--mono-color-3);
  padding: 0;
  aspect-ratio: 5 / 3;
  background-size: cover;
  transition: 0.3s;
}

.contentGpCategoryCategoryType section h2:hover,
#menu.piece ul li:hover {
  box-shadow: 0 0 3px var(--ac-color-brown-3);
}

.contentGpCategoryCategoryType section h2 {
  margin-bottom: 1rem;
  font-weight: normal;
}

.contentGpCategoryCategoryType section h2:has(a[href*="westchild"]),
#menu.piece .westchild {
  background-image: url("/_themes/site/images/menu-westchild.jpg");
}

.contentGpCategoryCategoryType section h2:has(a[href*="sand"]),
#menu.piece .sand {
  background-image: url("/_themes/site/images/menu-sand.jpg");
}

.contentGpCategoryCategoryType section h2:has(a[href*="drink"]),
#menu.piece .drink {
  background-image: url("/_themes/site/images/menu-drink.jpg");
}

.contentGpCategoryCategoryType section h2:has(a[href*="morning"]),
#menu.piece .morning {
  background-image: url("/_themes/site/images/menu-morning.jpg");
}

.contentGpCategoryCategoryType section h2:has(a[href*="takeout"]),
#menu.piece .takeout {
  background-image: url("/_themes/site/images/menu-takeout.jpg");
}

.contentGpCategoryCategoryType section h2 a,
#menu.piece li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 5 / 3;
  border: 5px solid var(--mono-color-9);
  background-color: #ffffffad;
  color: var(--mono-color-1);
  font-size: 2.3rem;
  font-family: var(--font-family-pop2);
  text-decoration: none;
  letter-spacing: 0.4rem;
  text-shadow:
    0 0 3px #fff,
    0 0 3px #fff,
    0 0 3px #fff,
    0 0 3px #fff;
}

.contentGpCategoryCategoryType section h2 a {
  font-size: 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 959px) {

  .contentGpCategoryCategoryType,
  #menu.piece ul {
    gap: 3rem 2rem;
  }

  .contentGpCategoryCategoryType section,
  #menu.piece ul li {
    flex-grow: 1;
    min-width: 210px;
  }

  #menu.piece ul li:first-of-type,
  #menu.piece ul li:nth-of-type(2) {
    width: calc(50% - 1rem);
  }

  #menu.piece ul li:first-of-type a,
  #menu.piece ul li:nth-of-type(2) a {
    font-size: 2rem;
  }

  #menu.piece li a {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 759px) {
  #menu.piece ul {
    gap: 1.5rem 0.5rem;
  }

  #menu.piece ul li {
    min-width: 174px;
  }

  #menu.piece ul li:first-of-type a,
  #menu.piece ul li:nth-of-type(2) a {
    font-size: 1.7rem;
  }

  #menu.piece li a {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 559px) {
  #menu.piece ul li:first-of-type {
    flex-basis: 100%;
    width: 100%;
  }

  #menu.piece ul li:first-of-type a {
    font-size: 2rem;
  }

  #menu.piece ul li:first-of-type br {
    display: none;
  }

  #menu.piece ul li,
  #menu.piece ul li:nth-of-type(2) {
    width: calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }

  #menu.piece ul li a,
  #menu.piece ul li:nth-of-type(2) a {
    font-size: 1.2rem;
  }
}

/* faq
----------------------------------------------- */
#faq .docs li {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 40px;
  background-color: #F9F0DC;
  box-shadow: 1px 1px 3px #806a573a;
}

#faq .docs li .title,
#faq .docs li .body {
  display: block;
  padding: 1rem 3rem;
  background-repeat: no-repeat;
  background-position: 1.5rem 1.1rem;
}

#faq .docs li span.title {
  background-image: url("/_themes/site/images/faq-q.svg");
  cursor: pointer;
}

#faq .docs li span.btn {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
}

#faq .docs li span.btn button {
  position: relative;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

#faq .docs li span.btn button::before,
#faq .docs li span.btn button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  transition: transform 0.3s ease;
}

#faq .docs li span.btn button::before {
  width: 20px;
  height: 0;
  border-top: 2px solid var(--mono-color-1);
}

#faq .docs li span.btn button::after {
  width: 0;
  height: 20px;
  border-left: 2px solid var(--mono-color-1);
}

#faq .docs li span.btn.open button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

#faq .docs li span.btn button:focus {
  outline: none;
}

#faq .docs li span.body {
  display: none;
  border-radius: 0 0 40px 40px;
  background-color: #FEF7E6;
  background-image: url("/_themes/site/images/faq-a.svg");
}

#faq .docs li p {
  margin-bottom: 0;
}

#faq .more a {
  margin-top: 0;
}

#detail dl>div {
  display: flex;
  gap: 0.5rem 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--mono-color-1);
}

#detail dl dt {
  width: 5.5rem;
}

#detail dl .hours {
  width: 100%;
}

#detail dl .hours .h-title {
  display: inline-block;
  width: 5.3rem;
}

#detail dl .holiday {
  background-color: unset;
  color: unset;
}

@media only screen and (max-width: 559px) {
  #detail dl>div {
    flex-direction: column;
  }

  #detail dl dt {
    width: 100%;
  }

}