@charset "UTF-8";
: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;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 0 !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  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;
}
@media (min-width: 1200px) {
  .header {
    padding: 0 0 0 clamp(16px, 1.6vw, 50px);
  }
}
body.is-fixed .header {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  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: clamp(40px, 3.65vw, 70px);
  height: auto;
}
.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-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  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;
}
.header .header_sp_menuarea .nav-link .nav-link-text {
  display: inline-block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.header .header_sp_menuarea .nav-link.nav-btn {
  background-color: #ffc62b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  margin: 8px 16px;
  border-top: none;
  text-decoration: none;
}
.header .header_sp_menuarea .nav-link.nav-btn:hover {
  background-color: #e6af20;
}
.header .header_sp_menuarea .nav-link.nav-btn .tel-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.header .header_sp_menuarea .nav-link.nav-btn .tel-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.header .header_sp_menuarea .nav-link.nav-btn .tel-btn-label {
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.header .header_sp_menuarea .nav-link.nav-btn .tel-btn-number {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.header .header_sp_menuarea .sp-contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.header .header_sp_menuarea .sp-contact-buttons .sp-contact-img-btn {
  display: block;
  width: 100%;
  max-width: 180px;
}
.header .header_sp_menuarea .sp-contact-buttons .sp-contact-img-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.header .header_sp_menuarea .header-reserve-btns {
  display: flex;
  flex-direction: row;
  gap: 1px;
  margin: 8px 16px;
  border-radius: 8px;
  overflow: hidden;
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  flex: 1;
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn:first-child {
  background-color: #85C578;
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn:first-child:hover {
  filter: brightness(0.92);
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn:last-child {
  background-color: #CA9085;
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn:last-child:hover {
  filter: brightness(0.92);
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn .reserve-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.header .header_sp_menuarea .header-reserve-btns .header-reserve-btn .reserve-btn-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .header .header_sp_menuarea {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    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-link {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: clamp(12px, 1.8vw, 32px);
    height: 100%;
    border: none;
    border-radius: 0;
    font-family: var(--sans);
    font-size: clamp(12px, 1vw, 16px);
    line-height: 2.2;
    letter-spacing: 0em;
    color: #fff;
  }
  .header .header_sp_menuarea .nav-link:nth-last-child(2) {
    margin-right: clamp(20px, 2.5vw, 46px);
  }
  .header .header_sp_menuarea .nav-link:hover {
    background-color: transparent;
    color: #fff;
    opacity: 0.8;
  }
  .header .header_sp_menuarea .nav-link.nav-btn {
    background-color: #ffc62b;
    color: #fff;
    padding: 16px clamp(12px, 1.5vw, 24px);
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    border-radius: 0;
    margin: 0;
  }
  .header .header_sp_menuarea .nav-link.nav-btn:hover {
    background-color: #e6af20;
  }
  .header .header_sp_menuarea .nav-link.nav-btn .tel-icon {
    width: clamp(24px, 2.5vw, 37.37px);
    height: clamp(24px, 2.5vw, 37.37px);
    filter: none;
  }
  .header .header_sp_menuarea .nav-link.nav-btn .tel-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .header .header_sp_menuarea .nav-link.nav-btn .tel-btn-label {
    font-size: clamp(13px, 1vw, 18px);
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .header .header_sp_menuarea .nav-link.nav-btn .tel-btn-number {
    font-size: clamp(16px, 1.3vw, 24px);
    line-height: 1.1;
  }
  .header .header_sp_menuarea .sp-contact-buttons {
    display: none;
  }
  .header .header_sp_menuarea .header-reserve-btns {
    align-self: stretch;
    margin: 0;
    margin-left: clamp(20px, 2.5vw, 46px);
    border-radius: 0;
    gap: 0;
  }
  .header .header_sp_menuarea .header-reserve-btns .header-reserve-btn {
    padding: 0 clamp(12px, 1.5vw, 24px);
    border-radius: 0;
    gap: clamp(6px, 0.8vw, 10px);
  }
  .header .header_sp_menuarea .header-reserve-btns .header-reserve-btn .reserve-icon {
    width: clamp(22px, 2.2vw, 32px);
    height: clamp(22px, 2.2vw, 32px);
  }
  .header .header_sp_menuarea .header-reserve-btns .header-reserve-btn .reserve-btn-label {
    font-size: clamp(12px, 1vw, 16px);
  }
}

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

.main-visual {
  width: 100%;
  aspect-ratio: 375/667;
  max-height: 750px;
  position: relative;
  overflow: hidden;
  background-color: #FEF9F5;
}
.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-pc {
  display: none;
}
.main-visual .mv-copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8vw;
  width: calc(100% - 8vw - 20px);
  max-width: 800px;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .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-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: 768px) {
  .main-visual .mv-main-copy,
  .main-visual .blur_text {
    white-space: nowrap;
  }
}
.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(16px, 12.55px + 0.92vw, 22px);
  word-break: break-all;
}
@media (min-width: 768px) {
  .main-visual .mv-sub-copy {
    word-break: normal;
    white-space: nowrap;
  }
}
@media (min-width: 1024px) {
  .main-visual {
    aspect-ratio: 16/9;
    height: auto;
    max-height: none;
  }
  .main-visual .mv-sp {
    display: none;
  }
  .main-visual .mv-pc {
    display: block;
  }
  .main-visual .mv-copy {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: clamp(60px, 8vw, 140px);
    right: clamp(20px, -71.4px + 8.93vw, 100px);
    width: auto;
    max-width: 92vw;
    padding: 0;
    gap: 30px;
    text-align: left;
  }
  .main-visual .mv-main-copy {
    font-size: clamp(36px, 4vw, 50px);
    letter-spacing: 0.06em;
    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 {
  margin-top: 0;
  background-color: var(--bg-news);
  padding: clamp(80px, 65.4px + 3.88vw, 140px) 20px 0;
  width: 100%;
}
.news-section .news-inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .news-section .news-inner {
    width: 78vw;
  }
}
.news-section .news-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@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: 300px;
  padding: 14px 20px;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", 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);
}
.news-section .news-header .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.news-section .news-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: clamp(17px, 0.85vw + 13.8px, 26px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: linear-gradient(to right, #C8AD70, #D8AE4F);
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .news-section .news-en-title {
    margin-bottom: 8px;
  }
}
.news-section .news-ja-title {
  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;
  color: #333333;
}
.news-section .webgene-blog {
  width: 100%;
  margin-top: 0;
}
.news-section .webgene-blog .webgene-item {
  background-color: #ffffff;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: block;
}
.news-section .webgene-blog .webgene-item + .webgene-item {
  margin-top: 10px;
}
.news-section .webgene-blog .news_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .news-section .webgene-blog .news_inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 50px;
  }
}
.news-section .webgene-blog .news-item {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
}
.news-section .webgene-blog .news-item:hover {
  color: #C8AD70;
}
.news-section .webgene-blog .col-12:first-child div, .news-section .webgene-blog .col-12:first-child p {
  font-family: var(--sans);
  font-size: 16px;
  color: #333333;
  font-weight: 500;
  white-space: nowrap;
}
.news-section .webgene-blog .col-12 a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
}
.news-section .webgene-blog .col-12 a:hover {
  color: #ffc62b;
}
.news-section .webgene-blog .col-12 a div,
.news-section .webgene-blog .col-12 a p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 769px) {
  .news-section .webgene-blog .col-12 {
    width: auto;
    flex: 0 0 auto;
  }
}
.news-section .webgene-blog .news-category {
  display: inline-block;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 4px;
}

.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;
}

@media (min-width: 1024px) {
  .news-section {
    padding: clamp(80px, 65.4px + 3.88vw, 140px) 16px 0;
  }
  .reason-section {
    padding: clamp(80px, 65.4px + 3.88vw, 140px) 16px;
  }
  .concept-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;
  }
}
.reason-section {
  background-color: var(--bg-news);
  background-image: url("/system_panel/uploads/images/concept_bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: clamp(80px, 65.4px + 3.88vw, 140px) 20px;
  width: 100%;
  color: #ffffff;
  --badge-width: clamp(50px, calc(40.3px + 2.59vw), 90px);
  --badge-half: calc(var(--badge-width) / 2);
}
.reason-section .reason-inner {
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .reason-section .reason-inner {
    width: 78vw;
  }
}
.reason-section .reason-header {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .reason-section .reason-header {
    margin-bottom: 80px;
  }
}
.reason-section .reason-header .reason-checklist {
  margin: 32px 0 0;
  background-color: #ffffff;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.reason-section .reason-header .reason-checklist .reason-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reason-section .reason-header .reason-checklist .reason-check-item p {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(12px, 10px + 0.5vw, 20px);
  color: #333333;
  margin: 0;
}
.reason-section .reason-header .reason-checklist .reason-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (min-width: 415px) {
  .reason-section .reason-header .reason-checklist {
    gap: 14px 16px;
  }
}
@media (min-width: 769px) {
  .reason-section .reason-header .reason-checklist {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
  }
}
.reason-section .reason-header .reason-intro-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;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 769px) {
  .reason-section .reason-header .reason-intro-text {
    text-align: center;
  }
}
.reason-section .reason-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FF6565;
  color: #ffffff;
  font-weight: inherit;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .reason-section .reason-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.reason-section .reason-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: 400 !important;
  text-align: center;
}
.reason-section .reason-ja-title div,
.reason-section .reason-ja-title p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .reason-section .reason-ja-title {
    font-size: clamp(30px, 2.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.reason-section .reason-menu-slider {
  width: 100%;
  margin-top: 0;
}
.reason-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;
}
.reason-section .reason-menu-slider .splide__list::-webkit-scrollbar {
  display: none;
}
.reason-section .reason-menu-slider .reason-menu-gallery-item {
  flex: 0 0 280px !important;
  width: 280px !important;
}
.reason-section .reason-menu-slider .reason-menu-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.reason-section .reason-menu-slider.is-initialized .splide__list {
  overflow-x: visible;
  gap: 0;
}
@media (min-width: 1024px) {
  .reason-section .reason-menu-slider {
    visibility: visible !important;
  }
  .reason-section .reason-menu-slider .splide__track {
    overflow: visible !important;
  }
  .reason-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;
  }
  .reason-section .reason-menu-slider .reason-menu-gallery-item {
    display: block !important;
    flex: 1 !important;
    width: auto !important;
  }
  .reason-section .reason-menu-slider .splide__slide.is-clone {
    display: none !important;
  }
}

.sp-only {
  display: inline;
}
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.sp-br {
  display: none !important;
}
@media (min-width: 600px) and (max-width: 768px) {
  .sp-br {
    display: block !important;
  }
}

.mobile-br {
  display: block !important;
}
@media (min-width: 600px) {
  .mobile-br {
    display: none !important;
  }
}

.tablet-br {
  display: none !important;
}
@media (min-width: 768px) {
  .tablet-br {
    display: inline !important;
  }
}

.font-mincho-accent {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 25px;
  line-height: 1.4;
}

.font-orange-accent {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FF6565;
}

.font-title-mincho {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
}

.follow_button {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  flex-direction: row;
  z-index: 150;
  width: 100%;
}
@media (min-width: 1024px) {
  .follow_button {
    display: flex;
    bottom: auto;
    left: auto;
    width: auto;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
}
.follow_button a {
  display: flex;
  width: 25%;
  height: 52px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}
.follow_button a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.follow_button a.button_line {
  background-color: #11c85a;
  position: relative;
}
.follow_button a.button_line:hover {
  background-color: #0fae4e;
}
.follow_button a.button_line .line_badge {
  display: none;
}
@media (min-width: 1024px) {
  .follow_button a.button_line .line_badge {
    display: flex;
    position: absolute;
    top: 0px;
    left: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #11c85a;
    color: #11c85a;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: border-color 0.3s, color 0.3s;
  }
}
.follow_button a.button_line:hover .line_badge {
  border-color: #0fae4e;
  color: #0fae4e;
}
.follow_button a.button_mail {
  background-color: #ffa17a;
}
.follow_button a.button_mail:hover {
  background-color: #e6916e;
}
.follow_button a.button_tel {
  background-color: #f67967;
  position: relative;
}
.follow_button a.button_tel:hover {
  background-color: #dd6d5d;
}
.follow_button a.button_tel .calendar_badge {
  color: #f67967;
}
.follow_button a.button_tel:hover .calendar_badge {
  color: #dd6d5d;
}
.follow_button a.button_ig {
  background-color: #338e7c;
  position: relative;
}
.follow_button a.button_ig:hover {
  background-color: #277465;
}
.follow_button a.button_ig .calendar_badge {
  color: #338e7c;
}
.follow_button a.button_ig:hover .calendar_badge {
  color: #277465;
}
.follow_button a .calendar_badge {
  display: none;
}
@media (min-width: 1024px) {
  .follow_button a .calendar_badge {
    display: flex;
    position: absolute;
    top: 0px;
    left: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid currentColor;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: color 0.3s, border-color 0.3s;
  }
}
.follow_button a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.follow_button a .icon img {
  width: 29px;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .follow_button a .icon img {
    width: 30px;
  }
}
.follow_button a .ttl {
  display: none;
}
@media (min-width: 1024px) {
  .follow_button a {
    width: 94px;
    height: 80px;
    border-radius: 40px 0 0 40px;
    justify-content: flex-start;
    align-items: center;
    padding-left: 32px;
    padding-right: 0;
    position: relative;
    right: 0;
    transition: background-color 0.3s, width 0.3s ease, padding-left 0.3s ease, transform 0.3s;
  }
  .follow_button a:hover {
    width: 220px;
    padding-left: 22px;
  }
  .follow_button a .ttl {
    display: block;
    margin-left: 0;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transform: translateX(10px);
    transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease;
  }
  .follow_button a .ttl p {
    font-weight: inherit;
    color: inherit;
  }
  .follow_button a:hover .ttl {
    opacity: 1;
    max-width: 140px;
    margin-left: 12px;
    transform: translateX(0);
  }
}

.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);
}

.concept-col3-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 3vw, 56px);
}
.concept-col3-btn-wrap .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.concept-col3-btn-wrap .more-btn:hover {
  filter: brightness(0.92);
}
.concept-col3-btn-wrap .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.concept-col3-btn-wrap .more-btn {
  justify-content: center;
}

.concept-col3-item img {
  width: 100%;
  height: auto;
  display: block;
}
.concept-col3-item .concept-col3-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 500;
  margin: 16px 0 8px;
  color: #CA9085;
  background-color: #ffffff;
  display: inline;
  padding: 4px 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 2;
}
.concept-col3-item .concept-col3-desc {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 500;
  color: #555555;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: clamp(12px, 1.5vw, 20px) 0 0 0;
}

.concept-section {
  background-color: var(--bg-news);
  background-image: url("/system_panel/uploads/images/concept-deco01.png"), url("/system_panel/uploads/images/concept-deco02.png"), url("/system_panel/uploads/images/concept-deco03.png");
  background-size: clamp(60px, 9vw, 110px), clamp(60px, 9vw, 110px), clamp(60px, 9vw, 110px);
  background-position: left 0 top 20%, right 0 top 50%, left 0 top 80%;
  background-repeat: no-repeat, no-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%;
  position: relative;
}
@media (min-width: 1024px) {
  .concept-section {
    background-size: clamp(90px, 6vw, 140px), clamp(90px, 6vw, 140px), clamp(90px, 6vw, 140px), cover;
    background-position: left 0 top 20%, right 0 top 50%, left 0 top 80%, center top;
  }
}
.concept-section .concept-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 769px) {
  .concept-section .concept-inner {
    width: 92vw;
  }
}
.concept-section .concept-header {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.concept-section .concept-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: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: inherit;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .concept-section .concept-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.concept-section .concept-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #333333;
  font-weight: 400 !important;
  text-align: center;
}
.concept-section .concept-ja-title div,
.concept-section .concept-ja-title p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .concept-section .concept-ja-title {
    font-size: clamp(30px, 2.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.concept-section .concept-list {
  margin-top: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.concept-section .concept-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.concept-section .concept-item .concept-item-img-wrap {
  width: 100%;
  overflow: hidden;
}
.concept-section .concept-item .concept-item-img-wrap .concept-item-img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-section .concept-item .concept-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.concept-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) {
  .concept-section .concept-item .concept-item-number {
    font-size: clamp(20px, 1.36vw, 26px);
  }
}
.concept-section .concept-item .concept-item-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: 400 !important;
  text-align: left;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .concept-section .concept-item .concept-item-title {
    font-size: clamp(30px, 3.65vw, 56px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.concept-section .concept-item .concept-item-title br {
  display: block;
}
.concept-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;
}
.concept-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;
}
.concept-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;
}
.concept-section .concept-item .concept-item-desc br {
  display: block;
}
@media (min-width: 768px) {
  .concept-section .concept-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 6vw;
    margin-bottom: 60px;
  }
  .concept-section .concept-item:last-child {
    margin-bottom: 0;
  }
  .concept-section .concept-item.concept-item--reverse {
    flex-direction: row-reverse;
  }
  .concept-section .concept-item .concept-item-img-wrap {
    flex: 1;
    max-width: 50%;
  }
  .concept-section .concept-item .concept-item-content {
    flex: 1;
    max-width: 50%;
  }
}
.concept-section .concept-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 60px);
}
.concept-section .concept-btn-wrap .concept-more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: #C8AD70;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.concept-section .concept-btn-wrap .concept-more-btn:hover {
  filter: brightness(0.92);
}
.concept-section .concept-btn-wrap .concept-more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.concept-section .concept-btn-wrap .concept-more-btn {
  margin-top: 0;
}

/* 色は各セクションの背景に合わせて継承させるため指定しない */
.news-ja-title,
.reason-ja-title,
.concept-ja-title,
.voice-intro-ja-title,
.about-ja-title,
.contact-ja-title,
.access-ja-title,
.staff-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  font-weight: 400 !important;
  text-align: center;
}

.voice-intro-section {
  background-image: url("/system_panel/uploads/images/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--menu {
  background-image: none;
  background: #271a11ed;
}
.voice-intro-section .voice-intro-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .voice-intro-section .voice-intro-inner {
    width: 78vw;
  }
}
.voice-intro-section .voice-intro-header {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.voice-intro-section .voice-intro-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FF6565;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 4px;
}
.voice-intro-section.voice-intro-section--menu .voice-intro-en-title {
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
@media (min-width: 1024px) {
  .voice-intro-section .voice-intro-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.voice-intro-section .voice-intro-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff !important;
  font-weight: 400 !important;
  text-align: center;
}

@media (min-width: 769px) {
  .voice-intro-section .voice-intro-ja-title br {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .voice-intro-section .voice-intro-ja-title {
    font-size: clamp(30px, 2.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.voice-intro-section .voice-intro-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 !important;
  text-align: left;
}
@media (min-width: 768px) {
  .voice-intro-section .voice-intro-text {
    text-align: center;
  }
}
.voice-intro-section .voice-intro-text {
  letter-spacing: 0.04em;
  padding: clamp(20px, 15.1px + 1.29vw, 40px) 0;
}
.voice-intro-section .voice-intro-text .pc-only {
  display: none;
}
@media (min-width: 769px) {
  .voice-intro-section .voice-intro-text .pc-only {
    display: inline;
  }
}
.voice-intro-section .voice-intro-btn-wrap {
  margin-top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .voice-intro-section .voice-intro-btn-wrap {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-more-btn:hover {
  filter: brightness(0.92);
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-more-btn {
  margin: 0;
  position: relative;
  justify-content: center !important;
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: #C8AD70;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-menu-btn:hover {
  filter: brightness(0.92);
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-menu-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.voice-intro-section .voice-intro-btn-wrap .voice-intro-menu-btn {
  margin: 0;
  position: relative;
  justify-content: center !important;
}
.voice-intro-section .voice-intro-btn-wrap .btn-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.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 .voice-intro-en-title {
  text-align: center;
  margin-bottom: 4px;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text .voice-intro-en-title {
    text-align: left;
    margin-bottom: 8px;
  }
}
.voice-intro-section .inner_split_text .voice-intro-ja-title {
  text-align: center;
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text .voice-intro-ja-title {
    text-align: left;
  }
}
.voice-intro-section .inner_split_text .voice-intro-text {
  padding: 0 0 24px 0;
  text-align: left;
}
.voice-intro-section .inner_split_text .concept-col3-btn-wrap {
  justify-content: center;
  margin-top: 0;
}
@media (min-width: 769px) {
  .voice-intro-section .inner_split_text .concept-col3-btn-wrap {
    justify-content: flex-start;
  }
}
.voice-intro-section .inner_split_gap {
  margin-top: clamp(40px, 5vw, 80px);
}

.section-intro-text {
  color: #333333;
  line-height: 2;
  letter-spacing: 0.04em;
  font-size: clamp(14px, 12.5px + 0.39vw, 20px);
  padding: 0 0 clamp(20px, 15.1px + 1.29vw, 40px);
}
.section-intro-text div,
.section-intro-text p {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}

.staff-intro-text.section-intro-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;
}

.section-split-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .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: 768px) {
  .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;
}

.section-split-content {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .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 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .staff-section .staff-inner {
    width: 92vw;
    flex-direction: row;
    align-items: center;
  }
}
.staff-section .staff-img-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .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: 768px) {
  .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-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: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  text-align: left;
}
@media (min-width: 1024px) {
  .staff-section .staff-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.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;
}
.staff-section .staff-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #333333;
  font-weight: 400 !important;
  text-align: left;
}
.staff-section .staff-ja-title div,
.staff-section .staff-ja-title p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: left;
}
@media (min-width: 1024px) {
  .staff-section .staff-ja-title {
    font-size: clamp(30px, 3.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.staff-section .staff-intro-text {
  text-align: left;
}
.staff-section .staff-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.staff-section .staff-btn-wrap .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: #C8AD70;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.staff-section .staff-btn-wrap .more-btn:hover {
  filter: brightness(0.92);
}
.staff-section .staff-btn-wrap .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.staff-section .staff-btn-wrap .more-btn {
  margin: 0;
}
.staff-section .staff-btn-wrap .main_button p {
  margin: 0;
  background: #C8AD70;
  border-color: #C8AD70;
}
.staff-section .staff-btn-wrap .main_button p:hover {
  background: rgb(188.6666666667, 156.103030303, 82.5333333333);
  border-color: rgb(188.6666666667, 156.103030303, 82.5333333333);
}

.about-section {
  background-color: var(--bg-news);
  padding-top: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.about-section .about-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #CA9085;
  padding: 40px 20px;
}
@media (min-width: 769px) {
  .about-section .about-inner {
    width: 78vw;
    padding: 80px;
  }
}
.about-section .about-inner {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.about-section .about-header {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-section .about-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: clamp(17px, 0.85vw + 13.8px, 26px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .about-section .about-en-title {
    margin-bottom: 8px;
  }
}
.about-section .about-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: 400 !important;
  text-align: center;
}
.about-section .about-ja-title br {
  display: none;
}
@media (min-width: 769px) {
  .about-section .about-ja-title br {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .about-section .about-ja-title {
    font-size: clamp(30px, 2.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.about-section .about-intro-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;
  letter-spacing: 0.04em;
  margin: 0;
  padding: clamp(20px, 15.1px + 1.29vw, 40px) 0;
  text-align: left;
}
@media (min-width: 768px) {
  .about-section .about-intro-text {
    text-align: center;
  }
}
.about-section .about-intro-text .pc-only {
  display: none;
}
@media (min-width: 769px) {
  .about-section .about-intro-text .pc-only {
    display: inline;
  }
}
.about-section .about-intro-text br {
  display: none;
}
@media (min-width: 768px) {
  .about-section .about-intro-text br {
    display: inline;
  }
}
.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-btn-wrap {
  margin-top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.about-section .about-btn-wrap .main_button {
  margin: 0 auto;
}
.about-section .about-btn-wrap .main_button p {
  margin: 0 auto;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  border-color: linear-gradient(to right, #C8AD70, #D8AE4F);
}
.about-section .about-btn-wrap .main_button p:hover {
  filter: brightness(0.92);
}
.about-section .about-btn-wrap .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: #ffffff;
  color: #CA9085;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.about-section .about-btn-wrap .more-btn:hover {
  filter: brightness(0.92);
}
.about-section .about-btn-wrap .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.about-section .about-btn-wrap .more-btn {
  margin: 0;
  justify-content: center;
}
.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-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .products-section .products-inner {
    width: 78vw;
  }
}
.products-section .products-header {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-section .products-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: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .products-section .products-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.products-section .products-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: 400 !important;
  text-align: center;
}
.products-section .products-ja-title br {
  display: none;
}
@media (min-width: 769px) {
  .products-section .products-ja-title br {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .products-section .products-ja-title {
    font-size: clamp(30px, 2.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.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: 768px) {
  .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: 768px) {
  .products-section .products-text br {
    display: inline;
  }
}
.products-section .products-slider-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: clamp(40px, 5vw, 80px);
  margin-bottom: 0;
  overflow: hidden;
}
.products-section .products-slider-wrap .products-slider {
  width: 100%;
}
.products-section .products-slider-wrap .products-slider .splide__slide {
  width: 180px;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .products-section .products-slider-wrap .products-slider .splide__slide {
    width: 240px;
    margin-right: 18px;
  }
}
.products-section .products-slider-wrap .products-slider .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.products-section .products-btn-wrap {
  margin-top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.products-section .products-btn-wrap .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.products-section .products-btn-wrap .more-btn:hover {
  filter: brightness(0.92);
}
.products-section .products-btn-wrap .more-btn .more-btn-arrow {
  font-size: 18px;
  opacity: 0.85;
  line-height: 1;
}
.products-section .products-btn-wrap .more-btn {
  margin: 0;
  justify-content: center;
}

.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: var(--bg-news);
}
.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%;
}
@media (min-width: 1024px) {
  .access-section .news-inner,
  .access-section .reason-inner,
  .access-section .concept-inner,
  .access-section .voice-intro-inner,
  .access-section .about-inner,
  .access-section .about-deco-wrap,
  .access-section .staff-inner {
    width: 92vw;
    max-width: 1240px;
  }
}
.access-section .access-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .access-section .access-map-wrap iframe {
    min-height: 0;
  }
}
.access-section .access-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: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  text-align: left;
}
@media (min-width: 1024px) {
  .access-section .access-en-title {
    font-size: clamp(18px, 1.15vw, 22px);
    margin-bottom: 8px;
  }
}
.access-section .access-header-flex {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(20px, 2.5vw, 40px);
}
.access-section .access-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  font-weight: 400 !important;
  text-align: left;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .access-section .access-ja-title {
    font-size: clamp(28px, 3vw, 56px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.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 rgba(200, 173, 112, 0.25);
  font-weight: 500;
  align-items: stretch;
  text-align: left;
  font-size: clamp(14px, 13.5px + 0.13vw, 16px);
}
.access-section .access-row:first-child {
  border-top: 1px solid rgba(200, 173, 112, 0.25);
}
@media (min-width: 769px) {
  .access-section .access-row {
    flex-direction: row;
  }
}
.access-section .access-head {
  width: 100%;
  background: rgba(200, 173, 112, 0.07);
  color: #C8AD70 !important;
  font-weight: bold;
  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: clamp(16px, 14.1px + 0.52vw, 24px) 20px;
  }
}
.access-section .access-body {
  flex-grow: 1;
  color: #333333 !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: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.access-section .access-body a.access-tel-link:hover {
  color: var(--accent);
}
.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);
}
.access-section .access-btn-wrap .more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 14px 20px;
  background: linear-gradient(to right, #C8AD70, #D8AE4F);
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", 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);
}
.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;
}
.access-section .access-btn-wrap .main_button p {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .access-section .access-btn-wrap .main_button p {
    margin: 0;
  }
}
.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-inner {
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-section .contact-inner {
    width: 74vw;
    max-width: 1500px;
  }
}
.contact-section .contact-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: linear-gradient(to right, #C8AD70, #D8AE4F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-section .contact-en-title {
    font-size: clamp(18px, 1.15vw, 22px);
    margin-bottom: 8px;
  }
}
.contact-section .contact-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: clamp(26px, 18px + 2vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff !important;
  font-weight: 400 !important;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-section .contact-ja-title {
    font-size: clamp(30px, 3.65vw, 48px);
    line-height: 1.4;
    letter-spacing: 0.04em;
  }
}
.contact-section .contact-intro-text {
  color: #ffffff !important;
  text-align: center;
  padding-bottom: 0;
  font-size: clamp(13px, 12.5px + 0.13vw, 15px) !important;
}
.contact-section .contact-intro-text div,
.contact-section .contact-intro-text p {
  color: #ffffff !important;
  font-size: inherit !important;
}
.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: 768px) {
  .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;
}
.main_footer .footer_deco {
  width: 100%;
  line-height: 0;
}
.main_footer .footer_deco img {
  width: 100%;
  height: auto;
  display: block;
}
.main_footer .footer_menu_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
}
@media (min-width: 769px) {
  .main_footer .footer_menu_area {
    padding: 24px 20px;
  }
}
.main_footer .footer_menu_area .footer_menu_list {
  display: flex;
  flex-direction: column;
  row-gap: 0;
  width: 100%;
}
.main_footer .footer_menu_area .footer_menu_list .footer_menu_break {
  display: none;
}
.main_footer .footer_menu_area .footer_menu_list a {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .main_footer .footer_menu_area .footer_menu_list {
    flex-direction: row;
    -moz-column-gap: 25px;
         column-gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    row-gap: 15px;
  }
  .main_footer .footer_menu_area .footer_menu_list a {
    padding: 0;
  }
  .main_footer .footer_menu_area .footer_menu_list .footer_menu_break {
    display: block;
    width: 100%;
    height: 0;
    order: 1;
  }
  .main_footer .footer_menu_area .footer_menu_list a:nth-child(n+6) {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .main_footer .footer_menu_area .footer_menu_list .footer_menu_break {
    display: none;
  }
}
.main_footer .footer_menu_area .footer_menu_list a {
  text-align: center;
  font-weight: 500;
  color: #463d38;
  text-decoration: none;
  font-size: clamp(14px, 1vw, 15px);
  transition: opacity 0.2s;
}
.main_footer .footer_menu_area .footer_menu_list a:hover {
  opacity: 0.6;
}
.main_footer .footer_menu_area .footer_menu_list a p {
  font-weight: inherit;
  color: inherit;
}
.main_footer .footer_copy {
  text-align: center;
  padding: 10px 20px;
  background-color: #333333;
  font-size: 11px;
  color: #ffffff;
}
.main_footer .footer_copy p {
  font-size: inherit;
  color: inherit;
}/*# sourceMappingURL=main.css.map */