@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Castoro+Titling&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abel&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  background: #fff;
  color: #101010;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

a:link {
  color: #101010;
  text-decoration: none;
}
a:visited {
  color: #101010;
  text-decoration: none;
}
a:hover {
  color: #101010;
  text-decoration: none;
}
a:active {
  color: #101010;
  text-decoration: none;
}

a {
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1023px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 0;
  }
}
/* // screen
----------------------------------- */
.sp {
  display: none;
}

.md {
  display: none;
}

.pc {
  display: block;
}

.pconly {
  display: block;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none;
  }
  .md {
    display: block;
  }
  .pc {
    display: block;
  }
  .pconly {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .md {
    display: block;
  }
  .pc {
    display: none;
  }
  .pconly {
    display: none;
  }
}
/* pageContainer
------------------------------------ */
#pageContainer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
#pageContainer #header {
  top: 0;
  position: sticky;
  z-index: 1;
}
#pageContainer main {
  position: relative;
  z-index: 0;
}

/* header
------------------------------------ */
#header > header {
  padding: 2rem 0;
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 4vw, 150px);
  padding-left: clamp(2rem, 4vw, 150px);
  padding-right: clamp(2rem, 8.5vw, 8.5vw);
  padding-left: clamp(2rem, 8.5vw, 8.5vw);
}
@media screen and (max-width: 767px) {
  #header > header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  #header > header {
    padding: 2rem;
  }
}
#header > header {
  display: grid;
  grid-template-columns: 1fr max-content;
  background: #fff;
  border-bottom: 1px solid #101010;
}
#header > header .logo {
  max-width: 338px;
  width: clamp(10rem, 23.5vw, 33.8rem);
}
#header > header > nav {
  display: flex;
  align-items: center;
  height: 100%;
}
#header > header > nav .nav {
  display: flex;
  align-items: center;
  gap: 0 clamp(1rem, 2.1vw, 3rem);
  margin-right: clamp(1rem, 2.8vw, 4rem);
  height: 100%;
}
#header > header > nav .nav > li {
  font-size: clamp(0.8rem, 0.8vw, 1.2rem);
  text-align: center;
  position: relative;
  display: grid;
  align-items: center;
  height: 100%;
}
#header > header > nav .nav > li > a,
#header > header > nav .nav > li div {
  display: block;
  cursor: pointer;
}
#header > header > nav .nav > li div {
  position: relative;
}
#header > header > nav .nav > li div span::after {
  display: none;
}
#header > header > nav .nav > li div::after {
  content: "";
  width: 6px;
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  position: absolute;
  top: 100%;
  left: calc(50% - 5px);
  background: #000;
  transition: 0.3s;
}
#header > header > nav .nav > li div:hover::after {
  transform: rotate(-180deg);
}
#header > header > nav .nav > li span {
  display: block;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: clamp(1.2rem, 1.4vw, 2rem);
  position: relative;
}
#header > header > nav .nav > li span::after {
  background-color: #333;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  width: 100%;
}
#header > header > nav .nav > li .subnav {
  display: none;
  position: absolute;
  top: calc(100% + 2rem);
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 3rem 2rem 1rem;
  border-radius: 0 0 10px 10px;
  border: 1px solid;
  border-top: none;
}
#header > header > nav .nav > li .subnav:before {
  content: "";
  width: calc(100% + 4px);
  height: 2rem;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: -2px;
}
#header > header > nav .nav > li .subnav li {
  white-space: nowrap;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}
#header > header > nav .nav > li .subnav li a {
  display: block;
  padding: 0.25rem 0;
}
#header > header > nav .nav > li .subnav li a:hover {
  text-decoration: underline;
}
#header > header > nav .nav > li:hover span:after {
  transform: scale(1, 1);
}
#header > header > nav .nav > li:hover .subnav {
  display: block;
}
#header > header.fixed {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
}
#header > header.fixed .logo {
  max-width: 338px;
}
#header > header.fixed.show {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  #header > header > nav .nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #header .btn_menu {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    justify-content: center;
  }
  #header > header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #header > header .logo {
    width: calc(100% - 6rem);
    max-width: 70%;
  }
  #header > header > nav .nav {
    display: none;
  }
  #header > header.fixed {
    background: transparent;
    transition: opacity 0.3s, transform 0s;
    opacity: 0;
    border-bottom: none;
    grid-template-areas: "logo nav";
  }
  #header > header.fixed .logo {
    display: none;
  }
  #header > header.fixed nav {
    grid-area: nav;
  }
  #header > header.fixed.show {
    transform: translateY(0);
    opacity: 1;
    transition: 0.3s;
  }
  #header > header.fixed.show > nav .btn_menu {
    background: none;
  }
  #header > header.fixed.show > nav .btn_menu > div span {
    background: #000;
  }
}
/* header
------------------------------------ */
.btn_menu {
  width: clamp(3rem, 3.5vw, 5rem);
  height: clamp(3rem, 3.5vw, 5rem);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.btn_menu > div {
  position: relative;
  width: 100%;
  height: clamp(1.2rem, 1.1vw, 1.6rem);
}
.btn_menu > div span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #101010;
  left: 0;
  transition: 0.3s;
}
.btn_menu > div span:first-child {
  top: 0;
}
.btn_menu > div span:last-child {
  bottom: 0;
}
.js-menuOpen .btn_menu > div span:first-child {
  top: 50%;
  transform: rotate(160deg);
}
.js-menuOpen .btn_menu > div span:last-child {
  bottom: auto;
  top: 50%;
  transform: rotate(-160deg);
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2F1616;
  color: #fff;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
}
.js-menuOpen #menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
}
#menu > header {
  padding: 2rem 0;
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 4vw, 150px);
  padding-left: clamp(2rem, 4vw, 150px);
  padding-right: clamp(2rem, 8.5vw, 8.5vw);
  padding-left: clamp(2rem, 8.5vw, 8.5vw);
}
@media screen and (max-width: 767px) {
  #menu > header {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
#menu > header {
  display: grid;
  grid-template-columns: 1fr max-content;
  background: #fff;
  align-items: center;
  position: sticky;
  top: 0;
}
#menu > header .logo {
  width: clamp(10rem, 23.5vw, 33.8rem);
}
#menu .drawerbox {
  display: grid;
  grid-template-columns: minmax(300px, 900px) max-content;
  gap: clamp(4rem, 5.6vw, 8rem);
  padding: 4rem;
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 4vw, 150px);
  padding-left: clamp(2rem, 4vw, 150px);
  padding-right: clamp(2rem, 8.5vw, 8.5vw);
  padding-left: clamp(2rem, 8.5vw, 8.5vw);
}
@media screen and (max-width: 767px) {
  #menu .drawerbox {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
#menu .drawerbox > nav a {
  color: #fff;
}
#menu .drawerbox > nav > ul {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 3rem;
}
#menu .drawerbox > nav > ul > li {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-areas: "en jp" "sp sub";
  grid-column: span 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1.5rem;
}
#menu .drawerbox > nav > ul > li:last-child {
  border-bottom: none;
}
#menu .drawerbox > nav > ul > li .subnav {
  grid-area: sub;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 3rem;
  font-size: clamp(1.5rem, 1.1vw, 1.6rem);
  margin-top: 1rem;
}
#menu .drawerbox > nav > ul > li .subnav li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#menu .drawerbox > nav > ul > li .subnav li a:hover {
  text-decoration: underline;
}
#menu .drawerbox > nav > ul > li .subnav li a::before {
  content: "";
  width: 5px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50vh;
  display: inline-block;
}
#menu .drawerbox > nav > ul > li > a,
#menu .drawerbox > nav > ul > li > div {
  display: inherit;
  grid-template-columns: inherit;
  grid-column: inherit;
  align-items: center;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: clamp(1.5rem, 1.3vw, 1.8rem);
}
#menu .drawerbox > nav > ul > li > a span,
#menu .drawerbox > nav > ul > li > div span {
  font-size: clamp(1.5rem, 1.1vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0em;
  text-indent: 0em;
}
#menu .drawerbox > nav > ul > li > div span {
  font-style: italic;
}
#menu .drawerbox > nav > ul > li > a:hover span {
  color: #fff;
  text-decoration: underline;
}
#menu .drawerbox .data a {
  color: #fff;
}
#menu .drawerbox .data .address {
  margin-bottom: 3rem;
}
#menu .drawerbox .data .address dt {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: clamp(1.2rem, 1.4vw, 2rem);
}

@media screen and (max-width: 768px) {
  #menu > header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  #menu > header .logo {
    width: calc(100% - 6rem);
    max-width: 70%;
  }
  #menu .drawerbox {
    padding: 0;
    display: block;
    grid-template-columns: 1fr;
  }
  #menu .drawerbox > nav {
    padding: 4rem 2rem 0;
    padding-left: clamp(2rem, 8vw, 12rem);
    padding-right: clamp(2rem, 8vw, 12rem);
    padding-right: clamp(2rem, 4vw, 150px);
    padding-left: clamp(2rem, 4vw, 150px);
    padding-right: clamp(2rem, 8.5vw, 8.5vw);
    padding-left: clamp(2rem, 8.5vw, 8.5vw);
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  #menu .drawerbox > nav {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #menu .drawerbox > nav > ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 3rem;
  }
  #menu .drawerbox > nav > ul > li {
    display: block;
  }
  #menu .drawerbox > nav > ul > li .subnav {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  #menu .drawerbox > nav > ul > li .subnav li {
    min-width: calc(50% - 1rem);
  }
  #menu .drawerbox > nav > ul > li .subnav li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  #menu .drawerbox > nav > ul > li .subnav li a::before {
    content: "";
    width: 5px;
    aspect-ratio: 1;
    background: #fff;
    border-radius: 50vh;
    display: inline-block;
  }
  #menu .drawerbox > nav > ul > li > a,
  #menu .drawerbox > nav > ul > li > div {
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
  }
  #menu .drawerbox > nav > ul > li > div {
    position: relative;
  }
  #menu .drawerbox > nav > ul > li > div span {
    font-style: normal;
  }
  #menu .drawerbox > nav > ul > li > div:after {
    content: "";
    width: 8px;
    aspect-ratio: 1;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    right: 1rem;
    top: calc(50% - 4px);
    transform: rotate(45deg);
  }
  #menu .drawerbox > nav > ul > li > div.active:after {
    transform: rotate(-135deg);
  }
  #menu .drawerbox .data .address {
    margin-bottom: 3rem;
    padding-top: 1rem;
    padding-left: clamp(2rem, 8vw, 12rem);
    padding-right: clamp(2rem, 8vw, 12rem);
    padding-right: clamp(2rem, 4vw, 150px);
    padding-left: clamp(2rem, 4vw, 150px);
    padding-right: clamp(2rem, 8.5vw, 8.5vw);
    padding-left: clamp(2rem, 8.5vw, 8.5vw);
  }
}
@media screen and (max-width: 768px) and (max-width: 767px) {
  #menu .drawerbox .data .address {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #menu .drawerbox .data .address dt {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: clamp(1.2rem, 4.3vw, 1.6rem);
    text-align: center;
    margin-bottom: 0.5rem;
  }
  #menu .drawerbox .data .timetable {
    background: #fff;
    padding: 2rem 1rem;
  }
  #menu .drawerbox .data .timetable .timetablebox {
    width: fit-content;
    margin: 0 auto;
  }
  #menu .drawerbox .data .timetable table {
    margin: 0 auto 1rem;
  }
  #menu .drawerbox .data .timetable table th,
  #menu .drawerbox .data .timetable table td {
    border-bottom: none;
    padding: 0.25rem 1rem;
  }
  #menu .drawerbox .data .timetable table thead th {
    color: #101010;
    border-bottom: 1px solid #2F1616;
  }
  #menu .drawerbox .data .timetable table tbody th {
    font-size: 1.4rem;
    border-right: none;
  }
  #menu .drawerbox .data .timetable .notes {
    color: #101010;
    display: grid;
    grid-template-columns: 1fr;
  }
  #menu .drawerbox .data .timetable .notes a {
    color: #2F1616;
  }
  #menu .drawerbox .data .timetable .notes dt {
    background: #2F1616;
    color: #fff;
    width: fit-content;
  }
}
/* parts
------------------------------------ */
.timetable table {
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  margin-bottom: 4rem;
  border-collapse: collapse;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.timetable table th,
.timetable table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.5rem clamp(1rem, 1vw, 1.5rem);
}
.timetable table thead th {
  font-weight: normal;
}
.timetable table thead th:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.timetable table tbody {
  background: #fff;
}
.timetable table tbody th,
.timetable table tbody td {
  color: #101010;
  border-bottom: 1px solid #2F1616;
}
.timetable table tbody th {
  border-right: 1px solid #2F1616;
}
.timetable .notes {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 2rem;
}
.timetable .notes dt {
  background: #fff;
  padding: 0 0.5rem;
  text-align: center;
  color: #101010;
  font-weight: bold;
  font-size: 90%;
}
.timetable .notes dd.tel {
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.linkicon {
  --line-color: #fff;
  display: block;
  width: 2rem;
  height: 5px;
  align-self: center;
  position: relative;
}
.linkicon::before, .linkicon:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line-color);
}
.linkicon::before {
  width: 100%;
}
.linkicon::after {
  width: 10px;
  transform-origin: right bottom;
  transform: rotate(30deg);
}

:root .pageTitle {
  display: flex;
  justify-content: center;
  padding: clamp(5rem, 10.8vw, 15.5rem) 2rem;
  align-items: center;
  gap: 3rem clamp(1rem, 2.1vw, 3rem);
  flex-wrap: wrap;
}
:root .pageTitle .category {
  font-size: clamp(1.6rem, 1.4vw, 2rem);
}
:root .pageTitle .en {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 3rem);
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(4rem, 6.9vw, 10rem);
}
:root .pageTitle .en::before {
  content: "";
  width: clamp(4rem, 8.3vw, 12rem);
  height: 1px;
  background: #101010;
}
:root .pageTitle .title {
  width: 100%;
  text-align: center;
  font-size: clamp(2.4rem, 1.4vw, 2rem);
}
@media screen and (max-width: 768px) {
  :root .pageTitle {
    gap: 0 clamp(1rem, 2.1vw, 3rem);
    display: grid;
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
  }
  :root .pageTitle .en {
    font-size: clamp(4rem, 6.9vw, 10rem);
  }
  :root .pageTitle .title {
    font-size: clamp(2rem, 1.4vw, 2rem);
  }
}
:root .markerPink {
  background-color: #DAA4A2;
  color: #fff;
  padding: 0 0.5rem 0.2rem;
}
:root .markerGreen {
  background-color: #909940;
  color: #fff;
  padding: 0 0.5rem 0.2rem;
}
:root .textlink {
  margin: 3rem 0 0 auto;
  width: fit-content;
}
:root .textlink a {
  display: grid;
  grid-template-columns: max-content 2.4rem;
  gap: 1.2rem;
}
:root .textlink a .linkicon {
  --line-color: #000;
}
:root .dotlist01 {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.25rem 0.5rem;
}
:root .dotlist01 li {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
:root .dotlist01 li::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  background: #545A6D;
  border-radius: 50vh;
  margin-top: calc(0.8em - 3px);
}

/* footer
------------------------------------ */
#footer {
  margin-top: 5rem;
  background: #2F1616;
  padding: 5rem 0;
  padding-left: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 8vw, 12rem);
  padding-right: clamp(2rem, 4vw, 150px);
  padding-left: clamp(2rem, 4vw, 150px);
  padding-right: clamp(2rem, 8.5vw, 8.5vw);
  padding-left: clamp(2rem, 8.5vw, 8.5vw);
}
@media screen and (max-width: 767px) {
  #footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
#footer footer {
  color: #fff;
  display: grid;
  grid-template-columns: 1fr minmax(150px, 40vw);
  gap: clamp(2rem, 3.5vw, 5rem);
  align-items: stretch;
}
#footer footer .data {
  position: relative;
}
#footer footer .data .logo {
  max-width: 365px;
  margin-bottom: 3rem;
}
#footer footer .data .address {
  margin-bottom: 3rem;
}
#footer footer .data .notes a {
  color: #fff;
}
#footer footer .data .link {
  margin-top: 3rem;
}
#footer footer .data .link a {
  background: #fff;
  max-width: 20em;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr 2rem;
  place-content: center;
  place-items: center;
}
#footer footer .data .link a .linkicon {
  --line-color: #101010;
}
#footer footer .map {
  display: grid;
  grid-template-rows: 1fr;
  padding-bottom: 300px;
  gap: 0;
  position: relative;
}
#footer footer .map .gmap {
  min-height: 0;
}
#footer footer .map .gmap iframe {
  height: 100%;
}
#footer footer .map .pagetop {
  bottom: 0;
  right: 0;
  position: absolute;
  display: block;
  margin: 0 0 0 auto;
  width: fit-content;
}
#footer footer .map .pagetop a {
  padding-bottom: 0;
}
#footer .copy {
  text-align: center;
  font-size: clamp(1rem, calc(0.1vw * 1rem), 0.2remrem);
  color: #fff;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  #footer footer {
    grid-template-columns: 1fr;
  }
  #footer footer .data .link a {
    width: 100%;
    max-width: 100%;
  }
  #footer footer .map .gmap iframe {
    aspect-ratio: 2/3;
    height: auto;
    width: 100%;
  }
  #footer footer .map .pagetop {
    display: none;
  }
  #footer .copy {
    font-size: 1rem;
  }
}
/* fixedfooter
------------------------------------ */
#pagetop {
  position: fixed;
  display: none;
  bottom: 2rem;
  right: 1rem;
  mix-blend-mode: difference;
}
@media screen and (max-width: 768px) {
  #pagetop {
    right: 0;
  }
}

.pagetop {
  --line-color: #fff;
}
.pagetop a {
  padding: 4rem 1rem 1rem 1rem;
  color: #fff;
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  writing-mode: vertical-rl;
  position: relative;
}
.pagetop a::before, .pagetop a:after {
  content: "";
  position: absolute;
  right: calc(1rem + clamp(0.8rem, 1vw, 1.5rem));
  top: 0;
  width: 1px;
  background: var(--line-color);
}
.pagetop a::before {
  height: 3rem;
}
.pagetop a::after {
  height: 1rem;
  transform-origin: left top;
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  .pagetop a {
    padding: 2.5rem 1rem 0.5rem 1rem;
    line-height: 1;
    writing-mode: vertical-rl;
    writing-mode: horizontal-tb;
  }
  .pagetop a::before, .pagetop a:after {
    right: 2.2rem;
  }
  .pagetop a::before {
    height: 2rem;
  }
}

/* fixedfooter
------------------------------------ */
#fixedfooter {
  display: none;
}

@media screen and (max-width: 768px) {
  #fixedfooter {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    display: block;
    background: #2F1616;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    transition: 0.3s;
    transform: translateY(100%);
  }
  #fixedfooter.show {
    position: fixed;
    bottom: 0;
    transform: translateY(0);
  }
  .js-menuOpen #fixedfooter {
    transform: translateY(0);
  }
  #fixedfooter ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  #fixedfooter ul li {
    display: grid;
    grid-template-rows: subgrid;
  }
  #fixedfooter ul li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  #fixedfooter ul li a {
    display: grid;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0.5rem 1.5rem;
  }
  #fixedfooter ul .reserve a {
    grid-template-columns: max-content 2.8rem;
    gap: 1rem;
    place-content: center;
    place-items: center;
  }
  #fixedfooter ul .call a {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  #fixedfooter ul .call a span {
    font-family: "Abel", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
}
/* ------------------------------------
// wp class
------------------------------------ */
div.alignright,
img.alignright,
a.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

div.alignleft,
img.alignleft,
a.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

div.aligncenter,
img.aligncenter,
a.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 20px 0 0;
}

.entrybody::after {
  content: "";
  clear: both;
  display: block;
}
.entrybody h1,
.entrybody h2,
.entrybody h3,
.entrybody h4,
.entrybody h5,
.entrybody h6 {
  font-weight: 700;
  margin: 2em 0 1em;
}
.entrybody h1,
.entrybody h2,
.entrybody h3 {
  font-size: 2.2rem;
}
.entrybody h4,
.entrybody h5,
.entrybody h6 {
  font-size: 2rem;
}
.entrybody a {
  text-decoration: underline;
}
.entrybody p {
  margin-bottom: 2em;
}
.entrybody p:last-child {
  margin-bottom: 0;
}
.entrybody p::before {
  content: "";
  clear: both;
  display: block;
}
.entrybody p:has(img[class*=wp-image-]) img {
  max-width: 500px;
}
.entrybody ul {
  margin-bottom: 2em;
}
.entrybody ul li {
  padding-left: 1em;
  position: relative;
}
.entrybody ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.entrybody ol {
  margin-bottom: 2em;
  counter-reset: number;
}
.entrybody ol li {
  padding-left: 1.5em;
  position: relative;
}
.entrybody ol li::before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number) ".";
}

@media screen and (max-width: 768px) {
  .aligncenter,
  .alignright,
  .alignleft {
    float: none !important;
    padding: 0 0 20px 0 !important;
  }
  a.pop:has(img[class*=align]) {
    display: block;
  }
}
/* pager
------------------------------------ */
.pager {
  margin: 5rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pager li a {
  padding: 0.5rem 1.5rem;
  display: block;
  color: #fff;
  background: #2F1616;
}
.pager li a.current {
  background: #545A6D;
  pointer-events: none;
}

/* ------------------------------------
// pager
----------------------------------- */
.pager {
  margin: 5rem auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pager li {
  line-height: 1;
  margin: 6px;
}
.pager li a,
.pager li span.current {
  padding: 0.5rem 1.5rem;
  display: block;
  color: #fff;
  background: #2F1616;
}
.pager li span.current {
  background: #545A6D;
  pointer-events: none;
}

/* ------------------------------------
// 404
----------------------------------- */
.notFound {
  text-align: center;
  padding: 100px 0;
}

/*# sourceMappingURL=structure.css.map */