@charset "UTF-8";

/*-----------------------------------------------------------
reset for form.html (lp5と統一)
------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
    display: block;
}
ul, ol {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    background: transparent;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input, select {
    vertical-align: middle;
}

/*-----------------------------------------------------------
base settings for form.html
------------------------------------------------------------*/
html {
    font-size: 62.5%;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}

/* ヘッダー */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5em 2%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 60px;
}

.header-content {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2fc682;
  text-decoration: none;
  cursor: default;
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.progress-bar-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
}

.progress-step {
  display: flex;
  align-items: center;
  position: relative;
}

.progress-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #9FD4B8;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-number {
  font-size: 14px;
  font-weight: 600;
  color: #59B184;
  transition: color 0.3s ease;
}

/* アクティブなステップ：弱い緑系の塗りつぶし、白い数字、グラデーション */
.progress-step.active .progress-circle {
  border-color: #59B184;
  background: linear-gradient(135deg, #9FD4B8 0%, #59B184 100%);
  box-shadow: 0 2px 4px rgba(89, 177, 132, 0.2);
}

.progress-step.active .progress-number {
  color: #ffffff;
}

/* 未完了ステップ：弱い緑系のアウトライン、弱い緑系の数字 */
.progress-step:not(.active) .progress-circle {
  border-color: #9FD4B8;
  background-color: #ffffff;
}

.progress-step:not(.active) .progress-number {
  color: #59B184;
}

.progress-line {
  width: 60px;
  height: 2px;
  background-color: #d1d5db;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

/* アクティブな線を弱い緑系に */
.progress-line.active {
  background-color: #59B184;
}

/* アクティブでない線はグレー */
.progress-line:not(.active) {
  background-color: #d1d5db;
}

/* フォームコンテナ */
.contactForm {
  padding: 0;
}

/* 利用規約モーダル */
.terms-modal-txt {
  font-size: 1.0rem;
}

.terms-modal {
  display: none;
  /* 初期状態では非表示 */
  position: fixed;
  z-index: 1999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* モーダル全体のスクロールを無効に */
  background-color: rgba(0, 0, 0, 0.4);
}

/* モーダルコンテンツ */
.terms-modal-content {
  display: flex;
  flex-direction: column;
  background-color: #fefefe;
  margin: 10% auto;
  padding: 0 20px;
  border: 1px solid #888;
  width: 70%;
  max-height: 80vh;
  /* コンテンツが画面に収まるように最大高さを設定 */
  overflow-y: hidden;
  word-wrap: break-word;
  /* 長い単語を適切に折り返す */
}

@media screen and (max-width: 780px) {
  .terms-modal-content {
    width: 80%;
  }
}

/* クローズボタン */
.terms-modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  align-self: flex-end;
  cursor: pointer;
}

@media screen and (max-width: 780px) {
  .terms-modal-close {
    font-size: 22px;
  }
}

.terms-modal-close:hover,
.terms-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* モーダル内テキスト */
.terms-modal-txt {
  max-height: calc(40vh - 40px);
  overflow-y: auto;
  padding: 0 20px 20px;
  flex: 1;
  text-align: left;
  font-size: 1.4rem;
}

@media screen and (max-width: 780px) {
  .terms-modal-txt {
    font-size: 1.2rem;
  }
}

.terms-modal-txt ol {
  padding-left: 10px;
  list-style-type: decimal;
}

.terms-modal-txt ul {
  padding-left: 20px;
  font-weight: 500;
}

.terms-modal-txt .list-num {
  margin: 1rem 0 2rem;
  font-weight: 600;
}

.terms-modal-txt .circle {
  list-style-type: circle;
  margin-left: 10px;
}

.terms-modal-txt .square {
  list-style-type: square;
  margin-left: 10px;
}

.terms-modal-txt .space {
  margin-bottom: 20px;
}

.terms-modal-txt .txt-bold {
  font-weight: 600;
}

.terms-modal-txt .no-type {
  list-style-type: none;
}

.terms-modal-txt p {
  margin: 10px 0 20px 10px;
  font-weight: 500;
}

.terms-modal-txt .numbered-list {
  list-style-type: none;
  padding-left: 20px;
  counter-reset: item;
}

.terms-modal-txt .numbered-list li {
  text-indent: -30px;
}

.terms-modal-txt .numbered-list li::before {
  content: counter(item) "）";
  counter-increment: item;
  margin-right: 10px;
}

.thanks-main {
  margin-top: 60px;
  margin-bottom: 3rem;
  min-height: calc(100vh - 60px);
}

.thanks-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
  border-radius: 20px;
  text-align: center;
  margin: 0 auto;
}

.thanks-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.thanks-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.comment {
  text-align: left;
  margin-top: 2rem;
}

.comment h3 {
  font-size: 1.6rem;
}

.comment textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 1em;
  font-size: 1.8rem;
}

.cta-btn-submit img {
  max-width: 70%;
}

/* 会話形式フォーム */
.conversation-container {
  min-height: 200px;
  width: 100%;
  overflow-y: auto;
  padding: 0.5rem;
  align-self: center;
}

.message {
  margin-bottom: 1rem;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  margin-right: 3rem;
  scroll-margin-top: 70px;
}

.bot-avatar {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #D4F4E0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #B8E6D1;
}

.bot-avatar img {
  width: 55px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bot-avatar:empty::before {
  content: '👤';
  font-size: 24px;
}

.bot-message-content {
  flex: 1;
  position: relative;
}

.bot-message-content p {
  display: inline-block;
  background: #D4F4E0;
  color: #333;
  padding: 2rem;
  border-radius: 0 10px 10px 10px;
  margin: 0;
  width: 100%;
  line-height: 2;
  font-size: 1.4rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

.user-message {
  text-align: right;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 2rem;
  margin-left: calc(0.75rem + 48px);
  position: relative;
}

.user-message p {
  display: inline-block;
  background: #09b769;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 20px 20px 4px 20px;
  margin: 0;
  max-width: 80%;
  line-height: 1.5;
  font-size: 1.2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

.user-message p::after {
  content: '';
  position: absolute;
  right: -6px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #09b769;
}

.question-text {
  color: #333;
}

.privacy-link-text {
  cursor: pointer;
  color: #8B5CF6;
  text-decoration: underline;
}

.conversation-answers {
  width: 100%;
  padding: 1.5rem;
  background: #f5f5f5;
}

.user-message .conversation-answers {
  text-align: left;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.answer-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 0.75rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  position: relative;
  overflow: visible;
}

.answer-button:hover {
  background: #09b769;
  color: white;
  border-color: #09b769;
}

.answer-button:active {
  transform: scale(0.98);
}

.answer-button input[type="radio"] {
  margin-right: 1.25rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #09b769;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #09b769;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.2s ease;
}

.answer-button input[type="radio"]:checked {
  background-color: #fff;
  border-color: #09b769;
  position: relative;
}

.answer-button input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #09b769;
}

.answer-button label {
  flex: 1;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-left: calc(20px + 1.25rem + 0.875rem);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-right: 0.875rem;
  display: flex;
  align-items: center;
  z-index: 1;
}

.answer-button.selected {
  background: #fff;
  border-color: #09b769;
  border-width: 2px;
  color: #333;
}

.answer-button.selected:hover {
  background: #09b769;
  color: white;
  border-color: #09b769;
}

.answer-input {
  width: auto;
  max-width: 400px;
  padding: 0.875rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.answer-input:focus {
  outline: none;
  border-color: #09b769;
}

.answer-select {
  width: auto;
  max-width: 400px;
  padding: 0.875rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  cursor: pointer;
}

.answer-select:focus {
  outline: none;
  border-color: #09b769;
}

.submit-button {
  background: #09b769;
  color: white;
  border: none;
  width: auto;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.submit-button:hover {
  background: #2fc682;
  color: white;
}

/* form.html用の会話形式フォームスタイル */
.conversation-form-contact {
  width: 80%;
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-form-section,
.comment-section,
.agreement-section {
  padding: 0.5rem;
  background: #fff;
  border-radius: 8px;
}

.comment-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.comment-section textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.5rem;
  resize: vertical;
  min-height: 120px;
}

.comment-section textarea:focus {
  outline: none;
  border-color: #09b769;
}

.date-form-textarea-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.date-form-textarea-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.date-form-textarea-wrapper textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.5rem;
  resize: vertical;
  min-height: 120px;
  box-sizing: border-box;
}

.date-form-textarea-wrapper textarea:focus {
  outline: none;
  border-color: #09b769;
}

/* 日付選択送信ボタンラッパー */
.date-selection-submit-wrapper {
  margin-top: 1.5rem;
  text-align: center;
}

.date-selection-submit-btn {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  background: #fa7e02;
  color: #fff;
  text-align: center;
  display: inline-block;
  width: auto;
  min-width: 300px;
  height: 60px;
  margin: 0 auto;
  border: none;
  border-radius: 30px;
  transition: .3s;
  cursor: pointer;
  padding: 0 2rem;
}

.date-selection-submit-btn:hover {
  background: #ff9e0d;
  opacity: 1;
}

.agreement-section {
  margin-top: 1rem;
}

.agreement-section .cta-btn-submit {
  margin-top: 1.5rem;
  text-align: center;
}

/* 複数入力フォームコンテナ */
.multi-input-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.multi-input-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.multi-input-label {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  text-align: left;
}

.multi-input-field {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 0 1em;
  font-size: 1.4rem;
  margin-left: 0;
  margin-right: 0;
}

.multi-input-container .answer-input {
  margin-left: 0;
  margin-right: 0;
}

.multi-input-container .submit-button {
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
}

/* レスポンシブ */
@media only screen and (max-width: 767px) {
  /* HTML/Body - 横スクロール防止 */
  html {
    overflow-x: hidden;
    max-width: 100vw;
  }

  body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
  }

  /* ヘッダー */
  .header {
    padding: 0.75rem 1rem;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .logo {
    position: static;
  }

  .progress-bar-container {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #f5f5f5;
    padding: 0.75rem 1rem;
    z-index: 999;
    margin: 0;
    transform: none;
    box-sizing: border-box;
    justify-content: center;
    border-top: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .progress-line {
    width: 40px;
  }

  .progress-circle {
    width: 28px;
    height: 28px;
  }

  .progress-number {
    font-size: 12px;
  }

  .thanks-section {
    display: grid;
    margin: 0;
    padding: 0;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .thanks-main {
    margin-top: 110px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    min-height: calc(100vh - 110px - 100px);
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .thanks-section h1 {
    font-size: 1.7rem;
  }

  .thanks-section .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .thanks-section p {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .date-form-section {
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .comment h3 {
    font-size: 1.2rem;
  }

  .cta-btn-submit img {
    max-width: 100%;
  }

  .conversation-container {
    max-height: none;
    height: auto;
    overflow-y: visible;
    padding: 0;
    padding-top: 20px;
    width: 100%;
  }

  /* conversation-form-contact */
  .conversation-form-contact {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .date-form-section,
  .comment-section,
  .agreement-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .bot-avatar {
    width: 90px;
    height: 90px;
  }

  .bot-message-content p,
  .user-message p {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .bot-avatar img {
    width: 70px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .answer-button input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
  }

  .answer-input,
  .answer-select {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .submit-button {
    max-width: 100%;
  }

  /* 複数入力コンテナ */
  .multi-input-container {
    max-width: 100%;
    padding: 0.5rem;
    margin: 0;
  }

  .multi-input-field {
    font-size: 1.2rem;
  }

  .bot-message {
    gap: 0.5rem;
    margin-right: 0;
    margin-left: 0;
    scroll-margin-top: 130px;
  }

  .user-message {
    margin-left: 0;
  }

  .bot-message-content p {
    padding: 1rem;
    font-size: 1.2rem;
  }

  .user-message p {
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem;
  }

  /* 回答ボタン */
  .answer-button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.2rem;
  }

  /* 回答入力 */
  .answer-input,
  .answer-select {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /* コメントセクション */
  .comment-section textarea {
    width: 100%;
    font-size: 1.4rem;
  }

  /* 日付フォームテキストエリアラッパー */
  .date-form-textarea-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .date-form-textarea-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .date-form-textarea-wrapper textarea {
    width: 100%;
    font-size: 1.4rem;
    min-height: 100px;
  }

  /* 日付選択送信ボタンラッパー */
  .date-selection-submit-wrapper {
    margin-top: 1rem;
  }

  .date-selection-submit-btn {
    width: 100%;
    min-width: auto;
    font-size: 1.6rem;
    height: 55px;
    padding: 0 1.5rem;
  }

  /* CTAボタン */
  .cta-btn-submit {
    width: 100%;
  }

  .cta-btn-submit img {
    width: 100%;
    max-width: 100%;
  }

  /* 利用規約モーダル - SP用の高さ最大化 */
  .terms-modal-content {
    margin: 20px auto;
    max-height: calc(100vh - 40px);
    height: calc(100vh - 40px);
    width: 90%;
  }

  .terms-modal-txt {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

/* 日付選択テーブル */
.sideScroll {
  width: 100%;
  overflow-x: scroll;
  border: 2px solid #CCCCCC;
}

.selectDatetimeTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #666;
  font-size: 14px;
}

.selectDatetimeTable__cell {
  height: 40px;
  text-align: center;
  vertical-align: middle;
}

.selectDatetimeTable__disable {
  background-color: #F1F1F1;
}

.selectDatetimeTable__leftHeading {
  height: 40px;
  padding: 0 10px;
  text-align: center;
  vertical-align: middle;
  position: sticky;
  left: 0;
  background-color: white;
}

.selectDatetimeTable__topHeading {
  padding: 0 20px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
}

.selectDatetimeTable td, .selectDatetimeTable th {
  border: 1px solid #CCCCCC;
  border-spacing: 0;
}

@media screen and (max-width: 1000px) {
  .selectDatetimeTable__leftHeading {
    padding: 0 5px;
  }
  .selectDatetimeTable__topHeading {
    padding: 0 5px;
  }
}

.selectDatetimeTable__icon {
  height: 30px;
  color: #fa7e02;
}

.selectDatetimeTable--negative {
  color: #C4C4C4;
}

.selectDatetimeTable__label {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selectDatetimeTable__labelText {
  display: none;
  color: #FFF;
  font-size: 10px;
}

.selectDatetimeTable__radio {
  display: none;
}

.selectDatetimeTable__radio:hover ~ label > div > .selectDatetimeTable__icon {
  opacity: .3;
}

.selectDatetimeTable__radio:checked + label {
  background-color: #fa7e02;
}

.selectDatetimeTable__radio:checked ~ label > .selectDatetimeTable__labelText {
  display: block;
}

.selectDatetimeTable__radio:checked ~ label > div > .selectDatetimeTable__icon {
  display: none;
}

.selectDatetimeTable__flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selectDatetimeTable__flexBox--center {
  justify-content: center;
}

.inlineBtn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 1em 0;
}

.inlineBtn > button {
  width: 80px;
  height: 25px;
  font-size: 14px;
  background-color: #fff;
  border-radius: 5px;
}

.inlineBtn__enable {
  border: solid 1.5px #2fc682;
  color: #2fc682;
}

.inlineBtn__disable {
  border: solid 1.5px #c4c4c4;
  color: #c4c4c4;
}

.icon_explain {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}

.icon_explain-icon {
  height: 13px;
  color: #fa7e02;
  vertical-align: middle;
}

.icon_explain-text {
  color: #666;
  font-size: 16px;
}

/*-----------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
    background: #3fb37e;
    position: relative;
    padding: 0;
}
footer .gotoTop {
    display: none;
    position: fixed;
    bottom: 2em;
    right: 1em;
    width: 80px;
    height: 80px;
    z-index: 999;
}
footer .gotoTop img {
    width: 100%;
    height: auto;
}
footer .footerInner {
    max-width: 100%;
    margin: auto;
    padding: 20px 0;
}
footer .footerInner ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .footerInner ul li:after {
    color: #fff;
    content: "|";
    margin: 0 10px;
}
footer .footerInner ul li:last-child:after {
    display: none;
}
footer .footerInner ul li a {
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}
footer .footerInner p {
    font-size: 1.4rem;
    margin-bottom: 3em;
}
footer .copy {
    background: #0fa05e;
    padding: 20px 0;
}
footer .copy p {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    footer .gotoTop {
        width: 60px;
        height: 60px;
        position: fixed;
        right: 1em;
        bottom: 2em;
    }
}

/* thanks page footer fixed */
footer.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
}

/* thanks page body padding for fixed footer */
body.thanks-page {
    padding-bottom: 150px;
}

@media only screen and (max-width: 767px) {
    footer.footer-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        width: 100%;
    }

    body.thanks-page {
        padding-bottom: 120px;
    }
}

/* ChatBoost ポップアップを非表示にする */
/* TODO:GCB対応後削除 */
#chatboost_cv_embed_js-popup,
[id^="chatboost_cv_embed"],
[class*="chatboost_cv_embed"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/*-----------------------------------------------------------
base.css から必要なクラスをコピー
------------------------------------------------------------*/
/* header タグの基本スタイル */
header {
	position: relative;
	background: #fff;
}

header.form-header {
	padding: 1rem 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.headerInner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

header.form-header .logo {
	margin: 0;
}

header.form-header .logo a {
	display: inline-block;
}

header.form-header .logo img {
	height: 40px;
	width: auto;
}

header h1 {
	margin: 0;
}

header h1 img {
	display: block;
	width: 100%;
	max-width: 1680px;
	height: auto;
	margin: 0 auto;
}

/* contactForm */
.contactForm {
    background: #f1f1ed;
    padding: 0;
    font-weight: normal;
}

/*-----------------------------------------------------------
確認画面用のスタイル
------------------------------------------------------------*/
.formContents {
	margin-top: 20px;
	padding: 20px 0;
}

.formContents p {
	font-size: 1.4rem;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
  padding: 0 10px;
}

.alartBox {
	padding: 2em 0;
	background: #fff;
}

.formTable {
	width: 90%;
	margin: 2em auto;
}

.formTable th {
	width: 30%;
	text-align: left;
	padding: .5em;
}

.formContents .formTable {
	max-width: 960px;
	margin: auto;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 60px;
	border-collapse: collapse;
}

.formContents .formTable tr th {
	background: #f3f3f3;
	padding: 20px;
	border: 1px solid #ccc;
}

.formContents .formTable tr td {
	text-align: left;
	padding: 20px;
	border: 1px solid #ccc;
}

.btn {
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background: #ccc;
	color: #333;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 60px;
	margin: 0 auto;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s ease-in-out;
}

.btn.send {
	background: #ff770d;
	color: #fff;
	margin-bottom: 1em;
}

.btn.prev {
	background: #fff;
	border: 2px solid #666;
	color: #666;
}

.btn:hover {
	opacity: 0.7;
}

.btn.thanksBtn {
	background: #FF9E0D;
	color: #fff;
	text-decoration: none;
}
.btn.thanksBtn:hover {
	background: #ff8a00;
}

.error_messe {
	color: #CB0C3E;
	font-size: 1.3rem;
	margin: 0.5rem 0;
	line-height: 1.6;
}

/* thanks page */
.thanksBox {
	padding: 4rem 2rem;
	margin: 2rem auto;
	text-align: center;
}
.thanksBox__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 2rem;
	background: #0fa05e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 4px 10px rgba(15, 160, 94, 0.3);
}
.thanksBox__title {
	font-size: 2.4rem;
	color: #0fa05e;
	margin: 0 0 1.5rem;
	font-weight: 600;
	line-height: 1.4;
}
.thanksBox__text {
	font-size: 1.6rem;
	color: #666;
	margin: 0 0 3rem;
	line-height: 1.8;
}
.thanksBox__btnArea {
	margin-top: 3rem;
}
