@charset "UTF-8";
/*□□□□□□□□□□ 全ページ共通 □□□□□□□□□□*/
/*||| header |||*/
header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  padding: 0.5em;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*firefoxのみ*/
@-moz-document url-prefix(){
  header {
    grid-template-columns: 1fr 1fr auto;
  }
}
@media screen and (max-width: 768px) {
  header {
    grid-template-columns: 1fr auto;
    height: 60px;
  }
}
header.hasScroll {
  position: fixed;
  top: 0;
  z-index: 80;
}
header.hasScroll:not(:has(+ #globalNavArea.active)) {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
header.hasShadow {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
header .logo {
  height: 100%;
}
@media screen and (min-width: 769px) {
  header .logo {
    max-width: 420px;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    max-width: 350px;
  }
}
header .logo img {
  height: inherit;
}
@media screen and (min-width: 769px) {
  header .logo:hover {
    opacity: 0.8;
  }
}
/* @media screen and (max-width: 1000px) {
  header .logo {
    max-width: 420px;
  }
} */
header .linkArea {
  text-align: right;
}
header .menuButton {
  display: grid;
  place-content: center;
  border: unset;
  width: 50px;
}
header .menuButton.active span:nth-of-type(1) {
  -webkit-transform: translateY(calc(0.75rem - 2px)) rotate(-45deg);
  transform: translateY(calc(0.75rem - 2px)) rotate(-45deg);
}
header .menuButton.active span:nth-of-type(2) {
  opacity: 0;
}
header .menuButton.active span:nth-of-type(3) {
  -webkit-transform: translateY(calc((0.75rem - 2px) * -1)) rotate(45deg);
  transform: translateY(calc((0.75rem - 2px) * -1)) rotate(45deg);
}
header .menuButton.active::after {
  content: "閉じる";
}
header .menuButton::after {
  display: block;
  color: #ff5684;
  font-size: 0.75rem;
  line-height: 1;
  content: "メニュー";
}
header .menuButton div {
  display: grid;
  gap: 5px 0;
  margin: 0 auto;
  width: 1.875rem;
  height: 1.5rem;
}
header .menuButton div span {
  display: block;
  height: 2px;
  border-radius: 3px;
  background: #ff5684;
}
header .menuButton p {
  color: #ff5684;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  header .menuButton p {
    font-size: 2.083vw;
  }
}

.memberPage header .menuButton::after {
  color: #82B8D9;
}
.memberPage header .menuButton div span {
  background: #82B8D9;
}
.memberPage header .menuButton p {
  color: #82B8D9;
}

/*||| globalNavArea |||*/
/*▽固定のグローバルナビ*/
html:has(#globalNavArea.active) {
  overflow: hidden;
}

#globalNavArea {
  display: none;
  position: relative;
  background-color: #f2efea;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #globalNavArea {
    height: calc(100dvh - 130px);
  }
}
@media screen and (max-width: 375px) {
  #globalNavArea {
    height: calc(100dvh - 120px);
  }
}
#globalNavArea.hasScroll {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  #globalNavArea.hasScroll {
    top: 70px;
  }
}
@media screen and (max-width: 768px) {
  #globalNavArea.hasScroll {
    top: 60px;
  }
}
#globalNavArea .globalNavArea {
  padding: 2em 0;
  height: 100%;
  overflow-y: auto;
}

.globalNavArea {
  padding: 4em 0;
}
.globalNavArea .inner {
  display: grid;
  grid-auto-flow: dense;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 0 1em;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .globalNavArea .inner {
    grid-auto-rows: 60px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .globalNavArea .inner {
    grid-auto-rows: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.globalNavArea a {
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  place-self: stretch;
  width: 100%;
  background-repeat: no-repeat;
  text-decoration: none;
  color: rgba(51, 51, 51, 0.8);
}
@media screen and (min-width: 769px) {
  .globalNavArea a {
    padding: 0.5em 1em;
  }
}
@media screen and (max-width: 768px) {
  .globalNavArea a {
    padding: 0.2em 0.5em;
  }
}
.globalNavArea [data-icon] {
  position: relative;
}
.globalNavArea [data-icon]::before, .globalNavArea [data-icon]::after {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 769px) {
  .globalNavArea [data-icon]::before, .globalNavArea [data-icon]::after {
    width: 48px !important;
    height: 48px !important;
  }
}
@media screen and (max-width: 768px) {
  .globalNavArea [data-icon]::before, .globalNavArea [data-icon]::after {
    width: calc(48px - 0.5em) !important;
    height: calc(48px - 0.5em) !important;
  }
}
.globalNavArea a.navL {
  grid-column-end: span 2;
  grid-row-end: span 2;
}
.globalNavArea a.navM {
  grid-column-end: span 1;
  grid-row-end: span 2;
}
.globalNavArea a.navS {
  grid-column-end: span 1;
  grid-row-end: span 1;
}
.globalNavArea a p {
  position: relative;
  line-height: 1.3;
}

@media screen and (min-width: 1001px) {
  .sideNavOpenButton:has(+ .fixed) {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .sideNavOpenButton:has(+ .fixed) {
    position: fixed;
    top: calc(70px + 0.7em);
    padding: 1em;
    width: 240px;
    border-radius: 0 1em 1em 0;
    background-color: #ff5684;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    color: #fff;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .sideNavOpenButton:has(+ .fixed) {
    top: calc(60px + 0.7em);
  }
}
.sideNavOpenButton:not(:has(+ .fixed)) {
  display: none;
}

aside.sideNav {
  width: 240px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0 1em 1em 0;
  background-color: #ff5684;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1001px) {
  aside.sideNav {
    padding: 1.5em 0.5em 1em;
  }
}
@media screen and (max-width: 1000px) {
  aside.sideNav {
    padding: 1.5em 1em 1.5em 0.5em;
  }
}
@media screen and (max-width: 1000px) {
  aside.fixed {
    display: none;
    position: fixed;
    top: calc(70px + 0.7em);
    z-index: 30;
  }
}
@media screen and (max-width: 768px) {
  aside.fixed {
    top: calc(60px + 0.7em);
  }
}
@media screen and (min-width: 1001px) {
  aside.fixed .sideNavCloseButton {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  aside.fixed .sideNavCloseButton {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    padding: 0.3em;
    border: 2px solid #ff5684;
    border-radius: 2em;
    background-color: #fff;
  }
  aside.fixed .sideNavCloseButton::before {
    width: 1.5em !important;
    height: 1.5em !important;
    background-color: #ff5684;
  }
}
@media screen and (max-width: 1000px) {
  aside.fixed .arrowLinkArea {
    max-height: 60dvh;
    overflow-y: auto;
  }
}
aside.fixed .arrowLinkArea a,
aside.fixed .arrowLinkArea button{
  text-align: left;
}
aside.fixed .arrowLinkArea a p {
  font-size: min(4.267vw, 16px);
}
aside:not(.fixed) .sideNavCloseButton {
  display: none;
}
aside .title {
  margin-bottom: 0.5em;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  aside .title {
    font-size: min(4.8vw, 20px);
  }
}
aside .arrowLinkArea {
  margin-top: 0;
  padding: 0;
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  aside .arrowLinkArea a:hover {
    background-color: rgba(255, 86, 132, 0.6) !important;
  }
}
aside .arrowLinkArea button:has(+ .child.active)::before, aside .arrowLinkArea button:has(+ .child.active)::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
aside .arrowLinkArea button:not(:has(+ .child.active))::before, aside .arrowLinkArea button:not(:has(+ .child.active))::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
aside .arrowLinkArea button:not(:first-of-type) + .child {
  display: none;
}
aside .arrowLinkArea .child a{
  height: 36px;
}
aside .arrowLinkArea .child a p{
  font-size: 0.9em;
}
aside .arrowLinkArea .current {
  background-color: rgba(255, 86, 132, 0.6) !important;
}
aside .arrowLinkArea .current::before, aside .arrowLinkArea .current::after {
  background-color: #fff !important;
}
aside .arrowLinkArea .current p {
  color: #fff !important;
}
/*--- 会員用aside ---*/
.memberPage aside.sideNav{
  background-color: #82B8D9;
}
.memberPage aside .arrowLinkArea .current {
  background-color: rgba(130, 184, 217, 0.6) !important;
}
@media screen and (min-width: 769px) {
  .memberPage aside .arrowLinkArea a:hover{
    background-color: rgba(130, 184, 217, 0.6) !important;
  }
}
@media screen and (max-width: 1000px) {
  .memberPage .sideNavOpenButton:has(+ .fixed) {
    background-color: #82B8D9;
  }
  .memberPage aside.fixed .sideNavCloseButton {
    border: 2px solid #82B8D9;
  }
  .memberPage aside.fixed .sideNavCloseButton::before {
    background-color: #82B8D9;
  }
}

/*||| .bottomFixedArea |||*/
.bottomFixedArea {
  position: fixed;
  left: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  padding: 0 1.2em;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  text-align: center;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .bottomFixedArea {
    height: 70px;
  }
}
@media screen and (max-width: 375px) {
  .bottomFixedArea {
    height: 60px;
  }
}
.bottomFixedArea a {
  width: 100%;
}

/*||| footer |||*/
footer .inner {
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  footer .inner {
    padding: 0 3.125rem;
  }
}
footer .footContentsArea {
  display: grid;
  gap: 1.875rem;
  padding-top: 1.875rem;
  border-top: 2px solid #777;
}
@media screen and (min-width: 769px) {
  footer .footContentsArea {
    grid-template-columns: 1fr auto;
  }
}
footer .logo {
  display: block;
  margin-bottom: 0.625rem;
  max-width: 420px;
}
footer .qr {
  width: 96px;
}
@media screen and (max-width: 768px) {
  footer .qr {
    margin: 0 auto;
  }
}
footer .copyright {
  display: grid;
  place-content: center;
  height: 40px;
  font-size: 0.875rem;
}
@media screen and (min-width: 769px) {
  footer:has(.footContentsArea) + .copyright {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  footer:has(.footContentsArea) + .copyright {
    margin-top: 1.25rem;
  }
}