/* =========================================
   Reset & Base Styles
   ========================================= */ :root {
  /* Colors based on design context */
  --color-primary: #f39832;
  /* Orange */
  --color-secondary: #8BC34A;
  /* Light Green */
  --color-accent: #FFC107;
  /* Yellow/Gold */
  --color-title-primary: #f7f7f8;
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-tertiary: #f2f2f2;
  --color-bg-light: #f7f7f8;
  --color-white: #FFFFFF;
  --color-border-primary: #7c7877;
  --color-border-input: #cccccc;
  /* Layout */
  --header-height-pc: 70px;
}
/* ボタン用グラデーション（画像デザイン準拠） */
--grad-orange: linear-gradient(90deg, #f39800 0%, #ffbb54 100%);
--grad-green: linear-gradient(90deg, #32b141 0%, #83c150 100%);
*, *::before, *::after {
  box-sizing: border-box;
}


h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
button, label, input[type="submit"], select {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
ul {
  list-style: none;
}
html {
  overflow-x: auto;
  scroll-behavior: smooth;
}
body {
  color: var(--color-text-primary);
  background-color: var(--color-white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  min-width: 1280px;
  width: 100%;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.04em -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 70px;
}
.wrapper {
  flex-flow: column;
  display: flex;
  margin: auto;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
}
/* =========================================
   Header
   ========================================= */
/* ヘッダー全体のスタイル */
.header {
  width: 100%;
  height: 70px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header__container {
  width: 100%;
  max-width: 1280px;
  min-width: 768px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .header__container {
    padding: 0 40px;
  }
}
.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header__logo-img {
  height: 55px;
  width: auto;
  margin-right: 15px;
}
.header__title {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
  color: var(--color-text-secondary);
}
/* ボタンエリア */
.header__actions {
  display: flex;
  gap: 8px;
}
.header__btn {
  display: flex;
  align-items: center;
  width: 260px;
  height: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  padding: 0 4px;
  border-radius: 25px;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}
.header__btn:hover {
  opacity: 0.8;
}
/* アイコン部分の円形 */
.header__btn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
}
.header__btn--green .header__btn-icon {
  margin-right: 16px;
}
.header__btn--orange .header__btn-icon img {
  width: 23px;
  height: auto;
}
.header__btn--green .header__btn-icon img {
  width: 25px;
  height: auto;
}
/* オレンジボタンのグラデーション */
.header__btn--orange {
  background: linear-gradient(90deg, #f39832 0%, #fbc538 100%);
}
/* グリーンボタンのグラデーション */
.header__btn--green {
  background: linear-gradient(90deg, #06c755 0%, #8ec54e 100%);
}
@media screen and (max-width: 960px) {
  .header__container {
    padding: 0 20px;
  }
  .header__logo-img {
    height: 38px;
    margin-right: 12px;
  }
  .header__title {
    font-size: 10px;
  }
  .header__btn {
    display: flex;
    align-items: center;
    width: 200px;
    height: 38px;
    font-size: 12px;
    padding: 0 4px;
  }
  .header__btn-icon {
    width: 30px;
    height: 30px;
  }
  .header__btn--green .header__btn-icon {
    margin-right: 9px;
  }
  .header__btn--orange .header__btn-icon img {
    width: 18px;
  }
  .header__btn--green .header__btn-icon img {
    width: 20px;
  }
}

/* =========================================
   Main Visual Styles
   ========================================= */
.mv {
  width: 100%;
  min-width: 1280px;
  position: relative;
}
.mv__main {
  width: 100%;
  height: 845px;
  background: url('../images/mv.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .mv__main {
    height: 44.0104vw;
    width: 100%;
  }
}
.mv__container {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
/* アニメーションアイテム共通 */
/*
.mv__item {
  position: absolute;
  opacity: 0;
  z-index: 5;
  animation: mvPyon 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.mv__item--presenter {
  top: 180px;
  right: 135px;
  animation-delay: 0.5s;
}
.mv__item--badge {
  top: 545px;
  right: 80px;
  animation-delay: 0.8s;
}
.mv__item--object {
  top: 595px;
  right: 55px;
  animation-delay: 1.1s;
}
*/
.mv__training {
  width: 100%;
  min-width: 1280px;
  margin-top: -100px;
  padding: 0 40px 76px 40px;
  position: relative;
  z-index: 10;
}
.mv__training-container {
  width: 1280px;
  /*margin: 0 auto;*/
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.mv__training-list {
  display: flex;
  justify-content: flex-start;
}
.mv__training-item {
  width: 412px;
  height: 235px;
}
.mv__training-item:nth-child(1) {
  margin-right: -100px;
}
.mv__training-item:nth-child(3) {
  margin-left: -100px;
}
.mv__training-item img{
  width: 100%;
  height: auto;
}
/*
@keyframes mvPyon {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(1);
  }
  98% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
*/
/* =========================================
   Section__title
   ========================================= */
.section__title-main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 50px;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
}
.section__title-en {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 25px;
  color: var(--color-primary);
}
/* =========================================
   vertical-label
   ========================================= */
.vertical-label {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-title-primary);
  line-height: 1;
  white-space: nowrap;
}
/* =========================================
   Banner Styles
   ========================================= */
.banner {
  width: 100%;
  min-width: 1280px;
  padding-bottom: 80px;
}
.banner__container {
  width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}
.banner__link {
  display: inline-block;
  width: 100%;
  max-width: 1000px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.banner__link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.banner__img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
/* =========================================
   Concept Section Styles (最終設計)
   ========================================= */
.concept {
  width: 100%;
  /*min-width: 1280px;*/
  margin: 0 auto;
  padding: 60px 0 180px;
  position: relative;
}
.concept__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
.concept__header {
  position: relative;
  margin-left: 68px;
  margin-bottom: 150px;
  text-align: left!important
}
.concept__lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 50px;
  line-height: 1.3;
  color: #333;
  font-feature-settings: "palt";
  letter-spacing: 0.02em
}
.concept__heading-deco {
  position: absolute;
  top: 95px;
  left: 388px;
  width: 177px;
  height: auto;
  z-index: -1
}
.concept__body {
  position: relative;
}
.concept .vertical-label {
  position: absolute;
  left: -16px;
  top: 5px;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 92px;
  letter-spacing: 0.13em;
}
.concept__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}
.concept__main-text {
  width: 520px;
  margin-left: 110px;
  margin-right: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.02em
}
.concept__title-en {
  display: block;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 39px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.concept__title-line {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #333;
  margin-bottom: 30px;
}
.concept__description {
  position: relative;
  padding-bottom: 20px;
}
.concept__description .text {
  font-size: 20px;
  line-height: 2.2;
  margin-bottom: 2em;
  color: #333;
}
.concept__inner-deco {
  position: absolute;
  left: -23px;
  bottom: 45px;
  width: 93px;
  height: auto;
  z-index: -1;
}
.concept__image-area {
  width: 458px;
  margin-top: -160px;
}
.concept__img {
  width: 100%;
  height: auto;
  display: block;
}
.concept__bg-deco-bottom {
  position: absolute;
  right: 0;
  bottom: 55px;
  width: 320px;
  z-index: 1;
  pointer-events: none;
}
/* =========================================
   Lesson Section
   ========================================= */
.lesson {
  width: 100%;
  padding: 130px 0 160px;
  position: relative;
  overflow: hidden;
}
.lesson__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.lesson__container {
  background-color: var(--color-bg-light);
  border-radius: 60px;
  margin-left: 90px;
  padding: 260px 0 176px;
  z-index: 5;
  position: relative;
  padding-right: 100vw;
  margin-right: -100vw;
}
.lesson .vertical-label {
  position: absolute;
  right: 0;
  top: 41px;
  font-size: 110px;
}
.lesson__header {
  position: absolute;
  top: 65px;
  left: 42px;
  z-index: 10;
  display: inline-block;
  /*border-bottom: 2px solid #7c7877;*/
  padding-bottom: 4px;
}
.lesson__header .section__title-main {
  letter-spacing: 0.25em;
}
.lesson__header .section__title-en {
  letter-spacing: 0.18em;
  padding-right: 8px;
}
.lesson__body {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}
.lesson__lead {
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: 0.08em
}
.lesson__flow {
  margin-bottom: 60px;
}
.lesson__flow-caption {
  font-size: 20px;
  margin-bottom: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.08em
}
.lesson__flow-list {
  list-style: none;
  padding: 0;
}
.lesson__flow-list.has-vertical-line {
  position: relative;
  list-style: none;
  padding: 0;
}
.lesson__flow-list.has-vertical-line::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 30px;
  width: 3px;
  background: #dedce1;
  z-index: 1;
}
.lesson__flow-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.lesson__flow-num-wrapper {
  flex-shrink: 0;
  width: 36px;
  margin-right: 4px;
  position: relative;
  z-index: 5;
  background-color: transparent;
}
.lesson__flow-num {
  width: 100%;
  height: auto;
  display: block;
}
.lesson__diagram {
  margin-top: 84px;
  text-align: center;
}
.lesson__diagram-img {
  width: 780px;
  height: auto;
  margin-left: -58px;
}
.lesson__flow-item .text {
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.08em
}
.lesson__textbook {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: -15px
}
.lesson__textbook-label {
  font-size: 18px;
}
.lesson__textbook-img {
  width: 146px;
}
.lesson__bg-deco-line {
  position: absolute;
  top: 400px;
  left: 0;
  z-index: 1;
  width: 300px;
}
.lesson__bg-deco-dot {
  position: absolute;
  left: -30px;
  bottom: -126px;
  z-index: 1;
  width: 598px;
  height: auto;
  pointer-events: none;
}
/* =========================================
   Results Section 
   ========================================= */
.results {
  width: 100%;
  padding: 180px 0 160px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.results .vertical-label {
  position: absolute;
  left: 0;
  top: 91px;
  font-size: 110px;
}
.results__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  box-sizing: border-box;
}
.results__header {
  text-align: right;
  margin-bottom: 50px;
  position: absolute;
  top: 65px;
  right: 20px;
  z-index: 10;
  /*border-bottom: 2px solid #7c7877;*/
  padding-bottom: 4px;
}
.results__header .section__title-main {
  letter-spacing: 0;
  margin-right: 15px
}
.results__header .section__title-en {
  letter-spacing: 0.038em;
}
.results__container {
  background-color: var(--color-bg-light);
  border-radius: 60px;
  padding: 306px 0 184px 60px;
  position: relative;
  z-index: 5;
  padding-left: 100vw;
  margin-left: -100vw;
  margin-right: 110px;
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 134px 72px;
  max-width: 930px;
  margin: 0 auto;
}
.results__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.results__num-img {
  width: auto;
  height: 117px;
  opacity: 0.8;
  margin-bottom: -40px;
  position: absolute;
  top: -56px;
  left: 0;
  z-index: 10;
}
.results__illust-wrap {
  width: 345px;
  margin-bottom: 28px;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.results__illust {
  width: 100%;
}
.results__desc {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.results__effect {
  width: 70px;
  height: 59px;
}
.results__text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0
}
/* おすすめ枠（オレンジの枠線） */
.results__recommend {
  margin: 160px auto 0;
  max-width: 867px;
  width: 100%;
  background-image: url("../images/recommended_frame.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 80px 36px 60px;
  position: relative;
  box-sizing: border-box;
}
.results__recommend-tag {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 17px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0;
  white-space: nowrap;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.results__recommend-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f3a04e;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 98% 100%, 2% 100%);
}
.results__recommend-icon {
  position: absolute;
  right: -30px;
  top: -35px;
  width: 47px;
}
.results__recommend-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.results__recommend-list li {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}
.results__recommend-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 15px;
  background-image: url("../images/check.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.results__bg-deco-line {
  position: absolute;
  top: 300px;
  right: 0;
  width: 300px;
  z-index: 5;
}
.results__bg-deco-dot {
  position: absolute;
  right: calc(50% - 599px);
  bottom: 0;
  width: 599px;
  height: auto;
  z-index: 1;
}
/* =========================================
   Exam Section (受験クラス)
   ========================================= */
.exam {
  width: 100%;
  padding: 200px 0 160px;
  position: relative;
  overflow: hidden;
}
.exam__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
/* ヘッダー画像 */
.exam__header {
  position: absolute;
  top: 65px;
  left: 42px;
  z-index: 10;
  display: inline-block;
  padding-bottom: 4px;
}
.exam__header .section__title-main {
  letter-spacing: 0;
  margin-right: 15px
}
.exam__header .section__title-en {
  letter-spacing: 0.18em;
  padding-right: 70px;
}
.exam__title-img {
  width: auto;
  height: 75px;
  display: block;
}
.exam .vertical-label {
  position: absolute;
  right: 367px;
  top: 113px;
  font-size: 110px;
}
/* 右端突き抜けコンテナ (.lessonと同じスタイル) */
.exam__container {
  background-color: var(--color-bg-light);
  border-radius: 60px;
  margin-left: 90px;
  padding: 260px 0 184px 20px;
  position: relative;
  z-index: 5;
  padding-right: 100vw;
  margin-right: -100vw;
  margin-left: 110px;
}
.exam__body {
  max-width: 1137px;
  margin: 0 auto;
  padding: 80px 90px 260px;
  position: relative;
}
.exam__class-info {
  width: 100%;
  height: 84px;
  position: relative;
  background-color: #fff;
  border-top:4px solid #c7bf34;
  border-bottom:4px solid #c7bf34;
  box-sizing: border-box;
}
/* 生徒募集中 */
.class-deco-entry {
  position: absolute;
  width: 200px;
  height: auto;
  top: -90px;
  left: -70px;
  z-index: 10;
}
/* 講師写真 */
.class-deco-teacher {
  position: absolute;
  width: 160px;
  height: auto;
  top: -25px;
  right: -90px;
  z-index: 10;
}
.exam__class-label {
  position: relative;
  width: 100%;
  background-color: #c7bf34;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.exam__class-name{
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  padding-left: 125px;
}
/* 講師情報部分 */
.exam__teacher-info {
  position: relative;
  width: 300px;
  height: 76px;
  display: flex;
  flex-flow: column;
  gap: 8px;
  padding: 8px 48px;
  box-sizing: border-box;
}
.exam__teacher-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff; 
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%, 0% 50%);
  z-index: -1;
}
.label-teacher,
.teacher-name{
  font-size: 24px;
  font-weight: bold;
  display: block;
  line-height: 1;
}
.label-teacher {
  color: #a4bb16;
}
.exam-table {
  width: 892px;
  border-collapse: collapse;
  color: #333;
}
.exam-table tr{
  border-bottom: 2px dotted #c0c0bf;
}
.exam-table tr:last-child {
  border-bottom: 4px solid #c7bf34;
}
.exam-table th,
.exam-table td {
  width: 100%;
  font-size: 20px;
  padding: 25px 40px;
  text-align: left;
  box-sizing: border-box;
}
.exam-table th {
  background-color: #efeeee;
  font-weight: 24px;
  font-weight: bold;
  white-space: nowrap;
  width: 147px
}
.exam-table td.multiple-column{
  width: 299px
}
.exam-table td.admission-fee {
  align-items: center;
  padding: 4px 40px;
}
/* 以前の価格（打ち消し線） */
.old-price {
  position: relative;
  margin-right: 8px;
}
.old-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #e8532b; /* 赤い打ち消し線 */
  transform: translateY(-50%);
}
.new-price {
  width: 218px;
  height: auto;
}

.exam__table-image{
  position: relative;
}
.exam__images{
  position: absolute;
  width: 460px;
  height: auto;
  top:-100px;
  right: -168px;
  z-index: 2
}
/* 下部：受験対策エリア */
.exam__footer-info {
  margin-top: 173px;
  margin-left: 0;
  display: flex;
  gap: 120px;
  align-items: flex-start;
}
.exam__footer-header {
  position: relative;
  flex-shrink: 0;
}
.exam__footer-header .section__title-main{
  color: var(--color-text-primary);
  letter-spacing: 0;
  font-weight: 400
}
.exam__footer-deco {
  position: absolute;
  top: 40px;
  left: 430px;
  width: 176px;
  height: auto;
  z-index: -1
}
.exam__footer-text {
  flex: 1;
  font-size: 15.5px;
  line-height: 2.2;
  color: #333;
  margin-top: 110px;
}
.exam__footer-text .text{
  flex: 1;
  font-size: 20px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em
}
/* 装飾パーツ */
.exam__deco-line {
  position: absolute;
  bottom: 640px;
  left: -100px;
  width: 350px;
  z-index: 1;
}
.exam__deco-sline {
  position: absolute;
  top: 60px;
  left: 180px;
  width: 160px;
  z-index: 1;
}
.exam__bg-deco-dot {
  position: absolute;
  top: -123px;
  left: 20px;
  width: 599px;
  height: auto;
  z-index: 1;
}

/* =========================================
   Contact (問い合わせフォーム)
   ========================================= */
.contact {
  background-color: var(--color-bg-light);
  border-radius: 50px 50px 0 0;
  padding: 110px 40px 180px;
}

.contact__inner {
  max-width: 1024px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 50px;
  position: relative
}
/*.contact__header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #7c7877;
}*/
.contact__header .section__title-main{
  letter-spacing: 0
}
.contact__header .section__title-en{
  display: block
}
/* フォーム本体 */
.contact__fields {}
.contact__row {
  display: flex;
  align-items: center;
  padding: 40px 72px 40px 8px;
  border-bottom: 1px solid #ccc;
}
.contact__row:first-child{
  border-top: 1px solid #ccc;
}
.contact__row--textarea {
  align-items: flex-start;
}
/* ラベル周り */
.contact__label {
  width: 230px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.contact__tag {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  padding: 4px 10px 6px;
  margin-right: 15px;
  font-weight: normal;
  line-height: 1;
  transform: translateY(1px)
}
.contact__label--no-tag {
  padding-left: 58px;
  margin-right: -58px;
  /* 必須タグがない要素のインデント調整 */
}

/* 入力フィールド */
.contact__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact__input,
.contact__select,
.contact__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border-input);
  font-size: 16px;
  color: #333;
}
.contact__textarea {
  height: 200px;
  resize: none;
}
.contact__input::placeholder {
  color: #808080;
}
/* セレクトボックスの矢印カスタマイズ */
.contact__select-unit {
  position: relative;
  width: 100%;
  max-width: 240px;
}
.contact__select-unit::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}
/* フォーカス時のスタイル */
.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 10px rgba(248, 231, 197, 0.8);
}
.contact__select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
/* チェックボックス全体の非表示とカスタマイズ */
.contact__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}
.contact__checkbox {
  display: none;
}
/* カスタムチェックボックスの外枠 */
.contact__checkbox-text {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
}
.contact__checkbox-text::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid #333;
  background-color: #fff;
  transition: all 0.2s ease;
}
.contact__checkbox:checked + .contact__checkbox-text::before {
  background-color: #f39832;
  border-color: #f39832;
}
.contact__checkbox-text::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.contact__checkbox:checked + .contact__checkbox-text::after {
  opacity: 1;/* チェックされたらマークを表示 */
}
.contact__note {
  font-size: 13px;
  color: #333;
}

/* プライバシーポリシー */
.contact__policy {
  max-width: 880px;
  margin: 0 auto;
  margin-top: 64px;
}
.contact__policy-title {
  background-color: #f8e7c5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  margin: 0;
}
.contact__policy-body {
  height: 180px;
  overflow-y: scroll;
  padding: 25px;
  font-size: 13px;
  line-height: 2;
  color: #333;
  border: 1px solid #dcdcdc;
  background-color: #fff;
}
.contact__consent {
  text-align: center;
  margin-top: 80px;
}
.contact__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
}
.contact__checkbox {
  margin-right: 12px;
  width: 18px;
  height: 18px;
}
.contact__submit-wrap,
.thanks__btn-wrap{
  text-align: center;
  margin-top: 50px;
}
.contact__submit,
.thanks__btn,
.back__btn{
  width: 400px;
  background: linear-gradient(to right, #f8bc7a, #f3a04e); 
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 30px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.contact__submit:hover,
.thanks__btn:hover,
.back__btn:hover {
  opacity: 0.85;
}
.back__btn{
  background:#999;
  color: #fff;
}
/*----- confirm -----*/
.confirm__btn-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:24px;
}
.confirm{}
.contact_frm.confirm td{
  letter-spacing: normal;
}
.contact_frm.confirm th {
  width: 400px;
}
.section__title-main.error_messe{
  font-size: 40px
}
.error_messe{
  color: #F55A5A;
}
.error_item .error_messe{
  padding-bottom: 0.5em
}
.error_wrap{
  background: #fff;
  border-radius: 50px;
  margin-bottom: 40px;
  padding: 40px;
  display: flex;
  justify-content: center
}
.contact_frm {
	border-collapse: collapse;
	table-layout: fixed;
  width: 100%;
  margin-bottom: 100px
}
.contact_frm tr{
  border-bottom: 1px solid #ccc;
}
.contact_frm tr:first-child{
  border-top: 1px solid #ccc;
}
.contact_frm th, .contact_frm td {
	line-height: 1.6;
	text-align: left;
  border-left: 0;
  border-right: 0;
	padding: 24px;
}
.confirm__text{
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px
}
/*----- thanks -----*/
.contact.thanks{
  background: none;
}
.thanks__text{
  text-align: center;
  font-size: 18px;
  line-height: 1.8
}
/* =========================================
   Site Info
   ========================================= */
.site-info {
  width: 100%;
  height: 698px;
  background-image: url('../images/site-info_bg.jpg');
  background-size: cover;
  background-position: bottom left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-info__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px
}
.site-info__box-container {
  display: flex;
  height: 390px;
}
/* 左側：MAPエリア */
.site-info__map-area {
  width: 723px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-info__content-area {
  width: 477px;
  background-color: #fff;
  padding: 30px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.site-info__pagetop {
  position: absolute;
  bottom: -120px;
  right: 0;
  width: 84px;
  height: 84px;
  z-index: 10;
  transition: transform 0.3s ease;
}
.site-info__pagetop img {
  width: 100%;
  height: auto;
  display: block;
}
.site-info__logo-unit {
  margin-bottom: 18px;
}
.site-info__logo {
  width: 345px;
  height: 83px;
  object-fit: contain;
}
.site-info__address-unit {
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  color: #333;
}
.site-info__branch-name {
  color: #666666;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2px;
}
.site-info__address-text {
  font-size: 18px;
  line-height: 1.4;
  white-space: pre; 
}
.site-info__tel {
  font-size: 18px;
}

/* お問い合わせ・お申し込み部分 */
.site-info__contact-unit {
  width: 100%;
  text-align: center;
}
.site-info__contact-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.site-info__deco {
  width: 11px;
  height: 22px;
}
.site-info__contact-label {
  color: var(--color-text-secondary);
  font-size: 20px;
  font-weight: bold;
}
.site-info__btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.site-info__btn {
  width: 178px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  border-radius: 8px;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: opacity 0.3s;
}
.site-info__btn:hover {
  opacity: 0.8;
}
.site-info__btn--mail {
  background-color: #f3a04e;
}
.site-info__btn-icon--mail {
  width: 33px;
  height: 22px;
}
.site-info__btn--line {
  background-color: #06c755;
}
.site-info__btn-icon--line {
  width: 35px;
  height: 33px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  width: 100%;
  height: 100px; 
  background: linear-gradient(to right, #f6b059 0%, #f6b059 76.66%,#ffeca1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer__inner {
  text-align: center;
  line-height: 1.8;
}

.footer__info {
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.05em;
}

.footer__copyright {
  display: block;
  font-size: 10px;
  font-weight: normal;
  margin-top: 5px;
  letter-spacing: 0.02em;
}






