/* Reset & Base Styles */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:600|Zen+Old+Mincho:600,500,400,700|Open+Sans:400|Inter:500");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

@font-face {
  font-family: "YuGothic-Bold";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/677f8158d2311af1a25c74a8/fonts/yu-gothic-bold.otf") format("opentype");
}

@font-face {
  font-family: "YuGothic-Medium";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/68158c9296f0755931a64e7a/fonts/yugothic-medium.otf") format("opentype");
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
}

/* Bootstrap Grid System */
/* .container,
.container-lg {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-lg {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-lg {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-lg {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12,
.col-lg-3,
.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-lg-9 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }
}

.g-0 {
  margin-right: 0;
  margin-left: 0;
}

.g-0>.col,
.g-0>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.align-items-center {
  align-items: center;
}

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

.d-block {
  display: block;
} */

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/*共通事項*/
section {
  padding: 100px 0 0;
}

.page-section{
  padding-top: 0;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0 0;
  }

  .page-section{
    padding-top: 0;
    padding-bottom: 50px;
  }
}

.title-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.title-line {
  width: 7px;
  height: 30px;
  background-color: #e0c8a6;
  margin-right: 20px;
}

.title-header h3 {
  font-size: 21px;
  letter-spacing: 6%;
  font-family: "Zen Old Mincho", Helvetica;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 999999;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 6px;
}

/* Focus Styles */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

a:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
}

.site-logo {
  width: 100px;
  aspect-ratio: 796 / 676;
  background-image: url('../img/logo.png');
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 576px) {
  .site-logo {
    width: 100px;
  }
}

/* Global Navigation */
.gnav-toggle {
  position: fixed;
  top: 64px;
  right: 64px;
  z-index: 100;
  width: 68px;
  height: 68px;
  background: transparent;
  border: 1px solid #959595;
  border-radius: 34px;
  color: #959595;
  font-family: "Open Sans", Helvetica;
  font-size: 14px;
  cursor: pointer;
  mix-blend-mode: difference;
}

.gnav-toggle:hover {
  opacity: 0.8;
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 400px;
  height: 100%;
  background-color: #ffffff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px 30px;
  border-bottom: 1px solid #e2e1e0;
  display: flex;
  justify-content: flex-end;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 30px;
  color: #424242;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #f5f5f5;
  border-radius: 50%;
}

.mobile-menu-nav {
  flex: 1;
  padding: 40px 0;
  list-style: none;
  margin: 0;
}

.mobile-menu-nav li {
  margin: 0;
}

.mobile-menu-nav a {
  display: block;
  padding: 20px 30px;
  color: #424242;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
  background-color: #fbf8f3;
  color: #e0c8a6;
}

/* --- 追加: トグル見た目（必要に応じて調整） --- */
.mobile-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-menu-toggle__bar {
  width: 22px;
  height: 2px;
  background: #424242;
  transition: transform .3s, opacity .2s;
}

/* --- 追加: オーバーレイにブラー（トレンド感） --- */
.mobile-menu-overlay {
  backdrop-filter: saturate(120%) blur(10px);
}

/* --- 追加: 本体スクロール固定 --- */
body.-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* --- 追加: アニメの段階表示（ステップ） --- */
[data-stagger]>* {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.mobile-menu.active [data-stagger]>* {
  opacity: 1;
  transform: none;
}

.mobile-menu.active [data-stagger]>*:nth-child(1) {
  transition-delay: .05s;
}

.mobile-menu.active [data-stagger]>*:nth-child(2) {
  transition-delay: .10s;
}

.mobile-menu.active [data-stagger]>*:nth-child(3) {
  transition-delay: .15s;
}

.mobile-menu.active [data-stagger]>*:nth-child(4) {
  transition-delay: .20s;
}

.mobile-menu.active [data-stagger]>*:nth-child(5) {
  transition-delay: .25s;
}

/* 動きが苦手な環境に配慮 */
@media (prefers-reduced-motion: reduce) {

  .mobile-menu-overlay,
  .mobile-menu,
  [data-stagger]>* {
    transition: none !important;
  }
}

.mobile-menu {
  /* 既存: position:fixed; top:0; right:0; width:90%; max-width:400px; height:100%; ... */
  height: 100dvh;
  /* ← iOS/Androidのアドレスバー変動に強い */
  display: flex;
  /* 既存でもOK、念のため明示 */
  flex-direction: column;
  overscroll-behavior: contain;
  /* ← 背景に慣性スクロールを伝播させない */
}

/* ヘッダー（閉じるボタン部分）は固定高さでスクロールさせない */
.mobile-menu-header {
  flex: 0 0 auto;
}

/* リスト領域を“スクロール可能な塊”にする */
.mobile-menu-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  /* ← これが最重要！ */
  -webkit-overflow-scrolling: touch;
  /* iOS慣性スクロール */
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  /* 端末下部の余白 */
  overscroll-behavior: contain;
}

/* オーバーレイの下にパネルが来るよう z-index を一応明示（既存と整合していれば不要） */
.mobile-menu-overlay {
  z-index: 199;
}

.mobile-menu {
  z-index: 200;
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Main Content */
.main-content {
  width: 100%;
  background-color: #ffffff;
}

/* Hero Section */
/* ===== Base ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* 100vhに変更 */
  overflow: hidden;
  isolation: isolate;
  padding-top: 0;
}

/* 背景スライド群 */
.kv-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kv-slide {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  opacity: 0;
  transform: scale(1.03);
  /* 微ズームで奥行き */
  animation: kv-fade 24s infinite ease-in-out;
  will-change: opacity, transform;
}

.kv-slides .kv-1 {
  background-size: inherit;
  background-position: left 60%;
}

.kv-slides .kv-4 {
  background-size: cover;
  background-position: 50% 50%;
}

.kv-slides .kv-5 {
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 768px) {
  .kv-slides .kv-1 {
    background-position: center 60%;
  }
}

/* 3枚運用：総時間24s → 1枚8s */
.kv-1 {
  animation-delay: 0s;
}

.kv-4 {
  animation-delay: 8s;
}

.kv-5 {
  animation-delay: 16s;
}

@keyframes kv-fade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }

  6% {
    opacity: 1;
    transform: scale(1.00);
  }

  30% {
    opacity: 1;
    transform: scale(1.00);
  }

  36% {
    opacity: 0;
    transform: scale(1.03);
  }

  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

/* 視認性向上（任意） */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .2), rgba(0, 0, 0, .45));
  z-index: 0;
}

/* ===== Title: 常時表示 ===== */
.hero-title {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  font-family: "EB Garamond", Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  margin-bottom: 12px;
  border-bottom: 4px solid #fff;
  line-height: 0.8;
  font-size: 75px;
  letter-spacing: 3px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub-title {
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  font-family: "EB Garamond", Helvetica, sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  z-index: 2;
  line-height: 0.9;
  font-size: 45px;
  letter-spacing: 3px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

/* ===== Subtitle: 背景と同期して切替 ===== */
.kv-captions {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  width: 337px;
  position: absolute;
  height: auto;
  text-shadow: 0px 4px 4px #00000040;
  font-family: "Zen Old Mincho", Helvetica, serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 4.2px;
  line-height: 78px;
  opacity: 0;
  transform: translateY(10px);
  animation: kv-title 24s infinite ease-in-out;
  will-change: opacity, transform;
}

.kv-captions .kv-cap-1 {
  top: 244px;
  left: 156px;
}

.kv-captions .kv-cap-2 {
  top: 150px;
  right: 156px;
}

.kv-captions .kv-cap-3 {
  top: 200px;
  right: 156px;
}

@media (max-width: 768px) {
  .kv-captions .hero-subtitle {
    display: none;
  }
}

/* サブタイトル3種のディレイ（スライドと同じタイミング） */
.kv-cap-1 {
  animation-delay: 0s;
}

.kv-cap-2 {
  animation-delay: 8s;
}

.kv-cap-3 {
  animation-delay: 16s;
}

@keyframes kv-title {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  26% {
    opacity: 1;
    transform: translateY(0);
  }

  32% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* 既存の色指定を踏襲 */
.hero-subtitle .highlight {
  color: #fff;
  letter-spacing: 2.52px;
}

.hero-subtitle .emphasis {
  color: #ffd293;
  letter-spacing: 2.52px;
}

.hero-subtitle .small {
  color: #fff;
  font-size: 50px;
  letter-spacing: 1.75px;
  line-height: 65px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

  .hero-subtitle {
    font-size: 30px;
    line-height: 40px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .hero-subtitle .small {
    font-size: 26px;
    line-height: 32px;
  }
}

/* 動きを減らす設定に配慮 */
@media (prefers-reduced-motion: reduce) {

  .kv-slide,
  .hero-subtitle {
    animation: none !important;
  }

  .kv-1,
  .kv-cap-1 {
    opacity: 1;
    transform: none;
  }

  .marquee__group {
    animation: none !important;
  }
}

/* About Section */
.about-section {}

.about-image {
  width: 100%;
  aspect-ratio: 530/370;
  background-image: url('../img/top-about.webp');
  background-size: cover;
  background-position: 50% 50%;
}

.section-label {
  font-family: "Open Sans", Helvetica;
  font-weight: 400;
  color: #e0c8a6;
  font-size: 12px;
  letter-spacing: 0.96px;
  line-height: 24px;
  margin-bottom: 11px;
}

.section-heading {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 600;
  color: #212121;
  font-size: 26px;
  letter-spacing: 3.04px;
  line-height: 57px;
  margin-bottom: 30px;
}

.section-text {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 25px;
  border-radius: 28px;
  color: #424242;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 500;
  font-size: 15.2px;
  letter-spacing: 2.28px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.cta-button:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background-color: #E0C8A6;
  z-index: -1;
  top: 0;
  left: 0;
}

/* Dip Art Section */
.diparte-section {
  padding-bottom:50px;
}

/* Diparte Marquee Gallery */
.diparte-marquee {
  --size: 190px;
  /* 正方形の一辺 */
  --gap: 16px;
  /* 画像の間隔 */
  --duration: 24s;
  /* 1周の時間（大きいほどゆっくり） */
  position: relative;
  display: flex;
  overflow: hidden;
  gap: var(--gap);
  width: 100%;
  margin-top: 50px;
  background: linear-gradient(90deg, #fbf8f3 0%, #f8f5f0 50%, #fbf8f3 100%);
  /* 端フェードを付ける */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--gap);
  transform: translateX(0);
  animation: diparte-scroll var(--duration) linear infinite;
}

.marquee__clone {
  transform: translateX(calc(100% + var(--gap)));
}

@keyframes diparte-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.diparte-gallery img {
  width: var(--size);
  height: var(--size);
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}

.diparte-gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
  z-index: 2;
  position: relative;
}

.diparte-content {
  text-align: center;
  margin-bottom: 50px;
}

.diparte-text {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  text-align: left;
}

/* News Section */
.news-section {
  background-color: #ffffff;
  padding-bottom: 100px;
}

.news-list {
  background-color: #fbf8f3;
  border-radius: 10px;
  padding: 19px;
}

.news-item {
  position: relative;
  /* 矢印の絶対配置のため */
  padding: 36px 24px;
  border-bottom: 1px solid #e2e1e0;
}

.news-item:first-child {
  border-top: 1px solid #e2e1e0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-link {
  display: block;
  padding-right: 40px;
  /* 矢印のスペースを確保 */
}

.news-category {
  display: inline-block;
  padding: 4px 10px;
  background-color: #cfad7e;
  border-radius: 13px;
  border: 1px solid #e2e1e0;
  color: #fdfcfa;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.48px;
  margin-right: 10px;
}

.news-date {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 16px;
  margin-right: 10px;
}

.news-title {
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  color: #424242;
  font-size: 17px;
  line-height: 30px;
  margin-top: 10px;
}

.news-arrow {
  position: absolute;
  right: 24px;
  /* news-itemのpaddingと同じ値 */
  top: 50%;
  transform: translateY(-50%);
}

.news-more {
  margin-top: 30px;
}

/* gallery Section */
.gallery-section {
  height: 600px;
  background-image: url(../img/gallery-bk.webp);
  background-size: cover;
  background-position: top 50%;
}

@media (max-width: 768px) {
  .gallery-section {
    height: 300px;
  }
}

/* Course Section */
.course-section {
  background-color: #fbf8f3;
  padding: 50px 0 0;
}

.course-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  padding: 21px;
}

.course-image {
  width: 100%;
  height: 311px;
  background-color: #fbf8f3;
  margin-bottom: 50px;
}

.course-title {
  text-align: center;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #424242;
  font-size: 18.2px;
  letter-spacing: 2.74px;
  line-height: 25.5px;
  margin: 20px 0 42px;
  padding: 0 55px;
  position: relative;
}

.course-title:before,
.course-title:after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: #424242;
}

.course-title:before {
  left: 0;
}

.course-title:after {
  right: 0;
}

.course-description {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15.2px;
  letter-spacing: 1.06px;
  line-height: 31.9px;
  margin-bottom: 46px;
}

.course-buttons {
  display: flex;
  gap: 24px;
}

.course-button {
  flex: 1;
  padding: 15px;
  background-color: #e0c8a6;
  border-radius: 50px;
  border: 1px solid transparent;
  color: #ffffff;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 500;
  font-size: 14.4px;
  text-align: center;
  text-decoration: none;
  line-height: 30.3px;
}

/* Contact Section */
.contact-section {
  padding-top: 0;
  display: flex;
  height: 300px;
  /* 高さを少し増加 */
  width: 100%;
  /* 横幅いっぱい */
}

.contact-section .row {
  width: 100%;
  margin: 0;
}

.contact-section .col-lg-8,
.contact-section .col-lg-4 {
  padding: 0;
  /* container-lgがないのでpaddingを削除 */
}

.contact-item {
  position: relative;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  height: 100%;
  /* 高さいっぱい */
  min-height: 300px;
  /* 最小高さを確保 */
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.contact-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}

.contact-title {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 22.4px;
  letter-spacing: 3.36px;
  line-height: 31.4px;
  margin-bottom: 7px;
}

.contact-subtitle {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 2.40px;
  line-height: 33.6px;
  margin-bottom: 0;
}

.contact-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Footer */
.site-footer {
  background-color: #fbf8f3;
  padding: 40px 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px 28px;
  margin-bottom: 20px;
}

.footer-nav a {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #424242;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 34px;
}

.footer-copyright {
  text-align: center;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #424242;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: 20px;
}

.footer-sns {
  text-align: center;
  font-size: 40px;
}

.footer-sns i {
  color: #424242;
}

.footer-top {
  text-align: right;
}

/*Responsive*/
@media (max-width: 768px) {

  /*.container,
  .container-lg {
    padding-right: 20px;
    padding-left: 20px;
  }

  .col-12,
  .col-lg-3,
  .col-lg-4,
  .col-lg-6,
  .col-lg-8,
  .col-lg-9 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .row {
    margin-right: -10px;
    margin-left: -10px;
  } */

  .hero-title {
    font-size: 44px;
    letter-spacing: 3px;
  }

  .hero-sub-title{
    font-size: 35px;
  }

  .hero-subtitle {
    font-size: 30px;
    line-height: 40px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .diparte-marquee {
    --size: 140px;
    --gap: 12px;
    --duration: 28s;
  }

  .course-buttons {
    flex-direction: column;
  }

  .contact-section {
    flex-direction: column;
    height: auto;
    /* モバイルでは自動高さ */
  }

  .contact-item {
    min-height: 200px;
    /* モバイルでの最小高さ */
  }

  .contact-arrow {
    right: 20px;
    /* モバイルでは右端から少し離す */
  }

  .news-arrow {
    right: 20px;
    /* モバイルでは右端から少し離す */
  }

  .gnav-toggle {
    right: 20px;
    top: 20px;
  }

  .site-header {
    padding: 10px 0;
  }
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* About Page Styles */
.about-content-section {
  /* background-image: url(https://c.animaapp.com/YDTz3I2q/img/section.svg);
  background-size: cover;
  background-position: 50% 50%; */
  padding: 63px 0;
}

.about-content-wrapper {
  border-bottom: 1px solid #e3e5e5;
  padding-bottom: 63px;
}

.greeting-section {
  margin-bottom: 60px;
}

.section-header {
  margin-bottom: 40px;
}

.president-profile {
  text-align: center;
  margin-bottom: 30px;
}

.president-image {
  width: 293px;
  height: 265px;
  background-color: #d9d9d9;
  margin: 0 auto 20px;
}

.president-title {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #483c34;
  font-size: 18px;
  letter-spacing: 0.90px;
  line-height: 34.2px;
  margin: 0;
}

.greeting-text {
  background-color: #ffffff;
  padding: 30px 17px;
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .greeting-content{
    width: 80%;
    margin: 0 auto;
  }
}

.greeting-content p {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 500;
  color: #483c34;
  font-size: 18px;
  letter-spacing: 1.00px;
  line-height: 150%;
  margin: 0;
}

.sdgs-section .sdgs-image{
  background-image: url('../img/sdgs-image.png');
  width: 100%;
  aspect-ratio: 530 / 370;
  background-size: cover;
  background-position: 50% 50%;
}

.organization-section {
  background-size: cover;
  background-position: 50% 50%;
  padding: 63px 0;
}

.organization-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  padding: 56px 53px;
  border-bottom: 1px solid #e3e5e5;
}

.organization-list {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.organization-item {
  display: flex;
  border-top: 1px solid #e3dcc2;
  padding: 26px 0;
}

.organization-item.address-item {
  padding: 40px 0 26px 0;
}

.organization-item dt {
  width: 184px;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  color: #c3ad8e;
  font-size: 18px;
  letter-spacing: 1.39px;
  line-height: 24.4px;
  margin: 0;
}

.organization-item dd {
  flex: 1;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  color: #393939;
  font-size: 18px;
  letter-spacing: 1.31px;
  line-height: 22.9px;
  margin: 0;
}

.history-section {
  padding: 60px 0;
}

.history-header {
  text-align: center;
  margin-bottom: 60px;
}

.history-header .section-label {
  color: #eddfcb;
}

.timeline-item {
  display: flex;
  min-height: 96px;
}

.timeline-long {
  min-height: 183px;
}

.timeline-last {
  min-height: 141px;
}

.timeline-year {
  width: 301px;
  border-top: 1px solid #cfae7f;
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.timeline-last .timeline-year {
  border-bottom: 1px solid #cfae7f;
}

.timeline-year time {
  font-family: "Albert Sans", Helvetica;
  font-weight: 700;
  color: #181818;
  font-size: 16px;
  letter-spacing: 0.80px;
  line-height: 32px;
}

.timeline-description {
  flex: 1;
  border-top: 1px solid #eddfcb;
  padding: 21px 24px;
}

.timeline-long .timeline-description {
  padding: 27px 24px;
}

.timeline-last .timeline-description {
  border-bottom: 1px solid #eddfcb;
  padding: 13px 24px;
}

.timeline-description p {
  font-family: "Albert Sans", Helvetica;
  font-weight: 500;
  color: #181818;
  font-size: 16px;
  letter-spacing: 0.80px;
  line-height: 32px;
  margin: 0;
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
  .about-content-section .row.align-items-center {
    flex-direction: column;
  }

  .about-content-section .col-lg-4,
  .about-content-section .col-lg-8 {
    width: 100%;
    max-width: 100%;
  }

  .president-profile {
    margin-bottom: 30px;
  }

  .president-image {
    width: 250px;
    height: 200px;
  }

  .organization-wrapper {
    padding: 30px 20px;
  }

  .organization-item {
    flex-direction: column;
    padding: 20px 0;
  }

  .organization-item dt {
    width: 100%;
    margin-bottom: 10px;
  }

  .timeline-item {
    flex-direction: column;
    min-height: auto;
  }

  .timeline-year {
    width: 100%;
    padding: 15px 24px;
    border-bottom: 1px solid #cfae7f;
  }

  .timeline-description {
    padding: 15px 24px;
  }

  .timeline-long .timeline-description,
  .timeline-last .timeline-description {
    padding: 15px 24px;
  }
}

/* ============================== */
/* AMERICAN FLOWER PAGE STYLES   */
/* ============================== */

/* Hero Section for American Flower Page */
.page-template-page-american-flower .hero-section {
  height: 406px;
  background-image: url(https://c.animaapp.com/ZmZmNRw5/img/link.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-template-page-american-flower .hero-title {
  position: static;
  transform: none;
  animation: none;
  color: #ffffff;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  letter-spacing: 2.80px;
  line-height: 20px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

/* About Section for American Flower Page */
.page-template-page-american-flower .about-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.page-template-page-american-flower .section-header {
  margin-bottom: 60px;
}

.page-template-page-american-flower .section-label {
  font-family: "Open Sans", Helvetica;
  font-weight: 400;
  color: #e0c8a6;
  font-size: 12px;
  letter-spacing: 0.96px;
  line-height: 24px;
  margin-bottom: 11px;
}

.page-template-page-american-flower .section-title {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 38px;
  letter-spacing: 3.04px;
  line-height: 57px;
  margin: 0;
}

.cta-button-wrapper {
  margin: 60px 0 40px;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #424242;
}

.cta-bg {
  display: block;
  width: 56px;
  height: 56px;
  background-color: #e0c8a6;
  border-radius: 28px;
  margin-right: 25px;
}

.cta-text {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  font-size: 15.2px;
  letter-spacing: 2.28px;
  line-height: 14px;
}

.cta-arrow {
  width: 13px;
  height: 10px;
  margin-left: 25px;
}

.intro-text {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 30px;
  margin: 40px 0 60px;
}

/* Feature Articles */
.feature-articles {
  margin-top: 60px;
}

.feature-article {
  margin-bottom: 80px;
}

.feature-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 30px;
}

.article-header {
  position: relative;
  padding-left: 34px;
  margin-bottom: 30px;
}

.article-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 42px;
  background-color: #212121;
}

.article-title {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 28px;
  letter-spacing: 3.04px;
  line-height: 57px;
  margin: 0;
}

.article-text {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  margin: 0;
}

/* Courses Section */
.courses-section {
  padding: 66px 0;
  background-color: #ffffff;
}

.course-card {
  margin-bottom: 54px;
  border-bottom: 1px solid #eddfcb;
  padding-bottom: 54px;
}


.course-header {
  margin-bottom: 40px;
}

.course-label {
  font-family: "Open Sans", Helvetica;
  font-weight: 400;
  color: #e0c8a6;
  font-size: 12px;
  letter-spacing: 0.96px;
  line-height: 24px;
  margin-bottom: 11px;
}

.course-title {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 21px;
  letter-spacing: 3.04px;
  line-height: 57px;
  margin: 0;
}

.course-name {
  letter-spacing: 1.16px;
}

.course-subtitle {
  font-size: 18px;
  letter-spacing: 0.55px;
}

.course-content {
  margin-top: 40px;
}

.course-image {
  width: 100%;
  height: 388px;
  object-fit: cover;
}

.course-info {
  background-color: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #eddfcb;
  border-bottom: 1px solid #eddfcb;
  margin: 40px 0;
}

.course-details {
  font-family: "Albert Sans", Helvetica;
  font-weight: 500;
  color: #181818;
  font-size: 16px;
  letter-spacing: 0.80px;
  line-height: 32px;
  margin: 0;
}

.course-details dt {
  display: inline;
  font-weight: 500;
}

.course-details dd {
  display: inline;
  margin: 0;
  margin-bottom: 16px;
}

.course-details dt:after {
  content: " ";
}

.course-details dd:after {
  content: "\A";
  white-space: pre;
}

.course-recommend {
  margin-top: 30px;
}

.recommend-title {
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  color: #424242;
  font-size: 25px;
  letter-spacing: 0.44px;
  line-height: 67.5px;
  margin: 0 0 20px;
}

.recommend-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.recommend-list li {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18px;
  line-height: 32px;
  color: #424242;
  margin-bottom: 8px;
}

.learn-text {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18px;
  line-height: 43.2px;
  color: #424242;
  margin: 0;
}

.find-classroom-button {
  text-align: center;
  margin-top: 60px;
}

.classroom-button {
  display: inline-block;
  padding: 15px 82px;
  background-color: #e0c8a6;
  border-radius: 50px;
  border: 1px solid;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 14.4px;
  text-align: center;
  letter-spacing: 0;
  line-height: 30.3px;
  text-decoration: none;
  white-space: nowrap;
}

/* Step Up Section */
.stepup-section {
  background-color: #FBF8F3;
  padding: 80px 0;
}

.step-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-container {
  margin-top: 60px;
}

.step-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-item:last-child .step-line {
  display: none;
}

.step-number-wrapper {
  width: 65px;
  flex-shrink: 0;
  margin-right: 56px;
}

.step-circle {
  width: 65px;
  height: 65px;
  border: 2px solid #c3ad8f;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-label {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #c3ad8f;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

.step-num {
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #c3ad8f;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

.step-line {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100vh - 200px);
  max-height: 467px;
  background-color: rgba(196, 174, 143, 0.2);
  border-left: 4px solid rgba(196, 174, 143, 0.2);
}

.step-content {
  flex: 1;
  padding-top: 20px;
  padding-bottom: 40px;
}

.step-item:last-child .step-content {
  border-bottom: none;
  padding-bottom: 0;
}

.step-title {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #212529;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 28.8px;
  margin: 0 0 20px;
}

.step-text {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 19.2px;
  letter-spacing: 1.34px;
  line-height: 32.6px;
  margin: 0 0 20px;
}

.step-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.step-benefits li {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #c3ad8f;
  font-size: 19.2px;
  letter-spacing: 0;
  line-height: 28.8px;
  margin-bottom: 10px;
}

.step-placeholder {
  width: 340px;
  height: 257px;
  background-color: #d9d9d9;
  margin-top: 30px;
}

/* CTA Sections */
.cta-sections {
  padding: 0;
}

.cta-sections .row {
  margin: 0;
}

.cta-sections .col-md-8,
.cta-sections .col-md-4 {
  padding: 0;
}

.cta-card {
  position: relative;
  display: block;
  height: 265px;
  text-decoration: none;
  overflow: hidden;
}

.contact-cta {
  background-image: url(https://c.animaapp.com/ZmZmNRw5/img/link-2.png);
  background-size: cover;
  background-position: 50% 50%;
}

.artist-cta {
  background-image: url(https://c.animaapp.com/ZmZmNRw5/img/link-3.png);
  background-size: cover;
  background-position: 50% 50%;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 50px;
}

.cta-heading {
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 22.4px;
  letter-spacing: 3.36px;
  line-height: 31.4px;
  margin: 0 0 7px;
  white-space: nowrap;
}

.cta-label {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 2.40px;
  line-height: 33.6px;
  margin: 0;
  white-space: nowrap;
}

.cta-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 25px;
}

/* Additional Bootstrap Grid Classes for American Flower Page 
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}*/

/* American Flower Page Mobile Responsive */
@media (max-width: 768px) {
  .page-template-page-american-flower .hero-title {
    font-size: 28px;
    letter-spacing: 1.4px;
    white-space: normal;
    padding: 0 20px;
  }

  .page-template-page-american-flower .about-section,
  .courses-section,
  .step-up-section {
    padding: 50px 0;
  }

  .feature-articles .row {
    flex-direction: column;
  }

  .feature-image {
    margin-bottom: 20px;
    order: -1;
  }

  .course-content .row {
    flex-direction: column;
  }

  .course-image {
    margin-bottom: 30px;
    height: 250px;
  }

  .step-item {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .step-number-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .step-circle {
    position: relative;
  }

  .step-line {
    display: none;
  }

  .step-content {
    padding-top: 0;
  }

  .step-placeholder {
    width: 100%;
    height: 200px;
  }

  .cta-sections .row {
    flex-direction: column;
  }

  .cta-sections .col-md-8,
  .cta-sections .col-md-4 {
    width: 100%;
    max-width: 100%;
  }

  .cta-card {
    height: 200px;
  }

  .cta-content {
    padding: 30px;
  }

  .cta-heading {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .cta-icon {
    right: 20px;
  }
}

/*ディップジュエリーコース*/
.feature-item {
  margin-bottom: 60px;
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.feature-line {
  width: 5px;
  height: 42px;
  background-color: #e0c8a6;
  margin-right: 34px;
}

.feature-header h3 {
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 700;
  color: #212121;
  font-size: 28px;
  letter-spacing: 3.04px;
  line-height: 57px;
  margin: 0;
}

.feature-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-left: 34px;
}

.feature-text {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  flex: 1;
}

/* Lesson Section */
.lesson-content-section {
  padding-bottom: 80px;
  background-color: #ffffff;
}

.lesson-content-section .row {
  margin-bottom: 40px;
}

.lesson-header,
.stepup-header,
.cost-header {
  text-align: center;
  margin-bottom: 80px;
}

.lesson-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 40px 20px;
}

.lesson-card {
  width: 312px;
  text-align: left;
}

.lesson-title {
  margin-bottom: 20px;
}

.lesson-type {
  font-family: "Arial-Italic", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #000000;
  font-size: 18px;
  line-height: 25.2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.lesson-type::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: rgb(224, 200, 166);
  z-index: -1;
  top: -3px;
  left: -20px;
  border-radius: 30px;
}

.lesson-number {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lesson-number ::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-color: rgb(224, 200, 166);
  z-index: -1;
  top: -3px;
  left: -20px;
  border-radius: 30px;
}

.lesson-text {
  font-family: "Arial-Italic", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #000000;
  font-size: 18px;
  line-height: 25.2px;
}

.lesson-digit {
  font-family: "Arial-Italic", Helvetica;
  font-weight: 400;
  font-style: italic;
  color: #000000;
  font-size: 24px;
  line-height: 33.6px;
  margin-left: 5px;
}

.lesson-name {
  font-family: "Arial-Bold", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 17px;
  line-height: 30.8px;
}

.lesson-image-wrapper {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
}

.lesson-image {
  width: 90%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.find-school-button {
  text-align: center;
  margin-top: 60px;
}

.find-school-link {
  display: inline-block;
  background-color: #e0c8a6;
  border-radius: 50px;
  padding: 15px 40px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Zen Old Mincho", Helvetica;
  font-weight: 500;
  font-size: 14.4px;
  letter-spacing: 0;
  line-height: 30.3px;
}

.stepup-steps {
  margin-top: 20px;
  position: relative;
}

.stepup-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 30px;
  width: 4px;
  background-color: #c4ae8f20;
  height: calc(100% - 60px);
  z-index: 1;
}

@media (max-width: 767px) {
  .stepup-steps::before {
    left: 25px;
  }
}

.stepup-step {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.stepup-step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 90px;
  width: calc(100% - 90px);
  height: 1px;
  border-bottom: 1px dashed #ddd;
}

@media (max-width: 767px) {
  .stepup-step::after {
    left: 70px;
    width: calc(100% - 70px);
  }
}

.stepup-step:last-child {
  margin-bottom: 0;
}

.stepup-step:last-child::after {
  display: none;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .step-number {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}

.step-01 .step-number,
.step-02 .step-number,
.step-03 .step-number,
.step-04 .step-number {
  border: 2px solid #C4AE8F;
  color: #C4AE8F;
  background-color: #FBF8F3;
}

.step-number-text {
  font-size: 12px;
  text-transform: uppercase;
}

.step-number-value {
  font-size: 13px;
  font-weight: bold;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #333333;
}

@media (max-width: 767px) {
  .step-title {
    font-size: 18px;
  }
}

.step-description {
  font-size: 15px;
  color: #666666;
  margin-bottom: 15px;
  letter-spacing: 7%;
  line-height: 180%;
}

.step-description p {
  margin-bottom: 20px;

}

.step-description span {
  color: #C4AE8F;
}

.step-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .step-description {
    font-size: 14px;
  }
}

.cost-table {
  max-width: 100%;
  margin: 0 auto;
  background-color: #e0c8a6;
  padding: 40px;
  position: relative;
}

.cost-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.cost-item:last-of-type {
  margin-bottom: 20px;
}

.cost-label {
  background-color: transparent;
  border: 3px solid #ffffff;
  padding: 8px 16px;
  color: #ffffff;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.26px;
  line-height: 30.3px;
  text-align: center;
  margin-right: 32px;
  min-width: 200px;
}

.cost-sublabel {
  font-size: 16px;
  letter-spacing: 0.23px;
}

.cost-price {
  color: #ffffff;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1.96px;
  line-height: 30.3px;
  text-align: center;
}

.cost-unit {
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 14px;
  margin-right: 8px;
  display: block;
}

.cost-amount {
  font-size: 28px;
  letter-spacing: 0.55px;
  line-height: 28px;
  display: block;
}

.cost-note {
  color: #ffffff;
  font-family: "YuGothic-Bold", Helvetica;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30.3px;
  text-align: center;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .cost-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cost-label {
    margin-right: 0;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .cost-table {
    padding: 20px;
  }
}

/*アメリカンフラワーページ*/
.course-content p,
.course-content h3 {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  flex: 1;
}

.course-date {
  border-top: 1px solid #EDDFCC;
  border-bottom: 1px solid #EDDFCC;
  padding: 30px 0;
}

.course-content .course-text {
  margin-top: 40px;
}

.course-content img {
  width: 100%;
}

.course-text h3 {
  font-size: 21px;
  font-weight: 700;
}

.course-content .recommend {
  margin-bottom: 30px;
}

/*製品情報*/

.dip-jewelry-about-section p {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  flex: 1;
}

.dip-flower-section{
  padding-bottom: 0;
}

.dip-flower-section .courses-sectionn{
  padding-bottom: 50px;
}

/*認定教室について*/
/* #archive-artist .artist-section,
.artist .single-section {
  background-image: url('../img/artist_bk.png');
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  background-size: contain;
  background-size: 100%;
  background-repeat: no-repeat;
} */

.place-block {
  margin-top: 60px;
}

.place-block .artist-block {
  padding-bottom: 40px;
}

.class-date {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  flex: 1;
  padding: 20px 0;
  border-top: 4px solid #EFEFEF;
}

.class-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.other-row {
  display: inherit;
}

.class-icon {
  padding: 5px 15px;
  background-color: #F4EADD;
  color: #56583E;
  font-weight: 700;
}

.class-name {
  font-weight: 700;
}

.class-row .sns-icon a {
  margin-right: 5px;
}

.class-row .sns-icon i {
  font-size: 30px;
  color: #424242;
}

.class-row .class-web a {
  display: block;
  color: #424242;
}

.class-sidebar {
  border: 4px solid #F0F0F0;
}

.class-sidebar h4 {
  font-size: 21px;
  letter-spacing: 6%;
  font-family: "Zen Old Mincho", Helvetica;
  color: #fff;
  background-color: #CFAE7F;
  text-align: center;
  padding: 20px;
}

.class-sidebar ul {
  padding: 20px;
}

.class-sidebar li {
  padding: 5px 0px;
}

.class-sidebar a {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
  flex: 1;
}

/*認定アーティスト一覧*/
.artst-card {
  display: block;
  color: #333;
  background: #fff;
  border: 1px solid #555;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.30);
  padding: 15px;
  font-family: "YuGothic-Medium", Helvetica;
  line-height: 200%;
  letter-spacing: 6%;
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease;
}

.artst-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.artst-card h4 {
  border-top: 1px solid #CFAE7F;
  border-bottom: 1px solid #CFAE7F;
  margin-bottom: 20px;
}

.artst-card h5 {
  background-color: #F4EADD;
}

/*認定アーティスト詳細*/
.type-artist .name-block h2 {
  border-bottom: 1px solid #333;
  margin: 30px auto;
  width: 300px;
}

.type-artist .name-block img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 300px;
}

.artist_block {
  margin: 30px 0;
}

.artist_block li,
.artist_block table,
.artist_block a,
.artist_block .artist-class,
.artist_block .artist-message {
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
}

.artist_block li {
  border-top: 1px solid #E2E1E0;
  border-bottom: 1px solid #E2E1E0;
  padding: 10px 0;
  background-color: #fff;
}

.artist_block table {
  width: 100%;
  max-width: 500px;
}

.artist_block th {
  text-align: left;
  width: 30%;
  padding: 10px;
  border: 1px solid #D9D9D9;
  background: #F7F7F7;
}

.artist_block td {
  padding: 10px;
  border: 1px solid #D9D9D9;
  background-color: #fff;
}

/*お問い合わせページ*/

.page-section {
  display: inherit;
  height: inherit;
  width: inherit;
}

.contact-section .phone-section,
.contact-section .phone-block {
  margin-bottom: 50px;
  font-family: "YuGothic-Medium", Helvetica;
  font-weight: 500;
  color: #424242;
  font-size: 15px;
  letter-spacing: 1.05px;
  line-height: 30px;
}


.contact-form {
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 30px;
}

.contact-form .form-label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "YuGothic-Medium", Helvetica;
}

.contact-form .required {
  color: #e74c3c;
  margin-left: 5px;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.contact-form .checkbox-item {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  cursor: pointer;
}

.contact-form .privacy-link {
  color: #e0c8a6;
  text-decoration: underline;
}

.contact-form .submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #e0c8a6;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}