@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: Noto Sans JP, system-ui, Segoe UI, Roboto, sans-serif;
  --heading: 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: 1024px) {
  .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: 1126px;
  margin: 0 auto;
  height: 64px;
}
@media (min-width: 1024px) {
  .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(171px, 142.7px + 7.55vw, 220px);
  height: auto;
}
@media (min-width: 1024px) {
  .header .logo .logo-img {
    width: clamp(180px, 18vw, 340px);
  }
}
.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: 1024px) {
  .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;
}
.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: #338E7C;
  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: #287566;
}
.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;
}
@media (min-width: 1024px) {
  .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: #338E7C;
    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: #287566;
  }
  .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;
  }
}

@media (max-width: 1023px) {
  .header_sp_menuarea .nav-link[title=お問い合わせ] {
    display: none;
  }
}
body.page-home .header_sp_menuarea .nav-link[title=お問い合わせ] {
  display: none;
}

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

.main-visual {
  width: 100%;
  aspect-ratio: 375/667;
  max-height: 750px;
  position: relative;
  overflow: hidden;
}
.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;
  bottom: clamp(80px, 65.4px + 3.88vw, 140px);
  left: 20px;
  width: calc(100% - 40px);
  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: 769px) {
  .main-visual .mv-copy {
    max-width: none;
  }
}
.main-visual .mv-sub-copy {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 25px;
  line-height: 1.4;
  font-size: clamp(25px, 14px + 2.93vw, 44px);
  font-weight: 500 !important;
  letter-spacing: 0.06em;
}
@media (min-width: 769px) {
  .main-visual .mv-sub-copy {
    white-space: nowrap;
  }
}
.main-visual .mv-main-copy {
  font-family: var(--sans);
  font-weight: bold !important;
  font-size: clamp(16px, 12.55px + 0.92vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) {
  .main-visual .mv-main-copy {
    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 {
    bottom: clamp(80px, 65.4px + 3.88vw, 140px);
    left: clamp(20px, -71.4px + 8.93vw, 100px);
    right: clamp(20px, -71.4px + 8.93vw, 100px);
    transform: none;
    width: auto;
    max-width: none;
    padding: 0;
    gap: 30px;
    text-align: left;
  }
  .main-visual .mv-sub-copy {
    font-size: clamp(44px, 4vw, 70px);
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .main-visual .mv-main-copy {
    font-size: clamp(22px, 2vw, 32px);
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #9ca3af;
    --text-h: #f3f4f6;
    --bg: #16171d;
    --bg-news: #1e1f26;
    --title-ja: var(--text-h);
    --border: #2e303a;
    --accent: #c084fc;
    --accent-hover: #a855f7;
    --accent-bg: rgba(192, 132, 252, 0.15);
    --accent-border: rgba(192, 132, 252, 0.5);
    --shadow: rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
  }
  body.is-fixed .header {
    background: rgba(22, 23, 29, 0.8);
  }
  .header .header_sp_menuarea {
    background: var(--bg);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.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: 1126px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .news-section .news-inner {
    width: 82vw;
  }
}
.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-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FFA17A;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .news-section .news-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.news-section .news-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #333333;
  font-weight: bold !important;
}
@media (min-width: 1024px) {
  .news-section .news-ja-title {
    font-size: clamp(30px, 3.65vw, 70px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.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: #338E7C;
}
.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: #338E7C;
}
.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;
  }
}

.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;
  }
  .menu-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;
  }
  .about-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);
  padding: clamp(80px, 65.4px + 3.88vw, 140px) 20px;
  width: 100%;
  --badge-width: clamp(50px, calc(40.3px + 2.59vw), 90px);
  --badge-half: calc(var(--badge-width) / 2);
}
.reason-section .reason-inner {
  max-width: 1420px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .reason-section .reason-inner {
    width: 82vw;
  }
}
.reason-section .reason-header {
  margin-bottom: calc(24px + var(--badge-half));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .reason-section .reason-header {
    margin-bottom: calc(80px + var(--badge-half));
  }
}
.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: #FFA17A;
  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: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #333333;
  font-weight: bold !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, 3.65vw, 70px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.reason-section .reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: calc(60px + var(--badge-half));
  width: 100%;
}
@media (min-width: 769px) {
  .reason-section .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: clamp(40px, 5vw, 80px);
         column-gap: clamp(40px, 5vw, 80px);
    row-gap: 0;
    align-items: start;
  }
}
.reason-section .reason-item {
  width: 100%;
  position: relative;
}
.reason-section .reason-item .reason-img-wrap {
  position: relative;
  width: 100%;
}
.reason-section .reason-item .reason-img-wrap .reason-num {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  z-index: 5;
  width: var(--badge-width);
}
.reason-section .reason-item .reason-img-wrap .reason-num img {
  width: 100%;
  height: auto;
  display: block;
}
.reason-section .reason-item .reason-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.reason-section .reason-item .reason-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  color: #338E7C;
  font-weight: bold !important;
  text-align: left;
  line-height: 1.4;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 15.6px + 0.65vw, 28px);
  padding: 16px 0;
}
@media (min-width: 769px) {
  .reason-section .reason-item .reason-title {
    padding: clamp(16px, 1.25vw, 24px) 0;
  }
}
.reason-section .reason-item .reason-title div, .reason-section .reason-item .reason-title p, .reason-section .reason-item .reason-title h2, .reason-section .reason-item .reason-title h3 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
.reason-section .reason-item .reason-desc {
  font-family: "Noto Sans JP", system-ui, "Segoe UI", Roboto, sans-serif;
  color: #333333;
  font-weight: 500 !important;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: clamp(14px, 12.5px + 0.39vw, 20px);
  margin-top: 0;
}
.reason-section .reason-item .reason-desc div, .reason-section .reason-item .reason-desc p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
}
@media (min-width: 769px) {
  .reason-section .reason-item:not(.reason-item-last) {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    align-content: start;
  }
  .reason-section .reason-item:not(.reason-item-last) .reason-text-wrap {
    display: contents;
  }
  .reason-section .reason-item:nth-child(3):not(.reason-item-last) .reason-img-wrap, .reason-section .reason-item:nth-child(4):not(.reason-item-last) .reason-img-wrap {
    margin-top: calc(60px + var(--badge-half));
  }
}
@media (min-width: 769px) {
  .reason-section .reason-item.reason-item-last {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: clamp(32px, 4vw, 64px);
    margin-top: calc(60px + var(--badge-half));
  }
  .reason-section .reason-item.reason-item-last .reason-img-wrap {
    flex: 0 0 calc(50% - clamp(16px, 2vw, 32px));
    width: calc(50% - clamp(16px, 2vw, 32px));
  }
  .reason-section .reason-item.reason-item-last .reason-text-wrap {
    flex: 1;
  }
  .reason-section .reason-item.reason-item-last .reason-title {
    padding: 0 0 20px;
  }
}
.reason-section .reason-btn-wrap {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 769px) {
  .reason-section .reason-btn-wrap {
    margin-top: 100px;
  }
}
.reason-section .reason-btn-wrap .main_button {
  margin: 0 auto;
}
.reason-section .reason-btn-wrap .main_button p {
  margin: 0 auto;
}

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

.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: #FFA17A;
}

.font-title-mincho {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  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);
  }
}

.menu-section {
  background-image: url("/system_panel/uploads/images/20260608134108117370.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: clamp(80px, 65.4px + 3.88vw, 140px);
  padding-bottom: clamp(40px, 32.2px + 2.07vw, 80px);
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  position: relative;
}
.menu-section .menu-inner {
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.menu-section .menu-header {
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-section .menu-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FFA17A;
  font-weight: inherit;
  color: #ffffff;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .menu-section .menu-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.menu-section .menu-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff;
  font-weight: bold !important;
  text-align: center;
}
.menu-section .menu-ja-title div, .menu-section .menu-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) {
  .menu-section .menu-ja-title {
    font-size: clamp(30px, 3.65vw, 70px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.menu-section .menu-intro-text {
  color: #ffffff;
  text-align: center;
  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;
}
.menu-section .menu-intro-text .pc-only {
  display: none;
}
@media (min-width: 769px) {
  .menu-section .menu-intro-text .pc-only {
    display: inline;
  }
}
.menu-section .menu-intro-text p {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.menu-section .menu-btn-wrap {
  margin-top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.menu-section .menu-btn-wrap .main_button {
  margin: 0 auto;
}
.menu-section .menu-btn-wrap .main_button p {
  margin: 0 auto;
}
.menu-section .menu-btn-wrap .main_button.white_btn p {
  background: #ffffff;
  color: #338E7C;
  border: 1px solid #338E7C;
}
.menu-section .menu-btn-wrap .main_button.white_btn p::after {
  background: #338E7C;
}
.menu-section .menu-btn-wrap .main_button.white_btn p:hover {
  background: #f5f5f5;
  color: #277465;
  border-color: #277465;
}
.menu-section .menu-btn-wrap .main_button.white_btn p:hover::after {
  background: #277465;
}
.menu-section .menu-slider-wrap {
  margin-top: clamp(40px, 32.2px + 2.07vw, 80px);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.menu-section .menu-slider-wrap .splide__slide {
  margin-right: 32px;
}
.menu-section .menu-slider-wrap .splide__slide img {
  width: clamp(300px, 192.7px + 28.6vw, 742px);
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-section {
  background-color: var(--bg-news);
  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%;
}
.about-section .about-inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px 20px;
}
@media (min-width: 769px) {
  .about-section .about-inner {
    width: 82vw;
    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: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FFA17A;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .about-section .about-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.about-section .about-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #333333;
  font-weight: bold !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, 3.65vw, 70px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.about-section .about-intro-text {
  color: #333333;
  text-align: left;
}
@media (min-width: 768px) {
  .about-section .about-intro-text {
    text-align: center;
  }
}
.about-section .about-intro-text {
  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;
}
.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-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;
}

.section-intro-text {
  color: #333333;
  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;
}

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

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

.voice-section {
  background-color: var(--bg-news);
  padding: 0 0 clamp(40px, 30.3px + 2.59vw, 80px) 0;
}
.voice-section .voice-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 769px) {
  .voice-section .voice-inner {
    flex-direction: row;
    align-items: center;
  }
}
.voice-section .voice-img-wrap {
  width: 100%;
}
@media (min-width: 769px) {
  .voice-section .voice-img-wrap {
    width: 50%;
    flex: 0 0 50%;
    padding-right: 60px;
  }
}
.voice-section .voice-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.voice-section .voice-content-wrap {
  width: 100%;
  text-align: left;
  padding: 40px 20px;
}
@media (min-width: 769px) {
  .voice-section .voice-content-wrap {
    width: 50%;
    flex: 0 0 50%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: clamp(120px, 10vw, 200px);
  }
}
.voice-section .voice-en-title {
  font-family: "Gowun Batang", Georgia, serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #FFA17A;
  margin-bottom: 4px;
  text-align: left;
}
@media (min-width: 1024px) {
  .voice-section .voice-en-title {
    font-size: clamp(20px, 1.36vw, 26px);
    margin-bottom: 8px;
  }
}
.voice-section .voice-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #333333;
  font-weight: bold !important;
  text-align: left;
}
.voice-section .voice-ja-title div, .voice-section .voice-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) {
  .voice-section .voice-ja-title {
    font-size: clamp(30px, 3.65vw, 70px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.voice-section .voice-intro-text {
  text-align: left;
}
.voice-section .voice-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.voice-section .voice-btn-wrap .main_button p {
  margin: 0;
}

.access-section {
  padding-top: clamp(60px, 5vw, 100px);
  padding-bottom: clamp(60px, 5vw, 100px);
  background-image: url("/system_panel/uploads/images/20260608134119272475.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.access-section .access-container {
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .access-section .access-container {
    width: 74vw;
    max-width: 1240px;
  }
}
.access-section .access-inner {
  width: 100%;
}
.access-section .access-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .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: 1024px) {
  .access-section .access-info-wrap {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
}
.access-section .access-map-wrap {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .access-section .access-map-wrap {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    height: auto;
    min-height: 480px;
    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: 1024px) {
  .access-section .access-map-wrap iframe {
    min-height: 480px;
  }
}
.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: #FFA17A;
  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-ja-title {
  font-family: "Shippori Mincho", "Noto Serif JP", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  font-weight: bold !important;
  text-align: left;
  margin-bottom: clamp(20px, 2.5vw, 40px);
}
@media (min-width: 1024px) {
  .access-section .access-ja-title {
    font-size: clamp(28px, 3vw, 56px);
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
.access-section .access-table {
  width: 100%;
}
.access-section .access-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  padding: clamp(16px, 14.1px + 0.52vw, 24px) 0;
  align-items: flex-start;
  text-align: left;
  font-size: clamp(14px, 13.5px + 0.13vw, 16px);
  gap: clamp(16px, 14.1px + 0.52vw, 24px);
}
@media (min-width: 415px) {
  .access-section .access-row {
    flex-direction: row;
    gap: 0;
  }
}
.access-section .access-head {
  width: clamp(110px, 95px + 1.5vw, 140px);
  color: #333333 !important;
  flex-shrink: 0;
  font-family: var(--sans);
}
.access-section .access-body {
  flex-grow: 1;
  color: #333333 !important;
  font-family: var(--sans);
  line-height: 1.5;
}
.access-section .access-body p {
  margin: 0;
}
.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-btn-wrap {
  margin-top: clamp(20px, 17.1px + 0.78vw, 32px);
}
.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: 1420px;
  }
}
.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: #FFA17A;
  color: #ffffff !important;
  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: 30px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--title-ja);
  color: #ffffff !important;
  font-weight: bold !important;
  text-align: center;
}
@media (min-width: 1024px) {
  .contact-section .contact-ja-title {
    font-size: clamp(30px, 3.65vw, 70px);
    line-height: 1.6;
    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;
}

.main_footer {
  background-color: #ffffff;
}
.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;
  }
}
@media (min-width: 900px) {
  .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: #338E7C;
  font-size: 11px;
  color: #ffffff;
}
.main_footer .footer_copy p {
  font-size: inherit;
  color: inherit;
}/*# sourceMappingURL=main.css.map */