@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.p-fixBtnWrap {
  bottom: 15px !important;
}


.footer-notice {
  position: fixed;
  left: 10px;
  bottom: 15px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  font-size: 13px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-width: 70%;
}

.footer-notice.show {
  opacity: 1;
  transform: translateY(0);
}

.notice-icon {
  margin-right: 8px;
}

.notice-text {
  color: #333;
  text-decoration: none;
  flex: 1;
}

.notice-close {
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  color: #888;
}
.notice-close:hover {
  color: #333;
}



.menu-footer-menu-about-container ul {
    padding-left: 0px !important;
}

.menu-footer-menu-legal-container ul {
    padding-left: 0px !important;
}

@media screen and (max-width: 768px) {
  .w-footer__box .widget_nav_menu {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding-left: 0 !important;
    padding-right: 0px;
  }
  .w-footer__box .widget_nav_menu a{
    font-size: 12px;
    letter-spacing: -0.04rem;
  }
}

#post_slider {
    padding: 50px 0px 0px !important;
}



.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.step-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2em;
  font-size: 1rem;
  line-height: 28px;
  color: #333;
}

.step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background: linear-gradient(135deg, #428BB8, #5BAFCD);
  color: #fff;
  font-weight: bold;
  margin-right: 0.8em;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.elementor,.bgtxt h3 {
  font-family: 'Dancing Script', cursive;
}

.elementor {
  font-family: 'Satisfy', cursive !important;
}

#breadcrumb {
	display:none;
}

/* 画面中央配置 */
#tutor-registration-wrap {
	box-shadow:none;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 20px;
}

/* フォームの基本デザイン */
#tutor-registration-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
}

/* ラベルとインプットの余白 */
.tutor-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.tutor-form-group input[type="text"],
.tutor-form-group input[type="password"] {
    width: 100%;
    padding: 0px 0px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tutor-form-group input:focus {
    border-color: #7abaff;
    box-shadow: 0 0 5px rgba(122, 186, 255, 0.5);
    outline: none;
}

/* ボタンデザイン */
.tutor-btn {
    background-color: #0073e6;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tutor-btn:hover {
    background-color: #005bb5;
}

/* パスワード強度ヒント非表示に（必要に応じて） */
.tutor-password-strength-hint {
    display: none;
}

/* レイアウト調整 */
.tutor-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0px;
}

.tutor-form-col-6 {
    flex: 1 1 48%;
}

.tutor-form-col-12 {
    flex: 1 1 100%;
}

/* モバイル対応 */
@media (max-width: 600px) {
    .tutor-form-col-6 {
        flex: 1 1 100%;
    }
}