@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500;700&display=swap");
:root {
  --text: #6b6375;
  --text-h: #08060d;
  --bg: #fff;
  --bg-news: #fef9f5;
  --title-ja: #333333;
  --border: #e5e4e7;
  --accent: #aa3bff;
  --accent-hover: #9224eb;
  --accent-bg: rgba(170, 59, 255, 0.1);
  --accent-border: rgba(170, 59, 255, 0.5);
  --shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
  --sans: Zen Kaku Gothic New, Noto Sans JP, system-ui, Segoe UI, Roboto, sans-serif;
  --heading: Zen Kaku Gothic New, Noto Sans JP, system-ui, Segoe UI, Roboto, sans-serif;
  --serif: Shippori Mincho, Noto Serif JP, Georgia, serif;
  --mono: ui-monospace, Consolas, monospace;
  font: 12px/1.5 var(--sans);
  color: var(--text);
  background: var(--bg);
  box-sizing: border-box;
}
@media (min-width: 415px) {
  :root {
    font-size: 13px;
  }
}
@media (min-width: 769px) {
  :root {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  :root {
    font-size: 15px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

a,
button,
[role=button] {
  cursor: pointer;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}

strong {
  font-weight: 500 !important;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 0 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff6e0;
  color: var(--text);
  overflow-x: hidden;
}

.header {
  padding: 4px 16px;
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s, backdrop-filter 0.3s;
  font-family: "Zen Old Mincho", "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 16px;
}
@media (min-width: 1280px) {
  .header {
    padding: 0 0 0 88px;
  }
}
body.is-fixed .header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 64px;
}
@media (min-width: 1280px) {
  .header .header-inner {
    height: 91px;
    max-width: none;
    align-items: stretch;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header .logo:hover {
  opacity: 0.85;
}
.header .logo .logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: clamp(38px, 4.5vw, 64px);
  -o-object-fit: contain;
     object-fit: contain;
}
.header .sp_menu_icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.header .sp_menu_icon .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
body.nav-open .header .sp_menu_icon .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .header .sp_menu_icon .line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
body.nav-open .header .sp_menu_icon .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 1280px) {
  .header .sp_menu_icon {
    display: none;
  }
}
.header .header_sp_menuarea {
  display: none;
}
body.nav-open .header .header_sp_menuarea {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 99;
  animation: slideDown 0.3s ease-out forwards;
  overflow-y: auto;
}
.header .header_sp_menuarea .nav-menu-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header .header_sp_menuarea .nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 16px;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
  border-top: 1px solid var(--border);
  border-radius: 0;
  white-space: nowrap;
  display: block;
}
.header .header_sp_menuarea .nav-link-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header .header_sp_menuarea .nav-link-dropdown .dropdown-trigger {
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  padding: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.header .header_sp_menuarea .nav-link-dropdown .dropdown-trigger .arrow-icon {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s;
  filter: brightness(0) opacity(0.7);
  margin-left: 6px;
  transform: rotate(90deg);
}
@media (max-width: 1279px) {
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-menu {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.03) !important;
    position: static !important;
    float: none !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    transform: none !important;
    padding: 0 !important;
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-menu .dropdown-link {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-menu .dropdown-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  .header .header_sp_menuarea .nav-link-dropdown.is-active .dropdown-menu {
    display: flex;
  }
  .header .header_sp_menuarea .nav-link-dropdown.is-active .dropdown-trigger .arrow-icon {
    transform: rotate(-90deg);
  }
}
@media (min-width: 1280px) {
  .header .header_sp_menuarea {
    display: flex !important;
    align-items: center;
    position: static !important;
    top: auto !important;
    width: auto !important;
    height: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    animation: none !important;
  }
  .header .header_sp_menuarea .nav-menu-wrapper {
    flex-direction: row;
    background-color: #b09227;
    height: 54px;
    padding: 0 8px;
    align-self: center;
    border-radius: 0;
    width: auto;
  }
  .header .header_sp_menuarea .nav-link {
    color: #ffffff !important;
    padding: 0 20px;
    border-top: none;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: opacity 0.2s;
  }
  .header .header_sp_menuarea .nav-link:hover {
    background-color: transparent;
    opacity: 0.7;
  }
  .header .header_sp_menuarea .nav-link-dropdown {
    position: relative;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-trigger {
    color: #ffffff !important;
    padding: 0 20px;
    border-top: none;
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    font-size: 16px;
    transition: opacity 0.2s;
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-trigger .arrow-icon {
    filter: none;
    width: 12px;
    height: 12px;
    margin-left: 6px;
    transform: rotate(90deg);
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-trigger:hover {
    background-color: transparent;
    opacity: 0.7;
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    background-color: #ffffff !important;
    min-width: 220px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 !important;
    padding: 6px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 100 !important;
    pointer-events: none !important;
    border: none !important;
    float: none !important;
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-menu .dropdown-link {
    color: #282828 !important;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    border-top: none;
    width: 100%;
    transition: opacity 0.2s;
  }
  .header .header_sp_menuarea .nav-link-dropdown .dropdown-menu .dropdown-link:hover {
    background-color: transparent;
    opacity: 0.7;
  }
  .header .header_sp_menuarea .nav-link-dropdown:hover .dropdown-trigger {
    opacity: 0.7;
  }
  .header .header_sp_menuarea .nav-link-dropdown:hover .dropdown-trigger .arrow-icon {
    transform: rotate(-90deg);
  }
  .header .header_sp_menuarea .nav-link-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
  }
}

.main-content {
  width: 100%;
  flex: 1;
}

.main-visual {
  width: 100%;
  aspect-ratio: 375/667;
  max-height: 750px;
  position: relative;
  overflow: hidden;
  background-color: #fff6e0;
}
.main-visual .mv-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.main-visual .mv-sp {
  display: block;
}
.main-visual .mv-tab {
  display: none;
}
.main-visual .mv-pc {
  display: none;
}
@media (min-width: 426px) {
  .main-visual .mv-sp {
    display: none;
  }
  .main-visual .mv-tab {
    display: block;
  }
}
.main-visual .mv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  max-width: 800px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 769px) {
  .main-visual .mv-copy {
    max-width: none;
  }
}
.main-visual .mv-copy figure.image_wrapper:has(.mv-deco) {
  position: absolute;
  bottom: 100%;
  left: -20px;
  width: clamp(280px, 42vw, 600px);
  height: auto;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  .main-visual .mv-copy figure.image_wrapper:has(.mv-deco) {
    left: calc(-1 * clamp(20px, -71.4px + 8.93vw, 100px));
  }
}
.main-visual .mv-copy .mv-deco {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}
.main-visual .mv-mobile-br {
  display: block;
}
@media (min-width: 769px) {
  .main-visual .mv-mobile-br {
    display: none;
  }
}
.main-visual .mv-comma {
  display: none;
}
@media (min-width: 769px) {
  .main-visual .mv-comma {
    display: inline;
  }
}
.main-visual .mv-main-copy,
.main-visual .blur_text {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(39px, 1.97vw + 31.6px, 60px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) {
  .main-visual .mv-main-copy,
  .main-visual .blur_text {
    white-space: nowrap;
  }
}
.main-visual .mv-main-copy {
  font-size: clamp(24px, 10.5vw - 4px, 39px);
}
.main-visual .mv-sub-copy {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(25px, 14px + 2.93vw, 44px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: clamp(13px, 4.9vw - 1.5px, 22px);
  word-break: break-all;
}
@media (min-width: 769px) {
  .main-visual .mv-sub-copy {
    word-break: normal;
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  .main-visual .mv-tab {
    display: none;
  }
  .main-visual .mv-pc {
    display: block;
  }
}
@media (min-width: 1024px) {
  .main-visual {
    aspect-ratio: 16/9;
    height: auto;
    max-height: none;
  }
  .main-visual .mv-copy {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    right: auto;
    width: auto;
    max-width: 92vw;
    padding: 0;
    gap: 30px;
    text-align: center;
  }
  .main-visual .mv-main-copy {
    font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
    font-size: clamp(50px, 27.14px + 2.23vw, 70px);
    line-height: 1.4;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .main-visual .mv-sub-copy {
    font-size: clamp(18px, 2vw, 24px);
  }
}

.textUp br,
.headline br,
.blur_text br,
.random_blur_text br {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-deco-wrap {
  background-color: var(--bg-news);
  padding: clamp(40px, 5vw, 80px) 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-deco-wrap .section-deco-img {
  display: block;
  width: 100%;
  height: auto;
}

.news-section {
  background-color: transparent;
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  width: 100%;
  margin: 40px auto;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .news-section {
    margin: 80px auto;
  }
}
.news-section .section-inner {
  background-color: #efe8d2;
  max-width: 1240px !important;
  width: 100% !important;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px) !important;
  box-sizing: border-box;
}
.news-section .section-ja-title {
  color: #282828;
  font-size: clamp(26px, 2.08vw, 40px);
}
.news-section .news-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
@media (min-width: 769px) {
  .news-section .news-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
.news-section .news-header .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
  padding: 14px 20px;
  background: #b49020;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.news-section .news-header .more-btn:hover {
  filter: brightness(0.92);
  color: #ffffff !important;
}
.news-section .news-header .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.news-section .news-header .more-btn {
  justify-content: center;
}
.news-section .webgene-blog {
  width: 100%;
  margin-top: 0;
}
.news-section .webgene-blog .webgene-header {
  display: none;
}
.news-section .webgene-blog .webgene-item {
  background-color: #ffffff;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: block;
  border: 1px solid #e2dbca;
  text-decoration: none;
  box-sizing: border-box;
  color: #282828 !important;
}
.news-section .webgene-blog .webgene-item + .webgene-item {
  margin-top: 10px;
}
.news-section .webgene-blog .webgene-item .news_inner {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin: 0 !important;
}
@media (min-width: 769px) {
  .news-section .webgene-blog .webgene-item .news_inner {
    flex-direction: row !important;
    align-items: center !important;
    gap: 40px !important;
  }
}
.news-section .webgene-blog .webgene-item .col-12 {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
@media (min-width: 769px) {
  .news-section .webgene-blog .webgene-item .col-12 {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
  }
}
.news-section .webgene-blog .webgene-item .col-12 p {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: clamp(14px, 1.56vw, 20px) !important;
  font-weight: 500 !important;
  line-height: 2.2 !important;
  letter-spacing: 0.04em !important;
  margin: 0 !important;
}
.news-section .webgene-blog .webgene-item .col-12:first-child p {
  color: #282828 !important;
}
.news-section .webgene-blog .webgene-item .col-12 a {
  text-decoration: none !important;
  display: block !important;
  color: #282828 !important;
  transition: color 0.25s ease, opacity 0.25s ease !important;
}
.news-section .webgene-blog .webgene-item .col-12 a p {
  color: inherit !important;
}
.news-section .webgene-blog .webgene-item .col-12 a:hover {
  color: #b09227 !important;
  opacity: 0.7 !important;
}
.news-section .webgene-blog .webgene-item-content {
  display: none !important;
}
.news-section .webgene-blog .webgene-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.news-section .webgene-blog .webgene-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.main_button {
  text-decoration: none;
  display: block;
  margin: 0;
}
.main_button p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 250px;
  height: 55px;
  margin: 0;
  padding: 0 20px !important;
  border: 1px solid #338e7c;
  background: #338e7c;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  transition: background 0.4s, border-color 0.4s;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .main_button p {
    margin: 0 0 0 auto;
  }
}
.main_button p::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background: #fff;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: right 0.3s;
}
.main_button p:hover {
  background: #277465;
  border-color: #277465;
}

.top-slider-section {
  background-color: #fcedcb;
  padding: 0;
  width: 100%;
}
.top-slider-section .products-slider-wrap {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .news-section {
    padding: clamp(50px, 30px + 2.6vw, 80px) clamp(20px, 4vw, 60px);
  }
  .cta-center-section {
    padding: clamp(80px, 65.4px + 3.88vw, 140px) 16px;
  }
  .card-grid-section {
    padding-top: clamp(80px, 65.4px + 3.88vw, 140px);
    padding-bottom: clamp(40px, 32.2px + 2.07vw, 80px);
    padding-left: 16px;
    padding-right: 16px;
  }
  .voice-intro-section {
    padding-top: clamp(80px, 60.5px + 5.18vw, 160px);
    padding-bottom: clamp(80px, 65.4px + 3.88vw, 140px);
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cta-center-section {
  background-color: #fff6e0;
  padding: clamp(80px, 65.4px + 3.88vw, 140px) 20px;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 0 87%);
  width: 100%;
  color: #ffffff;
  --badge-width: clamp(50px, calc(40.3px + 2.59vw), 90px);
  --badge-half: calc(var(--badge-width) / 2);
}
.cta-center-section .reason-menu-slider {
  width: 100%;
  margin-top: 0;
}
.cta-center-section .reason-menu-slider .splide__list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cta-center-section .reason-menu-slider .splide__list::-webkit-scrollbar {
  display: none;
}
.cta-center-section .reason-menu-slider .reason-menu-gallery-item {
  flex: 0 0 280px !important;
  width: 280px !important;
}
.cta-center-section .reason-menu-slider .reason-menu-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.cta-center-section .reason-menu-slider.is-initialized .splide__list {
  overflow-x: visible;
  gap: 0;
}
@media (min-width: 1024px) {
  .cta-center-section .reason-menu-slider {
    visibility: visible !important;
  }
  .cta-center-section .reason-menu-slider .splide__track {
    overflow: visible !important;
  }
  .cta-center-section .reason-menu-slider .splide__list {
    display: flex !important;
    flex-direction: row !important;
    gap: 36px !important;
    transform: none !important;
    overflow-x: visible;
    scrollbar-width: auto;
  }
  .cta-center-section .reason-menu-slider .reason-menu-gallery-item {
    display: block !important;
    flex: 1 !important;
    width: auto !important;
  }
  .cta-center-section .reason-menu-slider .splide__slide.is-clone {
    display: none !important;
  }
}

.cta-checklist {
  width: 100%;
  margin: 0;
  background-color: rgba(40, 40, 40, 0.8705882353);
  padding: 40px;
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  gap: 12px;
}
.cta-checklist .cta-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-checklist .cta-check-item p {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-size: clamp(12px, 10px + 0.5vw, 20px);
  color: #ffffff;
  margin: 0;
}
.cta-checklist .cta-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (min-width: 415px) {
  .cta-checklist {
    gap: 14px 16px;
  }
}
@media (min-width: 769px) {
  .cta-checklist {
    width: 75%;
    margin: 0 auto;
    gap: 16px 24px;
  }
}

.follow_button {
  position: fixed;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.follow_button .reserve-side-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  cursor: pointer;
  width: clamp(42px, 2.5vw, 48px);
  height: clamp(180px, 10.42vw, 200px);
}
.follow_button .reserve-side-btn .btn-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.follow_button .reserve-side-btn .hover-drawer {
  position: absolute;
  top: 0;
  left: 100%;
  width: 260px;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.follow_button .reserve-side-btn .hover-drawer .drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.follow_button .reserve-side-btn .hover-drawer .drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #282828;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.follow_button .reserve-side-btn .hover-drawer .drawer-item:hover {
  opacity: 0.7;
}
.follow_button .reserve-side-btn .hover-drawer .drawer-item .drawer-icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.follow_button .reserve-side-btn .hover-drawer .drawer-item .drawer-text {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #282828;
}
.follow_button .reserve-side-btn:hover {
  transform: translateX(-260px);
}
.follow_button .reserve-side-btn:hover .hover-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.follow_button .reserve-side-btn.btn-getsu {
  background: linear-gradient(180deg, #9d4c1a 0%, #b49020 100%);
}
.follow_button .reserve-side-btn.btn-togetsu {
  background: linear-gradient(180deg, #0e384f 0%, #2080b5 100%);
}

.inner_col3_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.083vw, 40px);
}
@media (min-width: 769px) {
  .inner_col3_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.inner_col2_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.083vw, 40px);
}
@media (min-width: 769px) {
  .inner_col2_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.inner_split_gap {
  margin-top: clamp(40px, 3.125vw, 60px);
}

.card-grid-item img {
  width: 100%;
  height: auto;
  display: block;
}
.card-grid-item .card-grid-title {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-size: clamp(20px, 17px + 0.78vw, 32px);
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  display: inline-block;
  padding: clamp(14px, 11.6px + 0.65vw, 24px) 0;
  line-height: 1.6;
}
.card-grid-item .card-grid-desc {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: 0;
}
.card-grid-item .card-grid-desc + .card-grid-desc {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ffffff;
}

.card-grid-section {
  background-color: #fcedcb;
  padding-top: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-bottom: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.card-grid-section .inner_col3_grid {
  grid-template-columns: 1fr;
}
@media (min-width: 769px) {
  .card-grid-section .inner_col3_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card-grid-section .card-grid-item img {
  max-width: 260px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .card-grid-section .card-grid-item img {
    max-width: none;
  }
}
.card-grid-section {
  position: relative;
}
.card-grid-section .card-grid-inner {
  position: relative;
  z-index: 2;
}
.card-grid-section .concept-list {
  margin-top: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.card-grid-section .concept-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-grid-section .concept-item .concept-item-img-wrap {
  width: 100%;
  overflow: hidden;
}
.card-grid-section .concept-item .concept-item-img-wrap .concept-item-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-grid-section .concept-item .concept-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.card-grid-section .concept-item .concept-item-number {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #ff6565;
  font-weight: inherit;
  color: #ffffff;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  .card-grid-section .concept-item .concept-item-number {
    font-size: clamp(20px, 1.36vw, 26px);
  }
}
.card-grid-section .concept-item .concept-item-title {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: 400 !important;
  text-align: left;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .card-grid-section .concept-item .concept-item-title {
    font-size: clamp(30px, 3.65vw, 56px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.card-grid-section .concept-item .concept-item-title br {
  display: block;
}
.card-grid-section .concept-item .concept-item-subtitle {
  display: inline-block;
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(14px, 15px + 0.47vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
}
.card-grid-section .concept-item .concept-item-subtitle::after {
  content: "";
  display: inline-block;
  width: clamp(30px, 6vw, 80px);
  height: 1px;
  margin-left: 0.4em;
  background: currentColor;
  vertical-align: middle;
}
.card-grid-section .concept-item .concept-item-desc {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #555555;
  color: #ffffff;
  margin: 0;
}
.card-grid-section .concept-item .concept-item-desc br {
  display: block;
}
@media (min-width: 769px) {
  .card-grid-section .concept-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6vw;
    margin-bottom: 60px;
  }
  .card-grid-section .concept-item:last-child {
    margin-bottom: 0;
  }
  .card-grid-section .concept-item.concept-item--reverse {
    flex-direction: row-reverse;
  }
  .card-grid-section .concept-item .concept-item-img-wrap {
    flex: 1;
    max-width: 50%;
  }
  .card-grid-section .concept-item .concept-item-content {
    flex: 1;
    max-width: 50%;
  }
}

.cta-split-section {
  background-color: #fff6e0;
  padding: clamp(80px, 65.4px + 3.88vw, 140px) 20px;
  width: 100%;
}
.cta-split-section .cta-split-inner--reverse .cta-split-img-wrap {
  order: -1;
}
@media (min-width: 769px) {
  .cta-split-section .cta-split-inner--reverse .cta-split-img-wrap {
    order: 0;
  }
}
.cta-split-section .cta-split-divider {
  max-width: 1600px;
  margin: clamp(40px, 5vw, 80px) auto;
  border-top: 1px solid #ffffff;
}
@media (min-width: 769px) {
  .cta-split-section .cta-split-content-wrap {
    padding-left: clamp(24px, 3.5vw, 64px);
  }
}
.cta-split-section .cta-split-header {
  margin-bottom: clamp(24px, 18.24px + 1.55vw, 48px);
}
.cta-split-section .cta-split-intro-text {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-size: clamp(16px, 13.6px + 0.62vw, 26px);
  font-weight: 500;
  margin: 0;
  color: #ffffff;
  display: inline-block;
  line-height: 1.6;
}
.cta-split-section .cta-split-intro-text .cta-split-intro-dot {
  color: #9d9263;
}

.section-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #ff6565;
  background: #9d9263;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}

.section-ja-title {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: 600 !important;
  text-align: center;
}
.section-ja-title div,
.section-ja-title p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

.voice-intro-section {
  background-image: url("/system_panel/uploads/images/top_contact_bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: clamp(80px, 60.5px + 5.18vw, 160px);
  padding-bottom: clamp(80px, 60.5px + 5.18vw, 160px);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.voice-intro-section .voice-intro-tel-wrap {
  margin-top: clamp(12px, 5px + 2vw, 44px);
  display: flex;
  justify-content: center;
  width: 100%;
}
.voice-intro-section .voice-intro-tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.voice-intro-section .voice-intro-tel-link:hover {
  opacity: 0.8;
}
.voice-intro-section .voice-intro-tel-icon {
  width: clamp(24px, 18.3px + 1.5vw, 50px);
  height: auto;
  display: block;
  margin-right: clamp(10px, 5.1px + 1.29vw, 30px);
}
.voice-intro-section .voice-intro-tel-number {
  font-size: clamp(24px, 18px + 1.76vw, 52px);
  font-weight: 500;
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  line-height: 1;
  letter-spacing: 0.05em;
}
.voice-intro-section .voice-intro-buttons-grid {
  margin-top: clamp(24px, 10px + 4vw, 88px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  width: 100%;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 60px);
}
@media (min-width: 425px) {
  .voice-intro-section .voice-intro-buttons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 769px) {
  .voice-intro-section .voice-intro-buttons-grid {
    -moz-column-gap: clamp(20px, 12px + 1.04vw, 32px);
         column-gap: clamp(20px, 12px + 1.04vw, 32px);
    row-gap: 20px;
  }
}
@media (min-width: 1024px) {
  .voice-intro-section .voice-intro-buttons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: clamp(16px, 1.6vw, 32px);
         column-gap: clamp(16px, 1.6vw, 32px);
    row-gap: 20px;
    max-width: 1100px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
.voice-intro-section .voice-intro-img-btn {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.voice-intro-section .voice-intro-img-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.voice-intro-section .voice-intro-img-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.voice-intro-section .voice-intro-info-note {
  margin-top: clamp(20px, 13.5px + 0.9vw, 32px);
  font-size: clamp(12px, 11.5px + 0.13vw, 14px);
  color: #ffffff;
  text-align: center;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-weight: 500;
}
.voice-intro-section .inner_split {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.125vw, 60px);
  align-items: stretch;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split.inner_split--reverse {
    flex-direction: row-reverse;
  }
}
.voice-intro-section .inner_split_img {
  width: 100%;
  flex-shrink: 0;
  min-width: 0;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_img {
    width: calc(50% - clamp(12px, 1.5vw, 30px));
    flex: 0 0 calc(50% - clamp(12px, 1.5vw, 30px));
  }
}
.voice-intro-section .inner_split_img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-intro-section .inner_split_text {
  width: 100%;
  min-width: 0;
  text-align: center;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text {
    width: calc(50% - clamp(12px, 1.5vw, 30px));
    flex: 0 0 calc(50% - clamp(12px, 1.5vw, 30px));
    text-align: left;
  }
}
.voice-intro-section .inner_split_text .section-en-title {
  text-align: center;
  margin-bottom: 4px;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text .section-en-title {
    text-align: left;
    margin-bottom: 8px;
  }
}
.voice-intro-section .inner_split_text .section-ja-title {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text .section-ja-title {
    text-align: left;
  }
}
.voice-intro-section .inner_split_text .section-intro-text {
  padding: 0 0 24px 0;
  text-align: left;
}
.voice-intro-section .inner_split_text .section-btn-wrap {
  justify-content: center;
  margin-top: 0;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text .section-btn-wrap {
    justify-content: flex-start;
  }
}
.voice-intro-section .inner_split_gap {
  margin-top: clamp(40px, 5vw, 80px);
}

.section-intro-text {
  font-family: "Noto Serif JP", "Shippori Mincho", Georgia, serif;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.04em;
  font-size: clamp(14px, 12.5px + 0.39vw, 20px);
  padding: clamp(20px, 15.1px + 1.29vw, 40px) 0;
}
.section-intro-text div,
.section-intro-text p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: left;
}
@media (min-width: 769px) {
  .section-intro-text div,
  .section-intro-text p {
    text-align: inherit;
  }
}

.section-split-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 769px) {
  .section-split-container {
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(8px, 3vw, 48px);
    align-items: center;
  }
}

.section-split-img {
  width: 100%;
}
@media (min-width: 769px) {
  .section-split-img {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
}
.section-split-img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: #b49020;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.more-btn:hover {
  filter: brightness(0.92);
  color: #ffffff !important;
}
.more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.more-btn {
  justify-content: center;
}

.more-btn.is-reverse {
  background: #ffffff;
  color: #b49020;
}

.section-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 3vw, 56px);
}

.section-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .section-inner {
    width: 78vw;
  }
}

.section-inner-wide {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .section-inner-wide {
    width: 78vw;
  }
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-split-content {
  width: 100%;
  text-align: center;
}
@media (min-width: 769px) {
  .section-split-content {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    text-align: left;
  }
}

.staff-section {
  background-color: var(--bg-news);
  padding: clamp(80px, 65.4px + 3.88vw, 140px) 0;
}
.staff-section .staff-inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 769px) {
  .staff-section .staff-inner {
    flex-direction: row;
    align-items: center;
  }
}
.staff-section .staff-img-wrap {
  width: 100%;
}
@media (min-width: 769px) {
  .staff-section .staff-img-wrap {
    width: calc(48% - 20px);
    flex: 0 0 calc(48% - 20px);
    padding-left: 60px;
    padding-right: 0;
  }
}
.staff-section .staff-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.staff-section .staff-content-wrap {
  width: 100%;
  text-align: left;
  padding: 40px 20px;
}
@media (min-width: 769px) {
  .staff-section .staff-content-wrap {
    width: calc(52% - 20px);
    flex: 0 0 calc(52% - 20px);
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
}
.staff-section .staff-highlight-text {
  display: inline-block;
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(14px, 15px + 0.47vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333333;
  margin-bottom: clamp(24px, 3.5vw, 40px);
  font-weight: 500;
}
.staff-section .staff-highlight-text::after {
  content: "";
  display: inline-block;
  width: clamp(30px, 6vw, 80px);
  height: 1px;
  margin-left: 0.4em;
  background: currentColor;
  vertical-align: middle;
}

.about-section {
  background-color: #fcedcb;
  padding-top: 0;
  padding-bottom: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.about-section .about-inner {
  background-image: url("/system_panel/uploads/images/recruit_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
@media (min-width: 769px) {
  .about-section .about-inner {
    padding: 80px;
  }
}
.about-section .about-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 24px);
  margin: 0 0 clamp(20px, 4vw, 40px) 0;
  width: 100%;
}
.about-section .about-steps .about-step-item {
  flex: 1;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section .about-steps .about-step-item img {
  width: 100%;
  height: auto;
  display: block;
}
.about-section .about-steps .about-step-arrow {
  width: clamp(10px, 2.5vw, 24px);
  height: auto;
  flex-shrink: 0;
  opacity: 0.9;
}
.about-section .about-deco-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .about-section .about-deco-wrap {
    width: 78vw;
    padding: 0;
  }
}
.about-section .about-deco-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.products-section {
  background-image: url("/system_panel/uploads/images/product_bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-bottom: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.products-section .products-text {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #555555;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.04em;
  padding: clamp(20px, 15.1px + 1.29vw, 40px) 0;
  margin: 0;
}
@media (min-width: 769px) {
  .products-section .products-text {
    text-align: center;
  }
}
.products-section .products-text .pc-only {
  display: none;
}
@media (min-width: 769px) {
  .products-section .products-text .pc-only {
    display: inline;
  }
}
.products-section .products-text br {
  display: none;
}
@media (min-width: 769px) {
  .products-section .products-text br {
    display: inline;
  }
}

.products-slider-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: clamp(40px, 5vw, 80px);
  margin-bottom: 0;
  overflow: hidden;
}
.products-slider-wrap .products-slider {
  width: 100%;
}
.products-slider-wrap .products-slider .splide__slide {
  width: 180px;
  margin-right: 12px;
}
@media (min-width: 769px) {
  .products-slider-wrap .products-slider .splide__slide {
    width: clamp(240px, 60px + 23.44vw, 510px);
    margin-right: 18px;
  }
}
.products-slider-wrap .products-slider .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.access-section {
  padding-top: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-bottom: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fff6e0;
}
.access-section .access-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 769px) {
  .access-section .access-container {
    width: 78vw;
  }
}
.access-section .access-inner {
  width: 100%;
}
.access-section .access-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 769px) {
  .access-section .access-content-wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(40px, 4vw, 80px);
  }
}
.access-section .access-info-wrap {
  width: 100%;
}
@media (min-width: 769px) {
  .access-section .access-info-wrap {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
}
.access-section .access-map-wrap {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .access-section .access-map-wrap {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    height: auto;
    align-self: stretch;
  }
}
.access-section .access-map-wrap > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.access-section .access-map-wrap iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 0;
  display: block;
}
@media (min-width: 769px) {
  .access-section .access-map-wrap iframe {
    min-height: 0;
  }
}
.access-section .access-header-flex {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(20px, 2.5vw, 40px);
}
.access-section .access-sns-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.access-section .access-sns-icons .access-sns-icon {
  width: clamp(22px, 2.8vw, 30px);
  height: auto;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.access-section .access-sns-icons .access-sns-icon:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.access-section .access-table {
  width: 100%;
}
.access-section .access-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ffffff;
  font-weight: 500;
  align-items: stretch;
  text-align: left;
  font-size: clamp(14px, 13.5px + 0.13vw, 16px);
}
@media (min-width: 769px) {
  .access-section .access-row {
    flex-direction: row;
  }
}
.access-section .access-head {
  width: 100%;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9em;
  flex-shrink: 0;
  font-family: var(--sans);
  padding: 12px 16px;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .access-section .access-head {
    width: clamp(120px, 105px + 1.5vw, 150px);
    padding: 0;
    color: #ffffff !important;
    font-size: inherit;
  }
}
.access-section .access-body {
  flex-grow: 1;
  color: #ffffff !important;
  font-family: var(--sans);
  line-height: 1.5;
  padding: 12px 16px;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .access-section .access-body {
    padding: clamp(16px, 14.1px + 0.52vw, 24px) 20px;
  }
}
.access-section .access-body p {
  margin: 0;
  font-weight: 500;
}
.access-section .access-body a.access-tel-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.access-section .access-body a.access-tel-link:hover {
  color: #7ec8e3;
}
.access-section .access-body .access-sns-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.access-section .access-body .access-sns-item {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}
.access-section .access-body .access-sns-item:hover {
  opacity: 0.8;
}
.access-section .access-body .access-sns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.access-section .access-body .access-blog-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  background-color: #c8ad70;
  color: #fff !important;
  border-radius: 16px;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-family: var(--sans);
  transition: opacity 0.3s;
}
.access-section .access-body .access-blog-badge:hover {
  opacity: 0.8;
}
.access-section .access-btn-wrap {
  margin-top: clamp(20px, 17.1px + 0.78vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.access-section .access-btn-wrap .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
  padding: 14px 20px;
  background: #b49020;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.access-section .access-btn-wrap .more-btn:hover {
  filter: brightness(0.92);
  color: #ffffff !important;
}
.access-section .access-btn-wrap .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.access-section .access-btn-wrap .more-btn {
  margin: 0;
  justify-content: center;
}
.access-section .access-schedule-wrap {
  width: 100%;
  margin-top: clamp(32px, 3vw, 60px);
  overflow-x: auto;
}
.access-section .schedule-note {
  margin-top: 8px;
  text-align: left;
}
.access-section .schedule-note p {
  font-size: clamp(11px, 10px + 0.26vw, 13px);
  color: #333333;
  font-family: var(--sans);
  line-height: 1.8;
  margin: 0;
}
.access-section .schedule-note p strong {
  color: #338e7c;
  font-weight: normal;
}
.access-section .schedule-header,
.access-section .schedule-row {
  display: flex;
}
.access-section .schedule-header {
  height: 44px;
}
.access-section .schedule-header .schedule-cell {
  background-color: #338e7c;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.access-section .schedule-row {
  height: 58px;
}
.access-section .schedule-row .schedule-cell {
  color: #338e7c;
}
.access-section .schedule-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-bottom: 1px solid rgba(51, 142, 124, 0.3);
  font-size: clamp(12px, 11px + 0.26vw, 15px);
  font-family: var(--sans);
  font-weight: 500;
}
@media (min-width: 1024px) {
  .access-section .schedule-cell {
    flex: 90;
  }
}
.access-section .schedule-cell:first-child {
  flex: 4;
}
@media (min-width: 1024px) {
  .access-section .schedule-cell:first-child {
    flex: 190;
  }
}
.access-section .schedule-cell:last-child {
  border-right: none;
}

.contact-section {
  background-image: url("/system_panel/uploads/images/20260608134119995369.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding-top: clamp(40px, 30.3px + 2.59vw, 80px);
  padding-bottom: clamp(40px, 30.3px + 2.59vw, 80px);
  text-align: center;
  z-index: 1;
}
.contact-section .contact-tel-wrap {
  margin-top: clamp(12px, 5px + 2vw, 44px);
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact-section .contact-tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff !important;
  transition: opacity 0.3s ease;
}
.contact-section .contact-tel-link:hover {
  opacity: 0.8;
}
.contact-section .contact-tel-icon {
  width: clamp(24px, 18.3px + 1.5vw, 50px);
  height: auto;
  display: block;
  margin-right: clamp(10px, 5.1px + 1.29vw, 30px);
}
.contact-section .contact-tel-number {
  font-size: clamp(24px, 18px + 1.76vw, 52px);
  font-weight: 500 !important;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0.05em;
}
.contact-section .contact-buttons-grid {
  margin-top: clamp(30px, 15.5px + 3.88vw, 90px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  width: 100%;
  justify-content: center;
  padding: 0 clamp(20px, 4vw, 60px);
}
@media (min-width: 769px) {
  .contact-section .contact-buttons-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: clamp(20px, 12px + 1.04vw, 32px);
         column-gap: clamp(20px, 12px + 1.04vw, 32px);
    row-gap: 20px;
  }
}
@media (min-width: 1024px) {
  .contact-section .contact-buttons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-section .contact-img-btn {
  display: block;
  width: 100%;
  max-width: clamp(280px, 200px + 10vw, 400px);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.contact-section .contact-img-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.contact-section .contact-img-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.contact-section .contact-info-note {
  margin-top: clamp(20px, 13.5px + 0.9vw, 32px);
  font-size: clamp(12px, 11.5px + 0.13vw, 14px);
  color: #ffffff !important;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

#dry-head-spa {
  scroll-margin-top: 90px;
}

#Aroma-treatment {
  scroll-margin-top: 90px;
}

.main_footer {
  background-color: #ffffff;
  width: 100%;
  box-sizing: border-box;
}
.main_footer .footer_menu_area {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
}
.main_footer .footer_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  width: 100%;
}
@media (min-width: 769px) {
  .main_footer .footer_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
  }
}
@media (min-width: 1025px) {
  .main_footer .footer_grid {
    grid-template-columns: repeat(7, auto);
    justify-content: center;
    gap: 20px clamp(24px, 2.5vw, 48px);
  }
}
.main_footer .footer_link_item {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: bold;
  color: #333333;
  text-decoration: none;
  line-height: 1.6;
  white-space: nowrap;
  transition: color 0.25s ease;
  text-align: center;
}
.main_footer .footer_link_item:hover {
  color: #b09227;
}
.main_footer .footer_link_item p {
  margin: 0;
  color: inherit;
  font-weight: inherit;
}
@media (min-width: 1025px) {
  .main_footer .grid_col_1 {
    grid-column: 1;
  }
  .main_footer .grid_col_2 {
    grid-column: 2;
  }
  .main_footer .grid_col_3 {
    grid-column: 3;
  }
  .main_footer .grid_col_4 {
    grid-column: 4;
  }
  .main_footer .grid_col_5 {
    grid-column: 5;
  }
  .main_footer .grid_col_6 {
    grid-column: 6;
  }
  .main_footer .grid_col_7 {
    grid-column: 7;
  }
  .main_footer .grid_row_2 {
    grid-row: 2;
  }
}
.main_footer .footer_copy {
  text-align: center;
  padding: 24px 20px;
  background-color: #b09227;
  color: #ffffff;
}
.main_footer .footer_copy .copyright_text {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(12px, 0.8vw, 13px);
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 374.98px), (min-width: 414px) {
  .show_375_413 {
    display: none !important;
  }
}
@media (max-width: 413.98px), (min-width: 769px) {
  .show_414_767 {
    display: none !important;
  }
}
@media (max-width: 768.98px), (min-width: 1024px) {
  .show_768_1023 {
    display: none !important;
  }
}
@media (max-width: 1023.98px), (min-width: 1440px) {
  .show_1024_1439 {
    display: none !important;
  }
}
@media (max-width: 1439.98px) {
  .show_1440_up {
    display: none !important;
  }
}
.br-pc {
  display: none !important;
}
@media (min-width: 1024px) {
  .br-pc {
    display: inline !important;
  }
}

.br-414 {
  display: none !important;
}
@media (max-width: 414px) {
  .br-414 {
    display: inline !important;
  }
}

.enjoy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #aa0800;
  color: #ffffff !important;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border-radius: 9999px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  min-width: 220px;
  box-sizing: border-box;
}
.enjoy-btn:hover {
  opacity: 0.85;
  background-color: #8a0600;
  color: #ffffff !important;
}
.enjoy-btn .btn-arrow {
  margin-left: 8px;
  width: 14px;
  height: auto;
  display: block;
}

.enjoy-section {
  background-color: #fff6e0;
  width: 100%;
  color: #282828;
  overflow: hidden;
  padding: clamp(50px, 30px + 2.6vw, 80px) 0;
}
.enjoy-section .enjoy-row-top {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .enjoy-section .enjoy-row-top {
    flex-direction: row;
    align-items: stretch;
  }
}
.enjoy-section .enjoy-text-block {
  width: 100%;
  padding: clamp(40px, 8vw, 60px) 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 769px) {
  .enjoy-section .enjoy-text-block {
    width: 50%;
    padding-top: clamp(40px, 5.2vw, 100px);
    padding-bottom: clamp(40px, 5.2vw, 100px);
    padding-right: clamp(24px, -13px + 4.8vw, 50px);
    padding-left: clamp(24px, -93px + 22.5vw, 340px);
  }
}
.enjoy-section .enjoy-title-group {
  margin-bottom: 48px;
}
.enjoy-section .enjoy-title-group .enjoy-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.enjoy-section .enjoy-title-group .enjoy-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.enjoy-section .enjoy-highlight-group {
  margin-bottom: 28px;
}
.enjoy-section .enjoy-highlight-group .enjoy-highlight {
  margin: 0 0 10px 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 1.87vw, 26px);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.enjoy-section .enjoy-highlight-group .enjoy-highlight:last-child {
  margin-bottom: 0;
}
.enjoy-section .enjoy-highlight-group .enjoy-highlight span {
  background-color: #b09227;
  color: #ffffff;
  padding: 6px 14px;
  display: inline-block;
}
.enjoy-section .enjoy-desc-group {
  margin-bottom: 36px;
}
.enjoy-section .enjoy-desc-group p {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #282828;
  margin: 0;
}
.enjoy-section .enjoy-image-block {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 769px) {
  .enjoy-section .enjoy-image-block {
    width: 50%;
    aspect-ratio: 954/853;
  }
}
.enjoy-section .enjoy-image-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.enjoy-section .enjoy-row-bottom {
  width: 100%;
  display: block;
}
.enjoy-section .enjoy-row-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.reason-section {
  background-color: #ffffff;
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) 0;
  overflow: hidden;
}
.reason-section .reason-inner {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .reason-section .reason-inner {
    padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  }
}
@media (min-width: 1441px) {
  .reason-section .reason-inner {
    padding: 0 24px;
  }
}
.reason-section .reason-header {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.reason-section .reason-header .reason-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.reason-section .reason-header .reason-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.reason-section .reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 769px) {
  .reason-section .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 40px;
  }
}
@media (min-width: 1441px) {
  .reason-section .reason-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.reason-section .reason-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reason-section .reason-card .reason-img {
  width: 127px;
  height: 242px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 24px;
  display: block;
}
.reason-section .reason-card .reason-card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 1.66vw, 32px);
  font-weight: 500;
  color: #282828;
  line-height: 1.4;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
  text-align: left;
  width: 100%;
}
@media (min-width: 769px) {
  .reason-section .reason-card .reason-card-title {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.reason-section .reason-card .reason-card-desc {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #282828;
  text-align: left;
  margin: 0;
}

.about-stores-section {
  background-color: #fff6e0;
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) 0;
  overflow: hidden;
}
.about-stores-section .about-stores-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
}
.about-stores-section .about-stores-header {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.about-stores-section .about-stores-header .about-stores-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.about-stores-section .about-stores-header .about-stores-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.about-stores-section .about-stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 769px) {
  .about-stores-section .about-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.about-stores-section .about-store-card {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .about-stores-section .about-store-card {
    min-height: 600px;
  }
}
.about-stores-section .about-store-card .about-store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: 1;
}
.about-stores-section .about-store-card .about-store-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .about-stores-section .about-store-card .about-store-content {
    padding: 50px 10px;
  }
}
@media (min-width: 1024px) {
  .about-stores-section .about-store-card .about-store-content {
    padding: 70px 35px;
  }
}
.about-stores-section .about-store-card .about-store-logo {
  margin-bottom: 20px;
}
.about-stores-section .about-store-card .about-store-logo img {
  height: 68px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .about-stores-section .about-store-card .about-store-logo img {
    height: 52px;
  }
}
.about-stores-section .about-store-card .about-store-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 1.87vw, 30px);
  font-weight: bold;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 16px 0;
  letter-spacing: 0.03em;
}
.about-stores-section .about-store-card .about-store-desc {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #ffffff;
  margin: 0 0 clamp(32px, 4vw, 56px) 0;
}
@media (min-width: 1024px) {
  .about-stores-section .about-store-card .about-store-desc .br-pc {
    display: none !important;
  }
}
@media (min-width: 1441px) {
  .about-stores-section .about-store-card .about-store-desc .br-pc {
    display: inline !important;
  }
}
.about-stores-section .about-store-card .about-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ffffff;
  border-radius: 9999px;
  background-color: transparent;
  color: #ffffff;
  padding: 12px 24px;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  max-width: 230px;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.about-stores-section .about-store-card .about-store-btn .about-btn-arrow {
  font-family: initial;
  font-weight: bold;
}
.about-stores-section .about-store-card .about-store-btn:hover {
  background-color: #ffffff;
  color: #282828;
  border-color: #ffffff;
}

.food-section {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) 0;
  overflow: hidden;
}
.food-section .food-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.food-section .food-header {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 64px);
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
}
.food-section .food-header .food-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.food-section .food-header .food-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.food-section .food-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 6vw, 100px);
}
.food-section .food-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 769px) {
  .food-section .food-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 769px) {
  .food-section .food-row.row-togetsu {
    flex-direction: row-reverse;
  }
}
.food-section .food-img-block {
  width: 100%;
}
@media (min-width: 769px) {
  .food-section .food-img-block {
    width: 50%;
  }
}
.food-section .food-img-block img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.food-section .food-text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
  box-sizing: border-box;
  padding: clamp(40px, 8vw, 60px) 24px;
}
@media (min-width: 769px) {
  .food-section .food-text-block {
    width: 50%;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .food-section .row-getsu .food-text-block {
    padding: clamp(40px, 8vw, 60px) clamp(24px, -93px + 22.5vw, 340px) clamp(40px, 8vw, 60px) clamp(24px, -13px + 4.8vw, 80px);
  }
}
@media (min-width: 769px) {
  .food-section .row-togetsu .food-text-block {
    padding: clamp(40px, 8vw, 60px) clamp(24px, -13px + 4.8vw, 80px) clamp(40px, 8vw, 60px) clamp(24px, -93px + 22.5vw, 340px);
  }
}
.food-section .food-shop-badge {
  margin-bottom: 24px;
}
.food-section .food-shop-badge img {
  height: clamp(80px, 8vw, 110px);
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.food-section .food-row-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: bold;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 20px 0;
  letter-spacing: 0.03em;
}
.food-section .food-row-desc {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #ffffff;
  margin: 0 0 32px 0;
}
@media (min-width: 1024px) {
  .food-section .food-row-desc .br-pc {
    display: none !important;
  }
}
@media (min-width: 1441px) {
  .food-section .food-row-desc .br-pc {
    display: inline !important;
  }
}
.food-section .food-btn {
  max-width: 320px;
  width: 100%;
}

.course-section {
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) 0;
  overflow: hidden;
}
.course-section .course-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
.course-section .course-header {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 64px);
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
}
.course-section .course-header .course-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.course-section .course-header .course-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.course-section .course-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 6vw, 100px);
}
.course-section .course-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 clamp(24px, -140px + 25vw, 340px);
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .course-section .course-row {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
  }
}
.course-section .course-img-block {
  width: 100%;
  display: flex;
}
@media (min-width: 769px) {
  .course-section .course-img-block {
    width: 50%;
  }
}
.course-section .course-img-block img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.course-section .course-text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #282828;
  box-sizing: border-box;
  background-color: #ffffff;
  padding: clamp(32px, 6vw, 48px) 24px;
}
@media (min-width: 769px) {
  .course-section .course-text-block {
    width: 50%;
    justify-content: center;
    padding: clamp(32px, 5vw, 60px) clamp(24px, 2.5vw, 64px);
  }
}
.course-section .course-shop-badge {
  margin-bottom: 20px;
}
.course-section .course-shop-badge img {
  height: 68px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .course-section .course-shop-badge img {
    height: 52px;
  }
}
.course-section .course-row-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: bold;
  color: #282828;
  line-height: 1.8;
  margin: 0 0 20px 0;
  letter-spacing: 0.03em;
}
.course-section .course-row-desc {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #282828;
  margin: 0 0 32px 0;
}
@media (min-width: 1024px) {
  .course-section .course-row-desc .br-pc {
    display: none !important;
  }
}
@media (min-width: 1441px) {
  .course-section .course-row-desc .br-pc {
    display: inline !important;
  }
}
.course-section .course-btn {
  max-width: 320px;
  width: 100%;
}

.interior-section {
  background-color: #fff6e0;
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) 0;
  overflow: hidden;
}
.interior-section .interior-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
}
.interior-section .interior-header {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.interior-section .interior-header .interior-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.interior-section .interior-header .interior-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.interior-section .interior-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 769px) {
  .interior-section .interior-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .interior-section .interior-grid {
    gap: 60px;
  }
}
.interior-section .interior-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.interior-section .interior-img-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.interior-section .interior-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.interior-section .interior-text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.interior-section .interior-shop-badge {
  margin-bottom: 20px;
}
.interior-section .interior-shop-badge img {
  height: 68px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .interior-section .interior-shop-badge img {
    height: 52px;
  }
}
.interior-section .interior-card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: bold;
  color: #282828;
  line-height: 1.8;
  margin: 0 0 20px 0;
  letter-spacing: 0.03em;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .interior-section .interior-card-title {
    min-height: 110px;
    display: flex;
    align-items: center;
  }
}
.interior-section .interior-card-desc {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #282828;
  margin: 0 0 32px 0;
}
@media (min-width: 1024px) {
  .interior-section .interior-card-desc .br-pc {
    display: none !important;
  }
}
@media (min-width: 1441px) {
  .interior-section .interior-card-desc .br-pc {
    display: inline !important;
  }
}
.interior-section .interior-btn {
  max-width: 320px;
  width: 100%;
}

.interior-bg-banner {
  width: 100%;
  overflow: hidden;
  display: block;
}
.interior-bg-banner img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-recruit-section {
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) clamp(24px, -140px + 25vw, 340px);
  box-sizing: border-box;
  overflow: hidden;
}
.top-recruit-section .recruit-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  background-color: #ffffff;
}
@media (min-width: 769px) {
  .top-recruit-section .recruit-row {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}
.top-recruit-section .recruit-img-block {
  width: 100%;
  display: flex;
}
@media (min-width: 769px) {
  .top-recruit-section .recruit-img-block {
    width: 50%;
  }
}
.top-recruit-section .recruit-img-block img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-recruit-section .recruit-text-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #282828;
  box-sizing: border-box;
  padding: clamp(32px, 6vw, 48px) 24px;
}
@media (min-width: 769px) {
  .top-recruit-section .recruit-text-block {
    width: 50%;
    justify-content: center;
    padding: clamp(40px, 5vw, 60px) clamp(32px, 4vw, 64px) clamp(40px, 5vw, 60px) clamp(32px, 4vw, 80px);
  }
}
.top-recruit-section .recruit-text-block .recruit-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: bold;
  color: #282828;
  line-height: 1.8;
  margin: 0 0 16px 0;
  letter-spacing: 0.03em;
}
.top-recruit-section .recruit-text-block .recruit-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.top-recruit-section .recruit-text-block .recruit-desc {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(15px, 1.56vw, 20px);
  line-height: 2.2;
  color: #282828;
  margin: 0 0 32px 0;
}
.top-recruit-section .recruit-text-block .recruit-btn {
  max-width: 320px;
  width: 100%;
}

.top-access-section {
  background-color: #fff6e0;
  width: 100%;
  padding: clamp(60px, 5.2vw, 100px) 0;
  overflow: hidden;
}
.top-access-section .access-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
}
.top-access-section .access-header {
  text-align: center;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.top-access-section .access-header .access-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.top-access-section .access-header .access-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.top-access-section .access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 992px) {
  .top-access-section .access-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
.top-access-section .access-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.top-access-section .access-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.top-access-section .access-logo-wrap img {
  height: clamp(50px, 5vw, 60px);
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-access-section .access-insta-link {
  display: inline-block;
  transition: opacity 0.25s ease;
}
.top-access-section .access-insta-link:hover {
  opacity: 0.7;
}
.top-access-section .access-insta-link img {
  width: 32px;
  height: 32px;
  display: block;
}
.top-access-section .access-info-table {
  border-top: 1px solid #b09227;
  margin-bottom: 32px;
}
.top-access-section .access-info-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #b09227;
  margin: 0;
  box-sizing: border-box;
}
.top-access-section .access-info-label {
  width: 90px;
  flex-shrink: 0;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: bold;
  color: #333333;
  margin: 0;
}
.top-access-section .access-info-value {
  flex-grow: 1;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(14px, 1vw, 15px);
  line-height: 1.8;
  color: #282828;
  margin: 0;
}
.top-access-section .access-info-value .access-note {
  display: block;
  font-size: 12px;
  color: #8c8c8c;
  margin-top: 4px;
}
.top-access-section .access-btn {
  max-width: 260px;
  width: 100%;
  margin-bottom: 40px;
}
.top-access-section .access-map-wrap {
  width: 100%;
  border: 1px solid #b09227;
  overflow: hidden;
  line-height: 0;
}
.top-access-section .access-map-wrap iframe {
  width: 100%;
  height: clamp(240px, 20vw, 320px);
  border: 0;
  display: block;
}

.top-contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: clamp(60px, 6vw, 100px) 0;
  overflow: hidden;
}
.top-contact-section .contact-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, -93px + 22.5vw, 340px);
  box-sizing: border-box;
  text-align: center;
}
.top-contact-section .contact-header {
  margin-bottom: 24px;
}
.top-contact-section .contact-header .contact-title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 3.65vw, 70px);
  font-weight: bold;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: 0.05em;
}
.top-contact-section .contact-header .contact-badge {
  display: inline-block;
  background-color: #b09227;
  color: #ffffff;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.top-contact-section .contact-lead-text {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(20px, 1.87vw, 30px);
  font-weight: bold;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin: 0 auto 48px auto;
}
.top-contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .top-contact-section .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
  }
}
.top-contact-section .contact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.top-contact-section .contact-logo-wrap {
  margin-bottom: 32px;
  height: clamp(80px, 8vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-contact-section .contact-logo-wrap img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.top-contact-section .contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}
.top-contact-section .contact-btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffffff;
  border-radius: 0;
  width: 100%;
  max-width: 400px;
  height: clamp(60px, 8vw, 100px);
  box-sizing: border-box;
  text-decoration: none !important;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}
.top-contact-section .contact-btn-item:hover {
  background-color: #f5f5f5;
}
.top-contact-section .contact-icon-wrap {
  position: absolute;
  left: clamp(16px, 2.5vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(24px, 3.2vw, 40px);
  height: clamp(24px, 3.2vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.top-contact-section .contact-icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-contact-section .contact-btn-text {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: bold;
  color: #333333;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .concept-item-img-wrap,
  .food-img-block,
  .course-img-block,
  .enjoy-image-block,
  .interior-img-wrap,
  .recruit-img-block {
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }
}/*# sourceMappingURL=main.css.map */