@charset "UTF-8";
:root {
  --text-color: #333333;
  --background-color: #FFFEFC;
}

body {
  background-color: #2D200A;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text-color);
}

h1 {
  color: #FFFEFC;
  font-family: "Shippori Mincho", serif;
}

img,
picture {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

span {
  display: inline-block;
}

ul {
  list-style: none;
}

h3 {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 288, 32px);
  color: #FFFEFC;
  text-shadow: 0px 4px 8px #FFFEFC;
  text-align: center;
  letter-spacing: 1.2rem;
  font-family: "Sarina", cursive;
}

h4 {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  font-family: "Hina Mincho", serif;
  padding-bottom: 10px;
  border-bottom: 2px dashed #2D200A;
  letter-spacing: 0.2rem;
}

#wrapper {
  min-height: 100vh;
  padding-top: 2%;
  padding-bottom: 33px;
  padding-left: 20px;
  padding-right: clamp(40px, 40px + 20 * (100vw - 480px) / 288, 90px);
  box-sizing: border-box;
  position: relative;
}

#background {
  background-color: var(--background-color);
  border-radius: 5px;
  padding: 30px 10px;
  height: 95%;
}

.roaster-text,
.contact-text {
  padding-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  padding-right: 16px;
}
.roaster-text h4,
.contact-text h4 {
  display: inline-block;
  font-weight: normal;
  padding-bottom: 3px;
  margin-bottom: 10px;
}
.roaster-text p,
.contact-text p {
  line-height: 1.5;
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 14px);
}
.roaster-text span,
.contact-text span {
  padding: 0 5px;
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 288, 18px);
}

.footer-lower {
  color: #FFFEFC;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 5px;
}
.footer-lower small {
  text-align: center;
  display: inline-block;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: clamp(15px, 15px + 10 * (100vw - 480px) / 288, 40px);
  right: 0;
  z-index: 10;
  padding-inline: clamp(8px, 8px + 4 * (100vw - 480px) / 288, 24px);
  pointer-events: none;
}
header a {
  color: #FFFEFC;
}

.logo-text {
  font-size: clamp(24px, 24px + 6 * (100vw - 480px) / 288, 40px);
  font-weight: normal;
  writing-mode: vertical-rl;
  letter-spacing: 0.5rem;
  line-height: 1;
  color: #FFFEFC;
}
.logo-text span {
  font-size: clamp(8px, 8px + 2 * (100vw - 480px) / 288, 12px);
  letter-spacing: 0.2rem;
  padding-top: 8px;
}

.logo-text2 {
  font-weight: normal;
  writing-mode: vertical-rl;
  font-size: clamp(20px, 20px + 4 * (100vw - 480px) / 288, 28px);
  letter-spacing: 0.5rem;
  line-height: 1;
  color: #FFFEFC;
  max-width: 60%;
}
.logo-text2 span {
  font-size: 9px;
  font-size: clamp(5px, 5px + 2 * (100vw - 480px) / 288, 9px);
  letter-spacing: 0.2rem;
  padding-top: 8px;
}

nav ul {
  writing-mode: vertical-rl;
  font-family: "Hina Mincho", serif;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
  line-height: 1.8;
}

@media screen and (max-width: 600px) {
  .nav-menu1 {
    position: fixed;
    top: 0;
    left: -70%;
    width: 40%;
    height: 100vh;
    background: rgba(51, 51, 51, 0.9);
    flex-direction: column;
    padding: 80px 14px;
    gap: 1.5rem;
    transition: left 0.8s ease;
    z-index: 900;
  }
}

.nav-menu1.active {
  left: 0;
}

.nav-menu2 {
  position: fixed;
  top: 0;
  left: -70%;
  width: 30%;
  height: 100vh;
  background: rgba(51, 51, 51, 0.9);
  flex-direction: column;
  padding-top: clamp(80px, 80px + 10 * (100vw - 480px) / 288, 120px);
  padding-left: 3%;
  gap: 1.5rem;
  transition: left 0.8s ease;
  z-index: 900;
}

.nav-menu2.active {
  left: 0;
}

.mask-header {
  display: none;
}
@media screen and (max-width: 600px) {
  .mask-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
  }
}

header * {
  pointer-events: auto;
}

.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  display: none;
}
@media screen and (max-width: 600px) {
  .openbtn {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: block;
    text-align: center;
    z-index: 1000;
  }
}

.openbtn-lower {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: block;
  text-align: center;
  z-index: 1000;
}

/*ボタン内側*/
.openbtn span,
.openbtn-lower span {
  position: absolute;
  width: clamp(20px, 20px + 6 * (100vw - 480px) / 288, 32px);
  height: 2px;
  background: #2D200A;
  border-radius: 5px;
  transition: 0.4s;
}

.openbtn span {
  background: var(--background-color);
}

.openbtn span:nth-of-type(1) {
  top: 4px;
}

.openbtn span:nth-of-type(2) {
  top: 10px;
}

.openbtn span:nth-of-type(3) {
  top: 16px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--background-color);
  font-size: clamp(8px, 8px + 2 * (100vw - 480px) / 288, 12px);
  text-transform: uppercase;
}

.openbtn-lower span:nth-of-type(1) {
  top: 10px;
}

.openbtn-lower span:nth-of-type(2) {
  top: 16px;
}

.openbtn-lower span:nth-of-type(3) {
  top: 22px;
}

.openbtn-lower span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: #2D200A;
  font-size: clamp(8px, 8px + 2 * (100vw - 480px) / 288, 12px);
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
/* 1本目：右上から左下へ */
.openbtn.active span:nth-of-type(1),
.openbtn-lower.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}

/* 2本目：消す */
.openbtn.active span:nth-of-type(2),
.openbtn-lower.active span:nth-of-type(2) {
  opacity: 0;
}

/* 3本目：左上から右下へ */
.openbtn.active span:nth-of-type(3),
.openbtn-lower.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}

/* Close 表示 */
.openbtn.active span:nth-of-type(3)::after,
.openbtn-lower.active span:nth-of-type(3)::after {
  content: "Close";
  top: 8px;
  left: 40%;
  transform: translateY(0) rotate(-45deg);
}

.openbtn-lower.active span:nth-of-type(3)::after {
  color: var(--background-color);
}

.openbtn-lower.active span {
  background: var(--background-color);
}

.footer {
  color: var(--background-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: 160px;
  padding-bottom: 16px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/0300.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
}

.footer-section {
  width: clamp(280px, 280px + 250 * (100vw - 480px) / 288, 700px);
  margin: 0 auto;
  padding-top: 80px;
  font-family: "Hina Mincho", serif;
}
.footer-section h5 {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px dashed var(--background-color);
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: normal;
  padding-bottom: 10px;
}

.footer-wrapper {
  padding-bottom: 30px;
  display: flex;
  align-items: stretch;
  gap: 16px;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .footer-wrapper {
    flex-direction: column;
  }
}
.footer-wrapper .map {
  filter: grayscale(100%);
  width: 50%;
}
@media screen and (max-width: 600px) {
  .footer-wrapper .map {
    width: 100%;
  }
}
.footer-wrapper .map iframe {
  height: 330px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.footer-wrapper .footer-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  line-height: 1.5;
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 14px);
}
.footer-wrapper .footer-text p {
  padding-bottom: 12px;
}
.footer-wrapper .footer-text span {
  font-size: clamp(12px, 14px + 1 * (100vw - 480px) / 288, 16px);
}
.footer-wrapper .footer-text .privacy {
  padding-top: 20px;
}
.footer-wrapper .insta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--background-color);
  text-decoration: none;
}
.footer-wrapper .insta-link svg {
  width: 18px;
  height: 18px;
}

.copyright {
  text-align: center;
}

small,
.privacy {
  display: block;
  font-size: 10px;
}

#top img {
  height: 100vh;
}

.about {
  max-width: clamp(280px, 280px + 180 * (100vw - 480px) / 288, 800px);
  margin: 0 auto;
  padding: 80px 30px;
}
.about-wrapper {
  display: flex;
  gap: clamp(10px, 10px + 5 * (100vw - 480px) / 288, 30px);
  align-items: flex-end;
  justify-content: center;
  font-family: "Hina Mincho", serif;
  padding: 30px 0;
  border-top: 2px dashed var(--background-color);
  border-bottom: 2px dashed var(--background-color);
}
@media screen and (max-width: 768px) {
  .about-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
}
.about-text {
  padding-top: 5%;
}
.about-text p {
  letter-spacing: 0.2rem;
  line-height: 1.5;
  padding-left: clamp(5px, 5px + 2 * (100vw - 480px) / 288, 16px);
  font-size: clamp(10px, 10px + 2 * (100vw - 480px) / 288, 14px);
  color: var(--background-color);
}
.about-text p:last-child {
  margin-top: auto;
}
.about-text span {
  transform: scale(1.2);
  display: inline-block;
  padding: 10px;
}
.about-img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .about-img {
    width: auto;
  }
}
.about-img img {
  border-radius: 10px;
  overflow: hidden;
}
.about-img .about2 {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-img .about2 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .about-img .about1 {
    display: none;
  }
}

.concept-img {
  width: 100%;
  height: 50vh;
  margin-top: 20px;
  margin-bottom: 100px;
  background-image: url("../img/concept.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
}
.concept-box {
  font-family: "Hina Mincho", serif;
  background-color: var(--background-color);
  max-width: clamp(280px, 280px + 180 * (100vw - 480px) / 288, 800px);
  padding-inline: clamp(20px, 20px + 8 * (100vw - 480px) / 288, 30px);
  padding-top: 48px;
  padding-bottom: 48px;
  margin: 0 auto;
}
.concept-box .cup {
  border-top: 2px dashed #2D200A;
  border-bottom: 2px dashed #2D200A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
}
.concept-box .cup img {
  width: 100%;
  height: 60vh;
}
.concept-box .cup p {
  font-family: "Hina Mincho", serif;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  font-weight: bold;
  line-height: 2;
  display: inline-block;
}
.concept-br {
  display: none;
}
@media screen and (max-width: 768px) {
  .concept-br {
    display: block;
  }
}
.concept-text {
  font-size: clamp(10px, 10px + 2 * (100vw - 480px) / 288, 14px);
  line-height: 2.2;
  padding-top: 32px;
  text-align: center;
}
.concept-text span {
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}

.offerings {
  padding-top: 100px;
}
.offerings-img {
  width: 100%;
  height: 50vh;
  background-image: url("../img/coffee offerings.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  opacity: 0.8;
}
.offerings-wrapper {
  margin: 0 auto;
  padding: 100px 0;
  max-width: clamp(280px, 280px + 180 * (100vw - 480px) / 288, 800px);
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.offerings-wrapper li {
  max-width: 700px;
  display: inline-block;
  border-radius: 30px;
  box-shadow: 10px 10px rgba(255, 254, 252, 0.64);
}
.offerings-wrapper .second {
  box-shadow: -10px 10px rgba(255, 254, 252, 0.64);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second {
    margin-left: 0;
    box-shadow: 10px 10px rgba(255, 254, 252, 0.64);
  }
}
.offerings-wrapper a {
  display: flex;
  color: var(--text-color);
}
@media screen and (max-width: 768px) {
  .offerings-wrapper a {
    flex-direction: column;
  }
}
.offerings-wrapper .second a {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second a {
    flex-direction: column;
  }
}
.offerings-wrapper .text {
  text-align: center;
  background-color: var(--background-color);
  display: inline-block;
  border-radius: 30px 0 0 30px;
  padding: 30px;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .text {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
}
.offerings-wrapper .text p {
  line-height: 1.8;
  padding-top: 10px;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}
@media screen and (max-width: 480px) {
  .offerings-wrapper .text p {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .offerings-wrapper .text p br {
    display: none;
  }
}
.offerings-wrapper .second .text {
  border-radius: 0 30px 30px 0;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second .text {
    border-radius: 30px 30px 0 0;
  }
}
.offerings-wrapper .icon {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .icon {
    width: 100%;
    height: 200px;
  }
}
.offerings-wrapper svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper svg {
    top: auto;
    bottom: 10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
.offerings-wrapper .svg2 {
  position: absolute;
  left: 5px;
  right: auto;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .svg2 {
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
  }
}
.offerings-wrapper img {
  height: 100%;
  border-radius: 0 30px 30px 0;
  display: inline-block;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper img {
    width: 100%;
    border-radius: 0 0 30px 30px;
  }
}
.offerings-wrapper .second img {
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .offerings-wrapper .second img {
    border-radius: 0 0 30px 30px;
  }
}
.offerings .text-icon {
  padding: 25px 0px 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
}
.offerings .text-icon li {
  background-color: #F6EBDD;
  border-radius: 50%;
  border: 0.8px solid #2D200A;
  font-size: clamp(10px, 10px + 1 * (100vw - 480px) / 288, 12px);
  box-shadow: none;
  line-height: 1.8;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
}
.offerings .text-icon .text-icon2 {
  background-color: #EDE9E5;
}
.offerings .fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu {
  overflow: auto;
  overflow-y: hidden;
  transform: scaleX(-1);
}
.menu > * {
  transform: scaleX(-1);
}
.menu ul {
  min-width: 900px;
}
.menu-text {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  padding: clamp(10px, 10px + 5 * (100vw - 480px) / 288, 40px);
  height: 100%;
  border-left: 2px dashed var(--text-color);
}
.menu-text h6,
.menu-text p {
  writing-mode: vertical-rl;
  line-height: 2;
}
.menu-text p {
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 16px);
}
.menu-text h6 {
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  background-color: #4D4029;
  padding: 20px 5px;
  color: var(--background-color);
  font-family: "Hina Mincho", serif;
  letter-spacing: 1.8px;
  font-weight: normal;
  border-radius: 10px;
}
.menu-text p:first-of-type {
  padding: 5px 15px 0 10px;
}
.menu-text span {
  writing-mode: horizontal-tb;
}
.menu-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 15px;
  padding-bottom: 30px;
  height: 60vh;
}

.slide-items {
  width: 100%;
  height: 100%;
}

.slide-items img {
  width: clamp(180px, 180px + 0 * (100vw - 480px) / 288, 300px);
  height: clamp(150px, 150px + 20 * (100vw - 480px) / 288, 180px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.roaster {
  margin-right: 40px;
  margin-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  display: flex;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .roaster {
    flex-direction: column;
    margin-right: 20px;
  }
}

.roaster-text {
  padding-bottom: 20px;
}

.btn {
  width: 24%;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn ul {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .btn ul {
    flex-direction: row;
    gap: 20px;
  }
}

.btn-icon {
  flex: 1;
  background-color: #FFE997;
  border-radius: 25px;
  padding: 30px 10px;
  border: 3px solid #D8BA4F;
  box-shadow: 0px 12px #D8BA4F;
  text-align: center;
  align-items: center;
}
.btn-icon:active {
  position: relative;
  top: 12px;
  box-shadow: none;
}
.btn-icon a {
  color: var(--text-color);
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.btn-icon p {
  margin: 0 auto;
  font-size: clamp(16px, 16px + 2 * (100vw - 480px) / 288, 20px);
  line-height: 1.8;
  font-family: "Hina Mincho", serif;
  font-weight: bold;
  letter-spacing: 2px;
}

.rules-table {
  border: 1px solid #2D200A;
  border-radius: 10px;
  border-radius: 8px;
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
}
.rules-table thead th {
  background-color: #D3CEC7;
  font-weight: 600;
  text-align: center;
  padding: 10px 10px;
  border: none;
  letter-spacing: 1.5px;
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 288, 18px);
}
.rules-table th,
.rules-table td {
  padding: 12px 16px;
  vertical-align: top;
  background-color: #FFFEFC;
}
.rules-table th {
  width: 20%;
  background-color: #FFFEFC;
  border-right: 1px solid #dcd6cf;
  font-weight: bold;
  text-align: left;
  font-family: "Hina Mincho", serif;
  text-align: center;
  vertical-align: middle;
}
.rules-table tr + tr th,
.rules-table tr + tr td {
  border-top: 1px solid #dcd6cf;
}
.rules-table td {
  line-height: 1.6;
  margin-left: 20px;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}
.rules-table td span {
  color: #C80303;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .rules-table {
    width: 100%;
  }
  .rules-table th,
.rules-table td {
    display: block;
    width: 100%;
    border-right: none;
  }
  .rules-table th {
    padding-bottom: 10px;
    font-size: 0.9rem;
  }
  .rules-table td {
    padding-top: 0;
    padding-bottom: 12px;
    margin-left: 0;
  }
  .rules-table tr + tr td {
    border-top: 1px solid #dcd6cf;
    padding-top: 12px;
  }
  .rules-table th:first-child {
    border-bottom: 1px solid #dcd6cf;
  }
}
.contact-text,
.Form {
  max-width: 720px;
  margin: 0 auto;
}

.contact-text {
  padding-bottom: 30px;
}

.Form {
  padding-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  padding-right: 16px;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #2D200A;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #EDE9E5;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 14px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 160px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #EDE9E5;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 14px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #2D200A;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 14px;
  }
}
.contact-footer {
  text-align: center;
  color: #FFFEFC;
  padding-bottom: 5px;
}

.booking-wrapper {
  padding-left: clamp(50px, 50px + 15 * (100vw - 480px) / 288, 80px);
  padding-right: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.booking {
  margin-bottom: 10px;
}

.first-class,
.member {
  display: flex;
  padding: 30px 0 40px 0;
}
@media screen and (max-width: 768px) {
  .first-class,
.member {
    flex-direction: column;
    gap: 30px;
  }
}

.member P {
  line-height: 2;
  margin-left: 30px;
  display: inline-block;
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px);
}
@media screen and (max-width: 768px) {
  .member P {
    margin: 0 auto;
  }
}

.first-rules {
  display: flex;
  width: 70%;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 16px);
}
@media screen and (max-width: 768px) {
  .first-rules {
    width: 100%;
  }
}
.first-rules span {
  font-size: clamp(11px, 11px + 1 * (100vw - 480px) / 288, 13px);
}
.first-rules dd {
  font-family: "Hina Mincho", serif;
  writing-mode: vertical-rl;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: #2D200A;
  color: var(--background-color);
  text-align: center;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 4px;
}
.first-rules dt {
  width: 70%;
  line-height: 1.8;
}

.first-img,
.member-img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .first-img,
.member-img {
    width: 100%;
  }
}
.first-img img,
.member-img img {
  border-radius: 20px;
  height: 50vh;
}
@media screen and (max-width: 768px) {
  .first-img img,
.member-img img {
    height: 40vh;
  }
}

.scrolldown4 {
  position: relative;
  width: 20px;
  height: 60px;
  margin: 40px auto;
}

/* ▼ 矢印全体を動かす箱 */
.arrow-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
  writing-mode: vertical-rl;
}

/* ▼ 斜め棒（arrow-wrap に付ける） */
.arrow-wrap:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -8px;
  width: 2px;
  height: 20px;
  background: #2D200A;
  opacity: 0.8;
  transform: skewX(-31deg);
}

/* ▼ 縦棒（arrow-wrap に付ける） */
.arrow-wrap:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 2px;
  height: 80px;
  background: #2D200A;
  opacity: 0.8;
}

/* ▼ 矢印全体を上下に動かす */
@-webkit-keyframes arrowmove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes arrowmove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.calender1 {
  background-color: #F6EBDD;
  margin-bottom: 50px;
  padding: 80px 50px;
  border-radius: 10px;
  margin-top: 30px;
}
.calender1 p {
  padding-bottom: 20px;
  font-family: "Hina Mincho", serif;
  text-align: center;
}

.calender2 {
  padding: 40px;
  height: auto;
  border: 1px dashed #2D200A;
  border-radius: 20px;
  z-index: 10;
  background-color: var(--background-color);
}

#booking-package_serviceDetails .title,
#booking-package_servicePage .title {
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 288, 18px) !important;
  font-weight: bold !important;
  padding: 30px !important;
}

#booking-package {
  background-color: var(--background-color);
  font-size: clamp(12px, 12px + 2 * (100vw - 480px) / 288, 16px) !important;
}

.descriptionOfService {
  font-size: clamp(12px, 12px + 1 * (100vw - 480px) / 288, 14px) !important;
  padding: 10px;
}

.serviceCost {
  padding-top: 10px;
}

#booking-package_serviceDetails,
#booking-package_servicePage {
  width: 100% !important;
}

#booking-package button {
  background-color: #2D200A;
  color: var(--background-color);
  border-radius: 16px;
  margin: 30px auto;
  display: inline-block;
  padding: 20px;
}
/*# sourceMappingURL=main.css.map */