@charset "UTF-8";
.sp-only {
  display: block;
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp-920 {
  display: block;
}
@media (min-width: 920px) {
  .sp-920 {
    display: none;
  }
}

.change-color {
  color: #b16e60;
}

.change-color-600 {
  color: #b16e60;
  font-weight: 600;
}

.text-underline {
  text-decoration: underline;
  text-underline-offset: 12px;
  text-decoration-thickness: 0.5px;
}

.section__heading {
  font-size: 25px;
  font-family: "shippori-mincho", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #59493f;
  text-align: center;
}
@media (min-width: 768px) {
  .section__heading {
    font-size: 40px;
    margin-block-end: 62px;
  }
}

.nowrap {
  white-space: nowrap;
}

.inner {
  width: 100%;
  margin: 0 auto;
  padding-inline: 15px;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1040px;
    padding-inline: 20px;
  }
}

.inner-narrow {
  max-width: 375px;
  margin: 0 auto;
  padding-inline: 30px;
}
@media (min-width: 768px) {
  .inner-narrow {
    max-width: 598px;
    padding-inline: 20px;
  }
}

.pink-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(to bottom, #f5bec8, #a75668);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.5), inset 0 -3px 6px rgba(0, 0, 0, 0.1), 2px 2px 2px rgba(200, 80, 110, 0.4), 0 6px 16px rgba(180, 60, 90, 0.3);
  text-shadow: 2px 3px 6px rgba(140, 40, 70, 0.8), 1px 2px 12px rgba(140, 40, 70, 0.4);
  transition: opacity 0.2s;
	display: inline-flex !important;
  align-items: center;
}
.pink-button:hover {
  opacity: 0.85;
}

.pink-button-arrow {
  text-shadow: 2px 3px 6px rgba(140, 40, 70, 0.8), 1px 2px 12px rgba(140, 40, 70, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes line {
  from {
    opacity: 0;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif, sans-serif;
}
@media (min-width: 1024px) {
  body {
    padding-top: 200px;
  }
}
/*----------------------------------
  Header
-----------------------------------*/
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 100;
}

.header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding-inline: 20px;
}

@media (min-width: 1024px) {
  .header__inner {
    padding-inline: 40px;
  }
}

/* ロゴ＋ボタン 横並び */
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .header__top {
    padding-block: 6px; 
  }
}

/* スクロール後 */
.header.is-scrolled .header__top {
  height: 0;
  overflow: hidden;
  padding: 0;
}

.header.is-scrolled .header__nav {
  border-top: none;
}

/*----------------------------------
  ロゴ（サイズ変更なし）
-----------------------------------*/
.header__logo img {
  width: 120px;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .header__logo img {
    width: 160px;
  }
}

/*----------------------------------
  お問い合わせボタン
-----------------------------------*/
@media (max-width: 1023px) {
  .header__btn {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    max-width: 260px;
    height: 52px;
    white-space: nowrap;
  }
}
.header__btn--fixed {
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 400px;
  height: 56px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.header__btn--fixed.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .header__btn--fixed {
    display: none;
  }
}

/*----------------------------------
  ナビ
-----------------------------------*/
.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  list-style: none;
  margin: 0;
  padding: 6px 20px 8px !important;
}

.header__list li {
  white-space: nowrap;
  color: #59493f;
}

@media (min-width: 1024px) {
  .header__list {
    padding: 6px 20px 8px;
  }
}
.fv {
  padding-top: 120px !important; 
}

@media (min-width: 1024px) {
  .fv {
    padding-top: 0px!important;
  }
}

/*----------------------------------
    ドロワーアイコン
-----------------------------------*/
.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 55px;
  right: 20px;
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1.5px;
  background: #59493f;
  transition: all 0.3s ease;
}

.drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.drawer__overlay.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 300px;
  height: 100svh;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}
@media (min-width: 1024px) {
  .drawer {
    display: none;
  }
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 88px 40px;
  padding-inline-start: 34px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-block-end: 40px;
}
.drawer__list li {
  border-bottom: 1px solid rgba(89, 73, 63, 0.4);
}
.drawer__list li a {
  display: block;
  color: #59493f;
  padding-bottom: 10px;
}



.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fv__image {
  width: 100%;
  display: block;
  height: auto;
}

.worries {
  background-image: url(../../images/nayami-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  width: 100%;
  position: relative;
  padding-block-end: 36px;
}
.worries li img {
  width: 15px;
}
@media (min-width: 768px) {
  .worries {
    background-image: url(../../images/nayami-backgraund__pc@1.5x.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.worries-hedding {
  font-family: "shippori-mincho", sans-serif;
  font-size: 30px;
  color: #59493f;
  padding-block-start: 40px;
  padding-inline-start: 20px;
  opacity: 0;
}
@media (min-width: 768px) {
  .worries-hedding {
    font-size: 44px;
    padding-block-start: 141px;
    padding-inline-start: clamp(60px, 8vw, 250px);
  }
}
@media (min-width: 1440px) {
  .worries-hedding {
    padding-inline-start: clamp(250px, 20.83vw, 400px);
  }
}
@media (min-width: 1920px) {
  .worries-hedding {
    padding-inline-start: clamp(400px, 31.25vw, 800px);
  }
}
.worries-hedding span {
  font-size: 35px;
  color: #b16e60;
}
@media (min-width: 768px) {
  .worries-hedding span {
    font-size: 54px;
  }
}
.worries-hedding.is-visible {
  animation: fadeInUp 0.8s ease forwards; /* ← &で入れ子にまとめる */
}

.dot-text {
  text-emphasis: filled dot;
  -webkit-text-emphasis: filled dot; /* Safari用 */
}

.worries-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
  max-width: calc(100% - 30px);
  width: 100%;
  margin: 0 auto;
  margin-block-start: 65px;
}
@media (min-width: 768px) {
  .worries-box {
    max-width: 1037px;
    width: calc(100% - 80px);
    margin-block-end: 56px;
    padding-block: 65px;
  }
}

.worries-list {
  list-style: none;
  color: #59493f;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 27px;
}
@media (min-width: 768px) {
  .worries-list {
    font-size: 20px;
    align-items: center;
    row-gap: 51px;
  }
}
.worries-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
@media (min-width: 768px) {
  .worries-list li {
    width: 650px;
  }
}
.worries-list li img {
  flex-shrink: 0;
  margin-block-start: 2px;
}
@media (min-width: 768px) {
  .worries-list li img {
    width: 20px;
    height: 15px;
  }
}

.worries-list-color {
  color: #b16e60;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .worries-list-color {
    font-size: 20px;
  }
}

.section-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-block: -26px -45px;
  padding-block: 11px;
  z-index: 1;
  position: relative;
  text-align: center;
}
.section-dots span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #59493f;
}

.skill {
  background-image: url(../../images/pink-dot-background@2x.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .skill {
    background-image: url(../../images/pink-dot-bg-pc@1.5x.webp);
    padding-bottom: 120px;
  }
}

.skill-heading {
  padding-block-start: 45px;
  padding-inline: 15px;
  text-align: center;
  font-family: "shippori-mincho", sans-serif;
  font-size: 20px;
  color: #59493f;
  letter-spacing: 0.04em;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .skill-heading {
    padding-block-start: 96px;
    font-size: 30px;
  }
}

.skill-heading-main {
  opacity: 0;
}
.skill-heading-main.is-visible {
  animation: line 1.5s ease forwards;
}
@media (min-width: 768px) {
  .skill-heading-main {
    padding-block-start: 25px;
  }
}

.skill-heading-color {
  font-size: 24px;
  color: #b16e60;
  letter-spacing: 0.01em;
  line-height: 2;
  background-color: #fff;
  padding: 12px 6px;
}
@media (min-width: 768px) {
  .skill-heading-color {
    font-size: 40px;
  }
}

.skill-image {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  align-items: center;
  padding-block-start: 20px;
}
@media (min-width: 768px) {
  .skill-image {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
    align-items: center;
    justify-content: center;
    padding-block-start: 50px;
    padding-inline: 10px;
  }
}

.skill-heading-text {
  font-family: "shippori-mincho", sans-serif;
  font-size: 20px;
  color: #59493f;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .skill-heading-text {
    font-size: 30px;
  }
}

.skill-heading-text-color {
  font-size: 18px;
  color: #b16e60;
  letter-spacing: 0.01em;
  line-height: 2;
}
@media (min-width: 768px) {
  .skill-heading-text-color {
    font-size: 30px;
  }
}

.skill-heading-text-number {
  font-size: 30px;
  color: #b16e60;
  letter-spacing: 0.01em;
  line-height: 2;
}

.case-heading {
  font-size: 40px;
  color: #b16e60;
  font-family: "shippori-mincho", sans-serif;
  line-height: 0.75;
  letter-spacing: 0.08em;
  text-align: center;
  padding-block-start: 35px;
}
@media (min-width: 768px) {
  .case-heading {
    font-size: 60px;
    padding-block-start: 85px;
  }
}

.case-card {
  background: #fff;
  border: 1px solid #b16e60;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 4px 4px 12px rgba(177, 110, 96, 0.6);
  margin-block-start: 35px;
}
@media (min-width: 768px) {
  .case-card {
    display: flex;
    -moz-column-gap: 67px;
         column-gap: 67px;
    align-items: center;
    justify-content: center;
    margin-block-start: 60px;
  }
}

.case-card__image {
  max-width: 500px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .case-card__image {
    max-width: 297px;
    margin-inline: 0;
  }
}
.case-card__image img {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .case-card__image img {
    max-height: 292px;
    padding-block: 33px;
  }
}

.case-card__info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.case-card__row {
  display: flex;
}
.case-card__row + .case-card__row {
  margin-block-start: 8px;
}
@media (min-width: 768px) {
  .case-card__row + .case-card__row {
    margin-block-start: 23px;
  }
}

.case-card__label {
  min-width: 94px;
  background: #b16e60;
  color: #fff;
  padding: 6px 10px;
  position: relative;
  font-size: 15px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.case-card__label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 14.9px solid transparent;
  border-bottom: 15.5px solid transparent;
  border-left: 10px solid #b16e60;
}
@media (min-width: 768px) {
  .case-card__label::after {
    border-bottom: 20.5px solid transparent;
  }
}
@media (min-width: 768px) {
  .case-card__label {
    min-width: 110px;
    font-size: 18px;
  }
}

.case-card__text {
  flex: 1;
  border: 1px solid #b97473;
  padding: 6px 10px;
  font-size: 14px;
  color: #b16e60;
  font-weight: 500;
  padding-inline-start: 14px;
}
@media (min-width: 768px) {
  .case-card__text {
    font-size: 18px;
    padding-inline-start: 26px;
  }
}

.case__comment {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 10px;
  color: #59493f;
  letter-spacing: 0.08em;
  padding-block-start: 10px;
}

@media (min-width: 768px) {
  .case__comment--sp {
    display: none;
  }
}

.case__comment--pc {
  display: none;
}
@media (min-width: 768px) {
  .case__comment--pc {
    display: block;
  }
}

.self-introduction {
  background-image: url(../../images/lecture-background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-block-start: 50px;
  margin-block-start: 30px;
}
@media (min-width: 768px) {
  .self-introduction {
    margin-block-start: 60px;
  }
}

.lecture__wrap {
  position: relative;
  min-height: clamp(200px, 60vw, 470px);
}
@media (min-width: 768px) {
  .lecture__wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 40px;
    padding-inline: 40px;
    min-height: unset;
  }
}

.lecture__introduction {
  font-size: clamp(16px, 3vw, 20px);
  font-family: "shippori-mincho", sans-serif;
  color: #59493f;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-block-start: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .lecture__introduction {
    padding: 0;
    font-size: 18px;
  }
}

.lecture__image-minami {
  position: absolute;
  right: -20px;
  top: 0;
  width: 45%;
  max-width: 270px;
  height: auto;
}
@media (min-width: 768px) {
  .lecture__image-minami {
    position: static;
    width: 233px;
    flex-shrink: 0;
  }
}

.lecture__text {
  font-size: 16px;
  color: #59493f;
  line-height: 2.3;
  letter-spacing: 0.1em;
  padding-block-start: clamp(2px, 3vw, 20px);
}
.lecture__text--bottom {
  padding-block: 30px 35px;
}
@media (min-width: 768px) {
  .lecture__text--bottom {
    padding-block-end: 120px;
  }
}
@media (min-width: 768px) {
  .lecture__text {
    font-size: 18px;
    padding-inline: 20px;
    padding-block-start: 54px;
    max-width: 750px;
    margin-inline: auto;
  }
}

.lecture__text-color {
  font-weight: 600;
}

.lecture__visual-wrap {
  position: relative;
  width: 100%;
  padding-block-start: 20px;
}
@media (min-width: 768px) {
  .lecture__visual-wrap {
    padding-inline: 20px;
    max-width: 600px;
    margin-inline: auto;
  }
}

.lecture__small-heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 6px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .lecture__small-heading-wrap {
    margin-inline: -60px;
  }
}

.lecture__small-heading {
  opacity: 0;
}
.lecture__small-heading.is-visible {
  animation: line 1.5s ease forwards;
}
.lecture__small-heading {
  font-family: "shippori-mincho", sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  display: inline-block;
  background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
  padding: 6px 14px;
}
.lecture__small-heading--bottom {
  letter-spacing: 0.01em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -20px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .lecture__small-heading--bottom {
    margin-inline-end: -60px;
  }
}

.lecture__image {
  display: block;
  width: 100%;
  height: auto;
}

.reason__heading {
  color: #59493f;
  font-family: "shippori-mincho", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  margin-block-start: 30px;
}
@media (min-width: 768px) {
  .reason__heading {
    margin-block-start: 120px;
    font-size: 30px;
  }
}
.reason__heading .step__three-wrap {
  display: flex;
  justify-content: center;
  padding-block-start: 20px;
  line-height: 1.2;
}
.reason__heading .step__number {
  font-size: 40px; 
	line-height: 1.2;
}

@media (min-width: 768px) {
  .reason__heading .step__number {
    font-size: 60px;
  }
}

.reason__main-heading-text {
  font-size: 30px;
  opacity: 0;
}
.reason__main-heading-text.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}
@media (min-width: 768px) {
  .reason__main-heading-text {
    font-size: 50px;
  }
}

.reason__change-number {
  font-size: 50px;
  color: #b16e60;
}
@media (min-width: 768px) {
  .reason__change-number {
    font-size: 100px;
  }
}

.reason__three {
  font-family: "fot-tsukuaoldmin-pr6n", serif;
 
}

/*----------------------------------
reason-card
-----------------------------------*/
.reason-card__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 47px;
}

.reason-card {
  position: relative;
  background-color: #faf0ea;
  border: 1px solid #c99886;
  box-shadow: 0 4px 10px 0 rgba(168, 114, 52, 0.2);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 48px 20px 32px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .reason-card {
    margin-top: 113px;
    padding-block: 108px 63px;
  }
}
.reason-card__number {
  font-family: "a-otf-ryumin-pr6n", serif;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 57px;
  height: 50px;
  background: linear-gradient(to bottom, #a87234, #d6a460, #e2bc78, #d6a460, #a87234);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-card__number span {
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .reason-card__number {
    width: 97px;
    height: 87px;
    top: -45px;
  }
  .reason-card__number span {
    font-size: 46px;
  }
}
.reason-card__sub-heading {
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
  font-size: 16px;
  color: #59493f;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .reason-card__sub-heading {
    font-size: 30px;
    margin-bottom: 26px;
  }
}
.reason-card__heading {
  text-align: center;
  font-family: "shippori-mincho", sans-serif;
  font-size: 24px;
  color: #b16e60;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
	font-weight: 600; 
}
@media (min-width: 768px) {
  .reason-card__heading {
    font-size: 40px;
	  margin-bottom: 20px;
	font-weight: 500; 
  }
}
@media (min-width: 768px) {
  .reason-card__image-wrap {
    display: flex;
    -moz-column-gap: 25px;
         column-gap: 25px;
    align-items: center;
    justify-content: center;
    padding-block-start: 50px;
  }
}
.reason-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .reason-card__image {
    width: 400px;
    flex-shrink: 0;
  }
}
.reason-card__text {
  font-size: 16px;
  color: #59493f;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .reason-card__text {
    font-size: 18px;
  }
}
.reason-card__accent {
  color: #b16e60;
  font-weight: 600;
}

.reason__button {
  margin-block: 60px;
}

/* PC */
@media (min-width: 768px) {
  .reason__button {
    margin-block: 90px;
  }
}
.nipper-care {
  background-image: url(../../images/gray-dot-background@2x.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center top;
  padding-bottom: 80px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .nipper-care {
    background-image: url(../../images/gray-dot-bg-pc@1.5x.webp);
    padding-bottom: 160px;
  }
}

@media (min-width: 768px) {
  .nipper-care__heading-wrap {
    display: flex;
    -moz-column-gap: 89px;
         column-gap: 89px;
    align-items: center;
    justify-content: center;
    margin-block-start: 60px;
  }
}

.nipper-care__image-wrap {
  position: relative;
  width: 100%;
	margin-block-start: 60px;
}
@media (min-width: 768px) {
  .nipper-care__image-wrap {
    width: 475px;
    flex-shrink: 0;
  }
}
.nipper-care__image-wrap img {
  display: block;
  width: 90%;
  height: auto;
  position: relative;
  z-index: 1;
}

.nipper-care__image-bg {
  position: absolute;
  bottom: -10px;
  right: 25px;
  width: 85%;
  height: 100%;
  background-color: #c99886;
  z-index: 0;
}

.nipper-care__heading {
  margin-block-start: 52px;
  text-align: center;
}

.nipper-care__heading01 {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #59493f;
  position: relative;
}
@media (min-width: 768px) {
  .nipper-care__heading01 {
    font-size: 24px;
  }
}
.nipper-care__heading01::before {
  content: "";
  position: absolute;
  left: -25px;
  top: -20px;
  width: 20px;
  height: 25px;
  background: url(../../images/ashirai-nayami-black.webp) no-repeat center/contain;
}

.nipper-care__heading02 {
  font-family: "shippori-mincho", sans-serif;
  color: #59493f;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: block;
}
@media (min-width: 768px) {
  .nipper-care__heading02 {
    font-size: 30px;
    padding-block-start: 20px;
  }
}

.nipper-care__heading-border {
  width: 100%;
  max-width: 425px;
}

.nipper-care__text {
  font-size: 16px;
  color: #59493f;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 35px 25px 0;
  padding-bottom: 1px;
}
@media (min-width: 768px) {
  .nipper-care__text {
    font-size: 20px;
  }
}

.nipper-care__arrow {
  position: relative;
  background: linear-gradient(to right, #c78a7e, #b16e60);
  padding-block-start: 15px;
  text-align: center;
  width: 146px;
  margin: 35px auto 0;
}
@media (min-width: 768px) {
  .nipper-care__arrow {
    width: 157px;
  }
}
.nipper-care__arrow::after {
  content: "";
  position: absolute;
  bottom: -23.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 146px;
  height: 24px;
  background: linear-gradient(to right, #c78a7e, #b16e60);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) {
  .nipper-care__arrow::after {
    width: 157px;
  }
}

.nipper-care__arrow-text {
  font-family: "shippori-mincho", sans-serif;
  color: #fff;
  font-size: 23px;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .nipper-care__arrow-text {
    font-size: 24px;
  }
}

.nipper-care__image-wrap02 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-block-start: 35px;
}
.nipper-care__image-wrap02 img {
  display: block;
  width: 80%;
  height: auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .nipper-care__image-wrap02 img {
    width: 100%;
  }
}

.nipper-care__image-bg02 {
  position: absolute;
  bottom: -10px;
  right: 10px;
  width: 85%;
  height: 100%;
  background-color: #c99886;
  z-index: 0;
}
@media (min-width: 1024px) {
  .nipper-care__image-bg02 {
    bottom: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .nipper-care__content {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    -moz-column-gap: 29px;
         column-gap: 29px;
    align-items: flex-start;
    padding-inline: 20px;
    padding-block-start: 50px;
  }
}

@media (min-width: 1024px) {
  .nipper-care__text--02 {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (min-width: 1024px) {
  .nipper-care__text--03 {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (min-width: 1024px) {
  .nipper-care__image-wrap02 {
    grid-column: 2;
    grid-row: 1/4;
    width: 400px;
  }
}

@media (min-width: 1024px) {
  .nipper-care__text--01,
  .nipper-care__text--02,
  .nipper-care__text--03 {
    text-align: left;
    padding: 0;
    line-height: 2;
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .nipper-care__text--02,
  .nipper-care__text--03 {
    margin-block-start: 20px;
  }
}

.step-why-wrap {
  position: relative;
  z-index: 3;
  margin-top: -33.5px;
}

.step {
  background-image: url(../../images/step-background@2x.webp);
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -260px;
  padding-top: 260px;
  padding-bottom: 165px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .step {
    background-position: center 15%;
  }
}

.step-why {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-family: "shippori-mincho", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  border-radius: 50%;
  background: linear-gradient(to right, #c78a7e, #b16e60);
  text-align: center;
}
@media (min-width: 768px) {
  .step-why {
    width: 86px;
    height: 86px;
    font-size: 24px;
  }
}

.step__heading01 {
  color: #615045;
}

.step__heading-sub {
  font-weight: 600;
  color: #b16e60;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 2;
  padding-block: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .step__heading-sub {
    font-size: 30px;
  }
}

.step__number {
  font-size: 36px;
  display: inline-block;
  transform: skewX(-10deg);
}
@media (min-width: 768px) {
  .step__number {
    font-size: 70px;
  }
}

.step__unit {
  font-size: 26px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .step__unit {
    font-size: 40px;
  }
}

.step__heading-border {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: -1px auto 0;
}

.step__number,
.step__unit {
  background: linear-gradient(180deg, #c8a098 0%, #b06d5f 20%, #8a5d54 40%, #725348 60%, #4a3530 85%, #1f1715 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.step__three-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  opacity: 0;
}
.step__three-wrap.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}

.step__card-wrap {
  padding-block-start: 40px;
  padding-block-end: 40px;
}
@media (max-width: 767px) {
  .step__card-wrap {
    padding-block-start: 40px;
  }
  
  .step__heading-border {
    margin-block-end: 20px;
  }
}

.step-card {
  position: relative;
}
@media (min-width: 768px) {
  .step-card {
    display: flex;
    flex-direction: column;
  }
}

.step__main-wrap {
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 1;
}
@media (max-width: 767px) {
  .step__main-wrap {
    top: 60px;
    bottom: auto;
  }
}
@media (min-width: 768px) {
  .step__main-wrap {
    position: static;
    display: flex;
    align-items: center;
    -moz-column-gap: 11px;
         column-gap: 11px;
  }
}

.step-card--reverse .step__main-wrap {
  left: 0;
  right: auto;
}
@media (min-width: 768px) {
  .step-card--reverse .step__main-wrap {
    align-self: flex-start;
  }
}

.step__point-label {
  position: relative;
  padding-left: 10px;
  flex-shrink: 0;
}

.en {
  display: block;
  font-family: "adobe-caslon-pro", serif;
  font-style: italic;
  font-size: 14px;
  color: #d4b4ae;
  letter-spacing: 0.12em;
  line-height: 1;
}

.num {
  display: block;
  font-family: "adobe-caslon-pro", serif;
  font-style: italic;
  font-size: 40px;
  color: #d4b4ae;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* 共通 */
.step__point-label::before,
.step__point-label02::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 10px;
  width: 4px;
  background: #d4b4ae;
}

/* それぞれの位置 */
.step__point-label::before {
  left: 0;
}

.step__point-label02::before {
  left: 0;
}
@media (min-width: 768px) {
  .step__point-label02::before {
    left: 0;
  }
}
.step__point-label02 {
  text-align: left;
}

.step__text-banners {
  opacity: 0;
}
.step__text-banners.is-visible {
  animation: line 1.5s ease forwards;
}
.step__text-banners {
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}
@media (max-width: 767px) {
  .step__text-banners {
    margin-block-end: 20px;
  }
}
@media (min-width: 768px) {
  .step__text-banners {
    flex-direction: row;
    row-gap: 0;
  }
}

.step__banner {
  font-family: "shippori-mincho", sans-serif;
  font-size: 22px;
  color: #fff;
  background-color: #b16e60;
  padding: 9px 7px;
  width: -moz-fit-content;
  width: fit-content;　
}
@media (min-width: 768px) {
  .step__banner {
    padding-block: 16px;
    font-size: 28px;
    width: auto;
  }
  .step__banner + .step__banner {
    margin-inline-start: -1px;
  }
}

.step__body {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .step__body {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    margin-block-start: 24px;
  }
}

@media (max-width: 767px) {
  .step__body.step__body--reverse {
    align-items: flex-start;
  }
  .step__body.step__body--reverse .step__photo-area02 {
    align-self: flex-end;
  }
}
@media (min-width: 768px) {
  .step__body.step__body--reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

.step__text {
  color: #59493f;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  padding-block-start: 50px;
}
@media (min-width: 768px) {
  .step__text {
    flex: 1;
    font-size: 18px;
    padding-block-start: 0;
  }
}

.step__photo-area01,
.step__photo-area02 {
  width: 80%;
  align-self: flex-end;
}
.step__photo-area01 img,
.step__photo-area02 img {
  width: 100%;
  max-width: 280px;
  height: auto;
}
@media (min-width: 768px) {
  .step__photo-area01 img,
  .step__photo-area02 img {
    width: 380px;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .step__photo-area01,
  .step__photo-area02 {
    width: auto;
    align-self: auto;
    flex-shrink: 0;
  }
}

.step__photo-area01 {
  text-align: right;
}

.change-smile-wrap {
  margin-top: -180px;
  position: relative;
  z-index: 1;
}

.smile-change__image {
  width: 100%;
  height: auto;
  display: block;
}

.course-detail {
  background-image: url(../../images/course-background.webp);
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 2;
	padding-bottom: 80px;
}

.course-detail__heading {
  color: #b16e60;
  font-weight: 500;
  font-family: "shippori-mincho", sans-serif;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0;
}
.course-detail__heading.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}
@media (min-width: 768px) {
  .course-detail__heading {
    font-size: 40px;
    padding-block-start: 50px;
  }
}
@media (max-width: 767px) {
  .course-detail__heading {
    padding-block-start: 80px;
    padding-block-end: 20px;
  }
}
.course-detail__sub {
  color: #b16e60;
  font-weight: 500;
  font-family: "shippori-mincho", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0;
}
.course-detail__sub.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}
@media (min-width: 768px) {
  .course-detail__sub {
    font-size: 20px;
  }
}
/* スマホのみ表示 */
.course-detail__sub--sp {
    display: block;
    font-size: 14px; 
}
@media (min-width: 768px) {
    .course-detail__sub--sp {
        display: none;
    }
}
@media (max-width: 767px) {
  .course-detail__sub--sp {
    margin-block-end: 10px; 
  }
}
/* PCのみ表示 */
.course-detail__sub {
    display: none;
}
@media (min-width: 768px) {
    .course-detail__sub {
        display: block;
    }
}

.course-detail__text {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-size: 16px;
  color: #59493f;
  line-height: 2.3;
  letter-spacing: 0.03em;
  padding-block-start: 16px;
	text-align: center;
	margin-block-end: 50px; 
}
@media (min-width: 768px) {
  .course-detail__text {
    font-size: 18px;
    margin-block-start: 59px;
    line-height: 2;
    letter-spacing: 0.08em;
	  
  }
}

.content-block {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .content-block {
    padding-bottom: 40px;
  }
}

.content-block__title {
  color: #fff;
  font-family: "shippori-mincho", sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  padding-block: 14px;
  margin-top: 30px;
  background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
}
@media (min-width: 768px) {
  .content-block__title {
	  font-size: 30px;
	}
}

.content-block__body {
  background: #fff;
  padding-inline: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .content-block__body {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
    align-items: flex-start;
  }
}

.content-block__image {
  padding-top: 20px;
  height: auto;
}
@media (min-width: 768px) {
  .content-block__image {
    padding-top: 50px;
  }
}

.content-block__list {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  padding: 20px 0 33px;
}
@media (min-width: 768px) {
  .content-block__list {
    padding: 50px 0;
  }
}

.content-block__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.content-block__icon {
  width: 15px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-block__text {
  font-size: 16px;
  color: #59493f;
  line-height: 1.25;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .content-block__text {
    font-size: 18px;
  }
}

.feature {
  width: 100%;
  height: auto;
}

.feature__inner {
  max-width: 100%;
  margin-inline: auto;
  background-image: url(../../images/banner-bg.webp);
  background-position: center center;
  background-size: cover;
	padding-block-end: 10px;
}
@media (min-width: 768px) {
  .feature__inner {
    padding-block-end: 20px;
  }
}

.feature__heading {
  font-family: "shippori-mincho", sans-serif;
  font-size: 35px;
  letter-spacing: 0.1em;
  text-align: center;
  padding-block: 80px 40px;
  background: linear-gradient(180deg, #e2bc78 0%, #d6a460 30%, #a07030 70%, #8f5e27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .feature__heading {
    font-size: 50px;
    padding-block: 110px;
  }
}
.feature__heading::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, #b06d5f, #725348, #b06d5f, transparent);
  border-radius: 2px;
}
.feature__image {
  position: relative;
  overflow: hidden;
}
.feature__image img {
  width: 100%;
  display: block;
  height: auto;
}

.feature__image + .feature__image {
  margin-top: -18vw;
}

@media (min-width: 768px) {
  .feature__image + .feature__image {
    margin-top: -8vw;
  }
}
.feature__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.feature__text--right {
  top: clamp(70px, 10vw, 150px);
  right: clamp(10px, 3vw, 230px);
  align-items: flex-end;
}
@media (min-width: 768px) {
  .feature__text--right {
    top: 50%;
  transform: translateY(-50%);
  }
}
.feature__text--left {
  top: clamp(50px, 11vw, 150px);
  left: clamp(13px, 5vw, 200px);
}
.feature__text span {
  display: block;
  color: #b16e60;
  font-size: 18px;
  font-family: "shippori-mincho", sans-serif;
  letter-spacing: 0.01em;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 5px;
  box-shadow: 6px 4px 9px rgba(177, 110, 96, 0.33);
}
@media (min-width: 768px) {
  .feature__text span {
    font-size: clamp(28px, 2.5vw, 38px);
  }
}

@media (min-width: 768px) {
  .feature__image:has(.feature__text--left) img {
    -o-object-position: 70% center;
       object-position: 70% center;
  }
}

@media (min-width: 768px) {
  .feature__image:has(.feature__text--right) img {
    -o-object-position: 40% center;
       object-position: 40% center;
  }
}

.voice {
  background-image: url(../../images/pink-dot-background-voice@2x.webp);
  background-position: center center;
  background-size: cover;
}

.voice__inner {
  width: 100%;
  margin: 0 auto;
  padding-inline: 15px;
}
@media (min-width: 768px) {
  .voice__inner {
    max-width: 1040px;
  }
}

.voice__heading {
  font-family: "shippori-mincho", sans-serif;
  background: linear-gradient(180deg, #c8a098 0%, #e8d0cb 8%, #b06d5f 20%, #8a5d54 40%, #725348 60%, #4a3530 85%, #1f1715 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 35px;
  letter-spacing: 0.08em;
  text-align: center;
  padding-block: 62px 41px;
  opacity: 0;
}
.voice__heading.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}
@media (min-width: 768px) {
  .voice__heading {
    font-size: 60px;
    padding-block: 117px 76px;
  }
}

.voice-wrap {
  background: #fff;
  box-shadow: 4px 4px 10px rgba(177, 110, 96, 0.2);
  padding-inline: 15px;
  margin-block-start: 26px;
}
@media (min-width: 768px) {
  .voice-wrap {
    margin-block-start: 61px;
  }
}

.voice__card {
  display: flex;
  flex-direction: column;
  padding-block-start: 38px;
}
@media (min-width: 768px) {
  .voice__card {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding-block-start: 67px;
  }
}

.voice__name-wrap {
  position: relative;
}
@media (min-width: 768px) {
  .voice__name-wrap {
    flex: 0 0 40%;
  }
}

.voice__name {
  position: absolute;
  top: -18px;
  left: -23px;
  z-index: 2;
  background: linear-gradient(to right, #c78a7e, #b16e60);
  color: #fff;
  font-size: 14px;
  line-height: 0.57;
  letter-spacing: 0.08em;
  padding: 18px 25px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .voice__name {
    font-size: 20px;
    top: -30px;
    left: -30px;
    padding: 20px 48px;
  }
}

.voice__image {
  width: 100%;
  height: auto;
  display: block;
  padding-block-end: 30px;
}

@media (min-width: 768px) {
  .voice__text-wrap {
    flex: 1;
  }
}

.voice__text-heading {
  font-family: "shippori-mincho", sans-serif;
  font-size: 20.5px;
  line-height: 1.3;
  letter-spacing: 0.1;
  color: #b16e60;
  text-align: center;
	font-weight: 600;
}
@media (min-width: 768px) {
  .voice__text-heading {
    font-size: 28px;
  }
}

.voice__text {
  font-size: 16px;
  color: #3b2101;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.08;
  padding-block: 23px 20px;
}
@media (min-width: 768px) {
  .voice__text {
    font-size: 18px;
    padding-block: 23px 67px;
  }
}

.voice__attention {
  font-size: 10px;
  color: #59493f;
  padding-block-start: 6px;
}
.voice__attention:last-child {
  padding-block-end: 120px;
}

.important {
  background-image: url(../../images/important-background@2x.webp);
  background-position: center center;
  background-size: cover;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .important {
    padding-top: 80px;   
  padding-bottom: 80px;
  }
}

.important__heading {
  padding-block-start: 60px;
}
@media (min-width: 768px) {
  .important__heading {
    padding-block-start: 108px;
    margin-block-end: 100px;
  }
}

.important__card {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  padding-inline: 15px;
  margin-block-start: 60px;
  margin-block-end: 60px;
  box-shadow: 0 7px 18px rgba(131, 103, 92, 0.18);
}
@media (min-width: 768px) {
  .important__card {
    margin-block-start: 120px;
    margin-block-end: 120px;
  }
}
.important__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "adobe-caslon-pro", serif;
  font-style: italic;
  font-size: 47px;
  color: #d4b4ae;
}
@media (min-width: 768px) {
  .important__number {
    font-size: 80px;
    top: -35px;
  }
}

.important__card-heading {
  font-family: "shippori-mincho", sans-serif;
  font-size: 25px;
  color: #b16e60;
  line-height: 1.2;
  letter-spacing: 0.12;
  text-align: center;
  padding-block: 43px 21px;
}
@media (min-width: 768px) {
  .important__card-heading {
    font-size: 30px;
    padding-block: 65px 60px;
  }
}

.important__card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .important__card-text-wrap {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .important__card-text-wrap img {
    width: 100%;
    height: auto;
    flex: 0 0 40%;
    padding-block-end: 30px;
  }
}

.important__card-text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  padding-block: 10px 26px;
}

@media (min-width: 768px) {
  .important__card-text {
    font-size: 18px;
    flex: 1;
  }
}

/* スマホは縦並びに */
@media (max-width: 767px) {
  .important__card-text-wrap {
    flex-direction: column;
    align-items: center;
  }
  .important__card-text-wrap img {
    width: 100%;
    height: auto;
  }
}
.flow {
  background-image: url(../../images/step-background@2x.webp);
  background-position: top center;
  background-size: cover;
	padding-top: 20px;    
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .important {
    padding-top: 80px;  
    padding-bottom: 80px;
  }
}

.flow__heading {
  font-size: 35px;
  font-family: "shippori-mincho", sans-serif;
  color: #b06d5f;
  padding-block: 60px 30px;
  text-align: center;
  opacity: 0;
}
.flow__heading.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}
.flow__wrap {
  padding-block-end: 60px;
}
@media (min-width: 768px) {
  .flow__heading {
    font-size: 60px;
    padding-block: 100px 60px;
  }
}

.flow__wrap {
  display: grid;
  row-gap: 40px;
  padding-block-end: 80px;
}

.flow__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  position: relative;
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50px;
  width: 1px;
  height: calc(100% + 40px);
  border-left: 2px dashed #b16e60;
  background: repeating-linear-gradient(to bottom, #b16e60 0px, #b16e60 2px, transparent 2px, transparent 6px);
  border: none;
}
@media (min-width: 768px) {
  .flow__item {
    grid-template-columns: 133px 1fr;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .flow__item:not(:last-child)::after {
    left: 66px;
    height: 40px;
  }
}
.flow__item img {
  width: 100px;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .flow__item img {
    width: 133px;
  }
}

.flow__item-text--number {
  display: block;
  font-family: "adobe-caslon-pro", serif;
  font-style: italic;
  color: #b16e60;
  font-size: 18px;
  letter-spacing: 0.12;
}
@media (min-width: 768px) {
  .flow__item-text--number {
    font-size: 30px;
  }
}

.flow__item-text--text {
  display: block;
  color: #59493f;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06;
}
@media (min-width: 768px) {
  .flow__item-text--text {
    font-size: 20px;
  }
}

.flow__item-text--attntion {
  display: block;
  color: #59493f;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06;
}
@media (min-width: 768px) {
  .flow__item-text--attntion {
    font-size: 18px;
  }
}

.info-session {
  background: linear-gradient(to bottom, #c78a7e 0%, #bf7d6f 50%, #b16e60 100%);
  padding-block: 40px;
}

@media (min-width: 768px) {
  .info-session {
    padding-block: 60px;
  }
}

.info-session__heading {
  font-size: 25px;
  font-family: "shippori-mincho", sans-serif;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.12;
  text-align: center;
  padding-block: 15px 22px;
}
@media (min-width: 768px) {
  .info-session__heading {
    font-size: 30px;
    padding-block: 44px 39px;
  }
}

.info-session__main {
  flex-direction: row;
  background: #fff;
  padding-block: 35px;
}
@media (min-width: 768px) {
  .info-session__main {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 75px;
         column-gap: 75px;
    padding-inline: 15px;
  }
}

.info-session__image {
  display: block;
  width: 300px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .info-session__image {
    width: 370px;
    height: auto;
    margin: 0;
    padding-block: 45px;
  }
}

.info-session__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-session__schedule {
  font-size: 21px; /* スマホ */
  font-family: "shippori-mincho", sans-serif;
  color: #59493f;
  line-height: 1.25;
  letter-spacing: 0.12;
  text-align: center;
  padding-block: 13px 23px;
}

@media (min-width: 768px) {
  .info-session__schedule {
    font-size: 26px; /* PC */
  }
}

.info-session__registration {
  font-size: 17px;
  font-family: "shippori-mincho", sans-serif;
  color: #b16e60;
  line-height: 1;
  letter-spacing: 0.12;
  text-align: center;
  padding-block-end: 20px;
}

.info-session__button {
  margin-block-end: 18px;
  width: auto;
  padding-inline: 60px;
}

ruby {
  font-size: 28px;
  color: #b16e60;
  font-family: "shippori-mincho", sans-serif;
}
@media (min-width: 768px) {
  ruby {
    font-size: 40px;
  }
}

rt {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #b16e60;
  font-family: "shippori-mincho", sans-serif;
}
@media (min-width: 768px) {
  rt {
    font-size: 20px;
  }
}

.about-lecture {
  background-image: url(../../images/about-lecture-background@2x.webp);
  background-position: top center;
  background-size: cover;
	padding-block: 50px;
}
@media (min-width: 768px) {
  .about-lecture {
    padding-block: 80px;
  }
}

.about-lecture__heading {
  font-size: 40px;
  font-family: "shippori-mincho", sans-serif;
  color: #b16e60;
  text-align: center;
  padding-block: 55px 30px;
  opacity: 0;
}
.about-lecture__heading.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}
@media (min-width: 768px) {
  .about-lecture__heading {
    font-size: 60px;
  }
}

.about-lecture__image-wrap {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: center;
	padding-block: 30px;
}
@media (min-width: 768px) {
  .about-lecture__image-wrap {
    -moz-column-gap: 150px;
         column-gap: 150px;
	  padding-block: 30px;
  }
}

@media (min-width: 768px) {
  .about-lecture__image {
    width: 215px;
    height: 300px;
  }
}

.about-lecture__text {
  
  font-size: 16px;
  color: #59493f;
  letter-spacing: 0.02em;
  line-height: 2;
  text-align: center;
  padding-inline: 15px;
	padding-block-end: 20px;
}
@media (min-width: 768px) {
  .about-lecture__text {
    font-size: 20px;
    padding-block-start: 40px;
	   padding-block-end: 40px;
  }
}

.about-lecture__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-block: 3px;
  z-index: 1;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .about-lecture__dots {
    margin-block: 33px;
    gap: 8px;
  }
}
.about-lecture__dots span {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #59493f;
}
@media (min-width: 768px) {
  .about-lecture__dots span {
    width: 3px;
    height: 3px;
  }
}

@media (min-width: 768px) {
  .about-lecture__item-wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding-inline: 20px;
  }
}

.about-lecture__item {
  position: relative;
  padding-block: 30px;
}
@media (min-width: 768px) {
  .about-lecture__item {
    padding-block: 50px;
  }
}
.about-lecture__item img {
  display: block;
  margin-left: auto;
}
@media (min-width: 768px) {
  .about-lecture__item img {
    width: 424px;
    height: 225px;
  }
}

.about-lecture__item-text {
  opacity: 0;
}
.about-lecture__item-text.is-visible {
  animation: line 1.5s ease forwards;
}
.about-lecture__item-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-left: 20px;
}
@media (min-width: 768px) {
  .about-lecture__item-text {
    margin-left: 220px;
  }
}
.about-lecture__item-text > span:not(.about-lecture__line-group) {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "shippori-mincho", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
  padding: 8px 6px;
}
@media (min-width: 768px) {
  .about-lecture__item-text > span:not(.about-lecture__line-group) {
    font-size: 24px;
    padding: 15px;
  }
}

.about-lecture__item--reverse img {
  margin-left: 0;
  margin-right: auto;
}
.about-lecture__item--reverse .about-lecture__item-text {
  left: auto;
  right: clamp(10px, 5vw, 220px);
  margin-left: 0;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .about-lecture__item--reverse .about-lecture__item-text {
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .about-lecture__item-text--01 {
    flex-direction: row;
    gap: 0;
    padding: 15px;
    background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
  }
  .about-lecture__item-text--01 span {
    background: none !important;
    padding: 0 !important;
    font-size: 24px;
  }
}
.about-lecture__line-group {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.about-lecture__line-group span {
  background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
  padding: 8px 6px;
}
@media (min-width: 768px) {
  .about-lecture__line-group {
    flex-direction: row;
    gap: 0;
    /* ★ PCではまとめて背景 */
    background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
    padding: 15px 25px;
  }
  .about-lecture__line-group span {
    background: none;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .about-lecture__item-text--02 .about-lecture__line-group span {
    background: none;
    padding: 0;
  }
}
/* ===== 共通（SP基準） ===== */
.about-lecture__item-text > span:not(.about-lecture__line-group),
.about-lecture__line-group span {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "shippori-mincho", sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #fff;
  background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
  padding: 8px 6px;
}

/* ===== PC ===== */
@media (min-width: 768px) {
  .about-lecture__item-text > span:not(.about-lecture__line-group),
  .about-lecture__line-group span {
    font-size: 24px;
    padding: 15px;
    background: linear-gradient(to right, #8f5e27, #d6a460, #e2bc78, #d6a460, #8f5e27);
  }
}
.about-lecture__nayami {
  display: flex;
  align-items: center;
  justify-content: center;
	margin-block-end: 20px;
	padding: 15px;
}
@media (min-width: 768px) {
  .about-lecture__nayami {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}

.about-lecture__nayami-image {
  display: none;
}
@media (min-width: 768px) {
  .about-lecture__nayami-image {
    display: block; 
  }
  
  .about-lecture__nayami-image img {
    width: 340px;
    height: 250px;
  }
}

.about-lecture__nayami-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .about-lecture__nayami-list {
    row-gap: 31px;
  }
}

.about-lecture__nayami-list-item {
  font-weight: 600;
  color: #b16e60;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
@media (min-width: 768px) {
  .about-lecture__nayami-list-item {
    font-size: 22px;
  }
}

.about-lecture__nayami-check {
  width: 15px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .about-lecture__nayami-check {
    width: 20px;
  }
}

.about-lecture__text-color--wrap {
  opacity: 0;
}
.about-lecture__text-color--wrap.is-visible {
  animation: fadeInUp 1s ease forwards;
}
.about-lecture__text-color--wrap {
  display: inline;
}
@media (min-width: 768px) {
  .about-lecture__text-color--wrap {
    display: inline-flex;
    gap: 0;
    background: linear-gradient(to right, #c78a7e, #b16e60);
  }
}

.about-lecture__text-color {
  font-family: "shippori-mincho", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  background: linear-gradient(to right, #c78a7e, #b16e60);
  padding-block: 2px;
	padding-inline: 15px;
  display: inline-block;
  margin: 8px;
}
@media (min-width: 768px) {
  .about-lecture__text-color {
    font-size: 30px;
    background: none;
  }
}

.about-lecture__text-last {
  padding-block-end: 40px;
  padding-inline: 0;
}
@media (min-width: 768px) {
  .about-lecture__text-last {
    font-size: 24px;
  }
}

.diploma {
  margin-block-start: 20px;
}
@media (min-width: 768px) {
  .diploma {
    margin-block-start: 102px;
  }
}

.diploma__wrap {
  border: 1px solid #b16e60;
  border-top-left-radius: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .diploma__wrap {
    width: 547px;
    margin: 0 auto;
  }
}

.diploma__hedding {
  color: #fff;
  font-family: "shippori-mincho", sans-serif;
  font-size: 25px;
  letter-spacing: 0.04;
  line-height: 2;
  padding-block: 14px;
  text-align: center;
  background: linear-gradient(to right, #c78a7e, #b16e60);
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
}
@media (min-width: 768px) {
  .diploma__hedding {
    font-size: 40px;
  }
}

.diploma__list {
  padding-block: 25px 30px;
}
.diploma__list li {
  color: #59493f;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .diploma__list li {
    font-size: 20px;
  }
}


.faq {
  background: #c78a7e;
  padding-block: 40px; 
}

@media (min-width: 768px) {
  .faq {
    padding-block: 100px;
  }
}

.faq__inner {
  max-width: 1036px;
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .faq__inner {
    max-width: 1200px; 
    padding-inline: 40px;
  }
}

.faq__headding {
  font-family: "bodoni-std", sans-serif;
  font-size: 60px;
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: #f8efe5;
  text-align: center;
  padding-block-start: 40px;
}

@media (min-width: 768px) {
  .faq__headding {
    font-size: 100px;
    padding-block-start: 60px;
  }
}
.faq__sub-headding {
  font-family: "shippori-mincho", sans-serif;
  font-size: 17px;
  line-height: 0.7;
  letter-spacing: 0.12;
  color: #f8efe5;
  text-align: center;
  padding-block: 15px 20px;
}
@media (min-width: 768px) {
  .faq__sub-headding {
    font-size: 24px;
    padding-block: 30px 48px;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
summary {
  cursor: pointer;
  list-style: none;
}

.faq__items {
  background: #fff;
  border-radius: 9px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.faq__item {
  padding-block: 20px;
  border-bottom: 1px solid #c78a7e;
  margin-inline: 15px;
}
@media (min-width: 768px) {
  .faq__item {
    margin-inline: 40px;
  }
}
.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.faq__question::before, .faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  background: #c78a7e;
}
.faq__question {
  /* ＋の横棒 */
}
.faq__question::before {
  right: 5px;
  width: 20px;
  height: 2px;
}
.faq__question {
  /* ＋の縦棒 */
}
.faq__question::after {
  right: 14px;
  width: 2px;
  height: 20px;
  transition: transform 0.3s ease;
}

details[open] .faq__question::after {
  transform: translate(0, -50%) rotate(90deg);
}

.content-inner {
  padding-top: 23px;
}

.faq__question-text {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #b16e60;
  padding-inline: 0 40px;
}
@media (min-width: 768px) {
  .faq__question-text {
    font-size: 18px;
  }
}
.faq__question-text::before {
  content: "Q";
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #c8846a;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-family: "bodoni-std", sans-serif;
}

.faq__answer-text {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  color: #59493f;
  padding-inline: 0 20px;
}
@media (min-width: 768px) {
  .faq__answer-text {
    font-size: 18px;
  }
}
.faq__answer-text::before {
  content: "A";
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1.5px solid #c8846a;
  color: #c8846a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-family: "bodoni-std", sans-serif;
}
/* ============================================
   Access Section — 完成版（最終）
   ============================================ */

.access {
  padding-block: 70px 90px;
  background-color: #fdf8f3;
}

@media (min-width: 768px) {
  .access {
    padding-block: 100px 130px;
  }
}

.access__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

/* ---- 見出し ---- */
.access__headding {
  font-family: "bodoni-std", sans-serif;
  font-size: 60px;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: #b16e60;
  opacity: 0;
  margin-block-end: 40px;
}

.access__headding.is-visible {
  animation: fadeInUp 0.8s ease forwards;
}

@media (min-width: 768px) {
  .access__headding {
    font-size: 100px;
    margin-block-end: 60px;
  }
}

/* ---- マップ＋住所 ラッパー ---- */
.access__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .access__map-wrap {
    flex-direction: row !important;
    align-items: flex-start !important; /* 元テーマの center を上書き */
    justify-content: center;
    gap: 56px;
  }
}

/* ---- Google Map ---- */
.access__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding-block-start: 0 !important;
  outline: 1px solid rgba(177, 110, 96, 0.25);
  outline-offset: 6px;
}

@media (min-width: 768px) {
  .access__map {
    width: 500px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: 400px;
  }
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- 住所エリア ---- */
/* 元テーマの align-items: center / justify-content: center / padding-block: 15px 50px を全リセット */
.access__address-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 24px;
  color: #59493f;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .access__address-wrap {
    flex: 1;
    max-width: 500px;
  }
}

/* ---- テーブル ---- */
.access__table {
  width: 100%;
  border-collapse: collapse;
  color: #59493f;
}

.access__table tr {
  border-bottom: 1px solid rgba(89, 73, 63, 0.12);
}

.access__table tr:first-child {
  border-top: none;
}

.access__table th {
  width: 5.5em;
  padding: 16px 16px 16px 0;
  vertical-align: top;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #b16e60;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .access__table th {
    width: 6.5em;
    padding: 18px 20px 18px 0;
    font-size: 12px;
  }
}

.access__table td {
  padding: 16px 0;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .access__table td {
    padding: 18px 0;
    font-size: 15px;
  }
}

.access__table td a {
  color: #59493f;
  text-decoration: none;
  border-bottom: 1px solid rgba(89, 73, 63, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.access__table td a:hover {
  color: #b16e60;
  border-color: #b16e60;
}

/* ---- スクール名（1行目 td 内） ---- */
.access__school-name {
  font-family: "berthold-baskerville-pro", sans-serif;
  font-size: 18px;
  color: #59493f;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin: 0 0 4px;
  font-weight: normal;
}

@media (min-width: 768px) {
  .access__school-name {
    font-size: 22px;
  }
}

.access__school-name-ja {
  font-size: 12px;
  color: rgba(89, 73, 63, 0.65);
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin: 0;
}

@media (min-width: 768px) {
  .access__school-name-ja {
    font-size: 13px;
  }
}

/* ---- 注意書き ---- */
.access__note {
  font-size: 12px;
  color: rgba(89, 73, 63, 0.6);
  line-height: 1.9;
  letter-spacing: 0.04em;
  padding-inline-start: 1.2em;
  text-indent: -1.2em;
}

.access__note::before {
  content: "※";
  color: #b16e60;
  margin-inline-end: 0.2em;
}

@media (min-width: 768px) {
  .access__note {
    font-size: 13px;
  }
}

.footer {
  background-color: #faf0ea;
  padding-inline: 20px;
  padding-block-start: 40px;
}

@media (min-width: 1024px) {
  .footer__list-wrap {
    display: flex;
    -moz-column-gap: 60px;
         column-gap: 60px;
    justify-content: space-between;
  }
}

.footer__list {
  padding: 40px 20px;
  list-style: none;
  margin: 0;
}
.footer__list li {
  border-bottom: 1px solid rgba(89, 73, 63, 0.4);
}
.footer__list li a {
  display: block;
  color: #59493f;
  text-decoration: none;
  padding: 18px 0; /* ← 線との距離 */
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer__logo {
  max-width: 300px;
  margin-inline: auto;
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__access {
  padding: 40px 20px;
}

.footer__access-headding {
  font-size: 16px;
  color: #59493f;
  letter-spacing: 0.08em;
  line-height: 1;
  border-bottom: 1px solid rgba(89, 73, 63, 0.4);
  padding: 10px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-block-start: 30px;
}
@media (min-width: 1024px) {
  .footer__access-headding {
    margin-block-start: 0;
  }
}

.footer__access-map-wrap {
  padding-block-start: 30px;
}

.footer__access-map {
  width: 100%;
  aspect-ratio: 4/3; /* 比率固定 */
}
@media (min-width: 768px) {
  .footer__access-map {
    max-width: 500px;
  }
}
.footer__access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer__access__address {
  font-size: 15px;
  color: #59493f;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  padding-block-start: 20px;
}

.footer__copy {
  font-size: 13px;
  color: #59493f;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  padding-block: 60px 15px;
}

@media (min-width: 1024px) {
  .footer__list-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
}
/* フッター：ポリシーリンク */
.footer__links {
  text-align: center;
  padding-block: 16px 8px;
  font-size: 13px;
}

.footer__links a {
  color: rgba(89, 73, 63, 0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #b16e60;
}

.footer__links span {
  margin-inline: 12px;
  color: rgba(89, 73, 63, 0.3);
}

/* ① ロゴ */
.footer__logo {
  flex: 0 0 280px; /* 固定寄り */
}

/* ② メニュー（中央を広めに） */
.footer__list {
  flex: 1; /* ← ここが伸びる主役 */
  padding: 0; /* PCでは余白リセット */
}

/* ③ アクセス */
.footer__access {
  flex: 0 0 400px; /* 固定寄り */
  padding: 0;
}/*# sourceMappingURL=style.css.map */