* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lp-page {
  scroll-padding-top: 7.5rem;
}
@media (max-width: 767.98px) {
  body.lp-page {
    scroll-padding-top: 6.25rem;
  }
}

body.lp-page section[id] {
  scroll-margin-top: 7.5rem;
}
@media (max-width: 767.98px) {
  body.lp-page section[id] {
    scroll-margin-top: 6.25rem;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 4.5vw;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #69503B;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin: 0 0 1em;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.wrapper {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: calc(1400px + 20px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.header__inner {
  width: 100%;
  max-width: calc(1400px + 20px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .header__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .header__nav-list {
    gap: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  .header__nav-list {
    gap: 0.75rem;
  }
  .header__nav-list li:not(:last-child) {
    display: none;
  }
}
.header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header__nav-link {
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
  }
}
.header__nav-link:hover {
  background-color: rgba(105, 80, 59, 0.1);
  opacity: 1;
}
.header__nav-link.btn {
  position: relative;
  z-index: 1101;
  background-color: #B8935E;
  color: #FFFFFF;
  padding: 0.625rem 1.25rem;
}
.header__nav-link.btn:hover {
  background-color: #69503B;
}
@media (min-width: 768px) {
  .header__nav-link.btn {
    padding: 0.75rem 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .header__nav-link.btn .label-alt {
    display: none;
  }
}
.header__burger {
  display: none;
  position: relative;
  z-index: 1101;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .header__burger {
    display: inline-flex;
  }
}
.header__burger:hover {
  background-color: rgba(105, 80, 59, 0.08);
}
.header__burger-line {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}
.header__burger-line:nth-child(1) {
  transform: translateY(-7px);
}
.header__burger-line:nth-child(2) {
  transform: translateY(0);
}
.header__burger-line:nth-child(3) {
  transform: translateY(7px);
}
.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: rotate(-45deg);
}
.header__mobile {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100dvh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header__mobile {
    display: none;
  }
}
.header__mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}
.header__mobile-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 5rem;
}
.header__mobile-list {
  width: 100vw;
  border-radius: 0;
  box-shadow: none;
}
.header__mobile-link {
  display: block;
  width: 100%;
  padding: 1.25rem 1.25rem;
  font-size: 1.125rem;
  color: #333333;
  border-bottom: 1px solid #E0E0E0;
}
.header__mobile-link:last-child {
  border-bottom: none;
}
.header__mobile-link:hover {
  background: #F8F9FA;
  opacity: 1;
}
.header__logo {
  position: relative;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.header__logo img {
  height: 30px;
  width: auto;
  display: block;
}
@media (max-width: 575.98px) {
  .header__logo img {
    width: 30vw;
    height: auto;
  }
}
.header__logo-text {
  display: block;
  font-size: 0.75rem;
  color: #666666;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .header__logo-text {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .header__logo-text {
    font-size: clamp(0.625rem, 2vw, 0.75rem);
  }
}

body.no-scroll {
  overflow: hidden;
}

.hero {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 3.125rem;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  aspect-ratio: 1536/1784;
  background-image: url("../images/hero-sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .hero {
    min-height: 600px;
    padding: 0;
    margin-bottom: 0;
    background-image: url("../images/hero.png");
    aspect-ratio: 1400/770;
  }
}
@media (min-width: 1200px) {
  .hero {
    min-height: 700px;
    padding: 0;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-inline: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  align-items: flex-start;
  margin-top: 120px;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: auto auto;
    gap: 1.25rem;
  }
}
.hero__content-box:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .hero__content-box:first-child {
    padding: 2.5rem 1.875rem;
  }
}
.hero__content-box:nth-child(2) {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .hero__content-box:nth-child(2) {
    padding: 2.5rem 1.875rem;
    justify-content: flex-end;
  }
}
.hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3125rem;
  line-height: 1.3;
}
.hero__title span {
  display: block;
  margin-bottom: 0.3125rem;
}
.hero__title span > span {
  display: inline-block;
  background-color: #69503B;
  padding: 0.375rem 1.25rem 0.625rem;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}
.hero__text {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.9375rem;
  line-height: 1.8;
}
@media (max-width: 991.98px) {
  .hero__text {
    font-size: clamp(0.8125rem, 1.8vw, 1rem);
  }
}
.hero__br-mobile {
  display: none;
}
@media (max-width: 575.98px) {
  .hero__br-mobile {
    display: inline;
  }
}
.hero__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}
.hero__subtitle span {
  display: block;
  margin-bottom: 0.3125rem;
}
.hero__subtitle span > span {
  display: inline-block;
  background-color: #69503B;
  padding: 0.375rem 1.25rem 0.625rem;
  border-radius: 4px;
}
.hero__subtitle span {
  display: block;
  margin-bottom: 0.125rem;
}
.hero__subtitle span > span {
  display: inline-block;
  background-color: #69503B;
  padding: 0.375rem 1.25rem 0.625rem;
  border-radius: 4px;
}
@media (max-width: 991.98px) {
  .hero__subtitle {
    font-size: clamp(1.625rem, 4vw, 2.5rem);
  }
}
.hero__image {
  display: none;
}
.hero__subtitle--mobile {
  display: none;
}
.hero__subtitle--desktop {
  display: block;
}
.hero__subtitle span > span, .hero__title span > span {
  white-space: nowrap;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero__inner {
    grid-template-columns: 1fr;
    margin-top: 6.25rem;
    gap: 1.5rem;
  }
  .hero__content-box:first-child, .hero__content-box:nth-child(2) {
    padding: 0;
  }
  .hero__content-box:first-child {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: min(22.5rem, 60vw);
  }
  .hero__content-box:nth-child(2) {
    justify-content: flex-start;
  }
  .hero__content-box:first-child .hero__title {
    order: 1;
  }
  .hero__content-box:first-child .hero__subtitle {
    order: 2;
  }
  .hero__content-box:first-child .hero__text {
    order: 3;
  }
  .hero__content-box:first-child .cta-button {
    order: 4;
    align-self: flex-start;
    font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
    padding: 0.75rem 1.375rem;
  }
  .hero__subtitle--mobile {
    display: block;
    order: 2;
    margin-bottom: 0.375rem;
    font-size: clamp(1.375rem, 5.2vw, 2rem);
  }
  .hero__subtitle--desktop {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero {
    min-height: auto;
    aspect-ratio: auto;
    padding: 6.875rem 0 3.75rem;
    overflow: visible;
  }
  .hero__inner {
    margin-top: 0;
    gap: 1.5rem;
  }
  .hero__title {
    font-size: clamp(1.75rem, 7vw, 2.125rem);
    line-height: 1.25;
  }
  .hero__text {
    font-size: clamp(0.875rem, 4vw, 1rem);
    margin-bottom: 1.25rem;
  }
  .hero__subtitle {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }
  .hero__content-box:first-child {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: min(20rem, 52vw);
  }
  .hero__content-box:first-child .hero__title {
    order: 1;
  }
  .hero__content-box:first-child .hero__subtitle {
    order: 2;
  }
  .hero__content-box:first-child .hero__text {
    order: 3;
  }
  .hero__content-box:first-child .cta-button {
    order: 4;
    align-self: flex-start;
    font-size: clamp(0.75rem, 3.6vw, 0.875rem);
    padding: 0.625rem 1.125rem;
  }
  .hero__subtitle--mobile {
    display: block;
    order: 2;
    margin-bottom: 0.25rem;
    font-size: clamp(1.125rem, 5.8vw, 1.75rem);
  }
  .hero__subtitle--desktop {
    display: none;
  }
}

.cta-button {
  display: inline-block;
  padding: 0.8125rem 2.5rem;
  width: fit-content;
  background: linear-gradient(to top, #BD8B0D 0%, rgb(227.1742574257, 167.0752475248, 15.6257425743) 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .cta-button {
    font-size: 1.5rem;
  }
}
.cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.cta-button.btn-design2 {
  background: #69503B;
}
.cta-button.btn-design2:hover {
  background: #4A3728;
}

.section-systems {
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.section-systems__inner {
  width: 100%;
  max-width: calc(980px + 20px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section-systems__title {
  margin-bottom: 3.125rem;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .section-systems__title {
    margin-bottom: 5rem;
  }
}
.section-systems__title-main {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #69503B;
}
@media (min-width: 768px) {
  .section-systems__title-main {
    font-size: 2rem;
  }
}

.systems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .systems-grid {
    gap: 6.25rem;
    margin-bottom: 3.75rem;
  }
}

.system-card {
  position: relative;
  background: #EEECEF;
  border-radius: 12px;
  transition: all 0.3s ease;
  max-width: 770px;
  width: 100%;
}
.system-card:nth-child(1) {
  margin-right: auto;
}
@media (min-width: 768px) {
  .system-card:nth-child(1) .system-card__image {
    right: -210px;
  }
}
@media (min-width: 768px) {
  .system-card:nth-child(1) .system-card__content {
    margin-right: 320px;
  }
}
@media (min-width: 768px) {
  .system-card:nth-child(1) {
    padding-left: 3.75rem;
  }
}
.system-card:nth-child(2) {
  margin-left: auto;
}
@media (min-width: 768px) {
  .system-card:nth-child(2) .system-card__image {
    left: -210px;
  }
}
@media (min-width: 768px) {
  .system-card:nth-child(2) .system-card__content {
    margin-left: 320px;
  }
}
@media (min-width: 768px) {
  .system-card:nth-child(2) {
    padding-right: 3.75rem;
  }
}
@media (max-width: 767.98px) {
  .system-card {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .system-card {
    min-height: 250px;
    padding: 1.875rem;
    padding-bottom: 3.125rem;
  }
}
.system-card__image {
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .system-card__image {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .system-card__image {
    position: absolute;
    top: -50px;
    max-width: 500px;
  }
}
.system-card__image img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .system-card__image img {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .system-card__content {
    padding: 1.5rem;
  }
}
.system-card__title {
  font-size: 1.375rem;
  color: #4A3728;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .system-card__title {
    font-size: 2rem;
  }
}
.system-card__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .system-card__text {
    font-size: 0.9375rem;
  }
}

.systems-feature {
  padding-inline: 1.875rem;
}
@media (max-width: 575.98px) {
  .systems-feature {
    padding-inline: 0;
  }
}
@media (min-width: 768px) {
  .systems-feature {
    padding-inline: 0;
  }
}
.systems-feature__title {
  font-size: 1.125rem;
  color: #69503B;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (max-width: 575.98px) {
  .systems-feature__title {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .systems-feature__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}
.systems-feature__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .systems-feature__text {
    font-size: 0.9375rem;
    padding-inline: 3.125rem;
  }
}
.systems-feature__text p {
  margin-bottom: 1em;
}

.section-options {
  background-color: #FFFFFF;
}
.section-options__inner {
  width: 100%;
  max-width: calc(980px + 20px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section-options__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #69503B;
  text-align: left;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-options__title {
    font-size: 2.25rem;
    margin-bottom: 3.125rem;
  }
}
.section-options__title .section-options__title-line {
  display: inline;
}
@media (max-width: 575.98px) {
  .section-options__title .section-options__title-line {
    display: block;
  }
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 576px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .options-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.option-card {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 12px;
  padding: 1.875rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}
.option-card:hover {
  border-color: #B8935E;
  box-shadow: 0 4px 20px rgba(184, 147, 94, 0.15);
  transform: translateY(-4px);
}
.option-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #B8935E 0%, #C9A961 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-card__icon i {
  font-size: 1.75rem;
  color: #FFFFFF;
}
.option-card__title {
  margin-bottom: 1rem;
}
.option-card__subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
}
.option-card__name {
  display: block;
  font-size: 1.125rem;
  color: #4A3728;
  font-weight: 700;
}
@media (min-width: 768px) {
  .option-card__name {
    font-size: 1.375rem;
  }
}
@media (min-width: 768px) {
  .option-card__name.eng {
    font-size: 1.5rem;
  }
}
.option-card__text {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #333333;
  text-align: left;
}
@media (min-width: 768px) {
  .option-card__text {
    font-size: 0.875rem;
  }
}

.options-cta {
  text-align: center;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .options-cta {
    margin-top: 3.125rem;
  }
}

.section-goukaku {
  padding: 60px 0;
  padding-bottom: 0;
  background: none;
  position: relative;
}
@media (min-width: 768px) {
  .section-goukaku {
    padding: 80px 0;
    padding-bottom: 0;
  }
}
.section-goukaku__inner {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  position: relative;
  z-index: 1;
}
.section-goukaku__titles {
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 3.125rem;
  width: 100%;
  max-width: 1400px;
  width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/sakura.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  aspect-ratio: 1400/396;
  padding: 1.25rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1400px) {
  .section-goukaku__titles {
    width: 100vw;
  }
}
@media (min-width: 1400px) {
  .section-goukaku__titles {
    padding-left: calc((100vw - 1400px) / 2 + 20px);
  }
}
@media (max-width: 575.98px) {
  .section-goukaku__titles {
    aspect-ratio: auto;
    background-size: cover;
    min-height: 9em;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .section-goukaku__titles {
    text-align: left;
    font-size: 2.25rem;
    margin-bottom: 3.75rem;
    padding: 1.875rem;
    padding-top: 10.3125rem;
    justify-content: flex-start;
    align-items: normal;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .section-goukaku__titles {
    padding-left: calc((100vw - 1400px) / 2 + 30px);
  }
}
.section-goukaku__titles .title-main {
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: block;
  max-width: 980px;
  width: 100%;
  margin-inline: auto;
}
.section-goukaku__notice {
  font-size: 0.8125rem;
  color: #999999;
  text-align: center;
  margin-top: -1.875rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .section-goukaku__notice {
    font-size: 0.875rem;
    margin-top: -2.5rem;
    margin-bottom: 1.875rem;
  }
}

.goukaku-carousel {
  position: relative;
  margin-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .goukaku-carousel {
    width: 700px;
    margin-inline: auto;
  }
}
.goukaku-carousel .slick-slide {
  padding: 3.125rem 1.875rem;
}
@media (min-width: 768px) {
  .goukaku-carousel .slick-slide {
    padding: 3.125rem;
  }
}
.goukaku-carousel .slick-prev,
.goukaku-carousel .slick-next {
  width: 50px;
  height: 50px;
  z-index: 10;
}
.goukaku-carousel .slick-prev:before,
.goukaku-carousel .slick-next:before {
  content: "";
  display: none;
}
.goukaku-carousel .slick-prev::after,
.goukaku-carousel .slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-top: 4px solid #BD8B0D;
  border-right: 4px solid #BD8B0D;
}
.goukaku-carousel .slick-prev:hover::after,
.goukaku-carousel .slick-next:hover::after {
  border-color: #BD8B0D;
}
@media (max-width: 767.98px) {
  .goukaku-carousel .slick-prev,
  .goukaku-carousel .slick-next {
    width: 40px;
    height: 40px;
  }
  .goukaku-carousel .slick-prev::after,
  .goukaku-carousel .slick-next::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
.goukaku-carousel .slick-prev {
  left: -60px;
}
.goukaku-carousel .slick-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}
@media (max-width: 767.98px) {
  .goukaku-carousel .slick-prev {
    left: 0px;
  }
}
.goukaku-carousel .slick-next {
  right: -60px;
}
.goukaku-carousel .slick-next::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 767.98px) {
  .goukaku-carousel .slick-next {
    right: 0px;
  }
}
.goukaku-carousel .slick-dots {
  bottom: -45px;
}
.goukaku-carousel .slick-dots li {
  margin: 0 5px;
}
.goukaku-carousel .slick-dots li button:before {
  font-size: 12px;
  color: #69503B;
  opacity: 0.5;
}
.goukaku-carousel .slick-dots li.slick-active button:before {
  color: #69503B;
  opacity: 1;
}

.goukaku-slide {
  background: #EEECEF;
  border-radius: 12px;
  padding: 1.875rem 1.25rem;
}
@media (min-width: 768px) {
  .goukaku-slide {
    padding: 2.5rem 1.875rem;
  }
}
.goukaku-slide__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
}
.goukaku-slide__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #69503B;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .goukaku-slide__title {
    font-size: 1.25rem;
  }
}
.goukaku-slide__school {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .goukaku-slide__school {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .goukaku-slide__school {
    font-size: 0.9375rem;
  }
}
.goukaku-slide__school .school-from {
  color: #BD8B0D;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .goukaku-slide__school .school-from {
    flex-basis: 100%;
  }
}
.goukaku-slide__school .arrow {
  color: #BD8B0D;
  font-weight: 700;
  flex-shrink: 0;
}
.goukaku-slide__school .goukaku-slide__br-mobile {
  display: none;
}
.goukaku-slide__school .school-to {
  font-weight: 600;
  color: #333333;
}
.goukaku-slide__body::after {
  content: "";
  display: block;
  clear: both;
}
.goukaku-slide__icon {
  float: left;
  width: 120px;
  height: 120px;
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .goukaku-slide__icon {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 768px) {
  .goukaku-slide__icon {
    width: 170px;
    height: 170px;
    margin-right: 1.875rem;
  }
}
.goukaku-slide__icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.goukaku-slide__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .goukaku-slide__text {
    font-size: 0.9375rem;
  }
}
.goukaku-slide__text p {
  margin-bottom: 1em;
}

.goukaku-soudan {
  padding-top: 3.75rem;
}
@media (min-width: 768px) {
  .goukaku-soudan {
    padding-top: 5rem;
  }
}
.goukaku-soudan__header {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .goukaku-soudan__header {
    margin-bottom: 3.125rem;
  }
}
.goukaku-soudan__label {
  display: inline-block;
  font-size: 1rem;
  color: #4D6D41;
  background: #a3e68b;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  position: relative;
}
.goukaku-soudan__label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #a3e68b transparent transparent;
}
@media (min-width: 768px) {
  .goukaku-soudan__label {
    font-size: 1.125rem;
  }
}
.goukaku-soudan__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4A3728;
}
@media (min-width: 768px) {
  .goukaku-soudan__title {
    font-size: 1.5rem;
  }
}
.goukaku-soudan__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .goukaku-soudan__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}
.goukaku-soudan__item {
  background: #EEECEF;
  border-radius: 12px;
  padding: 1.875rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.goukaku-soudan__item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .goukaku-soudan__item::before {
    font-size: 4rem;
  }
}
.goukaku-soudan__item.number-01::before {
  content: "1";
}
.goukaku-soudan__item.number-02::before {
  content: "2";
}
.goukaku-soudan__item.number-03::before {
  content: "3";
}
.goukaku-soudan__item.number-04::before {
  content: "4";
}
.goukaku-soudan__title-area {
  margin-left: 4em;
}
@media (max-width: 767.98px) {
  .goukaku-soudan__title-area {
    margin-left: 2.8em;
  }
}
.goukaku-soudan__item-subtitle {
  font-size: 0.8125rem;
  color: rgb(76.5, 76.5, 76.5);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .goukaku-soudan__item-subtitle {
    font-size: 0.875rem;
  }
}
.goukaku-soudan__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .goukaku-soudan__item-title {
    font-size: 1.125rem;
  }
}
.goukaku-soudan__item-text {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .goukaku-soudan__item-text {
    font-size: 0.875rem;
  }
}
.goukaku-soudan__item-text p {
  margin-bottom: 1em;
}

.goukaku-reality {
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: 2px solid #E0E0E0;
}
@media (min-width: 768px) {
  .goukaku-reality {
    margin-top: 5rem;
    padding-top: 5rem;
  }
}
.goukaku-reality__header {
  text-align: left;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .goukaku-reality__header {
    margin-bottom: 3.125rem;
  }
}
.goukaku-reality__subtitle {
  display: block;
  font-size: 1.125rem;
  color: #69503B;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .goukaku-reality__subtitle {
    font-size: 1.25rem;
  }
}
.goukaku-reality__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: #4A3728;
  line-height: 1.8;
}
.goukaku-reality__title .title-text {
  border-bottom: 4px solid #69503B;
  padding-bottom: 2px;
}
.goukaku-reality__title .title-highlight {
  display: inline-block;
  background: #69503B;
  color: #FFFFFF;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  margin: 0 0.25rem;
}
.goukaku-reality__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  align-items: start;
}
@media (min-width: 768px) {
  .goukaku-reality__content {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
  }
}
.goukaku-reality__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .goukaku-reality__text {
    font-size: 0.9375rem;
    order: 1;
  }
}
.goukaku-reality__image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
@media (min-width: 768px) {
  .goukaku-reality__image {
    order: 2;
  }
}
@media (max-width: 767.98px) {
  .goukaku-reality__image {
    order: -1;
  }
}
.goukaku-reality__image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-price {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section-price {
    padding: 0 0 80px;
  }
}
.section-price__inner {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
.section-price__title {
  font-size: 2rem;
  font-weight: 900;
  color: #4A3728;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.2em;
}
@media (min-width: 768px) {
  .section-price__title {
    font-size: 2.5rem;
    margin-bottom: 3.125rem;
  }
}

.price-enrollment {
  background: linear-gradient(135deg, #69503B 0%, #4A3728 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.875rem;
  box-shadow: 0 4px 20px rgba(105, 80, 59, 0.3);
}
@media (min-width: 768px) {
  .price-enrollment {
    padding: 1.875rem 2.5rem;
  }
}
.price-enrollment__label {
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .price-enrollment__label {
    font-size: 1.125rem;
  }
}
.price-enrollment__br-mobile {
  display: none;
}
@media (max-width: 575.98px) {
  .price-enrollment__br-mobile {
    display: inline;
  }
}
.price-enrollment__amount {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .price-enrollment__amount {
    font-size: 2rem;
  }
}

.price-plus {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 900;
  color: #69503B;
  margin: 1.875rem 0;
}
@media (min-width: 768px) {
  .price-plus {
    font-size: 3rem;
  }
}

.price-courses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
@media (min-width: 992px) {
  .price-courses {
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
  }
}

.price-course-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A3728;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .price-course-group h3 {
    font-size: 1.375rem;
  }
}
.price-course-group .price-card + .price-card {
  margin-top: 1.25rem;
}

.price-or {
  font-size: 1.5rem;
  font-weight: 900;
  color: #666666;
  text-align: center;
  align-self: center;
}
@media (min-width: 992px) {
  .price-or {
    font-size: 2rem;
  }
}
@media (max-width: 991.98px) {
  .price-or {
    padding: 1.25rem 0;
  }
}

.price-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .price-card {
    padding: 1.875rem;
  }
}
.price-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #69503B transparent transparent transparent;
}
.price-card__header {
  font-size: 1rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E0E0E0;
}
@media (min-width: 768px) {
  .price-card__header {
    font-size: 1.125rem;
  }
}
.price-card__notes {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E0E0E0;
}
.price-card__notes .note {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 0.25rem;
}

.price-item + .price-item {
  margin-top: 1.25rem;
}
.price-item__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #69503B;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .price-item__label {
    font-size: 0.9375rem;
  }
}

.price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E0E0E0;
}
.price-list__item:last-child {
  border-bottom: none;
}
.price-list__name {
  font-size: 0.875rem;
  color: #333333;
}
@media (min-width: 768px) {
  .price-list__name {
    font-size: 0.9375rem;
  }
}
.price-list__name .small {
  font-size: 0.75rem;
  color: #666666;
}
.price-list__name-block {
  font-size: 0.875rem;
  color: #333333;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .price-list__name-block {
    font-size: 0.9375rem;
  }
}
.price-list__value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #69503B;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .price-list__value {
    font-size: 1.5rem;
  }
}

.price-notes {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .price-notes {
    font-size: 0.875rem;
  }
}
.price-notes p {
  margin-bottom: 0.5rem;
}

.price-cta {
  text-align: center;
}

.section-chairman {
  padding: 60px 0;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .section-chairman {
    padding: 80px 0;
  }
}
.section-chairman__inner {
  width: 100%;
  max-width: calc(980px + 20px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section-chairman__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #4A3728;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-chairman__title {
    font-size: 2rem;
    margin-bottom: 3.125rem;
  }
}

.chairman-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.875rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  max-width: 742px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .chairman-card {
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
}
.chairman-card__photo {
  text-align: center;
}
.chairman-card__photo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: unset;
  border: none;
  margin-inline: auto;
  display: block;
}
@media (max-width: 575.98px) {
  .chairman-card__photo img {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .chairman-card__photo img {
    max-width: 180px;
    height: auto;
  }
}
.chairman-card__name-ruby {
  font-size: 0.8125rem;
  color: #666666;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .chairman-card__name-ruby {
    font-size: 0.875rem;
  }
}
.chairman-card__name {
  font-size: 1.625rem;
  font-weight: 900;
  color: #4A3728;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .chairman-card__name {
    font-size: 1.875rem;
  }
}
.chairman-card__profile {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E0E0E0;
}
@media (min-width: 768px) {
  .chairman-card__profile {
    font-size: 0.9375rem;
  }
}
.chairman-card__career-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #69503B;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .chairman-card__career-title {
    font-size: 1.25rem;
  }
}
.chairman-card__career-text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #333333;
}
@media (min-width: 768px) {
  .chairman-card__career-text {
    font-size: 0.9375rem;
  }
}

.section-access {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section-access {
    padding: 80px 0;
  }
}
.section-access__inner {
  max-width: 742px;
  width: 100%;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 575.98px) {
  .section-access__inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
.section-access__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #4A3728;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-access__title {
    font-size: 2rem;
  }
}
.section-access__description {
  font-size: 0.875rem;
  text-align: left;
  color: #666666;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-access__description {
    font-size: 0.9375rem;
  }
}

.access-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 768px) {
  .access-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.access-box {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.25rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .access-box {
    grid-template-columns: 360px 1fr;
  }
}

@media (max-width: 767.98px) {
  .access-map {
    order: -1;
  }
}
.access-map iframe {
  width: 100%;
  height: 400px;
  display: block;
}
@media (min-width: 768px) {
  .access-map iframe {
    height: 100%;
    max-height: 350px;
  }
}

.access-info {
  padding: 1.875rem 1.5rem;
}
@media (min-width: 768px) {
  .access-info {
    padding: 0 1.875rem 2.5rem;
  }
}
.access-info__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .access-info__title {
    font-size: 1.375rem;
  }
}
.access-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 575.98px) {
  .access-info__item {
    gap: 0.75rem;
  }
}
.access-info__item:last-of-type {
  border-bottom: none;
}
.access-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #BD8B0D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .access-info__icon {
    width: 32px;
    height: 32px;
  }
}
.access-info__icon i {
  font-size: 1.125rem;
  color: #FFFFFF;
}
@media (max-width: 575.98px) {
  .access-info__icon i {
    font-size: 0.875rem;
  }
}
.access-info__content {
  flex: 1;
}
.access-info__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #69503B;
  margin-bottom: 0.5rem;
}
.access-info__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .access-info__text {
    font-size: 0.9375rem;
  }
}
.access-info__text .highlight {
  color: #69503B;
  font-weight: 700;
}
.access-info__notice {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(184, 147, 94, 0.1);
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
}
.access-info__notice-icon {
  flex-shrink: 0;
}
.access-info__notice-icon i {
  font-size: 1.5rem;
  color: #BD8B0D;
}
.access-info__notice-text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 768px) {
  .access-info__notice-text {
    font-size: 0.875rem;
  }
}

.phone-link {
  font-size: 1.25rem;
  font-weight: 900;
  color: #69503B;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 575.98px) {
  .phone-link {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .phone-link {
    font-size: 1.5rem;
  }
}
.phone-link:hover {
  opacity: 0.7;
}

.section-contact {
  padding: 60px 0;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .section-contact {
    padding: 80px 0;
  }
}
.section-contact__inner {
  width: 100%;
  max-width: calc(980px + 20px * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section-contact__header {
  text-align: center;
  margin-bottom: 3.125rem;
}
.section-contact__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #4A3728;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-contact__title {
    font-size: 2rem;
  }
}
.section-contact__subtitle {
  font-size: 0.875rem;
  color: #666666;
}
@media (min-width: 768px) {
  .section-contact__subtitle {
    font-size: 0.9375rem;
  }
}

.contact-header {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 3.125rem;
  text-align: center;
}
.contact-header__title {
  text-align: left;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  margin-bottom: 1rem;
}
.contact-header__text {
  text-align: left;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
  margin-top: 0;
}
.contact-header__text:not(:first-of-type) {
  margin-top: 0;
}

.contact-form {
  max-width: 742px;
  width: 100%;
  margin: 0 auto 3.125rem;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.875rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 3.125rem 2.5rem;
  }
}
.contact-form__placeholder {
  font-size: 0.875rem;
  color: #999999;
  margin-bottom: 1.25rem;
}
.contact-form .cta-button i {
  margin-right: 0.5rem;
}
.contact-form .form-submit {
  text-align: center;
  margin-top: 1.25rem;
}
.contact-form .form-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: #69503B;
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.contact-form .form-button i {
  font-size: 1rem;
}
.contact-form .form-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.contact-form .form {
  width: 100%;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.contact-form .form-group--half {
  width: 100%;
}
.contact-form .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 0.5rem;
}
.contact-form .form-label .required {
  color: #69503B;
  margin-left: 0.25rem;
}
.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
  font-size: 0.875rem;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: #69503B;
  box-shadow: 0 0 0 3px rgba(105, 80, 59, 0.12);
}
.contact-form .form-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-methods {
  max-width: 742px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.contact-method-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem 1.875rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact-method-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #BD8B0D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method-card__icon i {
  font-size: 2.25rem;
  color: #FFFFFF;
}
.contact-method-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 0.75rem;
}
.contact-method-card__text {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.contact-method-card__number a {
  font-size: 1.5rem;
  font-weight: 900;
  color: #69503B;
  font-family: "Roboto", sans-serif;
}
.contact-method-card__hours {
  font-size: 0.8125rem;
  color: #666666;
}
.contact-method-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #69503B;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.contact-method-card__button i {
  font-size: 1rem;
}
.contact-method-card__button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.section-sns {
  padding: 0;
  background: none;
}
.section-sns__inner {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 575.98px) {
  .section-sns__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.section-sns__title {
  text-align: center;
  margin-bottom: 1.25rem;
}
.section-sns__description {
  text-align: left;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sns-youtube {
  margin-bottom: 3.75rem;
}
.sns-youtube__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A3728;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .sns-youtube__title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}
.sns-youtube__videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 576px) {
  .sns-youtube__videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .sns-youtube__videos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.sns-youtube__video-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.sns-youtube__video-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.sns-youtube__video-item img {
  width: 100%;
  height: auto;
  display: block;
}
.sns-youtube__cta {
  text-align: center;
  margin-bottom: 1.875rem;
}
.sns-youtube__cta .cta-button i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.sns-follow {
  margin-bottom: 3.75rem;
  text-align: center;
}
.sns-follow__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .sns-follow__title {
    font-size: 1.5rem;
  }
}
.sns-follow__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sns-follow__icons {
    gap: 1.5rem;
  }
}
.sns-follow__icons .sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-follow__icons .sns-icon i {
  font-size: 2.5rem;
  color: #000;
}
.sns-follow__icon-link {
  width: 60px;
  height: 60px;
  background: #69503B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .sns-follow__icon-link {
    width: 70px;
    height: 70px;
  }
}
.sns-follow__icon-link i {
  font-size: 1.75rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .sns-follow__icon-link i {
    font-size: 2rem;
  }
}
.sns-follow__icon-link:hover {
  background: #B8935E;
  transform: translateY(-4px);
  opacity: 1;
}

.sns-line-box {
  max-width: 30.625rem;
  width: 100%;
  margin-inline: auto;
  background: #EEECEF;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin-bottom: 3.75rem;
}
.sns-line-box__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 0.625rem;
  font-size: 3rem;
  color: #06C755;
}
.sns-line-box__text {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}
.sns-line-box__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #69503B;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sns-line-box__button i {
  color: #FFFFFF;
}
.sns-line-box__button:hover {
  background: rgb(88.6737804878, 67.5609756098, 49.8262195122);
  opacity: 0.95;
  transform: translateY(-2px);
}

.sns-line {
  background: rgba(184, 147, 94, 0.1);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .sns-line {
    padding: 3.125rem 2.5rem;
  }
}
.sns-line__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #06C755;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-line__icon i {
  font-size: 2.5rem;
  color: #FFFFFF;
}
.sns-line__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #4A3728;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .sns-line__title {
    font-size: 1.625rem;
  }
}
.sns-line__text {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .sns-line__text {
    font-size: 0.9375rem;
  }
}
.sns-line__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #06C755;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .sns-line__button {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
  }
}
.sns-line__button i {
  font-size: 1.125rem;
}
.sns-line__button:hover {
  background: rgb(4.5073170732, 149.4926829268, 63.8536585366);
  transform: translateY(-2px);
  opacity: 1;
}

.footer {
  background: #444;
  color: #FFFFFF;
  padding: 1.875rem 0 1.875rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 2.5rem 0 2.5rem;
  }
}
.footer__inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .footer__inner {
    padding: 0 2.5rem;
  }
}
.footer__content,
.footer .footer-content {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin-bottom: 2.5rem;
}
.footer__logo,
.footer .footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2em;
}
.footer__logo img,
.footer .footer-logo img {
  height: 30px;
  width: auto;
}
@media (max-width: 575.98px) {
  .footer__logo img,
  .footer .footer-logo img {
    width: 30vw;
    height: auto;
  }
}
.footer__link,
.footer .footer-link {
  display: inline-block;
  font-size: 0.875rem;
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .footer__link,
  .footer .footer-link {
    font-size: 0.9375rem;
  }
}
.footer__link:hover,
.footer .footer-link:hover {
  opacity: 0.9;
}
.footer__address,
.footer .footer-info {
  display: flex;
  flex-direction: column;
}
.footer__address,
.footer .footer-info__item {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}
@media (min-width: 768px) {
  .footer__address,
  .footer .footer-info__item {
    font-size: 0.9375rem;
  }
}
.footer .footer-info__item {
  margin-bottom: 0;
}
.footer__phone {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .footer__phone {
    font-size: 1.25rem;
  }
}
.footer__phone:hover {
  color: #B8935E;
}
.footer .footer-info__item {
  display: flex;
  align-items: center;
}
.footer .footer-info__item i {
  margin-right: 0.5em;
}
.footer__copyright {
  text-align: center;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3em;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

.fukidashi-effect {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.fukidashi-effect::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1.875rem;
  width: 4px;
  background-color: #69503B;
  display: inline-block;
  rotate: -20deg;
}
.fukidashi-effect::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: -1.875rem;
  width: 4px;
  background-color: #69503B;
  display: inline-block;
  rotate: 20deg;
}

.divider {
  width: 80px;
  height: 4px;
  background-color: #69503B;
  border: none;
  margin: 1.875rem auto;
}
@media (min-width: 768px) {
  .divider {
    height: 6px;
    margin: 4.375rem auto;
  }
}

.title-line {
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}
.title-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 6px;
  background-color: #69503B;
}
.title-line--thick::before {
  width: 8px;
}
.title-line--medium::before {
  width: 6px;
}
.title-line--thin::before {
  width: 3px;
}

.title-line-thick {
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}
.title-line-thick::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 8px;
  background-color: #69503B;
}

.title-line-medium {
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}
.title-line-medium::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  bottom: -3px;
  width: 6px;
  background-color: #69503B;
}

.title-line-thin {
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}
.title-line-thin::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  bottom: -3px;
  width: 3px;
  background-color: #69503B;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F8F9FA;
}

::-webkit-scrollbar-thumb {
  background: #69503B;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4A3728;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 3px solid #B8935E;
  outline-offset: 2px;
}

::selection {
  background-color: #B8935E;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #B8935E;
  color: #FFFFFF;
}

/*# sourceMappingURL=lpstyle.css.map */
