@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(225, 211, 193);
}

img {
  width: 100%;
  vertical-align: top;
}

main, footer {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
}

/* リスキリングエリア  */
.reskilling {
  padding: 20px;
}

/* ctaエリア  */
.ctaArea {
  padding: 20px 0 10px;
}

.ctaTitle {
  padding: 20px 20px 0;
}

.ctaButton {
  padding: 10px 20px 20px;
}

.ctaButton a img {
  transition: opacity 0.35s ease;
}

.ctaButton a:hover img {
  opacity: 0.8;
}

/* 本当に大丈夫？ */
.nayami {
  margin-bottom: 60px;
}


/* 他校の比較・こう変わります */
.comparison {
  padding-bottom: 40px;
}

/* ユーザーの声 */
.voiceTitle {
  padding: 40px 20px 20px;
}

.voice {
  padding: 20px;
}

.voice-slider {
  position: relative;
  overflow: hidden;
}

.voice-slides {
  position: relative;
  min-height: 220px;
}

.voice-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.voice-slide.active {
  opacity: 1;
  position: relative;
}

.voice-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.voice-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(183, 84, 84, 0.35);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.voice-arrow:hover {
  background: rgba(183, 84, 84, 0.55);
}

.voice-arrow.prev {
  left: 10px;
}

.voice-arrow.next {
  right: 10px;
}

.voice-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.voice-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(183, 84, 84, 0.25);
  cursor: pointer;
}

.voice-dot.active {
  background: rgba(183, 84, 84, 0.85);
}

/* 料金 */
.price {
  padding-top: 40px;
}

/* 申し込みの流れ */
.flow {
  padding-bottom: 40px;
}

/* フッタエリア */
footer {
  text-align: center;
}

.service_logo {
  padding-top: 40px;
}

.service_logo img {
  width: 200px;
}

.footerSection {
  background-color: #ff503c;
}

.footerSection ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 40px;
}

.footerSection ul a {
  display: inline-block;
  padding: 0 20px;
  color: rgb(255, 255, 255);
  font-size: 0.875rem
}

/* 申し込みフォーム */
.entry-form {
  background-color: #ffffff;
  padding: 40px 20px 60px;
}

.entry-form h2#anchor {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  border-left: 5px solid #f05078;
  padding: 6px 0 6px 12px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.form-lead {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

.form-lead-link {
  color: #f05078;
  text-decoration: underline;
  font-weight: bold;
}

.entry-form-body {
  display: block;
}

.form-field {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.required {
  font-size: 10px;
  color: white;
  background-color: #e83c81;
  padding: 0px 4px 1px;
  border-radius: 4px;
  margin-left: 2px;
}

.form-label-note {
  display: inline;
  font-size: 0.8rem;
  /* color: #991e26; */
  margin-left: 4px;
}

.form-input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  background-color: #eef4f9;
  border: 1px solid #b9d4e5;
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: #6ba7c9;
  background-color: #ffffff;
}

select.form-input {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-input::placeholder {
  color: #999;
}

/* チェックボックス */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background-color: #eef4f9;
  border: 1px solid #b9d4e5;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #b75454;
}

.checkbox-text {
  font-size: 0.875rem;
  color: #333;
  flex: 1;
}

/* 個人情報のテキストエリア */
.privacy-text {
  max-height: 220px;
  overflow-y: auto;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #444;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 注意書き */
.form-note {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
  margin: 28px 0 20px;
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 24px;
}

.form-submit-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(180deg, #ff9600 0%, #ff5a46 100%);
  background-color: #ff9600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.35s ease;
  font-family: inherit;
}

.form-submit-btn:hover {
  opacity: 0.8;
}

@media screen and (min-width:640px) {
  .ctaTitle {
    padding: 20px 60px 0;
  }
  .ctaButton {
  padding: 10px 60px 20px;
}
.form-submit-btn {
  max-width: 480px;
  padding: 26px 24px;
}
.confirm-back-btn {
  padding: 26px 24px !important;
}

}


/* 固定表示のCTA（画面下） */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  z-index: 9999;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.fixed-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed-cta-btn img {
  height: 56px;
  width: auto;
  display: block;
}

@media screen and (min-width: 640px) {
  .fixed-cta-inner { padding: 12px 20px; }
  .fixed-cta-btn img { height: 64px; }
}

@media screen and (max-width: 360px) {
  .fixed-cta-btn img { height: 48px; }
}

/* 非表示状態（フォームが見えたらスライドして消す） */
.fixed-cta.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* 確認画面・送信完了用スタイル */

.formHeader {
  border-top: 10px solid#ff503c;

}

/* === 確認画面（confirm.html）専用スタイル === */
.confirm-field {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.confirm-field:last-of-type {
  border-bottom: none;
}

.confirm-label {
  display: block;
  font-size: 0.95rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.confirm-value {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  padding: 4px 0 0 4px;
  word-break: break-all;
}

.confirm-value-list {
  list-style: none;
  padding: 4px 0 0 0;
  margin: 0;
}

.confirm-value-list li {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  padding: 6px 0 6px 24px;
  position: relative;
}

.confirm-value-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: #2a9b6a;
  font-weight: bold;
}

/* 送信前の注意書き */
.confirm-warning {
  margin: 32px 0 20px;
  padding: 16px;
  /* background-color: #fff6e6; */
  border: 1px solid #ff6666;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: bold;
  color: #ff6666;
  line-height: 1.7;
}

/* 2ボタン横並び */
.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.confirm-back-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: bold;
  color: #555;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.35s ease;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
	color: #555!important;
background-color: #f0f0f0!important;
border: 1px solid #ccc!important;
max-width:480px!important;
	margin-top:2em!important;
}

.confirm-back-btn:hover {
  opacity: 0.8;
}

@media screen and (min-width: 480px) {
  .confirm-actions {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 16px;
  }

  .confirm-actions .form-submit-btn,
  .confirm-actions .confirm-back-btn {
    width: auto;
    min-width: 180px;
  }
}

/* === 送信完了画面（complete.html）専用スタイル === */
.complete-heading {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #d55243;
  line-height: 1.5;
  margin: 20px 0 32px;
  padding: 0 4px;
}

.complete-body {
  font-size: 1rem;
  color: #333;
  line-height: 1.9;
  margin-bottom: 24px;
}

.complete-contact {
  margin-top: 32px;
  padding: 20px;
  background-color: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-align: center;
  line-height: 1.8;
}

.complete-contact-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.complete-contact-mail {
  font-size: 1.05rem;
  color: #b75454;
  word-break: break-all;
}

.complete-contact-mail a {
  color: inherit;
  text-decoration: underline;
}

@media screen and (min-width: 480px) {
  .complete-heading {
    font-size: 1.75rem;
    margin: 24px 0 36px;
  }
}