@charset "UTF-8";
/* CSS Variables 定義 */
:root {
  --font-family: "Hina Mincho", serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  --text-color: #333;
  --bg-color: #fff;
  --accent-color: #c9c;
  --gray-color: #999;
  --box-shadow-light: 0 0 10px rgba(0, 0, 0, 0.1);
  --box-shadow-medium: 0 2px 4px rgba(0, 0, 0, 0.1);
  --padding-section: 5rem;
  --font-size-xs: 0.85rem;
  --font-size-sm: 0.95rem;
  --font-size-base: 1rem;
  --font-size-md: 1.4rem;
  --font-size-lg: 1.6rem;
  --font-size-xl: 1.8rem;
  --font-size-xxl: 2rem;
  --font-size-3xl: 3.2rem;
  --margin-0: 0;
  --margin-sm: 1.5rem;
  --margin-md: 3rem;
  --margin-lg: 5rem;
}

body {
  font-family: var(--font-gothic);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(255, 182, 193, 0.3),
    rgba(173, 216, 230, 0.2),
    rgba(216, 191, 216, 0.3)
  );
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  /*mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 100,100" fill="white"/></svg>');*/
  mask-size: 200%;
  animation: polygonShift 50s infinite linear;
}
/*
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1920' height='1080' viewBox='0 0 1920 1080'><polygon points='0,0 960,0 480,540' fill='%23FFB6C1'/><polygon points='960,0 1920,0 1440,540' fill='%23ADD8E6'/><polygon points='0,1080 480,540 0,0' fill='%23D8BFD8'/><polygon points='1920,1080 1440,540 1920,0' fill='%23FFB6C1'/><polygon points='480,540 960,0 1440,540 960,1080' fill='%23ADD8E6'/></svg>");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}*/

@keyframes polygonShift {
  0% {
    mask-position: 0% 0%;
  }
  100% {
    mask-position: 100% 100%;
  }
}
h1 {
  font-family: var(--font-family);
}

h2 {
  font-size: var(--font-size-xl);
  font-family: var(--font-family);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
h3 {
  margin: 0;
  font-family: var(--font-family);
}
p,
li {
  font-size: var(--font-size-base);
  margin: 0;
}
ul {
  padding-left: 1.2em;
}
img {
  width: 100%;
  height: auto;
}

header {
  padding: 2rem 0 1rem;
}

header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--box-shadow-light);
}

header h1 {
  font-size: var(--font-size-xxl);
  margin-top: 1rem;
  margin-left: 1rem;
}

section {
  margin-bottom: var(--padding-section);
  padding-bottom: var(--padding-section);
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: var(--font-size-xs);
  color: var(--gray-color);
}

.container {
  margin: 0 auto;
  /*background: #f5f5f5;*/
}
.ta-center {
  text-align: center;
}
.main-visual {
  padding-right: 100px;
  position: relative;
}
.svg-logo-overlay {
  position: absolute;
  right: 2%;
  top: 82%;
  transform: translateY(-50%);
  z-index: 2;
}
.svg-logo-overlay img {
  width: 37vw;
  height: auto;
  display: block;
}

.voice {
  background: #f9f9f9;
  border-left: 4px solid var(--accent-color);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.btn,
.btn-reserve {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: var(--font-size-base);
  text-align: center;
}

.btn-reserve {
  display: block;
  width: 16rem;
  margin: 1rem auto;
  padding: 1rem 2rem;
  font-size: var(--font-size-md);
}

.social-icons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.social-card {
  position: relative;
  width: 16rem;
  padding: 1rem 2rem;
  background: #fff;
  border: 2px solid #888;
  border-radius: 6px;
  text-align: center;
  font-family: sans-serif;
  color: #666;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.social-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.social-card .label {
  font-size: 1.1rem;
}

/* 右下の三角 */
.social-card::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-bottom: 15px solid #888;
  border-left: 15px solid transparent;
  border-radius: 3px;
}

.content-bloc {
  padding: 0 2rem;
}

.fortune-section {
  margin: 3rem 0;
}
.fortune-container {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.fortune-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: var(--font-size-xl);
  padding-right: 1rem;
  margin-left: 6.4%;
  margin-right: 9%;
}
.fortune-content {
  flex: 1;
  border-left: 1px solid #111;
}
.fortune-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
}
.fortune-number {
  font-size: var(--font-size-3xl);
  font-weight: bold;
  color: var(--accent-color);
  margin-top: 0.4rem;
  margin-right: 4rem;
  line-height: 1;
  padding-left: 4rem;
}
.fortune-text h3 {
  margin: 1rem 0 0.5rem;
  padding-bottom: 1rem;
  font-size: var(--font-size-lg);
}
.fortune-text p {
  font-size: var(--font-size-base);
  padding-bottom: 3rem;
  margin: 0;
}

.flow-section,
.menu-flex,
.profile-section,
.voice-section {
  color: var(--text-color);
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto 0;
  width: 50%;
  position: relative;
  counter-reset: step;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 2px;
  height: 100%;
  background: var(--accent-color);
}

.flow-step {
  display: flex;
  align-items: flex-start;
  padding-left: 70px;
  line-height: 3;
  position: relative;
}

.flow-step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 10px;
  top: 0;
  background: var(--accent-color);
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  box-shadow: var(--box-shadow-medium);
}

.menu-flex {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.menu-img {
  width: 57%;
  padding: 0;
  background: var(--bg-color);
}

.menu-text {
  width: 52.8%;
  margin: 15vw 0 0 -10%;
  background-color: var(--bg-color);
  z-index: 10;
  position: relative;
  margin-bottom: 65px;
  padding: 5% 5% 5% 10%;
  font-size: var(--font-size-base);
  line-height: 3;
}

.profile-wrapper {
  max-width: 50%;
  margin: auto;
  position: relative;
  padding: 2rem 4rem;
  font-size: var(--font-size-base);
  line-height: 3rem;
}

.profile-wrapper::before,
.profile-wrapper::after,
.profile-content::before,
.profile-content::after {
  content: "";
  position: absolute;
  background-color: var(--gray-color);
}

.voices-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.voice-card {
  background: var(--bg-color);
  padding: 2rem 1.5rem 1.5rem;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  position: relative;
}

.voice-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 1rem;
  box-shadow: var(--box-shadow-light);
}

.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-text {
  text-align: center;
  font-size: var(--font-size-sm);
  line-height: 1.8;
}

.voice-name {
  font-size: var(--font-size-xs);
  color: #777;
  margin-top: 1rem;
}

.cross-edge {
  margin-top: var(--margin-0);
  margin-bottom: var(--margin-md);
}

.gap-corner {
  margin-top: var(--margin-md);
}

.short-lines {
  margin-top: var(--margin-sm);
  margin-bottom: var(--margin-sm);
}

.cross-edge::before,
.cross-edge::after,
.gap-corner::before,
.gap-corner::after,
.short-lines::before,
.short-lines::after,
.cross-edge .voice-text::before,
.cross-edge .voice-text::after,
.gap-corner .voice-text::before,
.gap-corner .voice-text::after,
.short-lines .voice-text::before,
.short-lines .voice-text::after {
  content: "";
  position: absolute;
  background-color: var(--gray-color);
}

.cross-edge::before {
  top: 0;
  left: -10px;
  width: 279px;
  height: 1px;
}

.cross-edge::after {
  top: -15px;
  left: 10px;
  width: 1px;
  height: 167px;
}

.gap-corner::before {
  top: 10px;
  left: 10px;
  width: 213px;
  height: 1px;
}

.gap-corner::after {
  top: 10px;
  left: 10px;
  width: 1px;
  height: 167px;
}

.short-lines::before {
  bottom: 0;
  left: -10px;
  width: 98%;
  height: 1px;
}

.short-lines::after {
  right: 9px;
  top: -7px;
  width: 1px;
  height: 102%;
}

.offer-section {
  text-align: center;
}

.cross-edge .voice-text::before {
  bottom: 8px;
  left: 20px;
  width: 96%;
  height: 1px;
}

.cross-edge .voice-text::after {
  right: 0;
  top: 20px;
  width: 1px;
  height: 92%;
}

.gap-corner .voice-text::before {
  bottom: 0;
  left: 20px;
  width: 90%;
  height: 1px;
}

.gap-corner .voice-text::after {
  right: 0;
  top: 20px;
  width: 1px;
  height: 92%;
}

.short-lines .voice-text::before {
  top: 9px;
  left: 0;
  width: 290px;
  height: 1px;
}

.short-lines .voice-text::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 160px;
}

.floating-button a {
  position: fixed;
  right: 0;
  bottom: 10%;
  right: -60px;
  background-color: #fff;
  color: #111;
  border-left: 3px solid var(--gray-color);
  border-top: 3px solid var(--gray-color);
  border-bottom: 3px solid var(--gray-color);
  padding: 20px 10px 20px 15px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px 0 0 8px;
  text-decoration: none;
  z-index: 9999;
  writing-mode: vertical-rl;
  text-align: center;
  transition: right 0.5s ease;
}

.floating-button a.show {
  right: 0;
}

@media screen and (max-width: 1024px) {
  .main-visual {
    padding-right: 0;
  }
  section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .content-bloc {
    padding: 0 1rem;
  }
  .social-icons {
    gap: 0.5rem;
  }
  .social-icons a {
    font-size: 1.2rem;
    padding: 0.7rem 0.7rem;
    width: 30%;
  }
  .menu-flex {
    display: block;
  }
  .menu-img {
    width: 100%;
  }
  .menu-text {
    width: 100%;
    position: static;
    margin: 0;
    padding: 5% 0% 5% 5%;
  }
  .profile-section h2 {
    margin-bottom: 1rem;
  }
  .profile-wrapper {
    max-width: 100%;
    padding: 1rem 1rem;
  }
  .fortune-title {
    writing-mode: horizontal-tb;
    text-align: center;
    margin-bottom: 1rem;
  }
  .fortune-container {
    display: block;
  }
  .fortune-content {
    border: 0;
  }
  .fortune-item {
    display: block;
    text-align: center;
  }
  .fortune-number {
    text-align: center;
  }
  .fortune-text h3 {
    text-align: center;
  }
  .fortune-item::after {
    position: unset;
  }
  .flow-steps {
    width: 100%;
  }
  .flow-steps::before {
    left: 14px;
  }
  .flow-step::before {
    left: -5px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .flow-step {
    padding-left: 45px;
    line-height: 2;
  }
  .voice-section h2 {
    margin-bottom: 2rem;
  }
  .cross-edge {
    margin-top: 0;
    margin-bottom: 0;
  }
  .gap-corner {
    margin-top: 0;
  }
  .short-lines {
    margin-top: 0;
    margin-bottom: 0;
  }
  .floating-button {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }
  .floating-button a {
    border-bottom: none;
    padding: 10px 20px 20px;
    border: 0;
    border-radius: 0;
    writing-mode: horizontal-tb;
    right: 0;
    bottom: -70px;
    width: 100%;
  }
  footer {
    margin-bottom: 2rem;
  }
}
