@charset "UTF-8";

/* =====================================================
  MENU PAGE
===================================================== */
.tg-menu-page{
  background:#fff;
  color:var(--tg-text);
}

/* =====================================================
  PAGE HERO
===================================================== */
.tg-page-hero{
  padding-top: calc(var(--tg-header-h) + 96px);
  padding-bottom: 96px;
}

.tg-page-title{
  position: relative;
  display: inline-block;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: .08em;
}

.tg-page-title::after{
  content:"";
  display:block;
  width:48px;
  height:1px;
  background:#222;
  margin:18px auto 0;
  opacity:.6;
}

.tg-page-lead{
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  line-height: 2.05;
}

/* =====================================================
  MENU SECTION
===================================================== */
.tg-menu-section{
  padding-top: 96px;
  padding-bottom: 96px;
}

.tg-menu-section + .tg-menu-section{
  padding-top: 32px;
}

/* =====================================================
  COURSE LIST
===================================================== */
.tg-course-list{
  max-width: 920px;
  margin: 56px auto 0;
  border-top: 1px solid var(--tg-line);
}

.tg-course{
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--tg-line);
}

/* =====================================================
  COURSE HEAD
===================================================== */
.tg-course__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.tg-course__name{
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .06em;
}

.tg-course__price{
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .06em;
  color: var(--tg-muted);
}

/* =====================================================
  COURSE BODY
===================================================== */
.tg-course__body{
  max-width: 760px;
}

.tg-course__body p{
  line-height: 2;
}

.tg-course__body p + p{
  margin-top: 20px;
}

/* =====================================================
  COURSE MENU
===================================================== */
.tg-course__menu{
  margin-top: 28px;
}

.tg-course__menu-title{
  font-size: 15px;
  line-height: 1.8;
}

.tg-course__items{
  margin-top: 14px;
}

.tg-course__items li{
  position: relative;
  padding-left: 1.1em;
  line-height: 2;
}

.tg-course__items li::before{
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* =====================================================
  NOTES
===================================================== */
.tg-course__notes{
  margin-top: 24px;
}

.tg-course__notes p{
  color: var(--tg-muted);
  font-size: 14px;
  line-height: 1.9;
}

.tg-course__notes p + p{
  margin-top: 8px;
}

/* =====================================================
  LINKLINE IN MENU
===================================================== */
.tg-menu-page .tg-linkline{
  margin-top: 32px;
}

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

  .tg-page-hero{
    padding-top: calc(var(--tg-header-h) + 72px);
    padding-bottom: 72px;
  }

  .tg-page-lead{
    margin-top: 32px;
    line-height: 1.95;
    font-size: 15px;
  }

  .tg-menu-section{
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .tg-course-list{
    margin-top: 40px;
  }

  .tg-course{
    padding: 32px 0 36px;
  }

  .tg-course__head{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
  }

  .tg-course__name{
    font-size: 22px;
  }

  .tg-course__price{
    font-size: 15px;
  }

  .tg-course__body p{
    line-height: 1.95;
    font-size: 15px;
  }

  .tg-course__items li{
    line-height: 1.95;
    font-size: 15px;
  }

  .tg-course__notes p{
    font-size: 13px;
    line-height: 1.85;
  }
}