/* Sensei LMS 上書き用 CSS 
 * 2024.08.08 update メインカラー変更 #ff604a → #43AF99 
 *    * WP>外観>カスタマイズ>「学習モード(Sensei LMS)」にもカラー設定あり(デフォルトへ)
 * 2024.09.13 add    コース一覧画面カード表示化にともない設定追加
 * 2024.09.14 update コース一覧画面カード表示化にともない旧設定を削除
 */
@charset "UTF-8";
:root {
    /* --grit-color: #ff604a; */
    --grit-color: #43AF99;
}
body.sensei{
    padding:0;
    margin: 0;
}
 ul{
    list-style-type: none;
}
.sensei #content{
    border-bottom: solid 1px #e2e2e2;
    padding-bottom: 1em;
}
.sensei #entry{
    margin-bottom: 0;
    padding-bottom: 0;
}

/* - ヘッダー start ---------------------------------------------------- */
.sensei #s-header{
    background-color: #fff;
    height: 120px;
    padding: 0.5em 1em;
}
.sensei #s-header #info{
    width: 60%;
    float: left;
}
.sensei #s-header #info h1 {
    line-height: 1.2;
    margin: 0.5em 0 0.1em;
    border-bottom: solid 2px var(--grit-color);
}
.sensei #s-header #info h2 {
    font-size: 0.7em;
    margin: 0;
    line-height: 1.3;
    font-weight: normal;
    padding: 0.3em 0;
}
.sensei #s-header #info ul#links {
    line-height: 1;
    margin: 0;
}
/* .sensei #s-header #info ul#links li { */
.sensei #s-header #info ul#links > li {
    display: inline-block;
    font-size: 0.9em;
}
/* .sensei #s-header #info ul#links li:first-of-type a{ */
.sensei #s-header #info ul#links > li:first-of-type a{
    position: relative;
    padding: 0 0.5em 0 1.5em;
}
/* .sensei #s-header #info ul#links li:first-of-type a::before{ */
.sensei #s-header #info ul#links > li:first-of-type a::before{
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    font-weight: 900;
    position: absolute;
    left: 0;
}
/* .sensei #s-header #info ul#links li:last-of-type a{ */
.sensei #s-header #info ul#links > li:nth-of-type(2) a{
    position: relative;
    padding-left: 0.8em;
}
/* .sensei #s-header #info ul#links li:last-of-type a::before{ */
.sensei #s-header #info ul#links > li:nth-of-type(2) a::before{
    font-family: 'Material Icons';
    content: '\e5df';
    font-size: 1.5em;
    line-height: 1.2;
    position: absolute;
    top: -0.2em;
    left: -0.3em;
}
/* WooCommerceカードの表示調整 2025.02 add start ---- */
.sensei #s-header #info ul#links > li.header-cart{
    margin-left: 1em;
}
.sensei #s-header #info ul#links > li.header-cart a.cart-link{
    position: relative;
    text-decoration: none;
}
.sensei #s-header #info ul#links > li.header-cart a.cart-link::before {
    content: "\f07a"; /* Font Awesomeのショッピングカートアイコン */
    font-family: "Font Awesome 5 Free"; /* Font Awesomeのフォント */
    font-weight: 900; /* 太字（Solidアイコン用） */
}
.header-cart {
    position: relative;
    display: inline-block;
}
.header-cart .cart-link .cart-count {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 5px;
    font-size: 0.8em;
    font-weight: bold;
    /* vertical-align: middle; */
    position: absolute;
    left: 1.6em;
    top: -0.1em;
}
.header-cart .mini-cart {/* カート内容の表示エリア */
    display: none;/* デフォルトは非表示 */
    position: absolute;
    top: 1em;
    width: 250px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
    padding: 0.5em 1.5em;
    border-radius: 5px;
}
.header-cart:hover .mini-cart {/* カートアイコンエリアhoverで表示 */
    display: block;
}
.header-cart .mini-cart .woocommerce-mini-cart img {/* 画像は非表示 */
    display: none;
}
.header-cart .mini-cart p.woocommerce-mini-cart__buttons a {
    background: #4f96f6;
    color: #fff;
    display: inline-block;
    padding: 0.5em;
    border-radius: 5px;
    margin: 0.2em 0;
}


ul.woocommerce-mini-cart{/* WooCommerce CSSと揃えるために指定 */
    list-style: none outside;
    padding: 0;
    margin: 0;
}
ul.woocommerce-mini-cart li {
    margin: 0.5em 0 !important;/* WooCommerce CSSより優先させ、不一致を防ぐため「!important」指定 */
    border-bottom: dotted 2px #999;
    padding: 0.5em 0 !important;/* WooCommerce CSSより優先させ、不一致を防ぐため「!important」指定 */

    display: block;
    font-weight: 700;
}

ul.woocommerce-mini-cart li > a{
    display: inline-block !important;/* WooCommerce CSSより優先させ、不一致を防ぐため「!important」指定 */
}
ul.woocommerce-mini-cart li > a.remove {
    /* display: inline-block; */
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: var(--wc-red)!important;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}
ul.woocommerce-mini-cart li >  a.remove:hover {
    color: #fff!important;
    background: var(--wc-red);
}
ul.woocommerce-mini-cart li > span.quantity {
    display: block;
    padding: 0.5em;
}


/* - ログイン＆ログイン情報エリア start ------- */
.sensei #s-header #h-login-area{
    /* width: 35%;  2023.08.25 update*/
    width: 40%;
    float: right;
    text-align: right;
}

/* -- ログイン前後 共通 -- */
.sensei #s-header #h-login-area .swpm-login-widget-form,
.sensei #s-header #h-login-area .swpm-login-widget-logged
,.sensei #s-header #h-login-area .slidein-login-form/*2025.03.25*/
{
    padding: 0.5em 1em 0.3em;
    line-height: 1.5;
}
/* 2025.03.25 del
.sensei #s-header #h-login-area .swpm-label,
.sensei #s-header #h-login-area .swpm-rember-label,
.sensei #s-header #h-login-area .swpm-logged-label{
    color: #888;
} */


/* -- ログイン前 -- */
.sensei #s-header #h-login-area #login-btn-check {
    display: none;
}

/* ---「ログイン」テキスト */
.sensei #s-header #h-login-area .login-text{
    /* position: relative; */
    cursor: pointer;
}
.sensei #s-header #h-login-area .login-text::after{
    /* content:'▼'; */
    font-family: 'Material Icons';
    content: '\e5c5';
    font-size: 1.8em;
    position: relative;
    top: 8px;
    left: -3px;
    line-height: 1;
}

/* ---ログインFORMエリア：非表示 */
/* .sensei #s-header #h-login-area .swpm-login-widget-form 2025.03.25 update */
.sensei #s-header #h-login-area .slidein-login-form
{
    width: 350px;
    height: 100%;
    /* position: fixed; 2025.03.25 update */
    position: absolute;
    top: 3em;
    right: -350px;/* メニューを画面外へ配置 */
    z-index: 80;
    background-color: #e8e8e8;
    text-align: left;
    transition: all 0.5s;/* アニメーション設定 */
}
/* --- ログインFORMエリア:表示 start ------ */
/* .sensei #s-header #h-login-area #login-btn-check:checked ~ .swpm-login-widget-form 2025.03.25 update */
.sensei #s-header #h-login-area #login-btn-check:checked ~ .slidein-login-form
{
    right: 0;/* ログインForm 見える位置へ*/
}
.sensei #s-header #h-login-area #login-btn-check:checked ~ .login-text::after{
    /* content:'▲'; */
    font-family: 'Material Icons';
    content: '\e5c7';
}
/* --- ログインFORMエリア:表示 end  ------ */

/* --- ログインエラー遷移の場合、FORM上部にエラーMSG表示用のスペースを 2023.08.24 add */
.sensei #s-header #h-login-area #login-btn-check:checked[value="1"] ~ .swpm-login-widget-form .swpm-login-form-inner
{
    margin-top: 1em;
}

/* --- ログインFORM 各種入力欄の調整 start ---*/
/*2025.03.25 update start 
Simple WP Membershipのログインパーツから、オリジナルパーツへ変更
.sensei #s-header #h-login-area .swpm-label,
.sensei #s-header #h-login-area .swpm-rember-label  */
.sensei #s-header #h-login-area .input-label{
    color: #888;
    font-size: 0.8em;
    font-weight: bold;
}
.sensei #s-header #h-login-area .remember-me .input-label{
    padding-left: 0.5em;
}
/* 2025.03.25 update
.sensei #s-header #h-login-area .swpm-login-widget-form input[type="text"],
.sensei #s-header #h-login-area .swpm-login-widget-form input[type="password"] */
.sensei #s-header #h-login-area .slidein-login-form .input-text
{
    width: 100%;
    background-color:#fff;
}

/* 2025.03.25 del
.sensei #s-header #h-login-area .swpm-password-label,
.sensei #s-header #h-login-area .swpm-username-label{
    line-height: 1.3;
} */
/* .sensei #s-header #h-login-area .swpm-login-submit 2025.03.25 update */
.sensei #s-header #h-login-area .login-submit
{
    text-align: center;
    margin: 1em 0;
}

/* PW欄 2025.03.25 add start */
.sensei #s-header #h-login-area .password-input{
    position: relative;
}
.sensei #s-header #h-login-area .password-input .show-password-input {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.7em;
}
.sensei #s-header #h-login-area .password-input .show-password-input::before {
    font-weight: 400;
    font-style: normal;
    font-size: 1.2em;
    color: #2271b1;

    font-family: dashicons;
    content: "\f177"; /* 目アイコン(open) */
}
.sensei #s-header #h-login-area .password-input .show-password-input.display-password::before{
    content: "\f530"; /* 目アイコン(no) */
}
/* PW欄 2025.03.25 add end   */

.sensei #s-header #h-login-area .swpm-forgot-pass-link,
.sensei #s-header #h-login-area .swpm-join-us-link {
    line-height: 1.3;
    font-size: 0.9em;
}
/* ----- メッセージエリア 無理やり一番上に表示 2023.08.24 add */
.sensei #s-header #h-login-area .swpm-login-action-msg{
    position: absolute;
    top:0;
    margin: 0.5em 0;
}
/* --- ログインFORM 各種入力欄の調整 start ---*/


/* -- ログイン後 -- */
/** 2025.03.25 del
Simple WP Membershipのログインパーツから、オリジナルパーツへ変更に伴い差し替え
.sensei #s-header #h-login-area .swpm-logged-username, /* アカウント名 → スマホでは表示しない 
.sensei #s-header #h-login-area .swpm-logged-status, /* アカウント状態 
.sensei #s-header #h-login-area .swpm-logged-membership, /* メンバー区分 
.sensei #s-header #h-login-area .swpm-logged-expiry /* アカウントの有効期限 
/* .sensei #s-header #h-login-area .swpm-edit-profile-link 
{
    display: none; /* 表示しない 
}
/* ログイアウト リンク、プロフィール編集 リンクの表示調整 
.sensei #s-header #h-login-area .swpm-logged-logout-link,
.sensei #s-header #h-login-area .swpm-edit-profile-link {
    font-size: 0.8em;
    margin-left: 0.8em;
    line-height: 1.2;/* 2023.08.25 add 
}
.sensei #s-header #h-login-area .swpm-logged-logout-link a,
.sensei #s-header #h-login-area .swpm-edit-profile-link a
{
    position: relative;
}
.sensei #s-header #h-login-area .swpm-logged-logout-link a::before,
.sensei #s-header #h-login-area .swpm-edit-profile-link a::before
{
    font-family: 'Material Icons';
    content: '\e5df';/* arrow_right 
    font-size: 1.5em;
    position: absolute;
    /* top: -8px; 2023.08.25 
    top: -4px;
    left: -16px;
}
**/
/* ログイン情報の表示を調整(カスタム作成版) 2025.03.25 add start */
.sensei #s-header #h-login-area .login-info-area
{
    padding: 0.5em 1em 0.3em;
    line-height: 1.5;
}
.sensei #s-header #h-login-area .login-info-area a{
    position: relative;
    font-weight: bold;
}
.sensei #s-header #h-login-area .login-info-area a::before
{
    font-family: 'Material Icons';
    content: '\e5df';
    font-size: 1.5em;
    position: absolute;
    top: -4px;
    left: -16px;
}
.sensei #s-header #h-login-area .login-info-area .logged-label
{   
    display: block;
    font-size: 0.7em;
    font-weight: bold;
    color: #888;
    margin-bottom: 0.5em;
    margin-bottom: 1em;
    line-height: 1;
}
.sensei #s-header #h-login-area .login-info-area .logged-label .logged-value{
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    /* margin-left: 0.3em; */
    display: block;
}
.sensei #s-header #h-login-area .login-info-area .logged-logout-link
,.sensei #s-header #h-login-area .login-info-area .edit-profile-link
{
    font-size: 0.8em;
    margin-left: 0.8em;
    line-height: 1.3;
}
/* ログイン情報の表示を調整(カスタム作成版) 2025.03.25 add end */

/* - ログイン＆ログイン情報エリア end ------- */
/* - ヘッダー end   ---------------------------------------------------- */

/* - プロフィール編集画面 start add 2023.08.25 ---------------------------- */
/* -- 個人情報は持ちたくないので、編集画面の入力欄を非表示にする */
 .sensei .swpm-edit-profile-form tr.swpm-profile-phone-row,   /* 電話番号 */
 .sensei .swpm-edit-profile-form tr.swpm-profile-street-row,  /* 住所：番地 */
 .sensei .swpm-edit-profile-form tr.swpm-profile-city-row,    /* 住所：市区町村 */
 .sensei .swpm-edit-profile-form tr.swpm-profile-state-row,   /* 住所：都道府県 */
 .sensei .swpm-edit-profile-form tr.swpm-profile-zipcode-row, /* 郵便番号 */
 .sensei .swpm-edit-profile-form tr.swpm-profile-country-row, /* 国 */
 .sensei .swpm-edit-profile-form tr.swpm-profile-company-row  /* 会社 */
{
    display: none;
}
/* 項目名部分を調整 */
.sensei .entry-content .swpm-edit-profile-form tr > td:first-of-type{
    line-height: 1.2;
    font-size: 0.7em;
    text-align: right;
    white-space: nowrap; /*折返し禁止*/
}
.sensei .entry-content .swpm-edit-profile-form tr.swpm-profile-password-retype-row > td:first-of-type {
    white-space: unset; /*PW再入力のみ折り返し可*/
}
/* - プロフィール編集画面 end ---------------------------------------------- */

/* - コース一覧 start -------------------------------------------------- */
/* 2024.09.14 del 一覧のカード化にともないコメントアウト
.sensei .swpm-edit-profile-form .sensei-course-filters {
    padding: 0;
    border: 0;
    margin-bottom: 0;
}
.sensei .sensei-course-filters li a{
    border-color: #666;
    padding: 0 0.5em;
    color: #333;
}

.sensei header.archive-header h1 {
    margin: 0.3em 0;
    line-height: 1.3;
}
.sensei header.archive-header{
    text-align: center;
    border-bottom: 2px solid #333;
    border-top: 2px solid #333;
    position: relative;
}
.sensei header.archive-header:before,
.sensei header.archive-header:after {
  position: absolute;
  left: 0;
  width: 100%;
  content: '';
  border-top: 2px dotted #666;
}
.sensei header.archive-header:before{
  top: 4px;
}
.sensei header.archive-header:after {
    bottom: 4px;
}

.sensei .course-container{
    border: 0;
    background-color: #eaedf2;
    padding: 1em;
    margin-top: 1em;
}
.sensei .course-container li {
    margin-bottom: 1em;
    border-bottom: 0;
}

.sensei .course-container .course-content {
    background-color: #fff;
}

.sensei .course-container .course-content .course-title{
    border:0;
    padding: 0em;
}
.sensei .course-container .course-content .course-title a{
    position: relative;
    display: inline-block;
    margin: 0 0 0 -10px;
    padding: 0.5em 1.5em 0.5em 0.7em;
    line-height: 1.3;
    color: #fff;
    border-radius: 0 0 100vh 0;
    background-color: var(--grit-color);
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
} */
/* .sensei .course-container .course-content .course-title a:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  content: '';
*/
  /* 2024.08.08 update border-top: 10px solid #b64232; */
/*  border-top: 10px solid var(--grit-color);
  filter: brightness(50%);
  border-left: 10px solid transparent;
}

.sensei .course-container .course-content .sensei-course-meta {
    margin: 1em 0.5em;
    border-bottom: 1px #333 solid;
    line-height: 1.3;
    color: #333;
}
.sensei .course-container .course-content .sensei-course-meta span{
    font-size: 0.8em;
    position: relative;
    padding: 0 1em;
    font-weight: bold;
}
.sensei .course-container .course-content .sensei-course-meta span::before{
    font-family: 'Material Icons';
    content: '\e5df';
    color: var(--grit-color);
    font-size: 1.5em;
    line-height: 1.2;
    position: absolute;
    top: -0.2em;
    left: -0.3em;
}

.sensei .course-container .course-content .course-excerpt {
    margin: 1em 0;
    padding: 0 1em;
    line-height: 1.3;
    font-size: 0.9em;
}

.sensei .course-container .course-content .link-to-detail{
    text-align: center;
    margin: 0;
    padding-bottom: 1em;
}
.sensei .course-container .course-content .link-to-detail a {
    background-color: var(--grit-color);
    text-decoration: none;
    padding: 0.5em 2em 0.5em 1em;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1em;
    display: inline-block;
    -webkit-box-shadow: 3px 3px 5px rgb(0 0 0 / 20%);
    box-shadow: 3px 3px 5px rgb(0 0 0 / 20%);
    position: relative;
    font-size: 0.8em;
}
.sensei .course-container .course-content .link-to-detail a:hover{
    background-color: #fff;
    border-color: var(--grit-color);
    color: var(--grit-color);

} 
.sensei .course-container .course-content .link-to-detail a::after{
    font-family: 'Material Icons';
    content: '\e5df';/* arrow_right /
    font-size: 1.5em;
    position: absolute;
    top: 0;
    right: 8px;
}
.sensei .course-container .course-content .sensei-free-lessons{
    padding: 0 1em 1em;
}
*/

/*コース一覧カード化 2024.09.13 add start -------------------- */
.sensei .courses-heading{
    font-size: 1.3em;
    margin-bottom: 1em;
}
.sensei .courses-heading.more-courses{
    margin-top: 1.5em;
}
.sensei .course-card ul{
    border: 0;
    margin: 0;
    padding: 0;
}
.sensei .course-card ul li {
    border-bottom: none;
    display: inline-block;
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    list-style-position: outside;
    vertical-align: top;
    margin-bottom: 1em;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
}
.sensei .course-card ul li:hover{
    transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
    background-color: #fafafa;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.15);
}

.sensei .course-card ul li a{
    color: #333;
}
.sensei .course-card ul li a:hover {
    text-decoration: none;
}

.sensei .course-card ul li p{
    margin: 0;
}
.sensei .course-card ul li p.card-img {
    max-height: 300px;
    overflow: hidden;
}
.sensei .course-card ul li p.card-img img{
    width: 100%;
}

.sensei .course-card ul li .card-text-area{
    padding: 1em;
    line-height: 1.4;
}

.sensei .course-card ul li .card-text-area p:not(:last-of-type){
    margin-bottom: 1em;
}

.sensei .course-card ul li .card-text-area p.card-title {
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.3;
}

/* my-coursesページの調整 2025.06.26 add start */
.sensei #content .entry-content #my-courses,
.sensei #content .entry-content #sensei-user-courses {
    width: 90%;
    margin: 0 auto;
}
.sensei #content .entry-content #my-courses h2{
    margin-top: 0;
}
/* my-coursesページの調整 2025.06.26 add end  */
.sensei .sensei-course-theme-locked-lesson-notice>.sensei-course-theme-locked-lesson-notice__text{
    font-size:1.2em;
}


@media only screen and (min-width: 769px){
    .sensei .one-column #main {
        max-width: unset;/* 設定を上書き*/
    }
    .sensei .course-card ul{
        padding: 0 1em;
    }
    .sensei .course-card ul li {
        width: 30%;
        /* min-width: 350px; */
        height: 450px;
        margin-right: 15px;
    }
    .sensei .course-card ul li p.card-img {
        height: auto;
    }
    .sensei .course-card ul li .card-text-area{
        font-size: 0.9em;
    }

    .sensei .course-card .sort-left ul {
        text-align: left;
        margin-left: 3%;
    }
}
/*コース一覧カード化 2024.09.13 add end ---------------------- */
/* - コース一覧 end ---------------------------------------------------- */

/* - コース詳細 start -------------------------------------------------- */
.sensei article.course .article-header h1.page-title{
    position: relative;
    display: inline-block;
    margin: 0 0 0 -10px;
    padding: 0.5em 1.5em 0.5em 0.7em;
    line-height: 1.2;
    color: #fff;
    border-radius: 0 0 100vh 0;
    background-color: var(--grit-color);
    -webkit-box-shadow: 3px 3px 5px rgb(0 0 0 / 20%);
    box-shadow: 3px 3px 5px rgb(0 0 0 / 20%);
}
.sensei article.course .article-header h1.page-title:before {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    /* 2024.08.08 update border-top: 10px solid #b64232; */
    border-top: 10px solid var(--grit-color);
    filter: brightness(50%);
    border-left: 10px solid transparent;
}

.sensei article.course .article-header {
    margin: 20px 25px 10px;
}
.sensei article.course .entry-content {
    padding: 0 2em;
}
.sensei article.course .entry-content .course-meta{
    margin: 0;
}
.sensei article.course .entry-content .course-meta +p .send-message-button{
    margin: 0.5em 0 0;
}
.sensei article.course .entry-content p {
    line-height: 1.3;
    font-size: 0.9em;
}

.sensei article.course .entry-content .modules-title{
    display: none;
}

/* モジュール start ------ */
/* モジュールタイトル */
.sensei article.course .entry-content .module > header{
    /* text-align: center; */
    border-bottom: 2px solid #333;
    border-top: 2px solid #333;
    position: relative;
    background-color: #fff;
    padding: 0.5em 1em;
}
.sensei article.course .entry-content .module > header:before,
.sensei article.course .entry-content .module > header:after {
  position: absolute;
  left: 0;
  width: 100%;
  content: '';
  border-top: 2px dotted #666;
}
.sensei article.course .entry-content .module > header:before{
  top: 4px;
}
.sensei article.course .entry-content .module > header:after {
    bottom: 4px;
}
.sensei article.course .entry-content .module header h2{
    font-size: 1.3em;
    line-height: 1.3;
}

/*  */
.sensei article.course .entry-content .module .module-description{
    padding: 0.5em 0;
}
/* レッスン */
.sensei article.course .entry-content .module .module-lessons header{
    border: 0 !important;
    padding: 0.6em 0.3em 0.5em !important;
    background-color: var(--grit-color);
    line-height: 1;
    display: inline-block;
    width: auto;
    font-size: 0.9em;
    border-radius: 10px 10px 0 0;
}
.sensei article.course .entry-content .module .module-lessons header h3 {
    margin: 0;
    border: 0;
    line-height: 1;
    padding: 0.3em 1em 0;
    color: #fff;
    text-align: center;
}
.sensei article.course .entry-content .module .module-lessons ul {
    border: 2px solid var(--grit-color);
    border-radius: 0;
}
.sensei article.course .entry-content .module .module-lessons ul li a{
    border: 0;
    line-height: 1.3;
}
.sensei article.course .entry-content .module .module-lessons ul li .preview-label{
    font-size: 0.8em;
    padding: 0 0.3em;
}
/* モジュール end   ------ */
/* - コース詳細 end ---------------------------------------------------- */

/* - WooCommerce マイアカウント画面 2025.03.25 start -------------------- */
/* メニューの「コース」「ダウンロード」「注文」「住所」を非表示に */
.woocommerce-MyAccount-navigation-link--courses
,.woocommerce-MyAccount-navigation-link--downloads
,.woocommerce-MyAccount-navigation-link--orders
,.woocommerce-MyAccount-navigation-link--edit-address
{
    display: none !important;
}
.woocommerce-MyAccount-navigation ul{
    list-style: none;
    border: solid 1px #e8e8e8;
    margin-top: 0.5em;
}
.woocommerce-MyAccount-navigation ul li{
    line-height: 1;
    /* list-style: none; */
    font-size: 0.9em;
    position: relative;
}
.woocommerce-MyAccount-navigation ul li::before{
    font-family: 'Material Icons';
    content: '\e5df';
    font-size: 1.5em;
    position: absolute;
    top: 0px;
    left: -23px;
    color: #4f96f6;
}
/* - WooCommerce マイアカウント画面 2025.03.25 end   -------------------- */

@media only screen and (min-width: 769px) {
    /* - ヘッダー start   ---------------------------------------------------- */
    /* - ログイン＆ログイン情報エリア star ------- */
    /* -- ログイン前後 共通 -- */
    .sensei #s-header #h-login-area .swpm-login-widget-form,
    .sensei #s-header #h-login-area .swpm-login-widget-logged {
        padding: 1em 1em 0.3em;
    }
    /* -- ログイン後 -- */
    .sensei #s-header #h-login-area .swpm-logged-username{
        display: block;
    }
    .sensei #s-header #h-login-area .swpm-logged-label{
        font-size: 0.7em;
        display: inline;
    }
    .sensei #s-header #h-login-area .swpm-logged-value {
        font-weight: bold;
        display: inline;
    }

    /* 2025.03.25 add */
    .sensei #s-header #h-login-area .login-info-area .logged-label
    {   
        /* display: block;
        font-size: 0.7em;
        font-weight: bold;
        color: #888;
        margin-bottom: 0.5em; */
        margin-bottom: 0.5em;
        line-height: 1.5;
    }
    .sensei #s-header #h-login-area .login-info-area .logged-label .logged-value{
        /* font-size: 1.4em;
        font-weight: bold;
        color: #333; */
        margin-left: 0.3em;
        display: inline-block;
    }


    /* - ログイン＆ログイン情報エリア end ------- */
    /* - ヘッダー end   ---------------------------------------------------- */

    /* - プロフィール編集画面 start add 2023.08.25 ---------------------------- */
    .sensei .entry-content .swpm-edit-profile-form table {
        width: 90%;
        margin: 1em auto;
    }
    /* - プロフィール編集画面 end --------------------------------------------- */
    
    /* - コース一覧 start -------------------------------------------------- */
    /* 2024.09.14 del カード表示化にともない旧設定を削除
    .sensei .course-container .course-content .course-title a{
        padding: 0.5em 2em;
    }*/
    /* - コース一覧 end   -------------------------------------------------- */

    /* - コース詳細 start -------------------------------------------------- */
    .sensei article.course .entry-content {
        padding-top: 0;
        padding-left: 3em;
    }
    .sensei article.course .entry-content p {
        font-size: 1em;
    }
    /* モジュール start ------ */
    .sensei article.course .article-header h1.page-title{
        padding: 0.5em 2em;
    }
    .sensei article.course .entry-content .module .module-lessons ul li .preview-label{
        font-size: 1em;
        padding: 0.2em 1em;
    }
    /* モジュール end   ------ */
    /* - コース詳細 end   -------------------------------------------------- */
}

/* woocommerce関連のレイアウト設定 */
/* .sensei .grit-woo, */
.sensei .woocommerce,
.sensei .wc-block-cart,
.sensei .wp-block-woocommerce-checkout{
    max-width: 85%;
    margin: 0 auto;
}
.sensei .article-header .page-title{
    margin: 0 5%;
}
.sensei .woocommerce ul.products{
    border: 0;
}