@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
  font-size: 10px;
  font-size: 67.5%;
  font-family: 'Lato', 'Noto Sans JP', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
  /*font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;*/
  color: #000000;
}

a {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  text-decoration: none;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ヘッダー */
header {
/*  display: flex; */
  width: 100%;
  padding: 0.1vw 0 0;
  border-bottom: 0.1vw solid #ccc;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0.2vw 5vw rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  z-index: 11;
}

header a {
  color: #000000;
}

header > .horizontal > h1 {
  display: flex;
  max-height: 3rem;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0;
  text-align: center;
  line-height: 1.2;
  font-size: 1.5rem;
  font-weight: normal;
  flex: 4;
}
header > .horizontal > h1 > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
header > .horizontal > h1 > a > small {
  display: flex;
  white-space: nowrap;
  justify-content:  center;
  align-items: center;
  padding-left: 0.5rem;
}

header #sns-icons {
  text-align: right;
  flex: 1;
}

header #sns-icons svg {
  height: 2rem;
  width: 2rem;
  margin: 0 auto 0;
}

header #sp-menu-box {
  display: flex;
  z-index: 50;
  opacity: 0;
  flex: 1;
}

header #pc-menu-box {
  display: flex;
  justify-content: center;
  z-index: 50;
  border-top: 1px solid #ebe9ff;
}

#pc-menu-box > nav#pc-menu {
  width: 100%;
  max-width: 980px;
  text-align: center;
}

#pc-menu-box > nav#pc-menu ul {
  display: flex;
  width: 100%;
  margin: 0 auto 0;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}

#pc-menu-box > nav#pc-menu ul > li {
  margin: 0;
  text-align: center;
  line-height: 1.6rem;
  letter-spacing: 0;
  font-weight: bold;
}

#pc-menu-box > nav#pc-menu ul > li > a {
  display: inline-block;
  width: 100%;
  padding: 0.3rem 0;
  text-decoration: none;
  color: #000000;
  transition: background-color 0.3s, color 0.3s;
}

#pc-menu-box > nav#pc-menu ul > li > a:after {
  display: flex;
}

#pc-menu-box > nav#pc-menu ul > li > a:hover {
  background-color: #ddd;
  color: #000000;
}

nav#sp-menu {
  width: 100%;
  min-width: 390px;
  display: none;
  opacity: 0;
  background-color: #fff;
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 20;
}

input[type=checkbox]#sp-menu-toggle {
  display: none;
}

input[type=checkbox]#sp-menu-toggle:checked ~ #sp-menu {
  display: inline;
  opacity: 1;
}

input[type=checkbox]#sp-menu-toggle + label {
  position: relative;
}

input[type=checkbox]#sp-menu-toggle + label:after {
  position: absolute;
  bottom: 1px;
  left: 8px;
}

input[type=checkbox]#sp-menu-toggle + label svg {
  position: absolute;
  top: 4px;
  left: 8px;
}

input[type=checkbox]#sp-menu-toggle + label svg:nth-child(1) {
  transform: rotaetZ(0);
  opacity: 1;
  transition: all 0.2s ease-in;
}

input[type=checkbox]#sp-menu-toggle:checked + label svg:nth-child(1) {
  transform: rotateZ(-90deg);
  opacity: 0;
}

input[type=checkbox]#sp-menu-toggle + label svg:nth-child(2) {
  transform: rotateZ(-90deg);
  opacity: 0;
  transition: all 0.25s ease-in;
}

input[type=checkbox]#sp-menu-toggle:checked + label svg:nth-child(2) {
  transform: rotateZ(0);
  opacity: 1;
}

label.sp-menu-button {
  height: 3rem;
  width: 3rem;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: help;
}

label.sp-menu-button > svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0;
}
label.sp-menu-button::after {
  display: block;
  content: '\30E1\30CB\30E5\30FC';
  font-size: 0.5rem;
}

input[type=checkbox]#sp-menu-toggle:checked ~ #guard {
  display: block;
  animation: guardIn 0.25s forwards;
}

nav#sp-menu > ul {
  display: block;
  width: 100%;
  margin-bottom: 1px;
  list-style: none;
  position: relative;
  background-color: #fff;
}

nav#sp-menu > ul > li {
  display: flex;
  min-height: 3rem;
  width: 100%;
  margin-bottom: 0.1rem;
  justify-content: center;
  border-top: 1px solid #ccc;
  align-items: center;
  text-align: left;
  font-weight: bold;
}

nav#sp-menu > ul > li:hover {
  animation: tapIn 0.8s forwards;
}

nav#sp-menu > ul > li input[type="checkbox"] {
  display: none;
}

nav#sp-menu > ul > li > label {
  display: block;
  min-height: 2rem;
  width: 100%;
  margin: 0;
  text-indent: 2rem;
  letter-spacing: 0.5rem;
  line-height: 2px;
  font-size: 0.75rem;
}

nav#sp-menu > ul > li > ul > li {
  border-top: 1px solid #ccc;
}

nav#sp-menu > ul > li > ul > li > a {
  text-indent: 4rem;
}
nav#sp-menu > ul > li > ul > li > a span {
  text-indent: 4.2rem;
}

nav#sp-menu > ul li input[type="checkbox"] + label + ul {
  display: none;
}

nav#sp-menu > ul li input[type="checkbox"]:checked + label +  ul {
  display: block;
}

@keyframes tapIn {
  0% { opacity: 1.00; }
  10% { opacity: 0.98; }
  20% { opacity: 0.94; }
  30% { opacity: 0.88; }
  40% { opacity: 0.85; }
  50% { opacity: 0.82; }
  60% { opacity: 0.80; }
  70% { opacity: 0.78; }
  80% { opacity: 0.82; }
  85% { opacity: 0.87; }
  90% { opacity: 0.92; }
  95% { opacity: 0.98; }
  100% { opacity: 1.00; }
}

nav#sp-menu ul li a {
  display: block;
  min-height: 2rem;
  width: 100%;
  margin: 0;
  padding-top: 4px;
  padding-bottom: 0;
  text-indent: 1rem;
  letter-spacing: 0.5px;
  font-size: 13px;
  font-weight: bold;
}

nav#sp-menu ul li a > span {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  padding-top: 0;
  padding-bottom: 4px;
  text-indent: 1rem;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: normal;
  color: #969696;
}

nav#sp-menu > ul > li > label > span {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.2rem;
  text-indent: 2.2rem;
  letter-spacing: 0.2rem;
  font-size: 0.5rem;
}

#guard {
  display: none;
  height:100%;
  width:100%;
  background-color: #fff;
  opacity: 0;
  position: fixed;
  top: 4rem;
  left: 0;
  z-index: 11;
}

@keyframes guardIn {
  0% { opacity: 0; }
  5% { opacity: 0.15; }
  10% { opacity: 0.2; }
  15% { opacity: 0.25; }
  20% { opacity: 0.3; }
  25% { opacity: 0.35; }
  30% { opacity: 0.4; }
  35% { opacity: 0.51; }
  40% { opacity: 0.55; }
  45% { opacity: 0.58; }
  50% { opacity: 0.6; }
  55% { opacity: 0.63; }
  60% { opacity: 0.65; }
  65% { opacity: 0.68; }
  70% { opacity: 0.70; }
  75% { opacity: 0.73; }
  80% { opacity: 0.75; }
  85% { opacity: 0.78; }
  90% { opacity: 0.81; }
  95% { opacity: 0.83; }
  100% { opacity: 0.85; }
}

/* ヘッダー：ティッカー */
#telop {
  display: flex;
  height: 1.4rem;
  width: 100%;
  align-items: center;
  padding-bottom: 0.1rem;
  border-top: 1px solid #ebe9ff;
  font-size: 0.7rem;
}

/* メインコンテンツ */
main {
  min-height: calc(var(--vh, 1vh) * 100 - 3rem);
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0;
  padding: 6.75rem 0 1rem;
  text-align: center;
  background-color: #fff;
}

/* コンテンツ：セクション */
section {
  margin: 0 auto 0;
  border: 0;
}

div > h2 > span {
  display: block;
  color: #cccccc;
  font-size: 0.75rem;
}

section p {
  text-align: left;
  font-size: 0.8rem;
  font-weight: normal;
}


section > h2 {
  display: none;
}

/* コンテンツ：準備中 */
section > div.preparate {
  min-height: 30vh;
}

section > div.preparate > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1 0 0;
}

section > div.preparate > p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 3 0 0;
}

/* TOP：メインビジュアル */
div.visual {
  display: flex;
  width: 100%;
  position: relative;
  aspect-ratio: 25 / 32;
  background-image: url('/img/banner/screen01.png?20241219');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Noto Sans JP', sans-serif;;
}

div.visual > div.hashTag {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    bottom: 3vw;
    left: 4vw;
    font-family: 'Noto Sans JP';
    font-weight: 500;
}

div.visual > div.hashTag > ul {
    flex: 1;
    list-style: none;
    padding: 0;
    text-align: left;
    color: #fff;
}

div.visual > div.hashTag > ul > li:nth-child(n+2):before {
    content: "#";
}

div.visual > div.hashTag > ul > li:first-child {
  margin-bottom: 0.7vw;
  line-height: clamp(1.4rem, 3vw, 2.5rem);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}
div.visual > div.hashTag > ul > li:first-child > small {
  display: block;
  line-height: clamp(1.4rem, 2.4vw, 2.4rem);
  text-indent: 0.2vw;
  font-size: clamp(1.1rem, 2vw, 2rem);
}

div.visual > div.hashTag > ul > li:nth-child(n+2) {
  line-height: clamp(1.1rem, 2vw, 1.9rem);
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: #fff;
}

div.visual > div.hashTag > ul > li > a {
  width: 100%;
  color: #fff;
}

div.visual > div.copyRight {
  text-align: right;
  line-height: 2vw;
  letter-spacing: 0rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #fff;
  position: absolute;
  bottom: 3rem;
  right: 4vw;
}

/* TOP：営業情報 */
div.information {
  min-height: unset;
}

div.information > div.informationText {
  background-color: #d4b6b3;
  border-bottom: 1px solid #ebe9ff;
  padding: 0.1rem 0.5rem 0.5rem;
}

div.information > div.informationText > p {
  display: flex;
  flex-flow: column;
  width: 60%;
  min-width: 390px;
  margin: 2px auto 2px;
  padding: 0;
  justify-content: center;
  align-items: center;
  text-align: left;
  font-size: 0.75rem;
}
div.information > div.informationText > p > a {
  text-decoration: none;
  color: #333;
}
section > .information > div.banner {
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

section > .information > div.banner:hover {
  margin: 0;
  padding: 0;
}

section > .information > div.banner > a {
  width: 100%;
  margin: 0;
  padding: 0;
}
section > .information > div.banner > a > img {
  width: 100%;
  margin: 0;
  padding: 0;
}
section > .information > h2.display-visibile {
  display: block;
  visibility: visible;
  margin: 0.2rem auto 0;
  align-items: center;
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: normal;
}

/* メニュー */
div.menu {
    display: flex;
    flex-direction: column;
    padding: 1% 2.5% 1%;
}

div.menu > div {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 1rem 0 1rem;
    border-top: 1px solid #cccccc;
}

div.menu > div > h3 {
    font-size: 1.125rem;
    text-align: left;
}
div.menu > div > h3.comming-soon > small {
  font-weight: normal;
  color: #aaa;
}

div.menu > div > h3 > span {
    display: block;
    font-size: 0.75rem;
    color: #cccccc;
}

div.menu > div > table {
    width: 78%;
    margin-left: auto;
    border-collapse: collapse;
}

div.menu > div > table > tbody > tr > td {
    padding: 0.475rem;
    border: 1px solid #cccccc;
}

div.menu > div > table > tbody > tr > td > div:nth-child(1) {
    font-size: 0.7825rem;
    text-align: left;
}

div.menu > div > table > tbody > tr > td > div:nth-child(2) {
    width: 60%;
    margin-left: auto;
    font-size: 0.8rem;
    text-align: left;
}

/* about */
div.about {
    display: flex;
    flex-direction: column;
    padding: 1% 2.5% 1%;
}

div.about > div {
    display: unset;
    width: 55%;
    flex: 3 0 0;
    margin: 0 auto 1rem;
    text-align: left;
}

div.about > div > div > p {
    margin: 0 auto 2rem;
}

div.about > div > div:nth-child(odd) > img {
    width: 35%;
    float: left;
}

div.about > div > div:nth-child(even) > img {
    width: 35%;
    float: right;
}

div.reservation.about {
  width: 55%;
  margin: 0 auto;
}

div.reservation.about > div {
  display: block;
  gap: 0;
  width: 100%;
  border-bottom: 0;
}

div.reservation.about > div > div {
  width: 100%;
}

/* TOP：メニュー */
div.price {
  display: block;
  height: auto;
  width: 100%;
  padding: 1% 2.5% 1%;
}
.services {
  margin-bottom: clamp(8px, 5vw, 20px);
}
.services > .services-box > table {
  display: table;
  width: 98%;
  min-width: 375px;
  max-width: 980px;
  margin: 0.5rem auto 0;
  border: 1px rgba(233, 233, 233, 0.3) solid;
  border-collapse: collapse;
  font-size: 1.2rem;
  background-color: #fff;
}
.services > .services-box > table > caption {
  display: table-caption;
  width: 100%;
  line-height: clamp(2rem, 1.5vw, 2.5rem);
  letter-spacing: clamp(1px, 5vw, 5px);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: #fff;
  background-color: #d4b6b3;
}
.services > .services-box > table > caption.comming-soon {
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
  background-color: rgb(170, 170, 170);
}

.services > .services-box > table > tbody {
  display: table-row-group;
}
.services > .services-box > table > tbody > tr > th::before {
  content: "\27A4";
  margin-right: 10px;
}
.services > .services-box > table > tbody > tr > th {
  display: block;
  width: 100%;
  padding: clamp(5px, 1vw, 10px) 5px clamp(5px, 1vw, 10px);
  border-bottom: 1px #aaa dotted;
  text-align: left;
  text-indent: 1rem;
  font-size:  clamp(12px, 1.5vw, 15px) !important;
  font-weight: normal;
  background-color: rgba(234, 234, 234, 0.3);
}
.services > .services-box > table > tbody > tr > td {
  display: block;
  width: 100%;
  text-align: left;
}
.services > .services-box > table > tbody > tr > td > p {
  line-height: clamp(17px, 2vw, 20px);
  font-size: clamp(10px, 1.2vw, 12px);
  padding-top: clamp(5px, 1vw, 10px);
  padding-right: clamp(5px, 3vw, 10px);
  padding-bottom: clamp(5px, 3vw, 10px);
  padding-left: clamp(15px, 3vw, 30px);
}
.services > .services-box > table > tbody > tr > td > p > small {
  line-height: clamp(17px, 2vw, 20px);
  font-size: clamp(10px, 1.2vw, 12px);
  color: #f00;
}
div.price > div.price-box {
  display: block;
  padding-top: 8%;
  justify-content: center;
  aspect-ratio: 16 / 9;
  text-align:center;
  background-image: url('/img/esthetics/kyoto/price_table_bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

div.price > div.price-box > table {
  display: table;
  width: 80%;
  margin: 0 auto 0;
  border-collapse: collapse;
  text-align: center;
  background-color: rgba(255,255,255,1);
}

div.price > div.price-box > table > caption {
  width: 100%;
  margin-top: clamp(0.2rem, 1vw, 1rem);
  margin-bottom: clamp(0.1rem, 1vw, 0.3rem);
  border: 0;
  font-size: clamp(0.5rem, 1.5vw, 1.2rem);
  font-weight: bold;
}

div.price > div.price-box > table > tbody > tr > th {
  width: 20%;
  border: 1px #ccc solid;
  font-size: clamp(0.3rem, 1vw, 0.8rem);
  background-color: #eee;
}

div.price > div.price-box > table > tbody > tr > td {
  width: 80%;
  border: 1px #ccc solid;
}

div.price > div.price-box > table > tbody > tr > td:first-child {
  border: 0;
  padding: 0 1rem 0.5rem;
}

div.price > div.price-box > table > tbody > tr > td > p {
  font-size: clamp(0.3rem, 1vw, 0.8rem);
}

/* TOP：店内画像 */
div.content {
  min-height: unset;
  margin-bottom: 0;
  padding: 0 2.5% 0;
}

div.content > div.swiperContainer > div.swiper {
  width: 100%;
  height: auto;
  position: relative;
}

div.content > div.swiperContainer > div.swiper > div.swiper-wrapper > div.swiper-slide > img {
  width: 100%;
}

div.content > div.swiperContainer > div.swiper + div.swiper-pagination {
  position: relative;
  top: 0.5rem;
  left: 0;
}

div.content > div.swiperContainer > div.swiper + div.swiper-pagination > span.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 0.5;
  margin: 0 2vw 0;
}

div.content > div.swiperContainer > div.swiper + div.swiper-pagination > span.swiper-pagination-bullet-active {
  background-color: #000000;
}

/* TOP：ニュース */
div.news {
  margin-bottom: 1rem;
}

div.news > h2 {
  font-size: 0.75rem;
}

div.news > div.news-content {
  width: 100%;
  position: relative;
  height: 12rem;
}

div.news > div.news-content > div.scroll {
  height: 100%;
  width: 95%;
  margin: 0 auto 0;
  padding: 0.5rem;
  background-color: #fff;
  box-shadow: inset 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  border: 1px solid #d0d0d0;
  overflow-y: scroll;

}

div.news > div.news-content > div.scroll > article {
  margin-bottom: 1rem;
  border-bottom: 1px solid #d0d0d0;
}

div.news > div.news-content > div.scroll > article > h4 {
  width: 100%;
  margin: 0.5rem auto 0.3em;
  padding: 0;
  text-indent: 1rem;
  text-align: left;
  line-height: 1rem;
  font-size: 1rem;
  font-weight: bold;
}

div.news > div.news-content > div.scroll > article > p {
  padding: 0.5rem 2rem 0.5rem;
  line-height: 1.5rem;
  font-size: 0.75rem;
}

/* カレンダー */
div.calendar {
  width: 98%;
  display: flex;
  flex-direction: column;
  margin: 0 auto 1rem;
  padding: 1% 2.5% 1%;
  background-color: #f5f5f5;
}

div.calendar > h2 {
  margin: 0 auto 1rem;
  padding: 0;
  font-size: 0.75rem;
}

div.calendar > p {
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 0.75rem;
}

div.calendar > p > span {
  display: block;
}

div.calendar > p > span:nth-child(2)::before {
  color: #d4b6b3;
  content: "\A●";
}

div.calendar > div {
  display: flex;
  flex-direction: row;
  gap: 5%;
  flex: 1;
  text-align: center;
}

div.calendar > div > div {
  width: 50%;
  flex: 1 0 0;
}

div.calendar > div > div > h4 {
  font-weight: bold;
  margin: 0.5rem;
  font-style: normal;
  font-size: 1.0em;
  text-align: left;
}

div.calendar > div > div > table {
  width: 100%;
  margin: 0.1rem auto 1rem;
  border-collapse: collapse;
  text-align: center;
  background-color: #ffffff;
  box-sizing: border-box;
}
div.calendar > div > div > table > thead,
div.calendar > div > div > table > tobody {
  border: 0;
}
div.calendar > div > div > table > tbody > tr > th {
  min-height: 2.5rem;
  line-height: 2.5rem;
  border: 1px #000000 solid;
  font-weight: normal;
  font-size: 0.78rem;
}

div.calendar > div > div > table > tbody > tr > td {
  min-height: 2.2rem;
  padding: 0.3rem;
  line-height: 1rem;
  border: 1px #000 solid;
  font-weight: bold;
  font-size: 0.78rem;
}

div.calendar > div > div > table > tbody > tr > td.off {
  color: #999999;
  font-weight: normal;
}

div.calendar > div > div > table > tbody > tr > td.off:not(:empty):after {
  color: #999999;
  content: "\A×";
  white-space: pre;
  font-size: 1rem;
}

div.calendar > div > div > table > tbody > tr > td:not(:empty):after {
  color: #d4b6b3;
  content: "\A●";
  white-space: pre;
  font-size: 1rem;
}

/* アクセス */
section > div > div#googleMap > map > iframe{
  height: 100%;
  width: 100%;
  border: 0;
}

div.access {
    display: flex;
    flex-direction: row;
    gap: 5%;
    width: 95%;
    margin: 0 auto;
    padding: 1% 2.5% 1%;
    background-color: #f5f5f5;
}

div.access > div#addressInfo {
  display: flex;
  justify-content: center;
  flex: 1;
}

div.access > div#addressInfo > address {
  height: 100%;
  width: 100%;
  padding: 0.2rem;
  word-break:normal;
  font-style: normal;
  flex: 1;
}

div.access > div#addressInfo > address > p {
  padding: 0;
  text-align: left;
  line-height: 1.1rem;
  font-size: 0.8rem;
}

div.access > div#addressInfo > address > p:first-child {
  margin-bottom: 0.5rem;
}

div.access > div#addressInfo > address > p > a {
  color: #333;
}

div.access > div#addressInfo > picture {
  flex: 1;
}

div.access > div#addressInfo > picture > img {
  width: 100%;
}

div.access > div#googleMap {
  width: 100%;
  flex: 1;
}

div.access > div#googleMap > map {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ddd;
  display: block;
}

/* 画面追跡：SPのみ */
div#app-bar {
  display: none;
}

div#app-bar > nav {
  width: 100%;
}

div#app-bar > nav > dl {
  display: flex;
}

div#app-bar > nav > dl > dt {
  display: none;
}

div#app-bar > nav > dl > dd {
  height: 100%;
  width: 100%;
  display: flex;
  flex: 1;
}

div#app-bar > nav > dl > dd > a {
  height: 100%;
  width: 100%;
  padding: 0.3rem;
  line-height: 3rem;
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
  font-weight: normal;
  color: #fff;
}

div#app-bar > nav > dl > dd.tel {
  color: #fff;
  background-color: #000000;
}

div#app-bar > nav > dl > dd.sns {
  color: #fff;
  background-color: #06c755;
}

/* 予約/アクセス */
div.reservation {
  display: flex;
  flex-direction: column;
  padding: 1% 2.5% 1%;
}

div.reservation > div {
  display: flex;
  gap: 5%;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #cccccc;
}

div.reservation > div > div {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 50%;
}

div.reservation > div > div > h2 {
  text-align: left;
}
div.reservation > div > div > h2 > span {
  display: block;
  font-size: 0.8rem;
  color: #cccccc;
}

div.reservation > div > div > p {
  height: 3rem;
}

div.reservation > div > div.phone > p {
  display: flex;
  align-items: center;
  justify-content: center;
}

div.reservation > div > div.phone > p > a {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
}

div.reservation > div > div.line > p {
  height: 2rem;
  width: 100%;
  margin: 0 auto;
  background: #00B800 url(/img/line.png) left 1rem center no-repeat;
  background-size: 36px;
}

div.reservation > div > div.line > p > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin-left: 0;
}

div.reservation > div > div> p > a > span {
  font-weight: normal;
  color: #ffffff;
}

/* キャンセルポリシー */
div.cancelPolicy {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1% 2.5% 1%;
}

div.cancelPolicy > div {
    width: 55%;
    flex: 3 0 0;
    margin: 0 auto;
    text-align: left;
}

div.cancelPolicy > div > p {
    margin-bottom: 1rem;
}

div.cancelPolicy > div > ul {
    list-style: none;
}

div.cancelPolicy > div > ul > li {
    margin-bottom: 1rem;
}

div.cancelPolicy > div > ul > li::before {
    content: "\A●";
    color: #000000;
}

div.cancelPolicy > div > ul > li > strong {
    font-size: 0.8rem;
}

/* ご質問 */
div.faq {
    display: flex;
    flex-direction: column;
    padding: 1% 2.5% 1%;
}

div.faq > h3 {
    width: 100%;
    padding: 1rem 1rem 0;
    margin: 0 0 1rem;
    border-top: 1px solid #cccccc;
    text-align: left;
    font-size: 1rem;
}

div.faq > div {
    width: 100%;
    padding: 0 1rem 0;
}

div.faq > div > dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

div.faq > div > dl > dt {
    display: flex;
    align-items: center;
    height: 5vh;
    width: 50%;
    padding: 0 1rem;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: bold;
    background-color: #ebebeb;
}

div.faq > div > dl > dd {
    display: flex;
    align-items: center;
    height: 5vh;
    width: 50%;
    padding: 0 1rem;
    margin-bottom: 1rem;
    text-align: left;
    font-size: 0.8rem;
}

div.faq > div > dl > dd {
    height: auto;
    align-items: unset;
    justify-content: center;
    flex-direction: column;
}

div.faq > div > dl > dd > div {
    margin: 0 0 0.5rem;
    text-align: left;
}

div.faq > div > dl > dd > a {
    display: block;
    width: 100%;
    position: relative;
    padding: 0.5rem;
    border: 1px solid #000000;
    text-align: center;
    text-decoration: none;
    color: #000000;
}

/* フッター */
footer {
  padding: 0;
  border-top: 1px solid #ccc;
  color: #666;
  font-size: 0.9rem;
  background-color: #fff;
}

footer > p {
  letter-spacing: -0.5px;
  text-align: center;
}

/* noscript */
div.unsupported {
  margin-top: 3.3rem;
  position: relative;
}

div.unsupported > h4 {
  position: absolute;
  left: 50%;
  bottom: -6rem;
  transform: translate(-50%, 0);
  background-color: #ffffff;
  width: 100%;
  line-height: 2rem;
  font-size: 1rem;
  display: block;
  z-index: 11;
}

.horizontal {
  width: 100%;
  max-width: 980px;
  min-width: 390px;
  margin: 0 auto 0;
  align-items: center;
  display: flex;
}

.fit {
  width: 100%;
  display: block;
}

.none {
  display: none;
}

@media (max-width: 979px) {
  /* カレンダー */
  div.calendar {
    margin-bottom: 1rem;
  }

  div.calendar > div {
    flex-direction: column;
  }

  div.calendar > div > div {
    width: 100%;
  }

  /* アクセス */
  div.access {
    flex-direction: column;
  }

  div.access > div {
    margin-bottom: 1rem;
  }
}

@media (max-width: 580px) {
  main {
    min-width: 390px;
    padding: 4.45rem 0 0;
  }

  main img {
    width: 100%;
  }

  /* ヘッダー */
  header > .horizontal > h1 {
    padding: 0;
    font-size: 1.4rem;
    line-height: 2rem;
    flex: 3;
  }

  header > .horizontal > h1 > a > small {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0.8rem;
    font-size: 0.8rem;
  }

  header #sp-menu-box {
    opacity: 1;
  }

  header #pc-menu-box {
    display: none;
  }

  /* TOP：ニュース */
  div.news > div.news-content {
    height: 10rem;
  }

  div.news > div.news-content > .scroll > article > h4 {
    width: 100%;
    margin: 0.5rem auto 0.3em;
    padding: 0;
    text-indent: 1rem;
    text-align: left;
    font-size: 1rem;
  }

  div.news > div.news-content > .scroll > article > p {
    padding: 0.1rem 0.5rem;
    line-height: 1rem;
    letter-spacing: 0;
    font-size: 0.7rem;
  }

  /* about */
  div.about > div {
      width: 100%;
  }

  div.reservation.about {
    width: 100%;
  }

  div.about > div > div:nth-child(odd) > img,
  div.about > div > div:nth-child(even) > img {
      display: block;
      width: 80%;
      margin: 0 auto 1rem;
      float: unset;
  }

  /* 予約/アクセス */
  div.reservation > div {
      flex-direction: column;
  }

  div.reservation > div > div {
      width: 100%;
  }

  /* メニュー */
  div.menu div > h3 {
      margin-bottom: 0.5rem;
  }

  div.menu div > table {
      width: 100%;
      margin-left: 0;
  }

  div.menu > div > table > tbody > tr > td {
      height: 10vh;
  }

  div.menu > div > table > tbody > tr > td > div:nth-child(1) {
      margin-bottom: 1rem;
  }

  div.menu > div > table > tbody > tr > td > div:nth-child(2) {
      width: 80%;
      margin-left: auto;
      text-align: left;
  }

  div.menu > div > table > tbody > tr > td > div:nth-child(2) span {
      font-size: 0.7rem;
  }

  /* キャンセルポリシー */
  div.cancelPolicy > div {
      width: 100%;
  }

  /* ご質問 */
  div.faq > div > dl > dt,
  div.faq > div > dl > dd {
      width: 100%;
  }

  div.faq > div > dl > dd {
      margin-bottom: 2rem;
  }

  /* 画面追跡 */
  div#app-bar {
    display: block;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom:0;
    left:0;
    opacity: 1;
  }

  /* フッター */
  footer > p {
    padding: 1rem 0 4rem;
    font-size: inherit;
    letter-spacing: -0.5px;
    text-align: center;
  }

  /* noscript */
  div.unsupported > h4 {
    bottom: -3.75rem;
  }
}

/* swiper override */
.swiper-pagination {
  z-index: 1;
  min-height: 30px;
}
