@charset "UTF-8";
/*! acab/reset.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  color: #000;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  transition: 0.3s;
}

@media screen and (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1044px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0;
  }
}

.sec-title {
  font-size: 4.8rem;
  font-weight: 700;
  color: #C8AF99;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.sec-title__sub {
  display: block;
  font-size: 1.8rem;
  color: #84684C;
  margin-top: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec-title {
    font-size: 3.2rem;
    margin-bottom: 40px;
  }
  .sec-title__sub {
    font-size: 1.4rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  min-width: 300px;
}
.btn--primary {
  background-color: #000;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: #84684C;
  opacity: 1;
}
.btn--secondary {
  background-color: #84684C;
  color: #FFFFFF;
}
.btn--pdf {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
    min-width: unset;
    padding: 15px 20px;
    font-size: 1.6rem;
  }
}

.highlight {
  background: linear-gradient(transparent 0%, #FFF8B5 0%);
  font-weight: 700;
  padding: 0 4px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F1E8E6;
  z-index: 100;
  transition: padding 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 0 15px 15px;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px;
  }
}
.header__top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .header__top {
    padding: 0;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 23px;
    margin-bottom: 0;
  }
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__actions {
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .header__actions {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 42px 10px 25px;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  border: 1px solid #000;
  min-width: 175px;
  text-align: center;
  line-height: 1.3;
}
.header__btn:hover {
  background-color: #000;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .header__btn {
    padding: 5px 25px 5px 15px;
    font-size: 1.2rem;
    background-color: #000;
    color: #FFFFFF;
    border: none;
    min-width: auto;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .header__btn--primary {
    position: absolute;
    left: 20px;
    top: 10px;
    width: auto;
  }
}
.header__btn .header__btn-circle {
  right: 10px;
  width: 24px;
  height: 18px;
  background-color: #000;
  color: #FFFFFF;
  border-radius: 9px;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
}
.header__btn .header__btn-circle::before, .header__btn .header__btn-circle::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 9999px;
  top: 50%;
}
.header__btn .header__btn-circle::before {
  width: 10px;
  height: 1.5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__btn .header__btn-circle::after {
  width: 5px;
  height: 1.5px;
  left: calc(50% + 10px / 2 - 5px);
  transform-origin: calc(100% - 1.5px / 2) 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header__btn .header__btn-circle {
    background-color: transparent;
    width: 20px;
    right: 8px;
  }
}
.header__nav {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F1E8E6;
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
}
.header__menu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__menu {
    flex-direction: column;
  }
}
.header__menu-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(132, 104, 76, 0.5);
}
.header__menu-item:last-child {
  border-right: none;
}
.header__menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  padding: 0 5px;
}
.header__menu-item a:hover {
  color: #84684C;
}
@media screen and (max-width: 768px) {
  .header__menu-item a {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-item {
    border-right: none;
    border-bottom: 1px solid rgba(132, 104, 76, 0.5);
  }
  .header__menu-item:last-child {
    border-bottom: none;
  }
}
.header__hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}
.header__hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
  }
}

.main {
  padding-top: 190px;
}
@media screen and (max-width: 768px) {
  .main {
    padding-top: 124px;
  }
}

.footer {
  background-color: #E3D8CF;
  padding: 60px 0 20px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 20px;
  }
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__logo img {
  height: 50px;
  width: auto;
}
.footer__nav {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.footer__nav li a {
  font-size: 1.4rem;
  color: #000;
}
.footer__copy {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.6);
}

/* ---------------------------------
   KV (Key Visual)
---------------------------------- */
.kv {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .kv {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
    padding: 0;
  }
}
.kv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.kv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .kv__bg {
    position: relative;
    height: 175px;
    order: 2;
    z-index: auto;
  }
}
.kv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 35px;
}
@media screen and (max-width: 768px) {
  .kv__overlay {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #F1E8E6;
    padding: 20px;
    display: flex;
    justify-content: center;
    order: 1;
    z-index: auto;
  }
}
.kv__content {
  max-width: 600px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .kv__content {
    max-width: none;
    text-align: left;
  }
}
.kv__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .kv__subtitle {
    margin-bottom: 10px;
  }
}
.kv__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .kv__title {
    font-size: 3.6rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
}

/* ---------------------------------
   Common Components
---------------------------------- */
.c-sec-head {
  margin-bottom: 45px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-sec-head {
    margin-bottom: 25px;
  }
}
.c-sec-head__title {
  font-size: 10rem;
  font-family: "Zen Old Mincho", serif;
  color: #C8AF99;
  line-height: 1;
  border-bottom: 1px solid #84684C;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: block;
}
@media screen and (max-width: 768px) {
  .c-sec-head__title {
    font-size: 5.4rem;
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
}
.c-sec-head__subtitle {
  font-size: 1.6rem;
  font-weight: 500;
}

/* ---------------------------------
   Intro / Check Section
---------------------------------- */
.intro {
  padding: 0;
  background-color: #F1E8E6;
}
.intro__top {
  padding: 88px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intro__top {
    padding: 40px 15px;
  }
}
.intro__title {
  font-size: 2.8rem;
  color: #84684C;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .intro__title {
    font-size: 2.3rem;
    margin-bottom: 5px;
  }
}
.intro__desc {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .intro__desc {
    font-size: 1.4rem;
  }
}

.check {
  background-color: #E3D8CF;
  padding: 60px 40px 80px;
}
@media screen and (max-width: 768px) {
  .check {
    padding: 50px 30px 60px;
  }
}
.check .container--check {
  max-width: 1044px;
}
.check__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .check__header {
    margin-bottom: 5px;
  }
}
.check__title {
  font-size: 11.5rem;
  font-weight: 400;
  color: rgba(200, 175, 153, 0.8);
  line-height: 1;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .check__title {
    font-size: 5.4rem;
  }
}
.check__note {
  font-size: 1.4rem;
  color: #84684C;
}
@media screen and (max-width: 768px) {
  .check__note {
    display: none;
  }
}
.check__subtitle {
  font-size: 1.6rem;
  margin-bottom: 35px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .check__subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.check__catch {
  font-size: 2.2rem;
  color: #84684C;
  margin-bottom: 25px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .check__catch {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.check__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .check__list {
    gap: 20px;
  }
}
.check__list li {
  position: relative;
  padding-left: 45px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .check__list li {
    padding-left: 35px;
    font-size: 1.4rem;
  }
}
.check__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border: 2px solid #C8AF99;
  background-color: #FFFFFF;
  border-radius: 2px;
  box-shadow: inset 0 0 0 2px #FFFFFF;
}
.check__list li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 6px;
  height: 14px;
  border-right: 2px solid #84684C;
  border-bottom: 2px solid #84684C;
  transform: rotate(45deg);
}

/* ---------------------------------
   Sections Base
---------------------------------- */
section {
  padding: 55px 40px 60px;
}
@media screen and (max-width: 768px) {
  section {
    padding: 40px 30px;
  }
}

/* ---------------------------------
   What Section
---------------------------------- */
.what {
  background-color: #F1E8E6;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .what {
    padding-bottom: 30px;
  }
}
.what__boxes {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .what__boxes {
    flex-direction: column;
  }
}
.what__box {
  flex: 1;
  background-color: transparent;
  padding: 15px 30px 25px;
  border: 1px solid #84684C;
}
.what__box--experienced {
  border: 5px solid #84684C;
}
@media screen and (max-width: 768px) {
  .what__box {
    padding: 15px 20px;
  }
}
.what__box-title {
  font-size: 2.4rem;
  color: #84684C;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
.what__box-section {
  margin-bottom: 20px;
}
.what__box-section h5 {
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
  color: #84684C;
  font-weight: 500;
}
.what__box-section:last-child {
  margin-bottom: 0;
}
.what__box-label {
  background-color: #84684C;
  color: #FFFFFF;
  text-align: center;
  padding: 5px;
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.3;
}
.what__box-text {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
}

/* ---------------------------------
   Point Section
---------------------------------- */
.point {
  background-color: #F1E8E6;
}
@media screen and (max-width: 768px) {
  .point {
    padding-bottom: 30px;
  }
}
.point .container--point {
  max-width: 1044px;
}
@media screen and (max-width: 768px) {
  .point__list {
    margin-bottom: 40px;
  }
}
.point .point-courses {
  margin: 20px auto 55px;
}
@media screen and (max-width: 768px) {
  .point .point-courses {
    margin: 20px 0 25px;
  }
}
.point .point-courses__banner {
  background-color: #84684C;
  color: #FFFFFF;
  text-align: center;
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .point .point-courses__banner {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.point .point-courses__cols {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .point .point-courses__cols {
    flex-direction: column;
  }
}
.point .point-courses__col {
  flex: 1;
  background-color: #E3D8CF;
  padding: 65px 20px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .point .point-courses__col {
    padding: 70px 20px 20px;
  }
}
.point .point-courses__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #F1E8E6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #84684C;
  font-family: "Zen Old Mincho", serif;
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;
}
.point .point-courses__badge .course {
  font-size: 1.2rem;
  line-height: 1.2;
  position: absolute;
  bottom: 27px;
}
.point .point-courses__badge .num {
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  bottom: -12px;
}
.point .point-courses__name {
  font-size: 2.4rem;
  font-family: "Zen Old Mincho", serif;
  color: #84684C;
  font-weight: 500;
}
.point .point-courses__target {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  border-top: 1px solid #84684C;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .point .point-courses__target {
    padding-top: 10px;
  }
}
.point .point-courses__pace {
  background-color: #F1E8E6;
  padding: 15px;
  flex: 1;
}
.point .point-courses__pace .pace-head {
  font-size: 1.8rem;
  color: #84684C;
  margin-bottom: 8px;
  font-weight: 500;
}
.point .point-courses__pace .pace-item {
  margin-bottom: 12px;
}
.point .point-courses__pace .pace-item:last-child {
  margin-bottom: 0;
}
.point .point-courses__pace .pace-text {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 3px;
}
.point .point-courses__pace .pace-result {
  background-color: #84684C;
  color: #FFFFFF;
  display: inline-block;
  padding: 0 5px;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .point .point-courses__pace .pace-result {
    font-size: 1.4rem;
  }
}
.point .point-courses__note {
  font-size: 1.2rem;
  text-align: left;
  color: #84684C;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .point .point-courses__note {
    font-size: 1rem;
  }
}
.point__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.point__list:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .point__list {
    margin-bottom: 30px;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .point__item {
    margin-bottom: 10px;
  }
}
.point__item-title {
  display: flex;
  align-items: baseline;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .point__item-title {
    font-size: 2rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.point__item-num {
  color: #C8AF99;
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  margin-right: 20px;
  display: flex;
  align-items: baseline;
}
.point__item-num .num {
  font-size: 4.8rem;
  margin-left: 5px;
  line-height: 1;
}
.point__item-num::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 35px;
  background-color: #C8AF99;
  margin-left: 20px;
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .point__item-num::after {
    position: absolute;
    bottom: 13px;
    left: 0;
    width: 100%;
    height: 1px;
    margin-left: 0;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .point__item-num {
    font-size: 2.4rem;
    margin-right: 0;
    margin-bottom: 10px;
    display: inline-flex;
    position: relative;
    padding-bottom: 5px;
  }
  .point__item-num .num {
    font-size: 4.5rem;
  }
}
.point__item-title-text {
  line-height: 1.5;
  color: #84684C;
}
@media screen and (max-width: 768px) {
  .point__item-title-text {
    width: 100%;
    margin-top: -10px;
  }
}
.point__item-text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
}
.point__jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .point__jobs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
  }
}
.point__job {
  border: 1px solid #84684C;
  text-align: center;
  padding: 15px;
  font-size: 1.6rem;
  font-family: "Zen Old Mincho", serif;
  color: #84684C;
  background-color: transparent;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .point__job {
    font-size: 1.4rem;
    padding: 5px;
  }
}
.point__courses-area {
  width: 100%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .point__courses-area {
    margin-bottom: 60px;
  }
}
.point__courses-title {
  background-color: #84684C;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.point__courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .point__courses {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.point__course {
  background-color: #E3D8CF;
  text-align: center;
  padding: 30px 20px 20px;
}
.point__course-head {
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.point__course-head::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.point__course-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #C8AF99;
  font-family: "Zen Old Mincho", serif;
  background-color: #E3D8CF;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.point__course-badge .course {
  font-size: 1.2rem;
  line-height: 1.2;
}
.point__course-badge .num {
  font-size: 3.2rem;
  line-height: 1;
}
.point__course-name {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}
.point__course-target {
  font-size: 1.3rem;
  font-weight: 500;
}
.point__course-body {
  background-color: #F1E8E6;
  padding: 30px 20px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .point__course-body {
    min-height: auto;
  }
}
.point__course-pace {
  font-size: 1.4rem;
  color: #84684C;
  margin-bottom: 20px;
  text-align: center;
}
.point__course-dl {
  text-align: center;
  flex: 1;
}
.point__course-dl dt {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.point__course-dl dd {
  background-color: #84684C;
  color: #FFFFFF;
  padding: 8px 5px;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.point__course-dl dd:last-child {
  margin-bottom: 0;
}
.point__course-dl--single {
  display: flex;
  align-items: center;
  justify-content: center;
}
.point__course-dl--single dt {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.point__course-note {
  font-size: 1rem;
  text-align: left;
  color: #84684C;
  margin-top: 20px;
  line-height: 1.5;
}

/* ---------------------------------
   Skill Section
---------------------------------- */
.skill {
  background-color: #F1E8E6;
}
.skill .container--skill {
  max-width: 1044px;
}
.skill__content {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media screen and (max-width: 768px) {
  .skill__content {
    gap: 35px;
  }
}
.skill__block {
  display: flex;
  align-items: flex-start;
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .skill__block {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .skill__block--reverse {
    flex-direction: column;
  }
}
.skill__text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .skill__text {
    width: 100%;
  }
}
.skill__img {
  flex: 1;
  width: 100%;
}
.skill__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------------------------------
   Course Section
---------------------------------- */
.course {
  background-color: #E3D8CF;
}
.course .container--course {
  max-width: 1044px;
}
.course__intro {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 500;
}
.course__intro p {
  margin-bottom: 15px;
}
.course__intro p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .course__intro {
    font-size: 1.4rem;
  }
}
.course__detail-banner {
  background-color: #84684C;
  color: #FFFFFF;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px;
  font-size: 2.4rem;
  margin-bottom: 28px;
}
.course__detail-banner .small {
  font-size: 1.4rem;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .course__detail-banner {
    font-size: 1.8rem;
    padding: 12px;
    margin-bottom: 18px;
  }
  .course__detail-banner .small {
    display: block;
    margin-left: 0;
  }
}
.course__boxes {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .course__boxes {
    flex-direction: column;
    gap: 30px;
  }
}
.course__box {
  flex: 1;
  background-color: #F1E8E6;
  padding: 12px 20px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.course__box--full {
  width: 100%;
  background-color: #F1E8E6;
  margin-top: 60px;
}
.course__box--full .course__box-badge {
  left: -425px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .course__box--full {
    padding: 70px 20px 20px;
  }
  .course__box--full .course__box-badge {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .course__box {
    padding: 70px 20px 20px;
  }
}
.course__box-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 25px;
  min-height: auto;
}
@media screen and (max-width: 768px) {
  .course__box-head {
    padding-bottom: 0;
    min-height: auto;
  }
}
.course__box-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #E3D8CF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #84684C;
  font-family: "Zen Old Mincho", serif;
  background-color: transparent;
  position: absolute;
  left: 10px;
  top: -30px;
  margin: auto;
  padding-top: 35px;
  padding-left: 8px;
}
.course__box-badge .course-text {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 3px;
}
.course__box-badge .num {
  font-size: 4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .course__box-badge {
    left: 0;
    right: 0;
    flex-direction: column;
    padding-top: 0;
    padding-left: 0;
  }
  .course__box-badge .course-text {
    font-size: 1.2rem;
    position: absolute;
    bottom: 20px;
  }
  .course__box-badge .num {
    font-size: 3.2rem;
    position: absolute;
    bottom: -12px;
  }
}
.course__box-name {
  font-size: 2.4rem;
  font-weight: 400;
  color: #84684C;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .course__box-name {
    font-size: 2.2rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }
}
.course__box-target {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
  border-top: 1px solid #84684C;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .course__box-target {
    padding-top: 10px;
  }
}
.course__box-body {
  background-color: #E3D8CF;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .course__box-body {
    padding: 10px 20px;
  }
}
.course__box-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.course__box-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .course__box-list li {
    font-size: 1.3rem;
  }
}
.course__box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  margin: auto;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #84684C;
}
.course__box-note {
  font-size: 1.4rem;
  text-align: left;
  color: #000;
  line-height: 1.7;
  font-weight: 500;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .course__box-note {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .course__box-note br {
    display: none;
  }
}
.course__info-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 34px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .course__info-cols {
    grid-template-columns: repeat(1, 1fr);
    gap: 34px;
    margin-bottom: 30px;
  }
}
.course__info-col {
  flex: 1;
}
.course__info-col p {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
}
.course__info-col p .small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .course__info-col p {
    font-size: 1.4rem;
  }
  .course__info-col p .small {
    font-size: 1.2rem;
  }
}
.course__info-title {
  font-size: 2.4rem;
  color: #84684C;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 5px;
  font-family: "Zen Old Mincho", serif;
}
.course__info-other {
  margin-bottom: 40px;
}
.course__info-other p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
.course__info-other p .small {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .course__info-other p {
    font-size: 1.4rem;
  }
}
.course__info-free {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .course__info-free {
    font-size: 1.4rem;
  }
}
.course__info-free p {
  margin-bottom: 10px;
}
.course__info-free-list li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 10px;
}
.course__info-free-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.course__info-free-list li:last-child {
  margin-bottom: 0;
}

/* ---------------------------------
   Comparison Section
---------------------------------- */
.comparison {
  background-color: #F1E8E6;
  padding-top: 85px;
}
@media screen and (max-width: 768px) {
  .comparison {
    padding-top: 40px;
  }
}
.comparison .container--comparison {
  max-width: 1044px;
}
.comparison__wrapper {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .comparison__wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
.comparison__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 35px;
  border: 1px solid #84684C;
  position: relative;
}
@media screen and (max-width: 768px) {
  .comparison__column {
    padding: 20px 15px;
  }
}
.comparison__column:nth-child(2) {
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .comparison__column:nth-child(2) {
    border-left: 1px solid #84684C;
    border-right: 1px solid #84684C;
  }
}
.comparison__column--ours {
  background-color: #E3D8CF;
  box-shadow: 0 10px 30px rgba(132, 104, 76, 0.1);
}
@media screen and (max-width: 768px) {
  .comparison__column--ours {
    padding-top: 40px;
  }
}
.comparison__column--ours .comparison__column-title {
  color: #84684C;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.comparison__column--ours .comparison__column-subtitle {
  border-bottom: 1px solid #84684C;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.comparison__column--ours .comparison__column-desc {
  min-height: 48px;
}
@media screen and (max-width: 768px) {
  .comparison__column--ours .comparison__column-desc {
    min-height: auto;
  }
}
.comparison__column .label-ours {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #84684C;
  color: #FFFFFF;
  width: 58px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 90%, 0% 100%);
  padding-bottom: 5px;
  z-index: 10;
}
.comparison__column-title {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #84684C;
  text-align: center;
  margin-bottom: 23px;
  font-family: "Zen Old Mincho", serif;
  border-bottom: 1px solid #84684C;
}
@media screen and (max-width: 768px) {
  .comparison__column-title {
    font-size: 2.2rem;
  }
}
.comparison__column-subtitle {
  font-size: 1.4rem;
  text-align: center;
  color: #84684C;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.4;
}
.comparison__column-desc {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 500;
  min-height: 90px;
  color: #84684C;
}
@media screen and (max-width: 768px) {
  .comparison__column-desc {
    min-height: auto;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}
.comparison__card {
  border: 1px solid #84684C;
  margin-bottom: 15px;
  background-color: #F1E8E6;
}
.comparison__card-item {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(132, 104, 76, 0.3);
  text-align: center;
}
.comparison__card-item .label {
  font-size: 1.4rem;
  line-height: 1.3;
  color: #84684C;
}
.comparison__card-item .price {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .comparison__card-item .price {
    font-size: 1.6rem;
  }
}
.comparison__card-item .note {
  font-size: 1.2rem;
  margin-top: 5px;
  line-height: 1.4;
  text-align: left;
}
.comparison__card-total {
  background-color: #84684C;
  color: #FFFFFF;
  padding: 10px 15px;
  text-align: center;
}
.comparison__card-total .label {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
}
.comparison__card-total .price {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .comparison__card-total .price {
    font-size: 1.6rem;
  }
}
.comparison__card-total .note {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 7px;
  text-align: left;
}
.comparison__voice-title {
  font-size: 1.6rem;
  color: #84684C;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}
.comparison__voice-item {
  margin-bottom: 15px;
}
.comparison__voice-item:last-child {
  margin-bottom: 0;
}
.comparison__voice-item .user {
  border: 1px solid #84684C;
  color: #84684C;
  display: inline-block;
  padding: 4px 12px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.comparison__voice-item .text {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
}
.comparison__text p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
}
.comparison__note {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 500;
}

/* ---------------------------------
   Skills List Section
---------------------------------- */
.skills-list {
  background-color: #E3D8CF;
}
.skills-list .container--skills-list {
  max-width: 1044px;
}
.skills-list__title-banner {
  background-color: #84684C;
  color: #FFFFFF;
  text-align: center;
  padding: 8px 10px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .skills-list__title-banner {
    font-size: 1.8rem;
    padding: 12px;
    margin-bottom: 18px;
  }
}
.skills-list__intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
  line-height: 2.2;
  font-weight: 500;
}
.skills-list__intro p {
  margin-bottom: 10px;
}
.skills-list__intro p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .skills-list__intro {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}
.skills-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .skills-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.skills-list__item {
  background-color: #84684C;
  color: #FFFFFF;
  padding: 40px 20px;
  border-radius: 30px;
  font-size: 1.8rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .skills-list__item {
    padding: 25px;
    min-height: unset;
    font-size: 1.4rem;
    border-radius: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .skills-list__item br {
    display: none;
  }
}

/* ---------------------------------
   Schedule Section
---------------------------------- */
.schedule {
  background-color: #F1E8E6;
}
.schedule .container--schedule {
  max-width: 1044px;
}
.schedule__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .schedule__content {
    gap: 40px;
  }
}
.schedule__row {
  display: flex;
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .schedule__row {
    flex-direction: column;
    gap: 40px;
  }
}
.schedule__box {
  flex: 1;
  background-color: transparent;
  padding: 0;
  text-align: left;
  box-shadow: none;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .schedule__box {
    padding: 0;
  }
}
.schedule__box--full {
  width: 100%;
}
.schedule__item-title {
  font-size: 2.2rem;
  color: #84684C;
  margin-bottom: 10px;
  border-bottom: 1px solid #84684C;
  padding-bottom: 3px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .schedule__item-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.schedule__time-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.schedule__time-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .schedule__time-item {
    gap: 10px;
  }
}
.schedule__time-label {
  display: inline-block;
  border: 1px solid #84684C;
  color: #84684C;
  padding: 4px 8px;
  font-size: 1.2rem;
  min-width: 60px;
  text-align: center;
}
.schedule__time-text {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .schedule__time-text {
    font-size: 1.6rem;
  }
}
.schedule__period-text, .schedule__school-text {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .schedule__period-text, .schedule__school-text {
    font-size: 1.6rem;
  }
}
.schedule__period-note, .schedule__school-note {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ---------------------------------
   Qualification / Lecturer Section
---------------------------------- */
.qualification,
.lecturer {
  background-color: #F1E8E6;
}
@media screen and (max-width: 768px) {
  .qualification,
  .lecturer {
    padding-top: 25px;
  }
}
.qualification__content,
.lecturer__content {
  display: flex;
  align-items: flex-start;
  gap: 42px;
}
@media screen and (max-width: 768px) {
  .qualification__content,
  .lecturer__content {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.qualification__text,
.lecturer__text {
  flex: 1;
}
.qualification__lead,
.lecturer__lead {
  font-size: 2.8rem;
  color: #84684C;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .qualification__lead,
  .lecturer__lead {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.qualification__desc p,
.lecturer__desc p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 20px;
}
.qualification__desc p:last-child,
.lecturer__desc p:last-child {
  margin-bottom: 0;
}
.qualification__img,
.lecturer__img {
  flex: 1;
  max-width: 372px;
}
.qualification__img img,
.lecturer__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lecturer {
  background-color: #F1E8E6;
}

/* ---------------------------------
   Access Section
---------------------------------- */
.access {
  background-color: #E3D8CF;
}
.access .container--access {
  max-width: 1044px;
}
.access__title {
  font-size: 2.4rem;
  font-family: "Zen Old Mincho", serif;
  color: #000;
  margin-bottom: 23px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 2rem;
  }
}
.access__info {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .access__info {
    margin-bottom: 50px;
  }
}
.access__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
.access__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .access__row {
    flex-direction: column;
    gap: 10px;
  }
}
.access__label {
  width: 105px;
  border: 1px solid #84684C;
  background-color: transparent;
  color: #84684C;
  text-align: center;
  padding: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-right: 30px;
  flex-shrink: 0;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .access__label {
    width: 100px;
    margin-right: 0;
    font-size: 1.2rem;
  }
}
.access__text {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .access__text {
    font-size: 1.4rem;
  }
}
.access__buttons {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .access__buttons {
    gap: 25px;
    flex-direction: column;
  }
}
.access__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px 12px 5px;
  border-radius: 28px;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  border: 1px solid #000;
  max-width: 345px;
  width: 100%;
  font-family: "Zen Old Mincho", serif;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .access__btn {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    font-size: 1.4rem;
    max-width: 295px;
  }
}
.access__btn:hover {
  background-color: #000;
  color: #FFFFFF;
}
.access__btn:hover .access__btn-circle {
  background-color: transparent;
  color: inherit;
}
.access__btn--primary {
  background-color: #000;
  color: #FFFFFF;
  border: none;
}
.access__btn--primary .access__btn-circle {
  background-color: #FFFFFF;
  color: #000;
}
.access__btn--secondary {
  background-color: #E3D8CF;
  color: #000;
}
.access__btn--secondary .access__btn-circle {
  background-color: #000;
  color: #FFFFFF;
}
.access__btn-circle {
  right: 15px;
  width: 32px;
  height: 24px;
  background-color: #000;
  color: #FFFFFF;
  border-radius: 12px;
  text-indent: -9999px;
  overflow: hidden;
  position: absolute;
}
.access__btn-circle::before, .access__btn-circle::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 9999px;
  top: 50%;
}
.access__btn-circle::before {
  width: 10px;
  height: 1.5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.access__btn-circle::after {
  width: 5px;
  height: 1.5px;
  left: calc(50% + 10px / 2 - 5px);
  transform-origin: calc(100% - 1.5px / 2) 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .access__btn-circle {
    background-color: transparent;
    width: 20px;
    right: 8px;
    color: inherit;
  }
}

/* ---------------------------------
   Parts List Section
---------------------------------- */
.item-parts {
  background-color: #E3D8CF;
}
.item-parts__title-banner {
  background-color: #84684C;
  color: #FFFFFF;
  text-align: center;
  padding: 8px 10px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .item-parts__title-banner {
    font-size: 1.8rem;
    padding: 12px;
    margin-bottom: 18px;
  }
}
.item-parts__subtitle {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 25px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .item-parts__subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.item-parts__desc {
  font-size: 1.4rem;
  line-height: 2.2;
  font-weight: 500;
  text-align: justify;
  max-width: 1044px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .item-parts__desc {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* ---------------------------------
   Feature Info Section
---------------------------------- */
.feature-info {
  background-color: #E3D8CF;
  padding-top: 0;
}
.feature-info--with-benefit .benefit-block__content {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .feature-info--with-benefit .benefit-block__content {
    margin-top: 50px;
  }
}
.feature-info--grouped .feature-info__item {
  margin-top: 100px;
}
.feature-info--grouped .feature-info__item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .feature-info--grouped .feature-info__item {
    margin-top: 60px;
  }
}
.feature-info .container--features {
  max-width: 1044px;
}
.feature-info__title-box {
  border: 1px solid #84684C;
  padding: 10px 15px;
  text-align: center;
  margin-bottom: 40px;
}
.feature-info__title-box h3 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  color: #84684C;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .feature-info__title-box {
    margin-bottom: 20px;
    padding: 15px;
  }
  .feature-info__title-box h3 {
    font-size: 1.8rem;
  }
}
.feature-info__content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .feature-info__content {
    flex-direction: column;
    gap: 15px;
  }
}
.feature-info__text {
  flex: 1.2;
  max-width: 508px;
}
.feature-info__text p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: justify;
}
.feature-info__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .feature-info__text p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.feature-info__sub-lead {
  font-size: 2.3rem;
  color: #84684C;
  margin-bottom: 8px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .feature-info__sub-lead {
    font-size: 2rem;
  }
}
.feature-info__img {
  flex: 1;
}
.feature-info__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------------------------------
   Benefit Block Section
---------------------------------- */
.benefit-block {
  background-color: #F1E8E6;
}
@media screen and (max-width: 768px) {
  .benefit-block__content {
    flex-direction: column-reverse;
  }
}
.benefit-block__img {
  flex: 1;
}
.benefit-block__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.benefit-block__text {
  flex: 1.2;
  max-width: 505px;
}
.benefit-block__title {
  font-size: 2.3rem;
  color: #84684C;
  margin-bottom: 8px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .benefit-block__title {
    font-size: 2rem;
  }
}
.benefit-block__text p {
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: justify;
}
.benefit-block__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .benefit-block__text p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

/* ---------------------------------
   Reservation CTA Section
---------------------------------- */
.reservation-cta {
  background-color: #E3D8CF;
  text-align: center;
}
.reservation-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  border-radius: 100px;
  padding: 15px;
  transition: opacity 0.3s;
  width: 100%;
  position: relative;
  margin: 0 auto;
  border: 1px solid #000;
  transition: 0.3s;
  max-width: 804px;
}
.reservation-cta__btn:hover .reservation-cta__btn-arrow {
  transform: translate(8px, -50%);
}
@media screen and (max-width: 768px) {
  .reservation-cta__btn {
    padding: 10px 20px;
    border-radius: 35px;
  }
}
.reservation-cta__btn-text {
  font-size: 2.4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .reservation-cta__btn-text {
    font-size: 1.4rem;
  }
}
.reservation-cta__btn-arrow {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.reservation-cta__btn-arrow::before, .reservation-cta__btn-arrow::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 9999px;
  top: 50%;
}
.reservation-cta__btn-arrow::before {
  width: 20px;
  height: 1.5px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.reservation-cta__btn-arrow::after {
  width: 10px;
  height: 1.5px;
  left: calc(50% + 20px / 2 - 10px);
  transform-origin: calc(100% - 1.5px / 2) 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .reservation-cta__btn-arrow {
    right: 20px;
  }
  .reservation-cta__btn-arrow::before, .reservation-cta__btn-arrow::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    border-radius: 9999px;
    top: 50%;
  }
  .reservation-cta__btn-arrow::before {
    width: 20px;
    height: 1.5px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .reservation-cta__btn-arrow::after {
    width: 10px;
    height: 1.5px;
    left: calc(50% + 20px / 2 - 10px);
    transform-origin: calc(100% - 1.5px / 2) 50%;
    transform: translateY(-50%) rotate(45deg);
  }
}

/* ---------------------------------
   Footer Section
---------------------------------- */
.footer {
  background-color: #84684C;
  padding: 18px 0;
  text-align: center;
}
.footer__copy {
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}

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