@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;800;900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&family=Noto+Serif+JP:wght@200..900&display=swap');
/*============================
	base
============================*/
:root {
  --text-color: #191b21;
  --color-white: #f5f4f4;
  --color-brown: #341d12;
  --color-blue: #56657e;
  --color-red: #b33723;
  --font-serif: "Noto Serif JP", serif;
  --bg-1: url("../img/texture-1.jpg") repeat-y center / 100% auto;
  --bg-2: url("../img/texture-2.jpg") repeat-y center / 100% auto;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--text-color);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  font-family: var(--font-serif);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fade {
  opacity: 0;
}

.fadeUp {
  animation: fadeUp 0.6s ease both;
}

.header img,
section img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  vertical-align: bottom;
}

a {
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

.map {
  width: 100%;
  height: 40rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	header
============================*/
.header {
  width: 34rem;
  height: max(85rem, 100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media (max-width: 850px) {
  .header {
    height: max(90rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header {
    background: transparent;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.header .header__logo {
  /* background-color: var(--color-blue); */
  padding: 9.7rem 3.8rem 3.2rem;
  margin-bottom: 6.5rem;
}

@media (max-width: 767px) {
  .header .header__logo {
    padding: 2rem;
    margin: 0;
  }
}

.header .header__logo a {
  display: block;
  width: 15.1rem;
}

@media (max-width: 767px) {
  .header .header__logo a {
    width: max(80px, 10rem);
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--color-red);
    background-color: #000;
    width: 8rem;
    height: 8rem;
    min-width: 60px;
    min-height: 60px;
    visibility: visible;
  }

  .header__hamburger-sp::before,
  .header__hamburger-sp::after,
  .header__line-sp {
    content: "";
    background-color: var(--color-white);
    width: 5rem;
    min-width: 35px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.3s;
  }

  .header__hamburger-sp::before {
    top: 30%;
    transform-origin: bottom left;
  }

  .header__hamburger-sp::after {
    top: 70%;
    transform-origin: top left;
  }

  .header__hamburger-sp.js-transform::before,
  .header__hamburger-sp.js-transform::after {
    transform: scale(1.414);
    top: 50%;
  }

  .header__hamburger-sp.js-transform::before {
    transform: rotate(45deg) translateX(-50%);
  }

  .header__hamburger-sp.js-transform::after {
    transform: rotate(-45deg) translateX(-50%);
  }

  .js-transform .header__line-sp {
    transform: scale(0);
  }
}

.header__contents {
  width: 19.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-items: center;
  row-gap: 4.5rem;
}

@media (max-width: 767px) {
  .header__contents {
    background: url("../img/texture-1.jpg") no-repeat center / cover;
    width: 100%;
    height: 100%;
    min-height: max-content;
    justify-content: center;
    align-items: center;
    padding: 8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.3s ease-out;
  }

  .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    align-items: center;
    row-gap: 5.5rem;
    margin-bottom: 2rem;
  }
}

.header__nav-item {
  position: relative;
}

/* .header__nav-item::before {
  content: "";
  background: url("../img/current.png") no-repeat center / contain;
  width: 17rem;
  height: 1.2rem;
  position: absolute;
  transform: translate(-100%, -50%);
  top: 50%;
  left: -1.5rem;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .header__nav-item:hover::before {
    opacity: 1;
  }
} */

.header__nav-item a {
  font-size: max(12px, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.11em;
}

@media (min-width: 768px) {
  .header__sns {
    margin-right: max(21px, 3.8rem);
  }
}
@media (max-width: 767px) {
  .header__nav-item a {
    font-size: max(14px, 1.6rem);
  }
}
.header__sns li {
  width: max(24px, 3.4rem);
  height: max(24px, 3.4rem);
}

/*============================
	footer
============================*/
.footer {
  background: url(../img/texture-1.jpg) no-repeat center top / 100%;
  padding: 3rem 0 2.2rem;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    background: url(../img/texture-1.jpg) no-repeat center top / cover;
    padding: 3rem 0 15rem;
  }
}

.pagetop {
  background-color: var(--color-red);
  background-color: #000;
  width: max(30px, 4rem);
  height: max(30px, 4rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.pagetop::before {
  content: "";
  display: inline-block;
  width: max(7px, 1rem);
  height: max(7px, 1rem);
  border: 0.2rem solid var(--color-white);
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  transform: translate(-55%, -45%) rotate(-45deg);
  top: 50%;
  left: 50%;
}
@media (max-width: 767px) {
  .pagetop {
    bottom: min(10.5rem,85px);
}
}
@media (max-width: 400px) {
  .pagetop {
    bottom: min(13rem,85px);
}

}

.footer__inner {
  display: flex;
  flex-direction: column-reverse;            
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 6rem;
    padding: 0;
    margin-bottom: 10rem;
  }
}

.footer__logo {
  display: block;
  width: max(100px, 18.3rem);
  height: auto;
  margin: 8rem auto 7rem;
}

.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem 6.4rem;
}

@media (max-width: 767px) {
  .footer__logo {
    width: max(120px, 18.3rem);
    margin: 7rem auto 4rem;
  }
  .footer__link {
    flex-direction: column;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(15px, 3rem) 4.5rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-item a {
  font-size: max(14px, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  position: relative;
}
.footer__nav-item:not(:last-child) a::after {
    content:"";
    position:absolute;
    top: 1px;   /* 微調整可能 */
    bottom: 1px;   /* 微調整可能 */
    /* top: 2px;
    bottom: 0px; */
    right: calc(4.5rem / -2);
    width: 1px;
    background:#000;
}
@media (max-width: 767px) {
  .footer__nav-item:not(:last-child) a::after {
      content:none;
  }
}

.footer__sns li {
  width: max(19px, 2.7rem);
  height: max(19px, 2.7rem);
}

.copy {
  font-size: max(13px, 1.4rem);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.4rem 0 0.5rem;
  /* margin-top: 4.8rem; */
}









/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 45%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	width: 7.9rem;
    list-style: none;
}
.fixed-btn li:nth-child(1) {
	margin-bottom: 2rem;
  border-right: 0.1rem solid #fff;
}
.fixed-btn li::marker {
    content: none;
}
.fixed-btn img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		display: flex;
	}
	.fixed-btn li {
		width: 50%;
        margin-top: 0;
        margin-bottom: 0 !important;
	}
	.fixed-btn a.sp {
		width: 100%;
		padding: 0;
		height: max(50px, 7.8rem);
		display: flex !important;
		align-items: center;
		justify-content: center;
		text-decoration: none !important;
		line-height: 1;
	}
    .fixed-btn a.pc {
        display: none;
    }
	/* icon */
	.fixed-btn li img {
		width: max(20px, 3.0rem);
		height: max(20px, 3.0rem);
		margin-right: 1rem;
	}	
	/* txt */
	.fixed-btn a > span {
		display: flex;
		flex-direction: column;
	}
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.3rem;
		font-size: max(11px, 1.8rem);
	}
	.fixed-btn a > span > span:nth-child(2) {
		/* font-weight: bold; */
		font-size: max(14px, 2.0rem);
        text-decoration: underline;
	}		
	.fixed-btn li.tel {
		margin-bottom: 0;
	}	
  
	.fixed-btn .tel a > span > span:nth-child(2) {
		font-size: max(16px, 2.3rem);
	}	
	.fixed-btn .tel a {
		background: #000;
		color: #fff;
	}	
	.fixed-btn .reserve a {
		background: #000;
		color: #fff;
	}	
}






/*  ----------------------------------------------------------

reserve

----------------------------------------------------------  */
.top-reservation {
    padding: 14rem 0 15rem;
    background: url(../img/back-reserve.jpg) no-repeat center / cover;
    position: relative;
    z-index: 0;
    margin-top: -4rem;
}

.top-reservation .inner {
    padding: 3rem;
    text-align: center;
    border: 1px solid #9c8e79;
}

.top-reservation h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.top-reservation > p {
  text-align: center;
    font-size: max(12px, 1.8rem);
    line-height: 1.9;
    font-weight: 500;
    margin: 4rem auto 7rem;
    width: 90%;
}
.top-reservation > p span {
  font-size: 0.88em;
  font-weight: 500;
  display: block;
  margin-top: 0.8rem;
}

.top-reserve a {
    display: inline-block;
    margin: 2rem 0 0;
    font-size: 2rem;
    border-bottom: 2px solid #9c8e79;
    padding-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
    .top-reservation {
      padding: 14rem 0 4rem;
    }
}

/* ------------------------------
　calendar
------------------------------ */
.calendar-wrapper {
  position: relative;
  outline: 16px solid #ccc;
  /* max-width: 1000px; */
  width: 78%;
  margin: 50px auto 0 auto;
  display: flex;
  background-color: rgba(255,255,255,1);
}

#calendar {
  text-align: center;
  width: 100%;
}
table {
  outline: 16px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}
.calendar-wrapper th {
  color: #000;
}
.calendar-wrapper th,
.calendar-wrapper td {
  outline: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  color: #111111;
}

.calendar-wrapper td:nth-child(6) .reservation-date,
.calendar-wrapper td:nth-child(6) .reservation-date a {
  color: #8888ff;
}

.calendar-wrapper td:last-child .reservation-date,
.calendar-wrapper td:last-child .reservation-date a {
  color: #ff8888;
}

.calendar-wrapper td.disabled {
  background-color: #eeeeee;
  color: #aaaaaa;
}

.reservation-date {
  text-decoration: underline;
}

.reservation-seat {
  font-size: 14px;
}

.reservation-seat a {
  color: #dd8866;
}

.reservation-seat-disabled {
  color: #aaaaaa;
}

.calendar-reservation {
  border-collapse: collapse;
  width: 100%;
  word-break: break-all;
  margin-top: 10px;
  margin-left: 1rem;
  padding: 20px;
}
.calendar-reservation form {
  padding-top: 0;
}
.calendar_date {
  font-size: 18px;
}
.calendar_person,
.calendar_time {
  width: 100%;
  font-size: 18px;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 0.1rem solid #aaaaaa;
}
.calendar_person,
.calendar_time {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 6px;

    padding-right: 30px;
}

.calendar_button {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 6px;
  background-color: #aaaaaa;
  color: #ffffff;
  border: 1px solid #aaaaaa;
}
.calendar_button:not([disabled]) {
  cursor: pointer;
}
.calendar_info {
  font-size: 12px;
  margin-top: 20px;
}
.calendar_ok {
  color: #dd8866;
}
.reservation-message {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 16px;
  text-align: center;
  color: #c00000;
}
@media screen and (max-width: 767px) {
  .calendar-wrapper {
    width: 80%;
    margin: 40px auto 60px auto;
    flex-direction: column;
  }
  .calendar-wrapper {
    font-size: 12px;
  }
  .calendar-reservation {
    padding: 0;
    margin-top: 20px;
    margin-left: 0;
  }
  .calendar-reservation form {
    padding: 20px;
  }
  .calendar-reservation form div {
    margin-bottom: 20px;
  }
  .calendar_info {
    padding: 0 20px 20px 20px;
  }

  .calendar_date {
    font-size: 16px;
  }

    .calendar_button {
        font-size: 16px;
    }

}

@media screen and (max-width: 450px) {
  .reservation-date {
    font-size: 2.8vw;
  }
}

/* ------------------------------
　reservation
------------------------------ */
.regform {
    /* max-width: 840px; */
    margin: auto;
}
.form-container {
  width: 100%;
  background-color: rgba(255,255,255,0.5);
}

.form-container input,
.form-container select {
  height: 2rem;
  font-size: 1.2rem;
}

.form-container textarea {
  width: 100%;
  height: 8rem;
}

.form-container .tel-form input,
.form-container .mail-form input {
  width: 100%;
  font-size: 1.2rem;
}

.form-container .pay-form select {
  width: 33%;
  font-size: 1.2rem;
}

.form-container dl {
  display: flex;
}

.form-container dt {
  display: flex;
  align-items: center;
  width: 300px;
  width: 30%;
  background-color: #eeebe4;
  font-weight: bold;
  padding: 5px 15px;
  border: 1px solid #cccccc;
}

.form-container dd {
  padding: 5px 15px;
  flex: 1;
  border: 1px solid #cccccc;
}

.form-container .text_field {
  width: 47.6%;
}

.form-container .text_field:first-child {
  margin-right: 3%;
}

.form-container .date-form,
.form-container .course-form,
.form-container .seat-form,
.form-container .cost-form {
  /* height: 36px; */
}

/* .form-container .date-form dd,
.form-container .course-form dd,
.form-container .seat-form dd,
.form-container .cost-form dd{
  padding: 12px 5px; 
} */

.form-container .blank-area {
  margin-right: 10px;
}

.hissu {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #c00;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #c00;
}

.nini {
  min-width: 28px;
  height: 20px;
  display: inline-block;
  border: 1px solid #999;
  padding: 3px;
  margin-left: 14px;
  font-size: 0.75rem;
  line-height: 1;
  color: #333;
}

.btn-container {
  display: flex;
  justify-content: space-evenly;
  justify-content: center;
  margin-top: 2rem;
  gap: 4rem;
}

.btn-container .submit-btn input {
  font-weight: bold;
  background: #f95a6b;
  background: linear-gradient(to bottom, #ff9ba2 0%, #f95a6b 75%, #f85164 100%);
  border: 1px solid #da949b;
  border-radius: 4px;
  box-shadow: inset 1px 1px 3px #f9d8db, inset -1px -1px 3px #ffa6ae;
  color: #ffffff !important;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.btn-container .pre-btn input {
  background-color: #ffffff;
  border: solid #cccccc;
  border-radius: 4px;
  border-width: 1px 1px 3px;
  color: #666666 !important;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  padding: 0.4rem 1.6rem;
  text-decoration: none;
  font-size: 1.2rem;
}

.submit-message {
  margin-top: 4rem;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  animation: blink 6s ease-in-out infinite; 
}

@keyframes blink {
    0% {
      opacity: 0.3;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.3;
    }
  }

@media screen and (max-width: 767px) {
  .form-container dl {
    flex-direction: column;
  }
  .form-container dt {
    width: 100%;
  }
  .form-container .date-form,
  .form-container .course-form,
  .form-container .seat-form,
  .form-container .cost-form {
    height: auto;
  }
  .form-container .text_field {
    width: 47.6%;
  }
  .form-container .blank-area {
    margin-right: 8px;
  }
}

/* ローディング */
.loader_container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 8px solid;
    border-color: var(--brown) var(--brown) var(--brown) transparent;
    border-radius: 50%;
    animation: spin-animation 1.2s linear infinite;
}

@keyframes spin-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader_container.isLoad{
    animation : fade-out 0.5s;
    animation-fill-mode: both;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
       opacity: 0;
        visibility: hidden;
    }
}
.reserve-txt{
    text-align: center;
    font-size: 2rem;
}


/* index.html reserve-txt編集 */
.reserve-txt span{
    font-size: 1.5rem;
}


._reserve {
  text-align: center;
  font-size: max(16px, 2.0rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5rem 0 3rem ;
}

