/* ---------------------------------------------------------------------------------------------------------------------
 reset scss
--------------------------------------------------------------------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}

input, select {
	vertical-align:middle;
}

@charset "UTF-8";

/* ----------------------------------------------------
 common
---------------------------------------------------- */
/* 共通カラー */
:root {
    --colorMain: #f4f4f4;
    --colorAccent01: #b92e2e;
    --colorAccent02: #ba9e6c;
    --colorAccent03: #a7823e;
    --colorAccent04: #7682aa;
    --colorBorder: #cacaca;
}

/* スクロールバーの有無によるズレ対策 */
html {
    overflow-y: scroll;
}

body {
    background: #fff;
    color: #494949;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.8;
}

p,
input,
textarea {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

* html p,
* html input,
* html textarea {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

/* リンク */
a {
    color: #494949;
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
}

li {
    list-style-type: none;
}

table {
    width: 100%;
}

input,
textarea,
button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
}

button {
    cursor: pointer;
}

button:hover {
    opacity: 0.6
}

input,
textarea,
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #e5e5e5;
    padding: 14px 18px;
}

select {
    background: url('/doctorsstudy/img/user/common/sort_ico.png') no-repeat right 14px center;
}

select::-ms-expand {
    display: none;
}

/* 汎用
---------------------------------------------------- */
/* clear clerfix */
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.content:after,
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

/* box-sizing */
*,
*:before,
*:after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: middle;
    height: auto;
}

/* 共通
---------------------------------------------------- */
.content_wrap {
    margin: 0 15px;
    padding: 60px 0;
}

.inner {
    margin: 0 auto;
    max-width: 1100px;
}

.content {
    margin: 30px 0;
}

.is_pc {
    display: block;
}

.is_sp {
    display: none;
}

.display_hide {
    display: none;
}

.space_left {
    margin-left: 20px;
}

.flex {
    display: flex;
}

.flex_wrap_w {
    flex-wrap: wrap;
}

.flex_c {
    display: flex;
    justify-content: center;
}

.flex_sa {
    display: flex;
    justify-content: space-around;
}

.flex_sb {
    display: flex;
    justify-content: space-between;
}

.flex_fs {
    display: flex;
    justify-content: flex-start;
}

.flex_fe {
    display: flex;
    justify-content: flex-end;
}

.flex_item_c {
    align-items: center;
}

.flex_item_fs {
    align-items: flex-start;
}

.flex_direction_c {
    flex-direction: column;
}

.bg_color_main {
    background: #f4f4f4;
    background: var(--colorMain);
}

.border_wrap {
    border: 1px solid #cacaca;
    border: 1px solid var(--colorBorder);
}

.border_separation {
    border-bottom: 1px solid #cacaca;
    border-bottom: 1px solid var(--colorBorder);
}

/* ボタン */
.btn_main {
    background: #a7823e;
    background: var(--colorAccent03);
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.btn_return {
    background: #aeaeae;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.btn_edit {
    background: #494949;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.btn_generic {
    background: #fff;
    border: 1px solid #898989;
    border-radius: 3px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.btn_close {
    background: #fff;
    border: 1px solid #494949;
    text-align: center;
}

.btn_cart {
    background: url('/doctorsstudy/img/user/common/header_cart_ico.png') no-repeat left 30px center #a7823e;
    background: url('/doctorsstudy/img/user/common/header_cart_ico.png') no-repeat left 30px center var(--colorAccent03);
    background-size: 22px;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    padding: 10px 25px 10px 46px;
    text-align: center;
}

.btn_cart.disable {
        background: #adadad url('/doctor-study/img/user/common/header_cart_ico.png') no-repeat left 30px center;
        background-size: 22px;
    }

.cart_added {
    background: #fff;
    border: solid 1px #111;
    background-size: 22px;
    border-radius: 3px;
    display: inline-block;
    color: #111;
    font-size: 12px;
    font-weight: inherit;
    line-height: 1.4;
    letter-spacing: 1px;
    padding: 10px 25px 10px 25px;
    text-align: center;
    width: 200px;
    opacity: 0.5;
    width: 87%;

}

.cart_added:hover {
        opacity: 0.5;
    }


/* タグ */
.tag_category {
    border: 2px solid #90897c;
    background: #90897c;
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    line-height: 1.2;
    padding: 2px 5px;
    text-align: center;
}

.tag_new {
    border: 2px solid #b92e2e;
    border: 2px solid var(--colorAccent01);
    border-radius: 3px;
    color: #b92e2e;
    color: var(--colorAccent01);
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
    padding: 2px 5px;
    text-align: center;
}

/* タイトル */
.title_txt {
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
    letter-spacing: 0.8px;
}

.title_line {
    border-left: 2px solid #ded1bc;
    line-height: 1.4;
    padding-left: 16px;
}

.title_bg {
    background: #f7eedf;
    padding: 6px 22px;
}

/* テキスト */
.text_c {
    text-align: center;
}

.text_l {
    text-align: left;
}

.text_r {
    text-align: right;
}

.text_emphasis01 {
    color: #b92e2e;
    color: var(--colorAccent01);
}

.text_emphasis02 {
    color: #ba9e6c;
    color: var(--colorAccent02);
}

.text_emphasis03 {
    color: #a7823e;
    color: var(--colorAccent03);
}

.text_emphasis04 {
    color: #7682aa;
    color: var(--colorAccent04);
}

.text_bold {
    font-weight: bold;
}

/* リンク */
.link_arrow {
    background: url('/doctorsstudy/img/user/common/link_ico.png') no-repeat right center;
    background-size: 6px;
    display: block;
    padding-right: 50px;
}

.link_line {
    text-decoration: underline;
}

.link_line:hover {
    opacity: 1;
    text-decoration: none;
}

.link_block {
    display: block;
}

.link_disabled {
    pointer-events: none;
}

/* テーブル */
.table_basic {
    margin-bottom: 20px;
}
.table_basic.border_color th,
        .table_basic.border_color td {
            border: 1px solid #cacaca;
            border: 1px solid var(--colorBorder);
        }
.table_basic th,
    .table_basic td {
        border: 2px solid #fff;
        line-height: 2;
        vertical-align: middle;
        word-break: break-all;
    }
.table_basic th {
        background: #f4f4f4;
        background: var(--colorMain);
        font-size: 17px;
        padding: 23px 30px;
        width: 24%;
    }
.table_basic td {
        padding: 12px 60px;
    }

/* コンテンツ　リンクボックス */
.box_link {
    cursor: pointer;
}
.box_link:hover {
        opacity: 0.6;
    }

/* コンテンツ　ボーター切り替え */
.content_box_row {
    border-top: 1px solid #cacaca;
    border-top: 1px solid var(--colorBorder);
}
.content_box_row .box {
        flex-wrap: wrap;
    }
.content_box_row .box .box_title {
            font-size: 16px;
            font-weight: bold;
        }
.content_box_row .box .box_title .text_emphasis01 {
                font-size: 12px;
            }
.content_box_row .box .box_title .text_emphasis04 {
                font-size: 12px;
            }
.content_box_row .box .box_title .supplement {
                color: #9e9e9e;
                font-size: 12px;
            }
.content_box_row .box .box_content input,
            .content_box_row .box .box_content textarea,
            .content_box_row .box .box_content select {
                border: 1px solid #b2b2b2;
            }
.content_box_row .box .box_content input,
            .content_box_row .box .box_content textarea {
                width: 100%;
            }
.content_box_row .box .box_content input::-moz-placeholder, .content_box_row .box .box_content textarea::-moz-placeholder {
                    color: #cacaca;
                }
.content_box_row .box .box_content input:-ms-input-placeholder, .content_box_row .box .box_content textarea:-ms-input-placeholder {
                    color: #cacaca;
                }
.content_box_row .box .box_content input::placeholder, .content_box_row .box .box_content textarea::placeholder {
                    color: #cacaca;
                }
.content_box_row .box .box_content textarea {
                resize: vertical;
            }
.content_box_row .box .box_content select {
                width: 80%;
            }
.content_box_row .box .box_content input[type='radio'] {
                background: url('/doctorsstudy/img/user/common/radiobtn_off.png') no-repeat left center;
                border: none;
                cursor: pointer;
                margin: 0 0 3px;
                padding: 12px 15px;
                width: 22px;
            }
.content_box_row .box .box_content input[type='radio']:checked {
                    background: url('/doctorsstudy/img/user/common/radiobtn_on.png') no-repeat left center;
                }
.content_box_row .box .box_content input[type='checkbox'] {
                cursor: pointer;
                height: 20px;
                margin: 0 10px 3px 0;
                padding: 0;
                width: 20px;
            }
.content_box_row .box .box_content input[type='checkbox']:checked {
                    background: url('/doctorsstudy/img/user/common/check_black.png') no-repeat center;
                }
.content_box_row .box .box_content label {
                cursor: pointer;
            }
.content_box_row .box .box_content .supplement {
                font-size: 12px;
                margin-top: 10px;
            }

/* リンク ソートアイコン */
.link_list {
    margin-bottom: 50px;
}
.link_list li {
        font-weight: bold;
        margin: 0 10px 10px 0;
    }
.link_list a {
        background: url('/doctorsstudy/img/user/common/sort_ico.png') no-repeat left 12px center #f4f4f4;
        background: url('/doctorsstudy/img/user/common/sort_ico.png') no-repeat left 12px center var(--colorMain);
        display: block;
        padding: 3px 12px 3px 30px;
    }

.search_window {
    background: #f0f0f0;
}

/* 検索 */
.input_search {
    background: url('/doctorsstudy/img/user/common/search_ico.png') no-repeat left 20px center #f0f0f0;
    border-radius: 20px;
    padding: 9px 18px 9px 50px;
    width: 100%;
}

/* チェックボックス */
.checkbox_category {
    margin: 0 10px 10px 0;
}
.checkbox_category label {
        cursor: pointer;
        font-weight: bold;
        padding: 6px 12px 6px 32px;
    }
.checkbox_category a {
        font-weight: bold;
        padding: 6px 12px 6px 32px;
    }
.checkbox_category a:hover {
            opacity: 1;
        }

/* 並び替え */
.sort_box {
    position: relative;
}
.sort_box .sort_title {
        font-size: 12px;
        left: 20px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
    }
.sort_box select {
        cursor: pointer;
        padding: 14px 30px 14px 87px;
        position: relative;
    }

/* 評価 */
.evaluate_box .average {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        width: 115px;
    }
.evaluate_box .average:after {
            background: url('/doctorsstudy/img/user/common/star_white.png') repeat-x left center;
            content: '';
            display: inline-block;
            height: 16px;
            position: absolute;
            right: 0;
            top: 6px;
            width: 80px;
        }
.evaluate_box .average .num {
            width: 35px;
        }
.evaluate_box .average .star {
            background: url('/doctorsstudy/img/user/common/star_gold.png') repeat-x left center;
            height: 16px;
            z-index: 1;
        }
.evaluate_box .average_big {
        font-size: 20px;
        font-weight: bold;
        position: relative;
        width: 137px;
    }
.evaluate_box .average_big:after {
            background: url('/doctorsstudy/img/user/common/star_white_big.png') repeat-x left center;
            content: '';
            display: inline-block;
            height: 20px;
            position: absolute;
            right: 0;
            top: 7px;
            width: 100px;
        }
.evaluate_box .average_big .num {
            margin-right: 10px;
        }
.evaluate_box .average_big .star {
            background: url('/doctorsstudy/img/user/common/star_gold_big.png') repeat-x left center;
            height: 20px;
            z-index: 1;
        }
.evaluate_box .count {
        color: #9b9b9b;
        margin-left: 10px;
    }

/* 会員情報入力 */
.input_profile .content_box_row {
        border-top: none;
    }
.input_profile .content_box_row .box {
            padding: 40px 3%;
        }
.input_profile .content_box_row .box .box_title {
                margin-right: 10px;
                width: 30%;
            }
.input_profile .content_box_row .box .box_title .text_emphasis01 {
                    margin-left: 10px;
                }
.input_profile .content_box_row .box .box_content {
                width: 67%;
            }
.input_profile .content_box_row .box .box_content input[type='text'] {
                    border: 1px solid #e5e5e5;
                }
.input_profile .content_box_row .box .box_content select {
                    border: 1px solid #adadad;
                    border-radius: 3px;
                }
.input_profile .content_box_row .box .box_content .input_box {
                    margin-bottom: 10px;
                }
.input_profile .content_box_row .box .two_columns input {
                    width: 47%;
                }
.input_profile .content_box_row .box .two_columns input:last-child {
                        margin-left: 10px;
                    }
.input_profile .content_box_row .box .sex label {
                    margin-right: 13%;
                }
.input_profile .content_box_row .box .sex label:last-child {
                        margin-right: 0;
                    }
.input_profile .content_box_row .box .birth .item {
                    flex: 1;
                    margin-right: 4%;
                }
.input_profile .content_box_row .box .birth .item:last-child {
                        margin-right: 0;
                    }
.input_profile .content_box_row .box .birth .item select {
                        margin-right: 10px;
                    }
.input_profile .content_box_row .box .zip input[name="zip"], .input_profile .content_box_row .box .zip input[name="workplace_postal_code"] {
                    margin-left: 10px;
                    width: 120px;
                }
.input_profile .content_box_row .box .zip select[name="pref"],.input_profile .content_box_row .box .zip select[name="workplace_prefecture"] {
                    width: 175px;
                }
.input_profile .content_box_row .box .interest_category label {
                    display: inline-block;
                    margin: 0 10% 25px 0;
                }
.input_profile .content_box_row .box .specialty select, .input_profile .content_box_row .box .specialty option, .input_profile .content_box_row .box .specialty optgroup {
                    font-style: normal; /* 斜体を解除 */
                    font-weight: normal; /* フォントの太さを標準に */
                    white-space: nowrap; /* テキストの折り返しを防ぐ */
                }
.input_profile .content_box_row .box .specialty select {
                    margin-bottom: 20px;
                    width: 100%;
                }
.input_profile .content_box_row .box .license_year select {
                    margin-right: 20px;
                    width: 140px;
                }
.input_profile .content_box_row .box .info_mail label:first-child {
                        margin-right: 16%;
                    }
.input_profile .button_area {
        margin-top: 50px;
    }
.input_profile .button_area .btn_main {
            padding: 13px;
            width: 46%;
        }

/* ダイアログ */
body .ui-dialog .ui-dialog-titlebar {
            display: none;
        }
body .ui-dialog .ui-dialog-content {
            padding: 15px 10px 10px;
        }

/* アラート */
.alert_danger {
    color: #b92e2e;
    color: var(--colorAccent01);
    font-weight: bold;
    margin-bottom: 20px;
}

/* ページネーション
---------------------------------------------------- */
.pagination {
    margin: 56px 0 20px;
}
.pagination .prev_box .prev {
            background: url('/doctorsstudy/img/user/common/page_feed_right.png') no-repeat left center;
            padding-left: 23px;
        }
.pagination .next_box .next {
            background: url('/doctorsstudy/img/user/common/page_feed_left.png') no-repeat right center;
            padding-right: 23px
        }
.pagination .num_box .current {
            background: #d3d3d3;
            border-radius: 50%;
            color: #fff;
            display: inline-block;
            height: 24px;
            text-align: center;
            width: 24px;
        }
.pagination .num_box .num,
        .pagination .num_box .dots {
            margin: 0 10px;
            width: 24px;
            text-align: center;
        }

/* パンくず
---------------------------------------------------- */
.breadcrumb {
    background: #f4f4f4;
    font-size: 11px;
    margin-top: 82px;
    padding: 13px 3%;
}
.breadcrumb .breadcrumb_arrow {
        margin: 0 10px;
    }
.breadcrumb .active {
        color: #cacaca;
    }

/* ヘッダー #header
---------------------------------------------------- */
#header {
    background: linear-gradient(to right, #3f4b61, #8bbbc3);
    border-bottom: 1px solid #f4f4f4;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
}
#header.header_top.before_login {
            background: transparent;
            border-bottom: none;
            color: #fff;
            position: absolute;
        }
#header.header_top.before_login .link_area a {
                    color: #fff;
                }
#header.header_top.fixed {
            background-color: #fff;
            left: 0;
            position: fixed;
            top: 0;
            z-index: 5;
        }
#header.header_top.fixed .mec-header {
                display: none;
            }
#header.header_top .header_content {
            background: transparent;
        }
#header .header_content {
        background-color: #fff;
        /*background: linear-gradient(to right, #3f4b61, #8bbbc3);*/
        padding: 20px 3%;

    }
/*
        a {
            color: #fff;
        }*/
#header .header_content .copyright_area {
            margin-right: 15px;
        }
#header .header_content .copyright_area .site_name {
                font-size: 12px;
            }
#header .header_content .copyright_area .site_name .site_logo {
                    margin-right: 15px;
                }
#header .header_content .copyright_area .site_name .site_text {
                    color: #fff;
                    margin-top: 8px;
                }
#header .header_content .link_area .item {
                margin-right: 25px;
            }
#header .header_content .link_area .cart {
                position: relative;
            }
#header .header_content .link_area .cart .cart_item_count {
                    background: #b92e2e;
                    background: var(--colorAccent01);
                    border-radius: 50%;
                    color: #fff;
                    font-size: 13px;
                    height: 18px;
                    line-height: 1.5;
                    position: absolute;
                    right: -20px;
                    text-align: center;
                    top: -3px;
                    width: 18px;
                }
#header .header_content .link_area .mypage {
                margin-right: 0;
            }
#header .header_content .search {
            max-width: 280px;
        }
#header #fixed_header {
        background: #fff;
        padding: 20px 3%;
        display: none;
    }
#header #fixed_header .copyright_area {
            margin-right: 15px;
        }
#header #fixed_header .copyright_area .site_name {
                font-size: 12px;
            }
#header #fixed_header .copyright_area .site_name .site_logo {
                    margin-right: 15px;
                }
#header #fixed_header .copyright_area .site_name .site_text {
                    margin-top: 8px;
                    color: #494949;
                }
#header #fixed_header .link_area a {
                color: #494949;
            }
#header .mec-header {
        background: #fff;
        height: 64px;
    }
#header .mec-header dl {
            display: flex;
            max-width: 1200px;
            margin: auto;
            padding: 10px 10px 5px 0;
        }
#header .mec-header dt {
            width: 40%;
        }
#header .mec-header a {
            text-decoration: none;
            color: #006F9F;
        }
#header .mec-header p{
            color: #00489d;
            letter-spacing: -0.5px;
            font-size: 95%;
            margin-bottom: -6px;
        }
#header .mec-header img {
            width: 150px;
            height: 22px;
        }

/* フッター #footer
---------------------------------------------------- */
#footer {
    padding: 50px 15px;






}
#footer .doctorstudy_footer {
        padding: 50px 15px;
    }
#footer .copyright_area {
        font-size: 12px;
        margin: 20px 10px 20px 0;
    }
#footer .copyright_area .site_name {
            margin-bottom: 9px;
        }
#footer .copyright_area .site_name .link_block {
                margin-right: 25px;
            }
#footer .copyright_area .copyright {
            color: #9b9b9b;
            font-size: 12px;
        }
#footer .page_nav {
        border-left: 1px solid #cacaca;
        margin-right: 50px;
        padding-left: 30px;
    }
#footer .page_nav:nth-of-type(2) {
            margin-right: 68px;
        }
#footer .page_nav:last-child {
            margin-right: 0;
        }
#footer .page_nav li {
            margin-bottom: 10px;
        }
#footer .page_nav li:last-child {
                margin-bottom: 0;
            }
#footer #mecstation_footer{
    background:#003780;
    color:#FFF;
    padding: 30px 40px;

}
#footer #mecstation_footer a {
        color:#FFF;
        display:block;
    }
#footer #mecstation_footer dl{
        display: flex;
        max-width:1200px;
        margin:auto;
    }
#footer #mecstation_footer dt {
        margin-right: 30px;
    }
#footer #mecstation_footer dt ul li{
                margin:0 15px 5px 0;
            }
#footer #mecstation_footer dd {
        margin: 0 30px;
        padding-left: 30px;
        border-left:1px #1F5CB0 solid;
    }
#footer #mecstation_footer dd ul li{
                margin-bottom:5px;
            }
#footer #mecstation_footer .footer_logo{
        margin-right:20px;
    }
#footer #mecstation_footer .footer_logo img{
        width:140px;
    }
#footer #mecstation_footer .footer_logo_text{
        font-size:88%;
        margin-bottom:3px;
    }
#footer #mecstation_footer .footer_cr{
        font-size:82%;
        color:#FFF;
        text-align:center;
        margin-top:15px;
    }

/* エラーページ
---------------------------------------------------- */
.page_error .content_box {
        padding: 6%;
    }
.page_error .button_area {
        margin: 50px 0 0;
    }
.page_error .button_area .btn_main {
            padding: 11px;
            width: 35%;
        }

/* 医師確認modal
---------------------------------------------------- */
.modal_box {
    display: none;
    background: #333;
    opacity: 0.3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
}
.modal_box.active {
        display: block;
    }

.is_medical_worker_check {
    display: none;
    background-color: #fff;
    padding: 30px 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99;
}

.is_medical_worker_check.active {
        display: block;
    }

.is_medical_worker_check h3 {
        font-weight: bold;
        font-size: 20px;
        margin: 15px 0;
    }

.is_medical_worker_check p {
        text-align: left;
    }

.is_medical_worker_check .flex_box {
        display: flex;
        gap: 20px;
    }

.is_medical_worker_check .flex_box button {
            width: 49%;
            border-radius: 3px;
            display: block;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1px;
            text-align: center;
            padding: 10px 0;
        }

.is_medical_worker_check .flex_box button.btn_yes,
            .is_medical_worker_check .flex_box button.btn_yes_purchase {
                background: #a7823e;
                background: #a7823e;
                background: var(--colorAccent03);
                color: #fff;
            }

.is_medical_worker_check .flex_box button.btn_no,
            .is_medical_worker_check .flex_box button.btn_no_purchase {
                border: 1px solid #333;
                background: #fff;
                color: #333;
            }

html.fixed {
        overflow-y: hidden;
    }

.resident_education {
    display: none;
    background-color: #fff;
    padding: 30px 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 99;
}

.resident_education.active {
        display: block;
    }

.resident_education p {
        text-align: left;
        margin-bottom: 20px;
    }

.resident_education .flex_box {
        display: flex;
        justify-content: center;
    }

.resident_education .flex_box button {
            width: 49%;
            border-radius: 3px;
            display: block;
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 1px;
            text-align: center;
            padding: 10px 0;
        }

.resident_education .flex_box button.btn_yes_resident_education {
                background: #a7823e;
                background: #a7823e;
                background: var(--colorAccent03);
                color: #fff;
            }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    body {
        font-size: 13px;
    }

    /* リンク */
    a:hover {
        opacity: 1;
    }

    button:hover {
        opacity: 1;
    }

    input,
    textarea,
    select {
        padding: 5px 8px;
    }

    input,
    textarea {
        font-size: 16px;
    }

    select {
        background: url('/doctorsstudy/img/user/sp/common/sort_ico.png') no-repeat right 7px center;
        background-size: 8px auto;
    }

    /* 共通
    ---------------------------------------------------- */
    .content_wrap {
        margin: 0;
        padding: 15px 0;
    }

    #content {
        padding: 10px;
    }

    .inner {
        padding: 0 3%;
    }

    .content {
        margin: 5px 0;
    }

    .is_pc {
        display: none;
    }

    .is_sp {
        display: block;
    }

    .space_left {
        margin-left: 0;
    }

    /* ボタン */
    .btn_cart {
        background: url('/doctorsstudy/img/user/sp/common/cartbtn_ico.png') no-repeat left 15px center #a7823e;
        background: url('/doctorsstudy/img/user/sp/common/cartbtn_ico.png') no-repeat left 15px center var(--colorAccent03);
        background-size: 20px auto;
        display: block;
        padding: 10px 20px 10px 40px;
    }
        .btn_cart.disable {
            background: #adadad url('/img/user/sp/common/cartbtn_ico.png') no-repeat left 15px center;
            background-size: 20px auto;
        }

    .cart_added {
        background: #fff;
        background-size: 20px auto;
        display: block;
        padding: 10px 20px 10px 20px;
        width: 100%;

    }

    .btn_generic {
        padding: 7px 20px 7px 40px;
    }

    /* タイトル */
    .title_txt {
        font-size: 18px;
    }

    .title_line {
        padding-left: 10px;
    }

    .title_bg {
        padding: 3px 11px;
    }

    .title_arrow {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 11px;
    }

    /* テーブル */
    .table_basic {
        margin-bottom: 20px;
    }

        .table_basic th,
        .table_basic td {
            display: block;
            padding: 0 20px;
            width: 100%;
        }

        .table_basic th {
            font-size: 15px;
        }

    /* コンテンツ　ボーター切り替え */

        .content_box_row .box {
            flex-wrap: wrap;
        }

            .content_box_row .box .box_title {
                font-size: 12px;
            }

                .content_box_row .box .box_content input[type='radio'] {
                    background: url('/doctorsstudy/img/user/sp/common/radiobtn_off.png') no-repeat left center;
                    background-size: 14px auto;
                    margin: 0 0 3px;
                    padding: 8px;
                    width: 14px;
                }

                    .content_box_row .box .box_content input[type='radio']:checked {
                        background: url('/doctorsstudy/img/user/sp/common/radiobtn_on.png') no-repeat left center;
                        background-size: 14px auto;
                    }

                .content_box_row .box .box_content input[type='checkbox'] {
                    height: 12px;
                    margin: 0 5px 3px 0;
                    padding: 0;
                    width: 13px;
                }

                    .content_box_row .box .box_content input[type='checkbox']:checked {
                        background: url('/doctorsstudy/img/user/sp/common/check_black.png') no-repeat center;
                        background-size: 7px auto;
                    }

    /* 検索 */
    .input_search {
        background: url('/doctorsstudy/img/user/sp/common/search_ico.png') no-repeat left 12px center #f0f0f0;
        background-size: 17px auto;
        border-radius: 20px;
        padding: 9px 18px 9px 50px;
        width: 100%;
    }

    /* チェックボックス */

            .checkbox_category input[type='checkbox']:checked {
                background: url('/doctorsstudy/img/user/sp/common/check_white.png') no-repeat center;
                background-size: 9px auto;
                border: none;
                left: 11px;
            }

                .checkbox_category input[type='checkbox']:checked+label {
                    background: #ba9e6c;
                }
            .checkbox_category a.on {
                background: url('/doctorsstudy/img/user/sp/common/check_white.png') no-repeat left 12px center #ba9e6c;
                background-size: 9px auto;
            }

            .checkbox_category a:hover {
                opacity: 1;
            }

    /* 並び替え */

        .sort_box .sort_title {
            display: none;
        }

        .sort_box select {
            padding: 7px 13px;
        }

    /* スクロール */
    .scroll_sp {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: scroll;
        padding: 5px 15px 10px 0;
        width: calc(100% + ((100vw - 100%) / 2));
    }

        .scroll_sp::-webkit-scrollbar {
            height: 5px;
        }

        .scroll_sp::-webkit-scrollbar-track {
            background: transparent;
        }

        .scroll_sp::-webkit-scrollbar-thumb {
            background: transparent;
        }

    /* 評価 */

        .evaluate_box .average {
            font-size: 15px;
            width: 106px;
        }

            .evaluate_box .average:after {
                background: url('/doctorsstudy/img/user/sp/common/star_white.png') repeat-x left center;
                background-size: 15px 15px;
                height: 16px;
                left: 31px;
                right: unset;
                top: inherit;
                width: 75px;
            }

            .evaluate_box .average .num {
                margin-right: 0;
                width: 31px;
            }

            .evaluate_box .average .star {
                background: url('/doctorsstudy/img/user/sp/common/star_gold.png') repeat-x left center;
                background-size: 15px 15px;
                height: 16px;
                z-index: 1;
            }

        .evaluate_box .average_big {
            font-size: 20px;
            font-weight: bold;
            position: relative;
            width: 137px;
        }

            .evaluate_box .average_big:after {
                background: url('/doctorsstudy/img/user/sp/common/star_white_big.png') repeat-x left center;
                background-size: 15px 15px;
                right: -2px;
                top: inherit;
                width: 75px;
            }

            .evaluate_box .average_big .num {
                margin-right: 10px;
            }

            .evaluate_box .average_big .star {
                background: url('/doctorsstudy/img/user/sp/common/star_gold_big.png') repeat-x left center;
                background-size: 15px 15px;
                height: 20px;
            }

        .evaluate_box .count {
            font-size: 12px;
            margin-left: 5px;
        }

    /* 会員情報入力 */

            .input_profile .content_box_row .box {
                padding: 15px 5%;
            }

                .input_profile .content_box_row .box .box_title {
                    font-size: 12px;
                    margin-bottom: 10px;
                    width: 100%;
                }

                    .input_profile .content_box_row .box .box_title .text_emphasis01 {
                        margin-left: 10px;
                    }

                .input_profile .content_box_row .box .box_content {
                    width: 100%;

                }

                    .input_profile .content_box_row .box .interest_category label {
                        display: inline-block;
                        margin: 0 10px 8px 0;
                    }
                    .input_profile .content_box_row .box .license_year select {
                        margin-right: 20px;
                        width: 140px;
                    }

                        .input_profile .content_box_row .box .info_mail label:first-child {
                            margin-right: 16%;
                        }

        .input_profile .button_area {
            margin-top: 35px;
        }

            .input_profile .button_area .btn_main {
                padding: 10px;
                width: 100%;
            }

    /* パンくず
	---------------------------------------------------- */
    .breadcrumb {
        margin-top: 43px;
        padding: 2px 3%;
    }

    /* ページネーション
    ---------------------------------------------------- */
    .pagination {
        font-size: 12px;
        margin: 25px 0 10px;
    }

        .pagination .prev_box {
            min-width: 45px;
        }

            .pagination .prev_box .prev {
                background-size: 6px auto;
                padding-left: 15px;
                font-size: 14px;
            }

        .pagination .next_box {
            min-width: 45px;
        }

            .pagination .next_box .next {
                background-size: 6px auto;
                padding-right: 15px;
                font-size: 14px;
            }

        .pagination .num_box {
            margin: 0 10px;
        }

            .pagination .num_box .current {
                height: 20px;
                width: 20px;
            }

            .pagination .num_box .num,
            .pagination .num_box .dots {
                margin: 3px 7px;
                width: 20px;
            }

    /* ヘッダー #header
    ---------------------------------------------------- */

            #header.header_top.fixed {
                background-color: transparent;
                left: 0;
                position: fixed;
                top: 0;
                z-index: 5;
            }
                #header.header_top.fixed .mec-header {
                    display: none;
                }

            #header.header_top.before_login {
                background: linear-gradient(to right, #3f4b61, #8bbbc3);
                position: fixed;
            }

                            #header.header_top.before_login .menu_box .menu_button_area .menu_button .border {
                                background: #fff;
                            }

        #header.open {
            background: linear-gradient(to right, #3f4b61, #8bbbc3);
            overflow-y: scroll;
            height: 100%;
            -webkit-overflow-scrolling: touch;
        }

            #header.open .header_content {
                background-color: transparent;
            }

                        #header.open .menu_box .menu_button_area .menu_button .border {
                            background: #fff;
                        }
                    #header.header_top.before_login .item img {
                        filter: invert(1);
                    }

        #header .header_content {
            padding: 10px 3%;

        }

            #header .header_content .copyright_area {
                margin-right: 10px;
                width: 85px;
            }

                #header .header_content .link_area .item {
                    margin-right: 10px;
                    width: 27px;
                }

                    #header .header_content .link_area .item .login_button {
                        font-size: 16px
                    }

                    #header .header_content .link_area .item:last-of-type {
                        margin-right: 0;
                    }

                    #header .header_content .link_area .item.hidden {
                        display: none;
                    }

                    #header .header_content .link_area .cart .cart_item_count {
                        right: -7px;
                        top: -5px;
                    }

                #header .header_content .link_area .mypage {
                    margin-right: 10px;
                }

                #header .header_content .menu_box .menu_button_area {
                    height: 100%;
                    width: 100%;
                }

                    #header .header_content .menu_box .menu_button_area .close_text {
                        font-size: 12px;
                        color: #fff;
                        display: none;
                        margin-right: 10px;
                    }

                    #header .header_content .menu_box .menu_button_area .menu_button {
                        height: 20px;
                        width: 27px;
                    }

                        #header .header_content .menu_box .menu_button_area .menu_button .border {
                            background: #000;
                            display: block;
                            height: 1px;
                            transition: all .4s;
                            width: 100%;
                        }

                            #header .header_content .menu_box.closed .menu_button .border:first-child {
                                transform: translateY(10px) rotate(-45deg);
                            }

                            #header .header_content .menu_box.closed .menu_button .border:nth-child(2) {
                                opacity: 0;
                            }

                            #header .header_content .menu_box.closed .menu_button .border:last-child {
                                transform: translateY(-9px) rotate(45deg);
                            }

                    #header .header_content .menu_box.closed .close_text {
                        display: block;
                    }

            #header .header_content .menu_area {
                font-size: 16px;
                font-weight: bold;
                padding: 14px 16px 10px;
            }

                #header .header_content .menu_area .btn_main_login_button {
                    margin-bottom: 15px;

                }

                    #header .header_content .menu_area .btn_main_login_button a {
                        padding: 9px;
                        width: 100%;
                    }

                #header .header_content .menu_area .menu_area_list {
                    border-top: 1px solid #fff;
                }

                    #header .header_content .menu_area .menu_area_list li {
                        border-bottom: 1px solid #fff;
                    }

                        #header .header_content .menu_area .menu_area_list li a {
                            color: #fff;
                            padding: 17px 0;
                            background: url('/doctorsstudy/img/user/sp/common/menu_arrow.png') no-repeat right center;
                            background-size: 7px auto;
                        }

                        #header .header_content .menu_area .menu_area_list .sub_menu_area li {
                            border-bottom: none;
                            border-top: 1px solid #fff;
                        }

                            #header .header_content .menu_area .menu_area_list .sub_menu_area li a {
                                font-size: 14px;
                                padding: 17px 0 17px 22px;
                            }

                #header .header_content .menu_area .menu_logo {
                    text-align: center;
                    margin-top: 20px;
                    background: #fff;
                    padding: 0 0 5px;
                }

            #header .header_content .search {
                max-width: initial;
            }

        #header #fixed_header {
            padding: 10px 3%;
        }
            #header #fixed_header.open {
                background: linear-gradient(to right, #3f4b61, #8bbbc3);
                overflow-y: scroll;
                height: 100%;
                -webkit-overflow-scrolling: touch;
            }

                            #header #fixed_header.open .menu_box .menu_button_area .menu_button .border {
                                background: #fff;
                            }
                #header #fixed_header .item img {
                    filter: invert(0);
                }
                #header #fixed_header .menu_box .menu_button_area {
                    height: 100%;
                    width: 100%;
                }

                    #header #fixed_header .menu_box .menu_button_area .close_text {
                        font-size: 12px;
                        color: #494949;
                        display: none;
                        margin-right: 10px;
                    }

                    #header #fixed_header .menu_box .menu_button_area .menu_button {
                        height: 20px;
                        width: 27px;
                    }

                        #header #fixed_header .menu_box .menu_button_area .menu_button .border {
                            background: #000;
                            display: block;
                            height: 1px;
                            transition: all .4s;
                            width: 100%;
                        }

                            #header #fixed_header .menu_box.closed .menu_button .border:first-child {
                                transform: translateY(10px) rotate(-45deg);
                            }

                            #header #fixed_header .menu_box.closed .menu_button .border:nth-child(2) {
                                opacity: 0;
                            }

                            #header #fixed_header .menu_box.closed .menu_button .border:last-child {
                                transform: translateY(-9px) rotate(45deg);
                            }

                    #header #fixed_header .menu_box.closed .close_text {
                        display: block;
                    }

        #header .mec-header {
            height: 50px;
        }
            #header .mec-header dl {
                display: flex;
                justify-content: space-between;
                padding: 0 0 10px;
            }
            #header .mec-header dt {
                width: 100%;
                text-align: center;
            }
            #header .mec-header a {
                text-decoration: none;
                color: #006F9F;
            }
            #header .mec-header p{
                font-size: 103%;
            }
            #header .mec-header img {
                width: 150px;
                height: 22px;
            }

    /* フッター #footer
    ---------------------------------------------------- */
    #footer {

        padding: 10px 10px 5px;
    }

        #footer .doctorstudy_footer {
            padding: 10px 10px 5px;
        }

        #footer .copyright_area {
            order: 2;
            margin: 0 auto;
        }

        #footer .link_area {
            order: 1;
            padding: 0 15px 0 28px;
            width: 100%;
        }

                #footer .link_area ul li {
                    margin: 0 13px 15px 0;
                }

        #footer #mecstation_footer{
            background:#003780;
            color:#FFF;
            padding: 15px;
        }
            #footer #mecstation_footer a {
                color:#FFF;
                display:block;
            }
            #footer #mecstation_footer dl{
                display: block;
                max-width:100%;
                margin:auto;
            }
            #footer #mecstation_footer dt {
                margin-right: 0;
            }
                    #footer #mecstation_footer dt ul li{
                        margin: 0 15px 5px 0;
                    }
            #footer #mecstation_footer dd {
                margin: 0 10px;
                padding-left: 15px;
                border-left:1px #1F5CB0 solid;
            }
                    #footer #mecstation_footer dd ul li{
                        margin-bottom: 5px;
                    }
            #footer #mecstation_footer .footer_logo{
                margin-right: 20px;
            }
            #footer #mecstation_footer .footer_logo img{
                width: 140px;
            }
            #footer #mecstation_footer .footer_logo_text{
                font-size: 88%;
                margin-bottom: 3px;
            }
            #footer #mecstation_footer .footer_cr{
                font-size:82%;
                color:#FFF;
                text-align:center;
                margin-top:15px;
            }


    /* エラーページ
	---------------------------------------------------- */

        .page_error .button_area {
            margin: 25px 0 0;
        }

            .page_error .button_area .btn_main {
                width: 100%;
            }

    /* 医師確認modal
    ---------------------------------------------------- */
    .modal_box {
        display: none;
        background: #333;
        opacity: 0.3;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 5;
    }
        .modal_box.active {
            display: block;
        }

    .is_medical_worker_check {
        padding: 30px 20px;
        width: 90%;
    }

}

/*! jQuery UI - v1.13.1 - 2022-05-07
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=custom-theme&bgImgOpacityError=&bgImgOpacityHighlight=&bgImgOpacityActive=&bgImgOpacityHover=50&bgImgOpacityDefault=&bgImgOpacityContent=&bgImgOpacityHeader=&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=%23000&opacityOverlay=50&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=%23000&iconColorError=%23cc0000&fcError=%235f3f3f&borderColorError=%23f1a899&bgTextureError=flat&bgColorError=%23fddfdf&iconColorHighlight=%23777620&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgTextureHighlight=flat&bgColorHighlight=%23fffa90&iconColorActive=%23ffffff&fcActive=%23494949&borderColorActive=%237b7b7b&bgTextureActive=flat&bgColorActive=%23fff&iconColorHover=%23494949&fcHover=%23494949&borderColorHover=%237b7b7b&bgTextureHover=flat&bgColorHover=%23fff&iconColorDefault=%23494949&fcDefault=%23494949&borderColorDefault=%237b7b7b&bgTextureDefault=flat&bgColorDefault=%23fff&iconColorContent=%23494949&fcContent=%23494949&borderColorContent=%23fff&bgTextureContent=flat&bgColorContent=%23ffffff&iconColorHeader=%23494949&fcHeader=%23494949&borderColorHeader=%23fff&bgTextureHeader=flat&bgColorHeader=%23fff&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-draggable-handle{touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;-ms-filter:"alpha(opacity=25)";opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:pointer;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #7b7b7b}.ui-widget-content{border:1px solid #fff;background:#fff;color:#494949}.ui-widget-content a{color:#494949}.ui-widget-header{border:1px solid #fff;background:#fff;color:#494949;font-weight:bold}.ui-widget-header a{color:#494949}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #7b7b7b;background:#fff;font-weight:normal;color:#494949}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#494949;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #7b7b7b;background:#fff;font-weight:normal;color:#494949}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#494949;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #7b7b7b;background:#fff;font-weight:normal;color:#494949}.ui-icon-background,.ui-state-active .ui-icon-background{border:#7b7b7b;background-color:#494949}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#494949;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;-ms-filter:"alpha(opacity=70)";font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;-ms-filter:"alpha(opacity=35)";background-image:none}.ui-state-disabled .ui-icon{-ms-filter:"alpha(opacity=35)"}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_494949_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_494949_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url("images/ui-icons_494949_256x240.png")}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-button .ui-icon{background-image:url("images/ui-icons_494949_256x240.png")}.ui-icon-blank.ui-icon-blank.ui-icon-blank{background-image:none}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#000;opacity:.5;-ms-filter:Alpha(Opacity=50)}.ui-widget-shadow{box-shadow:0 0 5px #000}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    /*background: #fff url('./ajax-loader.gif') center center no-repeat;*/
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

@charset "UTF-8";

/* ----------------------------------------------------
 ドクターズスタティとは？ .page_about
---------------------------------------------------- */
.page_about .full_content_wrap {
		font-size: 18px;
		line-height: 2;
		margin: 0 auto;
		max-width: 1800px;
	}
.page_about .full_content_wrap .main_visual {
			background: url('/doctorsstudy/img/user/about/docstu_mv_bg_img.png') no-repeat center top;
			padding: 86px 15px;
		}
.page_about .full_content_wrap .main_visual .text_area .head {
					font-family: "NotoSerifJP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
					font-size: 26px;
					margin-top: 60px;
				}
.page_about .full_content_wrap .main_visual .text_area .head:before {
						background: #494949;
						content: '';
						display: block;
						height: 1px;
						margin-right: 22px;
						width: 70px;
					}
.page_about .full_content_wrap .about {
			border: 1px solid #dbceb9;
			margin: 40px 20px;
			padding: 50px 0;
		}
.page_about .full_content_wrap .about .title {
				margin: 0 50px 60px;
			}
.page_about .full_content_wrap .about .title img {
					margin: 0 auto;
				}
.page_about .full_content_wrap .about .image_box {
				margin-bottom: 70px;
			}
.page_about .full_content_wrap .about .image_box .image:nth-of-type(2) {
						margin: 0 2%;
					}
.page_about .full_content_wrap .about .content .content_box {
					max-width: 850px;
					padding: 0 3%;
				}
.page_about .full_content_wrap .about .content .content_box .text {
						margin-bottom: 50px;
					}
.page_about .full_content_wrap .idea {
			background: linear-gradient(to top, #435d6a, #425b67);
			padding: 75px 15px;
		}
.page_about .full_content_wrap .idea .title img {
					margin: 0 auto;
				}
.page_about .full_content_wrap .idea .content {
				background: url('/doctorsstudy/img/user/about/about_con2_bg.png') no-repeat center center;
				margin: 90px 0;
				padding: 30px 20px;
			}
.page_about .full_content_wrap .idea .content .content_box {
					color: #fff;
					max-width: 733px;
				}
.page_about .full_content_wrap .link {
			padding: 120px 15px;
		}
.page_about .full_content_wrap .link .head {
				font-family: "NotoSerifJP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
				font-size: 34px;
				font-weight: bold;
				letter-spacing: 3.5px;
				margin-bottom: 60px;
			}
.page_about .full_content_wrap .link .head span {
					font-size: 46px;
					margin: 0 10px;
				}
.page_about .full_content_wrap .link .btn_main {
				font-size: 24px;
				padding: 16px 210px;
			}

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_about .full_content_wrap {
			font-size: 15px;
		}

			.page_about .full_content_wrap .main_visual {
				background: url('/doctorsstudy/img/user/sp/about/docstu_mv_bg_img.png') no-repeat center top;
				background-size: 100%;
				margin: 15px 3% 0;
				min-height: 70vw;
				padding: 15px 15px 0;
			}

					.page_about .full_content_wrap .main_visual .text_area .head {
						font-size: 18px;
						margin-top: 15px;
					}

						.page_about .full_content_wrap .main_visual .text_area .head:before {
							margin-right: 10px;
							width: 35px;
						}

			.page_about .full_content_wrap .about {
				margin: 15px 3%;
				padding: 20px 0 25px;
			}

				.page_about .full_content_wrap .about .title {
					margin: 0 45px 25px;
				}

					.page_about .full_content_wrap .about .title img {
						width: 100%;
						max-width: 257px;
					}

				.page_about .full_content_wrap .about .image_box {
					margin-bottom: 30px;
				}

					.page_about .full_content_wrap .about .content .content_box {
						padding: 0 3%;
					}

						.page_about .full_content_wrap .about .content .content_box .text {
							margin-bottom: 50px;
						}

			.page_about .full_content_wrap .idea {
				margin: 0 3% 25px;
				padding: 30px 15px;
			}

				.page_about .full_content_wrap .idea .title {
					margin: 0 100px;
				}

					.page_about .full_content_wrap .idea .title img {
						width: 100%;
						max-width: 117px;
					}

				.page_about .full_content_wrap .idea .content {
					background: url('/doctorsstudy/img/user/sp/about/docstu_con2_bg.png') no-repeat center center;
					background-size: 100%;
					margin: 45px 0 0;
					padding: 0 5px;
				}

					.page_about .full_content_wrap .idea .content .content_box {
						color: #fff;
						max-width: 733px;
					}

			.page_about .full_content_wrap .link {
				padding: 0 15px;
				margin-bottom: 30px;
			}

				.page_about .full_content_wrap .link .head {
					font-size: 17px;
					margin-bottom: 15px;
				}

					.page_about .full_content_wrap .link .head span {
						font-size: 23px;
					}

				.page_about .full_content_wrap .link .btn_main {
					font-size: 16px;
					padding: 10px 0;
					width: 100%;
				}
}

@charset "UTF-8";

/* ----------------------------------------------------
カート .page_cart
---------------------------------------------------- */
.page_cart .inner {
        position: relative;
    }
.page_cart #main {
        max-width: 750px;
        width: 70%;
        margin-right: 2%;
        margin-top: 203px;

    }
.page_cart #main .title_box {
            position: absolute;
            top: 0;
            max-width: 1100px;
            width: 100%;
            padding-bottom: 20px;
            border-bottom: 1px solid #e5e5e5;
        }
.page_cart #main .title_box .title_txt {
                background: url('/doctorsstudy/img/user/cart/cart_ttl.png') no-repeat right bottom 20px;
                padding-right: 65px;
                margin-bottom: 30px;
            }
.page_cart #main .title_box .state {
                letter-spacing: 0.025em;
                font-size: 20px;
                font-weight: bold;
            }
.page_cart #main .title_box .state #item_count {
                    font-size: 30px;
                }
.page_cart #main .item_box {
            border: 1px solid #adadad;
            margin-bottom: 90px;

        }
.page_cart #main .item_box .box {
                border-bottom: 1px solid #adadad;
                padding: 30px 24px 30px;
                display: grid;
                grid-template:
                    "thum title delete"
                    "thum content delete"
                    "thum content delete";

            }
.page_cart #main .item_box .box.set_box {
                    grid-template:
                        "title delete"
                        "content delete";
                    grid-template-columns: 1fr auto;
                }
.page_cart #main .item_box .box:last-child {
                    border-bottom: none;
                }
.page_cart #main .item_box .box .item_thumbnail {
                    margin-right: 27px;
                    max-width: 200px;
                    grid-area: thum;
                }
.page_cart #main .item_box .box .item_content {
                    margin-right: 27px;
                    margin-bottom: 15px;
                    letter-spacing: 0.05em;
                    grid-area: title;

                }
.page_cart #main .item_box .box .item_content .item_title {
                        font-size: 17px;
                    }
.page_cart #main .item_box .box .item_info {
                    grid-area: content;
                    margin-right: 27px;

                }
.page_cart #main .item_box .box .item_info .item_description {
                        font-size: 14px;
                        margin-bottom: 15px;
                        line-height: 2;
                    }
.page_cart #main .item_box .box .item_info .item_teacher {
                        font-size: 14px;

                    }
.page_cart #main .item_box .box .item_info .item_teacher .teacher_label {
                            font-size: 12px;
                        }
.page_cart #main .item_box .box .item_info .item_lesson {
                        font-size: 14px;
                        margin-bottom: 10px;

                    }
.page_cart #main .item_box .box .item_info .item_lesson .lesson_label {
                            font-size: 12px;
                        }
.page_cart #main .item_box .box .item_info .item_price {
                        font-size: 22px;
                        font-feature-settings: "palt";
                        text-align: right;
                        font-weight: bold;

                    }
.page_cart #main .item_box .box .item_info .item_price .price_label {
                            font-size: 16px;
                            margin-right: 10px;
                        }
.page_cart #main .item_box .box .item_info .item_price .num {
                            font-size: 26px;
                        }
.page_cart #main .item_box .box .item_info .item_price .tax {
                            font-size: 18px;
                        }
.page_cart #main .item_box .box .item_delete {
                    align-self: center;
                    margin-left: auto;
                    min-width: 30px;
                    grid-area: delete;
                }
.page_cart #side {
        max-width: 300px;
        width: 28%;
        margin-top: 203px;

    }
.page_cart #side .side_item {
            padding: 20px 6%;

        }
.page_cart #side .side_item .purchase_box .box_price {
                    font-size: 24px;
                    letter-spacing: 0.05em;
                    font-weight: bold;
                    margin-bottom: 10px;
                    line-height: 40px;
                    margin: 0 auto 10px;

                }
.page_cart #side .side_item .purchase_box .box_price #price_sum {
                        font-size: 36px;
                    }
.page_cart #side .side_item .purchase_box .box_price .tax {
                        font-size: 18px;
                    }
.page_cart #side .side_item .purchase_box .btn_main {
                    padding: 30px;
                    width: 100%;
                    line-height: 1;
                    font-size: 22px;
                }
.page_cart #side .side_item .purchase_box .btn_main.disabled {
                        cursor: default;
                        opacity: 0.5;
                    }


/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_cart .inner {
            display: block;
        }

        .page_cart #main {
            max-width: inherit;
            width: 100%;
            margin-right: inherit;
            margin-top: 0;

        }

            .page_cart #main .title_box {
                margin-bottom: 10px;
                padding-bottom: 10px;
                position: static;

            }

                .page_cart #main .title_box .title_txt {
                    background: url('/doctorsstudy/img/user/sp/cart/cart_ttl_sp.png') no-repeat right bottom 10px;
                    background-size: 35px;
                    padding-right: 40px;
                    margin-bottom: 0;
                }

                .page_cart #main .title_box .state {
                    font-size: 12px;

                }

                    .page_cart #main .title_box .state #item_count {
                        font-size: 17px;
                    }

            .page_cart #main .item_box {
                margin-bottom: 15px;

            }

                .page_cart #main .item_box .box {
                    padding: 20px 4% 20px 5%;
                    display: grid;
                    grid-template:
                        "thum title delete"
                        "thum title delete"
                        "content content delete";
                    grid-template-columns: minmax(100px, 34%) 1fr auto;

                }

                    .page_cart #main .item_box .box .item_thumbnail {
                        margin-right: 13px;
                        max-width: inherit;
                    }

                    .page_cart #main .item_box .box .item_content {
                        margin-bottom: 10px;
                        margin-right: 13px;
                        letter-spacing: 0.05em;

                    }

                        .page_cart #main .item_box .box .item_content .item_title {
                            font-size: 15px;
                        }

                        .page_cart #main .item_box .box .item_info .item_description {
                            font-size: 13px;
                            margin-bottom: 0;
                            line-height: 2;

                        }

                        .page_cart #main .item_box .box .item_info .item_other_info {
                            display: flex;
                            flex-wrap: wrap;
                            font-feature-settings: "palt";

                        }

                            .page_cart #main .item_box .box .item_info .item_other_info .item_teacher {
                                font-size: 10px;
                                margin-right: 10px;

                            }

                                .page_cart #main .item_box .box .item_info .item_other_info .item_teacher .teacher_label {
                                    font-size: 10px;
                                }

                            .page_cart #main .item_box .box .item_info .item_other_info .item_lesson {
                                font-size: 10px;
                                margin-bottom: 0;

                            }

                                .page_cart #main .item_box .box .item_info .item_other_info .item_lesson .lesson_label {
                                    font-size: 10px;
                                }

                        .page_cart #main .item_box .box .item_info .item_price {
                            font-size: 15px;

                        }

                            .page_cart #main .item_box .box .item_info .item_price .price_label {
                                font-size: 12px;
                                margin-right: 5px;
                            }

                            .page_cart #main .item_box .box .item_info .item_price .num {
                                font-size: 21px;
                            }

                            .page_cart #main .item_box .box .item_info .item_price .tax {
                                font-size: 12px;
                            }

                .page_cart #main .item_box .item_delete {
                    font-size: 12px;
                }

        .page_cart #side {
            max-width: inherit;
            width: 100%;
            margin-top: 0;
        }

            .page_cart #side .side_item {
                padding: 16px 5%;
                margin-bottom: 30px;

            }

                    .page_cart #side .side_item .purchase_box .box_price {
                        font-size: 18px;
                        margin-bottom: 0;
                        line-height: 28px;

                    }

                        .page_cart #side .side_item .purchase_box .box_price #price_sum {
                            font-size: 27px;
                        }

                        .page_cart #side .side_item .purchase_box .box_price .tax {
                            font-size: 14px;
                        }

                    .page_cart #side .side_item .purchase_box .box_description {
                        font-size: 13px;
                    }

                    .page_cart #side .side_item .purchase_box .button_area {
                        margin-top: 10px;

                    }

                        .page_cart #side .side_item .purchase_box .button_area .btn_main {
                            padding: 20px;
                            font-size: 18px;
                        }

}

@charset "UTF-8";

/* ----------------------------------------------------
 記事一覧 .page_column
---------------------------------------------------- */
.page_column #main {
        max-width: 740px;
        width: 68%;
    }
.page_column #side {
        margin-top: 101px;
        max-width: 300px;
        width: 28%;
    }
.page_column #side .sort_box {
            margin-bottom: 30px;
        }
.page_column #side .sort_box select {
                border: 1px solid #adadad;
                width: 100%;
            }
.page_column .page_title {
        text-align: center;
    }
.page_column .page_title:before,
        .page_column .page_title:after {
            background: #555;
            content: '';
            display: inline-block;
            height: 4px;
            width: 35%;
        }
.page_column .page_title:before {
            margin-right: 30px;
        }
.page_column .page_title:after {
            margin-left: 30px;
        }
.page_column .content .preface {
            font-size: 16px;
        }
.page_column .content .column_box {
            border: 1px solid #adadad;
            margin: 30px 0;
            padding: 0 5%;
        }
.page_column .content .column_box .column {
                border-bottom: 1px solid #e0e0e0;
                padding: 30px 0;
            }
.page_column .content .column_box .column:last-child {
                    border-bottom: none;
                }
.page_column .content .column_box .column .article_content .article_summary {
                        flex: 1.6;
                    }
.page_column .content .column_box .column .article_content .article_summary .column_title {
                            font-size: 24px;
                            font-weight: bold;
                            line-height: 1.3;
                            margin: 5px 0 20px;
                        }
.page_column .content .column_box .column .article_content .column_thumbnail {
                        flex: 1;
                        margin-left: 20px;
                    }
.page_column .content .column_box .column .tag_list .tag {
                        line-height: 1;
                        margin: 10px 6px 0 0;
                        padding: 3px 11px;
                    }
.page_column .content .column_box .no_data {
                font-size: 16px;
                padding: 15px;
            }
.page_column .banner_box {
        margin: 25px 0;
    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_column .inner {
            flex-direction: column;
        }

        .page_column #main {
            width: 100%;
        }

            .page_column #main .sort_box {
                margin-top: 10px;
            }

                .page_column #main .sort_box select {
                    width: 100%;
                    background-size: 8px auto;
                    border-radius: 4px;
                    font-size: 15px;
                    padding: 10px 19px 10px 16px;
                    color: #494949;
                }

        .page_column #side {
            margin-top: 30px;
            max-width: 100%;
            width: 100%;
        }

            .page_column .page_title img {
                width: 92px;
            }

            .page_column .page_title:before,
            .page_column .page_title:after {
                height: 2px;
            }

            .page_column .content .preface {
                font-size: 14px;
            }

            .page_column .content .column_box {
                margin: 18px 0;
                padding: 0 5%;
            }

                .page_column .content .column_box .column {
                    padding: 15px 0;
                }

                        .page_column .content .column_box .column .article_content .article_summary {
                            flex: 1.6;
                        }

                            .page_column .content .column_box .column .article_content .article_summary .column_title {
                                font-size: 17px;
                                margin: 5px 0;
                            }

                        .page_column .content .column_box .column .article_content .column_thumbnail {
                            margin-left: 8px;
                        }

                    .page_column .content .column_box .column .column_description {
                        margin-top: 10px;
                    }
        .page_column .banner_box {
            margin: 25px 0;
        }
    }

/* ----------------------------------------------------
 記事一覧(カテゴリ) .page_column_category
---------------------------------------------------- */
.page_column_category #side {
        margin-top: 70px;
    }
.page_column_category .page_title {
        font-size: 24px;
    }
.page_column_category .page_title:before,
        .page_column_category .page_title:after {
            content: none;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_column_category #side {
            margin-top: 30px;
        }

        .page_column_category .page_title {
            font-size: 21px;
        }
    }

/* ----------------------------------------------------
 記事詳細 .page_column_detail
---------------------------------------------------- */
.page_column_detail #main {
        max-width: 950px;
        width: 68%;
    }
.page_column_detail #side {
        max-width: 300px;
        width: 28%;
    }
.page_column_detail .chapter_box {
        border: 3px solid #f8f5f0;
        margin: 30px 0;
        padding: 10px 8% 20px;
    }
.page_column_detail .chapter_box .chapter_title {
            font-size: 16px;
            margin: 10px 0;
        }
.page_column_detail .chapter_box .chapter {
            list-style: none;
            counter-reset: counter;
        }
.page_column_detail .chapter_box .chapter li {
                margin: 10px 0;
                font-size: 16px;
                line-height: 2;
                padding-left: 1.4em;
                text-indent: -1.4em;
            }
.page_column_detail .chapter_box .chapter li:before {
                    color: #a7823e;
                    content: counter(counter) ".";
                    counter-increment: counter;
                    font-weight: bold;
                    margin-right: 10px;

                }
.page_column_detail .chapter_box .chapter li .chapter {
                    padding-left: 20px;
                }
.page_column_detail .content_box {
        border-bottom: 1px solid #e5e5e5;
        padding: 10px 0;
    }
.page_column_detail .content_box .column_thumbnail {
            text-align: center;
            margin-bottom: 30px;
        }
.page_column_detail .content_box .column_title {
            font-size: 30px;
            font-weight: bold;
            line-height: 1.5;
            margin: 30px 0;
        }
.page_column_detail .content_box .tag_list {
            margin: 0 0 30px;
        }
.page_column_detail .content_box .tag_list .tag {
                font-size: 14px;
                margin: 7px 10px 0 0;
                padding: 6px 8px;
            }
.page_column_detail .content_box .column_content {
            word-break: break-all;
            font-size: 18px;

        }
.page_column_detail .content_box .column_content p {
                margin-bottom: 15px;
            }
.page_column_detail .content_box .column_content span.text_bold {
                font-weight: bold;
            }
.page_column_detail .content_box .column_content span.text_red {
                color: var(--colorAccent01);
            }
.page_column_detail .content_box .column_content span.text_marker {
                background: #f7eedf;
            }
.page_column_detail .content_box .column_content h2 {
                background: url('/doctorsstudy/img/user/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                font-size: 35px;
                font-weight: bold;
                margin: 30px 0;
                padding: 8px 15px 8px 67px;
            }
.page_column_detail .content_box .column_content h3 {
                font-size: 30px;
                font-weight: bold;
                margin: 30px 0;
                border-left: 2px solid #ded1bc;
                line-height: 1.4;
                padding-left: 16px;

            }
.page_column_detail .content_box .column_content h4 {
                border-bottom: 4px double var(--colorAccent03);
                color: var(--colorAccent03);
                font-size: 24px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_column_detail .content_box .column_content h5 {
                font-size: 16px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_column_detail .content_box .column_content h6 {
                font-size: 14px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_column_detail .content_box .column_content ul {
                margin: 30px 0;
            }
.page_column_detail .content_box .column_content ul li {
                    background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 6px;
                    padding-left: 20px;
                }
.page_column_detail .content_box .column_content ol {
                margin: 30px 0;
            }
.page_column_detail .content_box .column_content ol li {
                    margin-left: 17px;
                    list-style-type: inherit;
                    padding-left: 3px;
                }
.page_column_detail .content_box .column_content .bracketed-list {
                counter-reset: list-counter; /* カウンターをリセット */
                margin: 0;
            }
.page_column_detail .content_box .column_content .bracketed-list >li {
                    background: none;
                    list-style-type: none;
                    counter-increment: list-counter; /* アイテムごとにカウンターを増やす */
                    color: #af8c50;
                    font-weight: bold;
                    font-size: 24px;
                }
.page_column_detail .content_box .column_content .bracketed-list >li::before {
                        content: "(" counter(list-counter) ") "; /* カウンターの値を表示、カッコ付き */
                        margin-right: 5px; /* カッコとテキストの間のスペース（必要に応じて調整） */
                    }
.page_column_detail .content_box .column_content .disc-list {
                margin: 15px 0 50px;
            }
.page_column_detail .content_box .column_content .disc-list >li {
                    background: none;
                    list-style-type: disc;
                    list-style-position: inside;
                    color: #333;
                    font-weight: normal;
                    font-size: 18px;
                    margin-left: 0;
                }
.page_column_detail .content_box .column_content .disc-list :last-child {
                    margin-bottom: 0;
                }
.page_column_detail .content_box .column_content .background-color-list {
                font-size: 20px;
                list-style: none;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
                margin: 20px 18px;
                width: 100%;
            }
.page_column_detail .content_box .column_content .background-color-list li{
                    background: none;
                    list-style: none;
                    background-color: #f7f5ef;
                    padding: 40px 15px;
                }
.page_column_detail .content_box .column_content img {
                margin: 15px 0;
            }
.page_column_detail .content_box .column_content a {
                text-decoration: underline;
            }
.page_column_detail .content_box .column_content a:hover {
                    text-decoration: none;
                }
.page_column_detail .content_box .column_content a.color-link {
                    color: #4d8bff;
                    font-weight: bold;
                }
.page_column_detail .content_box .column_content table {
                border-collapse: collapse;
                border: 1px solid #adadad;
                /*width: max-content !important;*/
                margin-bottom: 30px;
                max-width: 100%;
                width: 100%;
                color: #af8c50;
                font-size: 20px;
            }
.page_column_detail .content_box .column_content table tr:nth-child(odd) {
                        background: #f7f5ef;
                    }
.page_column_detail .content_box .column_content table tr:nth-child(even) {
                        background: #fff;
                    }
.page_column_detail .content_box .column_content table th {
                    background: #f8f5f0;
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    font-size: 16px;
                    vertical-align: middle;
                }
.page_column_detail .content_box .column_content table td {
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    vertical-align: middle;
                    width: auto;
                }
.page_column_detail .content_box .column_content .border-box {
                border: 2px solid #af8c50;
                padding: 20px 20px 30px;
                margin: 0 18px 45px;
            }
.page_column_detail .content_box .column_content .border-box.note {
                    font-size: 16px;
                    border: 2px solid #ded1bc;
                    padding: 16px 16px 30px;
                }
.page_column_detail .content_box .column_content .share_box {
                display: flex;
                align-items: center;
                gap: 0px 10px;
                padding: 30px 0;
            }
.page_column_detail .content_box .column_content .share_box .fb_iframe_widget {
                    display: inherit;
                }
.page_column_detail .content_box .column_content .high-light {
                color: #af8c50;
            }
.page_column_detail .content_box .column_content sup {
                vertical-align: super;
                font-size: smaller;
                line-height: 0;
            }
.page_column_detail .content_box .column_content .column_to_login{
                margin-top: 30px;
                text-align: right;
            }
.page_column_detail .content_box .column_content .column_to_login a {
                    display: inline-block;
                }
.page_column_detail .content_box .column_content .column_to_login small {
                    font-size: 14px;
                }
.page_column_detail .relation_column {
        margin-top: 90px;
    }
.page_column_detail .relation_column .title_txt {
            background: url('/doctorsstudy/img/user/common/column_ttl.png') no-repeat right bottom 12px;
            font-size: 24px;
            padding-right: 104px;
        }
.page_column_detail .relation_column .column_box {
            border: 1px solid #adadad;
            margin: 30px 0;
            padding: 0 35px;
        }
.page_column_detail .relation_column .column_box .column {
                border-bottom: 1px solid #e0e0e0;
                padding: 25px 0;
            }
.page_column_detail .relation_column .column_box .column:last-child {
                    border-bottom: none;
                }
.page_column_detail .relation_column .column_box .column .article_content {
                    flex: 1.6;
                }
.page_column_detail .relation_column .column_box .column .article_content .column_title {
                        font-size: 24px;
                        font-weight: bold;
                        line-height: 1.3;
                        margin: 5px 0 20px;
                    }
.page_column_detail .relation_column .column_box .column .column_thumbnail {
                    flex: 1;
                    margin-left: 20px;
                }
.page_column_detail .relation_column .column_box .column .tag_list .tag {
                        line-height: 1;
                        margin: 10px 6px 0 0;
                        padding: 3px 11px;
                    }
.page_column_detail .banner_box {
        margin: 25px 0;
    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_column_detail .inner {
            flex-direction: column;
        }

        .page_column_detail #main {
            width: 100%;
        }

            .page_column_detail #main .sort_box {
                margin-top: 10px;
            }

                .page_column_detail #main .sort_box select {
                    width: 33%;
                }

        .page_column_detail #side {
            margin-top: 30px;
            max-width: 100%;
            width: 100%;
        }

        .page_column_detail .chapter_box {
            border: 2px solid #f8f5f0;
            margin: 15px 0;
            padding: 5px 5% 10px;
        }

            .page_column_detail .chapter_box .chapter_title {
                font-size: 12px;
                margin: 5px 0;
            }

                .page_column_detail .chapter_box .chapter li {
                    font-size: 14px;
                    padding-left: 1.6em;
                    text-indent: -1.6em;
                }

                    .page_column_detail .chapter_box .chapter li .chapter {
                        padding-left: 0;
                    }

        .page_column_detail .content_box {
            border-bottom: none;
            padding: 0;
        }

            .page_column_detail .content_box .column_thumbnail {
                order: 2;
                margin-bottom: 10px;
            }

            .page_column_detail .content_box .date {
                order: 3;
            }

            .page_column_detail .content_box .column_title {
                font-size: 18px;
                margin: 5px 0;
                order: 1;
            }

            .page_column_detail .content_box .tag_list {
                margin: 10px 0;
            }

                .page_column_detail .content_box .tag_list .tag {
                    font-size: 12px;
                    margin: 0 5px 5px 0;
                    padding: 3px 5px;
                }

            .page_column_detail .content_box .column_content {
                font-size: 16px;
            }
                .page_column_detail .content_box .column_content h2 {
                    background: url('/doctorsstudy/img/user/sp/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                    background-size: 18px auto;
                    font-size: 22px;
                    margin: 10px 0;
                    padding: 5px 10px 5px 45px;
                }

                .page_column_detail .content_box .column_content h3 {
                    font-size: 20px;
                    margin: 10px 0;
                    padding-left: 10px;
                }

                .page_column_detail .content_box .column_content h4 {
                    font-size: 18px;
                    margin: 10px 0;
                }

                .page_column_detail .content_box .column_content h5 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_column_detail .content_box .column_content h6 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_column_detail .content_box .column_content ul {
                    margin: 10px 0;
                }

                    .page_column_detail .content_box .column_content ul li {
                        background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 8px;
                        background-size: 8px auto;
                        padding-left: 15px;
                    }

                .page_column_detail .content_box .column_content ol {
                    margin: 10px 0;

                }

                    .page_column_detail .content_box .column_content ol li {
                        margin-left: 18px;
                        padding-left: 0;
                    }

                .page_column_detail .content_box .column_content .bracketed-list {
                    counter-reset: list-counter; /* カウンターをリセット */
                    margin: 0;
                }
                    .page_column_detail .content_box .column_content .bracketed-list >li {
                        background: none;
                        list-style-type: none;
                        counter-increment: list-counter; /* アイテムごとにカウンターを増やす */
                        color: #af8c50;
                        font-weight: bold;
                        font-size: 18px;
                        margin-left: 0;
                    }
                        .page_column_detail .content_box .column_content .bracketed-list >li::before {
                            content: "(" counter(list-counter) ") "; /* カウンターの値を表示、カッコ付き */
                            margin-right: 5px; /* カッコとテキストの間のスペース（必要に応じて調整） */
                        }
                .page_column_detail .content_box .column_content .disc-list {
                    margin: 5px 0 20px;
                }
                    .page_column_detail .content_box .column_content .disc-list >li {
                        background: none;
                        list-style-type: disc;
                        list-style-position: inside;
                        color: #333;
                        font-weight: normal;
                        font-size: 16px;
                        margin-left: 0;
                    }
                    .page_column_detail .content_box .column_content .disc-list :last-child {
                        margin-bottom: 0;
                    }
    
                .page_column_detail .content_box .column_content .background-color-list {
                    grid-template-columns: repeat(1, 1fr);
                    font-size: 16px;
                    margin: 20px 0;
                }
                    .page_column_detail .content_box .column_content .background-color-list li{
                        padding: 20px 8px;
                    }

                .page_column_detail .content_box .column_content img {
                    margin: 15px 0;
                }

                .page_column_detail .content_box .column_content .sp_table_scroll {
                    overflow-x: scroll;
                    margin-bottom: 15px;
                }

                .page_column_detail .content_box .column_content table {
                    margin-bottom: 0;
                    max-width: inherit;
                    font-size: 15px;
                }

                    .page_column_detail .content_box .column_content table th {
                        font-size: 15px;
                    }
                .page_column_detail .content_box .column_content .border-box {
                    margin: 20px auto;
                    padding: 15px 18px 0;
                }
                    .page_column_detail .content_box .column_content .border-box.note {
                        font-size: 14px;
                    }
                .page_column_detail .content_box .column_content sup {
                    vertical-align: super;
                    font-size: smaller;
                    line-height: 0;
                }

        .page_column_detail .column_index {
            background: var(--colorAccent03);
            border-radius: 3px;
            display: inline-block;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 1px;
            padding: 5px 10px;
            text-align: center;
            width: 53%;
        }

        .page_column_detail .relation_column {
            margin-top: 35px;
        }

            .page_column_detail .relation_column .title_txt {
                background: url('/doctorsstudy/img/user/sp/common/column_ttl.png') no-repeat right bottom 8px;
                background-size: 43px auto;
                font-size: 16px;
                margin-bottom: 5px;
                padding-right: 52px;
            }

            .page_column_detail .relation_column .column_box {
                margin: 10px 0;
                padding: 0 10px;
            }

                .page_column_detail .relation_column .column_box .column {
                    padding: 10px 0;
                }

                        .page_column_detail .relation_column .column_box .column .article_content .column_title {
                            font-size: 16px;
                            margin: 5px 0;
                        }

                    .page_column_detail .relation_column .column_box .column .column_thumbnail {
                        margin-left: 10px;
                    }

                        .page_column_detail .relation_column .column_box .column .tag_list .tag {
                            font-size: 11px;
                            margin: 10px 6px 0 0;
                            padding: 3px 11px;
                        }
        .page_column_detail .banner_box {
            margin: 0 3% 20px;
        }
    }

/* ----------------------------------------------------
 サイドカラム .side_column
---------------------------------------------------- */
.side_column {
    border: 1px solid #adadad;
    border-radius: 3px;
}
.side_column .box {
        border-bottom: 1px solid #adadad;
    }
.side_column .box:last-child {
            border-bottom: none;
        }
.side_column .box.search {
            padding: 20px 7%;
        }
.side_column .box.search .search_title {
                background: url('/doctorsstudy/img/user/column/magazine_sarch_ico.png') no-repeat left center;
                font-size: 20px;
                font-weight: bold;
                line-height: 1.4;
                margin-bottom: 23px;
                padding-left: 30px;
            }
.side_column .box.search input {
                background: #f0f0f0;
                border-radius: 20px;
                padding: 9px 18px;
                width: 100%;
            }
.side_column .box.category .aside_content .tag_category {
                    display: inline-block;
                    margin: 6px 3px 0 0;
                    padding: 3px 9px;
                }
.side_column .box.ranking .column_box .column_thumbnail {
                    position: relative;
                }
.side_column .box.ranking .column_box .column_thumbnail .thumbnail .rank_icon {
                            background: #90897c;
                            color: #fff;
                            display: block;
                            font-size: 1.05rem;
                            font-weight: bold;
                            height: auto;
                            left: 0;
                            max-width: 30px;
                            max-height: 30px;
                            position: absolute;
                            text-align: center;
                            top: 0;
                            width: 30%;
                        }
.side_column .box.ranking .column_box .column_thumbnail .thumbnail .rank_1 {
                                background: #ba9d67;
                            }
.side_column .box.ranking .column_box .column_thumbnail .thumbnail .rank_2 {
                                background: #b8b8b8;
                            }
.side_column .box.ranking .column_box .column_thumbnail .thumbnail .rank_3 {
                                background: #8f5f5e;
                            }
.side_column .box .aside_title {
            font-size: 18px;
            font-weight: bold;
            line-height: 1.4;
            padding: 5px 0 5px 7%;
        }
.side_column .box .aside_content {
            padding: 20px 7% 30px;
        }
.side_column .box .aside_content .column_box {
                margin-bottom: 25px;
            }
.side_column .box .aside_content .column_box:last-child {
                    margin-bottom: 0;
                }
.side_column .box .aside_content .column_box .box_link {
                    gap: 0 4%;
                    display: grid;
                    justify-content: start;
                    grid-template:
                        "thum title"
                        "category title";
                    grid-template-columns: 48% 48%;
                }
.side_column .box .aside_content .column_box .box_link .column_thumbnail {

                        grid-area: thum;
                    }
.side_column .box .aside_content .column_box .box_link .column_title {

                        font-size: 14px;
                        font-weight: bold;
                        grid-area: title;
                    }
.side_column .box .aside_content .column_box .tag_list {
                    margin-top: 5px;
                    grid-area: category;
                }
.side_column .box .aside_content .column_box .tag_list .tag_category {
                        display: inline-block;
                        font-size: 8px;
                        line-height: 1.2;
                        margin: 5px 5px 0 0;
                        padding: 3px 2px;
                        height: -webkit-fit-content;
                        height: -moz-fit-content;
                        height: fit-content;
                    }
.side_column .open_close_area .open_close_button {
            border-bottom: 1px solid #cfcfcf;
            padding: 17px 20px;
        }
.side_column .open_close_area .open_close_button img {
                transition: 0.5s all;
            }
.side_column .open_close_area .open_close_button.closed {
                border-bottom: none;
            }
.side_column .open_close_area .open_close_button.closed img {
                    transform: rotate(-90deg);
                }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
.side_column {
        border: none;
        border-radius: 0
}

        .side_column .box {
            border-bottom: none;
        }

            .side_column .box.search {
                padding: 3px 3px 10px;
            }

                .side_column .box.search .search_title {
                    background: none;
                    font-size: 12px;
                    margin: 0 5px;
                    padding-left: 0;
                }

                    .side_column .box.search .search_title.is_sp {
                        display: inline-block;
                    }

                .side_column .box.search input {
                    width: 74%;
                }

                    .side_column .box.category .aside_content .tag_category {
                        font-size: 14px;
                        margin: 6px 3px 0 0;
                        padding: 5px 10px;
                    }

            .side_column .box .aside_title {
                border-left: 1px solid #adadad;
                font-size: 15px;
                padding: 2px 0 2px 11px;
            }

            .side_column .box .aside_content {
                padding: 3px 3px 10px;
            }

                .side_column .box .aside_content .column_box {
                    margin-bottom: 8px;
                }

                    .side_column .box .aside_content .column_box .box_link {
                        grid-template:
                            "thum title";
                        grid-template-columns: 26% 70%;
                    }

            .side_column .open_close_area .open_close_button {
                border-bottom: none;
            }
    }

@charset "UTF-8";
/* ----------------------------------------------------
 会社概要 .page_company
---------------------------------------------------- */
.page_company .title_txt {
		background: url('/doctorsstudy/img/user/company/company_ttl.png') no-repeat right bottom 20px;
		padding-right: 124px;
	}
.page_company .content_box {
		margin-bottom: 70px;
	}
.page_company .title_line {
		font-size: 22px;
		margin-bottom: 20px;
	}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_company .title_txt {
			background: url('/doctorsstudy/img/user/sp/company/company_ttl.png') no-repeat right bottom 10px;
			background-size: 53px;
			padding-right: 71px;
		}

		.page_company .content_box {
			margin-bottom: 30px;
		}
					.page_company .content_box .table_basic td.one_line {
						text-align: center;
					}
	}

/* ----------------------------------------------------
 特定商取引法に基づく表記 .page_company_tokutei
---------------------------------------------------- */
.page_company_tokutei .title_txt {
		background: url('/doctorsstudy/img/user/company/trade_law_ttl.png') no-repeat right bottom 20px;
		padding-right: 145px;
	}
.page_company_tokutei .table_basic th {
			width: 27%;
		}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

		.page_company_tokutei .title_txt {
			background: url('/doctorsstudy/img/user/sp/company/trade_law_ttl.png') no-repeat right bottom 10px;
			background-size: 63px;
			padding-right: 71px;
		}

			.page_company_tokutei .table_basic th {
				width: 100%;
			}
				.page_company_tokutei .table_basic td.one_line {
					text-align: center;
				}
	}

/* ----------------------------------------------------
 プライバシーポリシー .page_company_policy
---------------------------------------------------- */
.page_company_policy .title_txt {
		background: url('/doctorsstudy/img/user/company/privacy_policy_ttl.png') no-repeat right bottom 20px;
		padding-right: 194px;
	}
.page_company_policy .content_box {
		margin: 40px 0;
	}
.page_company_policy .content_box .title_line {
			font-size: 17px;
			margin-bottom: 20px;
		}
.page_company_policy .content_box .space_left .box {
				margin-bottom: 30px;
			}
.page_company_policy .content_box .space_left .box .list {
					margin: 30px 0 30px 41px;
				}
.page_company_policy .content_box .space_left .box .list li {
						counter-increment: cnt;
					}
.page_company_policy .content_box .space_left .box .list li:before {
							content: "(" counter(cnt) ") ";
							margin-left: -21px;
						}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_company_policy .title_txt {
			background: url('/doctorsstudy/img/user/sp/company/privacy_policy_ttl.png') no-repeat right bottom 10px;
			background-size: 88px;
			padding-right: 97px;
		}

		.page_company_policy .content_box {
			margin: 20px 0;
		}

			.page_company_policy .content_box .title_line {
				font-size: 16px;
				margin-bottom: 10px;
			}

					.page_company_policy .content_box .space_left .box .list {
						margin: 15px 0 15px 32px;
					}
	}

@charset "UTF-8";
/* ----------------------------------------------------
 お問い合わせ .page_contact
---------------------------------------------------- */
.page_contact .title_txt {
		background: url('/doctorsstudy/img/user/contact/contact_ttl.png') no-repeat right bottom 20px;
		padding-right: 126px;
	}
.page_contact .alert_danger {
		font-size: 16px;
	}
.page_contact .content_box_row .box {
			padding: 40px 8%;
		}
.page_contact .content_box_row .box .box_title {
				min-width: 218px;
				width: 30%;
			}
.page_contact .content_box_row .box .box_title .text_emphasis01 {
					margin-left: 10px;
				}
.page_contact .content_box_row .box .box_title .supplement {
					font-size: 12px;
				}
.page_contact .content_box_row .box .box_content {
				width: 65%;
			}
.page_contact .content_box_row .box .two_columns input {
					width: 47%;
				}
.page_contact .content_box_row .box .two_columns input:last-child {
						margin-left: 10px;
					}
.page_contact .button_area {
		margin: 50px 0;
	}
.page_contact .button_area .btn_main {
			padding: 13px;
			width: 31%
		}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_contact .title_txt {
			background: url('/doctorsstudy/img/user/sp/contact/contact_ttl.png') no-repeat right bottom 10px;
			background-size: 54px;
			padding-right: 63px;
		}

			.page_contact .content_box_row .box {
				padding: 15px 8%;
			}

				.page_contact .content_box_row .box .box_title {
					font-size: 11px;
					margin-bottom: 10px;
				}

				.page_contact .content_box_row .box .box_content {
					width: 100%;
				}

		.page_contact .button_area {
			margin: 15px 0;
		}

			.page_contact .button_area .btn_main {
				padding: 11px;
				width: 100%
			}
	}

/* ----------------------------------------------------
 お問い合わせ確認 .page_contact_confirm
---------------------------------------------------- */
.page_contact_confirm .title_txt {
		background: url('/doctorsstudy/img/user/contact/contact_ttl.png') no-repeat right bottom 20px;
		padding-right: 126px;
	}
.page_contact_confirm .content_box_row .box {
			padding: 40px 8%;
		}
.page_contact_confirm .content_box_row .box .box_title {
				min-width: 218px;
				width: 30%;
			}
.page_contact_confirm .content_box_row .box .box_title .text_emphasis01 {
					margin-left: 10px;
				}
.page_contact_confirm .content_box_row .box .box_title .supplement {
					font-size: 12px;
				}
.page_contact_confirm .content_box_row .box .box_content {
				width: 65%;
			}
.page_contact_confirm .content_box_row .box .two_columns input {
					width: 47%;
				}
.page_contact_confirm .content_box_row .box .two_columns input:last-child {
						margin-left: 10px;
					}
.page_contact_confirm .button_area {
		margin: 50px 0;

	}
.page_contact_confirm .button_area .btn_main,
		.page_contact_confirm .button_area .btn_return {
			padding: 13px;
			width: 31%;
		}
.page_contact_confirm .button_area .btn_return {
			margin-right: 20px;
		}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_contact_confirm .title_txt {
			background: url('/doctorsstudy/img/user/sp/contact/contact_ttl.png') no-repeat right bottom 10px;
			background-size: 54px;
			padding-right: 63px;
		}

			.page_contact_confirm .content_box_row .box {
				padding: 15px 8%;
			}

				.page_contact_confirm .content_box_row .box .box_title {
					font-size: 11px;
					margin-bottom: 10px;
				}

				.page_contact_confirm .content_box_row .box .box_content {
					width: 100%;
				}

		.page_contact_confirm .button_area {
			display: flex;
			flex-direction: column;
			margin: 15px 0;
		}

			.page_contact_confirm .button_area .btn_main,
			.page_contact_confirm .button_area .btn_return {
				padding: 11px;
				width: 100%;
			}

			.page_contact_confirm .button_area .btn_main {
				order: 1;
			}

			.page_contact_confirm .button_area .btn_return {
				order: 2;
				margin: 10px 0 0;
			}
	}

/* ----------------------------------------------------
 お問い合わせ完了 .page_contact_complete
---------------------------------------------------- */
.page_contact_complete .title_txt {
		background: url('/doctorsstudy/img/user/contact/contact_ttl.png') no-repeat right bottom 20px;
		padding-right: 126px;
	}
.page_contact_complete .content_box {
		padding: 6%;
	}
.page_contact_complete .content_box .button_area {
			margin: 50px 0;
		}
.page_contact_complete .content_box .button_area .btn_main {
				padding: 11px;
				width: 35%;
			}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_contact_complete .title_txt {
			background: url('/doctorsstudy/img/user/sp/contact/contact_ttl.png') no-repeat right bottom 10px;
			background-size: 54px;
			padding-right: 63px;
		}

		.page_contact_complete .content_box {
			font-size: 11px;
			text-align: left;
		}

			.page_contact_complete .content_box .button_area {
				margin: 25px 0 0;
			}

				.page_contact_complete .content_box .button_area .btn_main {
					padding: 11px;
					width: 100%;
				}
	}

@charset "UTF-8";

/* ----------------------------------------------------
 よくある質問 .page_faq
---------------------------------------------------- */
.page_faq .title_txt {
        background: url('/doctorsstudy/img/user/faq/faq_ttl.png') no-repeat right bottom 20px;
        padding-right: 66px;
    }
.page_faq .content_box {
        margin: 50px 0 80px;
    }
.page_faq .content_box .title_line {
            font-size: 18px;
            font-weight: bold;
            padding-left: 10px;
            width: 29%;
        }
.page_faq .content_box .faq_box {
            width: 66%;
        }
.page_faq .content_box .faq_box .box {
                border-top: 1px solid #e5e5e5;
            }
.page_faq .content_box .faq_box .box:last-child .box_title {
                        border-bottom: 1px solid #e5e5e5;
                    }
.page_faq .content_box .faq_box .box:last-child .box_content {
                        border-top: none;
                    }
.page_faq .content_box .faq_box .box .box_title {
                    background: url('/doctorsstudy/img/user/faq/faq_q_ico.png') no-repeat left 20px top 24px;
                    cursor: pointer;
                    font-size: 16px;
                    padding: 20px 20px 20px 50px;
                }
.page_faq .content_box .faq_box .box .box_title a {
                        text-decoration: underline;
                    }
.page_faq .content_box .faq_box .box .box_title a:hover {
                            text-decoration: none;
                        }
.page_faq .content_box .faq_box .box .box_content {
                    background: url('/doctorsstudy/img/user/faq/faq_a_ico.png') no-repeat left 20px top 24px;
                    border-top: 1px solid #e5e5e5;
                    padding: 20px 20px 30px 50px;
                }
.page_faq .content_box .faq_box .box .box_content .q {
                        margin-right: 15px;
                    }
.page_faq .content_box .faq_box .box .box_content a {
                        text-decoration: underline;
                    }
.page_faq .content_box .faq_box .box .box_content a:hover {
                            text-decoration: none;
                        }
.page_faq .content_box .faq_box .box .box_content table {
                        border-collapse: collapse;
                        border: 1px solid #adadad;
                        margin-bottom: 30px;
                    }
.page_faq .content_box .faq_box .box .box_content table td {
                            border: 1px solid #adadad;
                            padding: 5px 10px;
                            vertical-align: middle;
                        }
.page_faq .content_box .faq_box .open_close_area .open_close_button button img {
                            transform: rotate(-180deg);
                            transition: 0.5s all;
                        }
.page_faq .content_box .faq_box .open_close_area .open_close_button.closed button img {
                                transform: rotate(0deg);
                            }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_faq .title_txt {
            background: url('/doctorsstudy/img/user/sp/faq/faq_ttl.png') no-repeat right bottom 10px;
            background-size: 22px;
            padding-right: 32px;
        }

            .page_faq .page_sort_box select {
                width: 100%;
                background-size: 8px auto;
                border-radius: 4px;
                font-size: 15px;
                padding: 10px 19px 10px 16px;
                color: #494949;
            }

                .page_faq .page_sort_box select .label {
                    color: #7c7c7c;
                }

        .page_faq .content_box {
            flex-direction: column;
            margin: 0;
            padding-top: 50px;
        }

            .page_faq .content_box .title_line {
                font-size: 16px;
                margin-bottom: 10px;
                width: 100%;
            }

            .page_faq .content_box .faq_box {
                width: 100%;
            }

                    .page_faq .content_box .faq_box .box .box_title {
                        background: url('/doctorsstudy/img/user/sp/faq/faq_q_ico.png') no-repeat left 10px top 10px;
                        background-size: 15px auto;
                        padding: 8px 15px 8px 33px;
                        font-size: 14px;
                    }

                        .page_faq .content_box .faq_box .box .box_title .q {
                            margin-right: 10px;
                        }

                    .page_faq .content_box .faq_box .box .box_content {
                        background: url('/doctorsstudy/img/user/sp/faq/faq_a_ico.png') no-repeat left 10px top 14px;
                        background-size: 15px auto;
                        padding: 12px 15px 12px 33px;
                    }
                        .page_faq .content_box .open_close_area .open_close_button button img {
                            transform: rotate(-180deg);
                            transition: 0.5s all;
                            width: 11px;
                        }
    }

@charset "UTF-8";

/* ----------------------------------------------------
パスワードを忘れた方 .page_forgot_password
---------------------------------------------------- */
.page_forgot_password .title_txt {
        background: url('/doctorsstudy/img/user/forgot-password/password_reissue_ttl.png') no-repeat right bottom 20px;
        padding-right: 225px;
    }
.page_forgot_password .alert_danger {
        font-size: 16px;
        max-width: 440px;
        width: 100%;
        margin: -30px auto 30px;
    }
.page_forgot_password .content_box {
        padding: 8% 6%;

    }
.page_forgot_password .content_box form {

            width: 100%;
            margin: 0 auto;

        }
.page_forgot_password .content_box form .email_box {
                margin: 0 auto 30px;
                max-width: 440px;
            }
.page_forgot_password .content_box form label {
                display: block;
                font-size: 16px;
                letter-spacing: 0.025em;
                font-weight: bold;

            }
.page_forgot_password .content_box form input {
                width: 100%;

            }
.page_forgot_password .content_box form .description {
                letter-spacing: 0.05em;
                line-height: 2;
            }
.page_forgot_password .content_box form .button_area {
                margin: 36px auto 0;
                max-width: 340px;
            }
.page_forgot_password .content_box form .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_forgot_password .content {
            margin-top: 5px;
        }

        .page_forgot_password .title_txt {
            background: url('/doctorsstudy/img/user/sp/forgot-password/password_reissue_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 90px;
            padding-right: 95px;
        }

        .page_forgot_password .alert_danger {
            font-size: 14px;
            max-width: inherit;
            margin: 0 auto 15px;

        }

        .page_forgot_password .content_box {
            padding: 15px 16px 20px;



        }

            .page_forgot_password .content_box form {
                max-width: inherit;

            }

                .page_forgot_password .content_box form .email_box {
                    margin: 0 auto 15px;
                }

                .page_forgot_password .content_box form label {
                    font-size: 11px;
                    margin-bottom: 5px;

                }

                .page_forgot_password .content_box form input {
                    padding: 6px 18px;
                }

                .page_forgot_password .content_box form .description {
                    font-size: 11px;
                    margin-bottom: 25px;
                    text-align: left;
                }


                .page_forgot_password .content_box form .button_area {
                    margin: 0 auto;
                }

                    .page_forgot_password .content_box form .button_area .btn_main {
                        font-size: 16px;
                    }
}

@charset "UTF-8";
/* ----------------------------------------------------
 ご利用ガイド .page_guide
---------------------------------------------------- */
.page_guide .title_txt {
		background: url('/doctorsstudy/img/user/guide/guide_ttl.png') no-repeat right bottom 20px;
		padding-right: 77px;
	}
.page_guide .link_list li {
			font-size: 13px;
		}
.page_guide .content_box {
		margin: 40px 0;
	}
.page_guide .content_box .title_line {
			font-size: 17px;
			margin: 20px 0;
		}
.page_guide .content_box .space_left .box {
				margin-bottom: 40px;
			}
.page_guide .content_box .space_left .box .box_title {
					background: #e4e2df;
					margin: 20px 0;
					padding: 5px 18px;
				}
.page_guide .content_box .list_icon {
			background: url('/doctorsstudy/img/user/guide/guide_li_ico.png') no-repeat left top 9px;
			padding-left: 16px;
		}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

		.page_guide .title_txt {
			background: url('/doctorsstudy/img/user/sp/guide/guide_ttl.png') no-repeat right bottom 10px;
			background-size: 30px;
			padding-right: 48px;
		}

		.page_guide .link_list {
			border: 2px solid #f4f4f4;
			flex-direction: column;
			margin-bottom: 30px;
			padding: 15px;
		}

			.page_guide .link_list li {
				font-weight: normal;
				margin: 0 0 5px;
			}

				.page_guide .link_list li:last-child {
					margin: 0;
				}

				.page_guide .link_list li a {
					background: url('/doctorsstudy/img/user/guide/guide_li_ico.png') no-repeat left top 8px;
					text-decoration: underline;
					padding: 0 10px 0 19px;
				}

		.page_guide .content_box {
			margin: 0;
			padding: 30px 0 0;
		}

			.page_guide .content_box .title_line {
				font-size: 16px;
				margin: 5px 0 15px;
			}

			.page_guide .content_box .space_left {
				margin-left: 0;
			}

				.page_guide .content_box .space_left .box {
					margin-bottom: 10px;
				}

					.page_guide .content_box .space_left .box .box_title {
						margin: 10px 0;
						padding: 1px 10px 1px;
					}
	}

@charset "UTF-8";

/* ----------------------------------------------------
 商品ページ共通 .page_item
---------------------------------------------------- */
.modal {
    display: none;
}
.page_item #main {
        max-width: 786px;
        width: 72%;
    }
.page_item #side {
        max-width: 260px;
        width: 24%;
    }
.page_item #side .sample_video {
            cursor: pointer;
            background: url('/doctorsstudy/img/user/item/sample_ico.png') no-repeat left center;
            padding-left: 27px;
        }
.page_item .tag_set {
        background: #b03b55;
        color: #fff;
        display: inline-block;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 20px;
        padding: 8px 18px;
    }
.page_item .box_bg_color {
        background: #f9f9f9;
    }
.page_item .items_box{
        width: 70%;
    }
.page_item .items_box .banner_box {
            margin-bottom: 60px;
        }
.page_item .items_box .list_title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 30px;
        }
.page_item .items_box .grid_box {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
        }
.page_item .items_box .link_circle_box .link_circle .label {
                    font-size: 18px;
                    font-weight: nomal;
                    padding-right: 80px;
                    position: relative;
                }
.page_item .items_box .link_circle_box .link_circle .label:after {
                            background: #9a9a9a;
                            content: '';
                            display: block;
                            height: 1px;
                            left: 105px;
                            position: absolute;
                            top: 50%;
                            width: 80px;
                            z-index: 1;
                    }
.page_item .items_box .link_circle_box .link_circle .arrow {
                    align-items: center;
                    display: flex;
                    height: 70px;
                    justify-content: center;
                    position: relative;
                    width: 70px;
                }
.page_item .items_box .link_circle_box .link_circle .arrow img {
                         z-index: 1;
                    }
.page_item .items_box .link_circle_box .link_circle .arrow:after {
                        background: #fff;
                        border: 1px solid #cccccc;
                        border-radius: 50%;
                        content: '';
                        height: 100%;
                        left: 0;
                        position: absolute;
                        top: 0;
                        width: 100%;
                    }
.page_item .items_box .link_circle_box .link_circle:hover {
                    opacity: 1;
                }
.page_item .items_box .link_circle_box .link_circle:hover .arrow:after {
                            transform: scale(1.2, 1.2);
                            transition: 0.5s all;
                        }
.page_item .items_box .arrow_box {
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            height: -webkit-fit-content;
            height: -moz-fit-content;
            height: fit-content;
            padding: 20px 10px;
            background-color: #fff;
            border: 1px solid #e4e2df;
            z-index: 99;
            box-shadow: 0 2px 5px 0 rgb(213 217 217 / 50%);
            cursor: pointer;
        }
.page_item .items_box .arrow_box.prev {
                left: -20px;
            }
.page_item .items_box .arrow_box.next {
                right: -20px;
            }
.page_item .item_box {
        padding: 0;
        margin: 0 0 30px;

    }
.page_item .item_box .box .bg_color {
                background: #f9f9f9;
            }
.page_item .item_box .box .tag_list {
                font-size: 12px;
                margin: 0 0 10px;
            }
.page_item .item_box .box .tag_list .tag_category {
                    padding: 4px 17px;
                    margin: 10px 10px 0 0;
                }
.page_item .item_box .box .box_title {
                font-size: 18px;
                font-weight: bold;
                line-height: 1.4;
                margin-bottom: 16px;
            }
.page_item .item_box .box .price_box {
                align-items: baseline;
                font-weight: bold;
                letter-spacing: 1px;
                margin-bottom: 18px;
            }
.page_item .item_box .box .price_box .price {
                    font-size: 24px;
                    margin-right: 20px;
                }
.page_item .item_box .box .price_box .price .price_name {
                        font-size: 16px;
                        margin: 0 10px 16px 0;
                    }
.page_item .item_box .box .price_box .price .num {
                        font-size: 26px;
                    }
.page_item .item_box .box .price_box .price .tax {
                        font-size: 18px;
                    }
.page_item .item_box .box .price_box .set_price {
                    font-size: 16px;
                }
.page_item .item_box .box .box_thumbnail {
                flex: 1;
                max-width: 310px;
                margin-right: 30px;
            }
.page_item .item_box .box .box_content {
                flex: 3;
            }
.page_item .item_box .box .link,
            .page_item .item_box .box .display_button_area {
                font-size: 12px;
                margin-left: 17px;
            }
.page_item .item_box .box .link .display_button, .page_item .item_box .box .display_button_area .display_button {
                    cursor: pointer;
                }
.page_item .item_box .display_hide {
            display: none;
        }
.page_item .set_box.grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 30px 0;
        }
.page_item .set_box.grid .set_thumbnail {
                border-radius: 20px;
                max-width: 250px;
            }
.page_item .set_box.grid .set_txt_box {
                margin-left: 20px;
            }
.page_item .set_box.grid .set_txt_box .box_title {
                    font-size: 16px;
                    margin-top: 15px;
                }
.page_item .set_box .set_course_box {
            padding: 25px 3%;
            margin-top: 30px;
        }
.page_item .set_box .set_course_box .set_course_box_title {
                font-size: 22px;
                font-weight: bold;
            }
.page_item .set_box .set_course_box .box {
                border-top: 1px solid #e5e5e5;
                padding: 22px 0;
            }
.page_item .set_box .set_course_box .box:first-of-type {
                    border-top: none;
                }
.page_item .set_box .set_course_box .box .course_title {
                    font-size: 18px;
                    font-weight: bold;
                }
.page_item .set_box .set_course_box .box .course_thumbnail {
                    flex: 1;
                    margin-right: 27px;
                    max-width: 200px;
                }
.page_item .set_box .set_course_box .box .course_content {
                    flex: 2;
                }
.page_item .set_box .set_course_box .box .course_content .tag_list {
                        font-size: 12px;
                        margin: 0 0 10px;
                    }
.page_item .set_box .set_course_box .box .course_content .tag_list .tag_category {
                            padding: 4px 17px;
                            margin: 10px 10px 0 0;
                        }
.page_item .set_box .set_course_box .display_hide .box {
                    border-top: 1px solid #e5e5e5;
                }
.page_item .course_box .box_thumbnail {
            flex: 1;
            max-width: 310px;
            margin-right: 30px;
        }
.page_item .course_box .box_content {
            flex: 3;
        }
.page_item .course_box .box_content .price_box .price {
                    font-size: 18px;
                    margin-right: 20px;
                }
.page_item .course_box .box_content .price_box .price .price_name {
                        font-size: 16px;
                        margin: 0 10px 16px 0;
                    }
.page_item .course_box .box_content .price_box .price .num {
                        font-size: 28px;
                    }
.page_item .course_box .box_content .price_box .price .tax {
                        font-size: 16px;
                    }
.page_item .course_box .box_content .lesson_box {
                margin-top: 10px;
            }
.page_item .course_box .box_content .lesson_box .lesson_label {
                    font-size: 12px;
                }
.page_item .course_box .box_content .lesson_box .teacher {
                    margin-right: 20px;
                }
.page_item .course_box .box_content .video_box {
                font-weight: bold;
                line-height: 1.4;
                padding: 20px 4%;
            }
.page_item .course_box .box_content .video_box .video_box_title {
                    font-size: 18px;
                    margin-bottom: 10px;
                }
.page_item .detail_box .page_title {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 30px;
        }
.page_item .detail_box .tag_list {
            margin: 30px 0 20px;
        }
.page_item .detail_box .tag_list .tag_category {
                font-size: 14px;
                margin: 0 10px 10px 0;
                padding: 6px 8px;
            }
.page_item .review_box .box {
            margin: 50px 0;
        }
.page_item .review_box .box .review_ico {
                flex: 1;
                margin-right: 40px;
                max-width: 84px;
            }
.page_item .review_box .box .box_content {
                flex: 1;
            }
.page_item .review_box .box .box_content .reviewer_data {
                    margin-bottom: 10px;
                }
.page_item .review_box .box .box_content .reviewer_data>p {
                        margin-right: 20px;
                    }
.page_item .review_box .box .box_content .evaluate_box {
                    margin: 10px 0;
                }
.page_item .review_box .box .box_content .evaluate_box .created_at {
                        color: #9b9b9b;
                        margin-left: 16px;
                    }
.page_item .review_box .btn_generic {
            padding: 7px 37px;
        }
.page_item .recommend_box {
        margin: 75px 3%;
    }
.page_item .banner_box {
        margin: 75px 3%;
    }
.page_item .no_data {
        font-size: 24px;
        padding: 15px;
    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_item #main {
            width: 100%;
        }

        .page_item #side {
            display: none;
        }

        .page_item .content {
            margin: 17px 0 0;
        }

        .page_item .tag_set {
            font-size: 12px;
            margin-bottom: 10px;
            padding: 6px 9px
        }

        .page_item .box_bg_color {

        }

        .page_item .items_box{
            width: 100%;
        }
            .page_item .items_box .list_title {
                margin-bottom: 10px;
            }
            .page_item .items_box .grid_box {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px 15px;
                margin-bottom: 15px;
            }
                .page_item .items_box .set_box .set_box_inner {
                    flex-direction: column;
                }
                .page_item .items_box .course_box .course_box_inner {
                    flex-direction: column;
                }

                    .page_item .items_box .link_circle_box .link_circle .label {
                        font-size: 14px;
                        font-weight: normal;
                        padding-right: 35px;
                    }


                        .page_item .items_box .link_circle_box .link_circle .label:after {
                            left: 75px;
                            width: 40px;
                        }

                    .page_item .items_box .link_circle_box .link_circle .arrow {
                        height: 35px;
                        width: 35px;
                    }

                        .page_item .items_box .link_circle_box .link_circle .arrow img {
                            width: 5px
                        }

        .page_item .item_box {
            /*
            padding: 15px 3%;
            margin: 11px 0;
*/
            padding: 0;
            margin: 0;
        }

                .page_item .item_box .box .tag_list {
                    font-size: 11px;
                    margin: 0 0 5px;
                }

                    .page_item .item_box .box .tag_list .tag_category {
                        padding: 3px 8px;
                        margin: 5px 5px 0 0;
                    }
                .page_item .item_box .box .box_thumbnail {
                    flex: 1;
                    max-width: 100%;
                    margin-right: 0;
                }

                .page_item .item_box .box .box_title {
                    font-size: 12px;
                    margin: 0;
                    display: -webkit-box;
                    -webkit-line-clamp: 3; /* 表示する行数 */
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }

                .page_item .item_box .box .price_box {
                    margin-bottom: 0;
                }

                    .page_item .item_box .box .price_box .price {
                        font-size: 10px;
                        margin-right: 5px;
                    }

                        .page_item .item_box .box .price_box .price .price_name {
                            font-size: 10px;
                            margin: 0 5px 8px 0;
                        }

                        .page_item .item_box .box .price_box .price .num {
                            font-size: 16px;
                        }

                        .page_item .item_box .box .price_box .price .tax {
                            font-size: 10px;
                        }

                    .page_item .item_box .box .price_box .set_price {
                        font-size: 11px;
                    }

                .page_item .item_box .box .link,
                .page_item .item_box .box .display_button_area {
                    font-size: 11px;
                    margin-left: 10px;
                }
            .page_item .set_box .set_item_box  {
            }
            .page_item .set_box.grid {
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 30px 0;
            }
                .page_item .set_box.grid .set_thumbnail {
                    border-radius: 0;
                    width: 100%;
                }
                .page_item .set_box.grid .set_txt_box {
                    margin-left: 0;
                    margin-top: 0;
                }
                    .page_item .set_box.grid .set_txt_box .box_title {
                        font-size: 16px;
                        margin: 0 0 12px;
                    }
                        .page_item .set_box.grid .set_txt_box .box_title > a {
                            text-decoration: underline;
                        }
            .page_item .set_box.category_list {
                margin: 0 0 30px;
                min-width: 100%;
                width: 100%;
            }
                .page_item .set_box.category_list .set_box_inner {
                    flex-direction: row;
                }
                    .page_item .set_box.category_list .set_box_inner .box_thumbnail {
                        width: 37%;
                        margin-right: 15px;
                        flex: inherit;
                    }
                        .page_item .set_box.category_list .set_box_inner .box_thumbnail img {
                            border-radius: 10px;
                        }
                    .page_item .set_box.category_list .set_box_inner .box_content {
                        width: 60%;
                    }

            .page_item .set_box .set_course_box {
                padding: 15px 3%;
                margin-top: 17px;
            }
                .page_item .set_box .set_course_box .set_course_box_title {
                    font-size: 12px;
                }

                .page_item .set_box .set_course_box .box {
                    padding: 15px 0;
                }

                    .page_item .set_box .set_course_box .box .course_title {
                        font-size: 16px;
                        text-decoration: underline;
                    }

                    .page_item .set_box .set_course_box .box .course_thumbnail {
                        margin-right: 9px;
                    }

                        .page_item .set_box .set_course_box .box .course_content .tag_list {
                            font-size: 11px;
                            margin: 0 0 5px;
                        }

                            .page_item .set_box .set_course_box .box .course_content .tag_list .tag_category {
                                padding: 3px 8px;
                                margin: 5px 5px 0 0;
                            }

        .page_item .course_box {
            font-size: 13px;
        }
            .page_item .course_box.category_list {
                margin: 0 0 30px;
                min-width: 100%;
                width: 100%;
            }
                .page_item .course_box.category_list .course_box_inner {
                    flex-direction: row;
                }
                    .page_item .course_box.category_list .course_box_inner .box_thumbnail {
                        width: 37%;
                        margin-right: 15px;
                        flex: inherit;
                    }
                        .page_item .course_box.category_list .course_box_inner .box_thumbnail img {
                            border-radius: 10px;
                        }
                    .page_item .course_box.category_list .course_box_inner .box_content {
                        width: 60%;
                    }
            .page_item .course_box .box_thumbnail {
                flex: 1;
                margin-right: 3%;
            }

            .page_item .course_box .box_content {
                flex: 1;
            }

            .page_item .course_box .price_box {
                margin-bottom: 10px;
            }

                .page_item .course_box .price_box .price {
                    font-size: 13px;
                    margin-right: 5px;
                }

                    .page_item .course_box .price_box .price .price_name {
                        font-size: 11px;
                        margin: 0 5px 8px 0;
                    }

                    .page_item .course_box .price_box .price .num {
                        font-size: 20px;
                    }

                    .page_item .course_box .price_box .price .tax {
                        font-size: 11px;
                    }

            .page_item .course_box .lesson_box {
                font-size: 12px;
                margin-top: 10px;
            }

                .page_item .course_box .lesson_box .lesson_label {
                    font-size: 12px;
                }

                .page_item .course_box .lesson_box .teacher {
                    margin-right: 20px;
                }

            .page_item .course_box .video_box {
                font-size: 12px;
                font-weight: bold;
                margin-top: 10px;
                padding: 15px 3%;
            }

                .page_item .course_box .video_box .video_box_title {
                    font-size: 12px;
                    margin-bottom: 8px;
                }

            .page_item .detail_box .page_title {
                font-size: 18px;
                line-height: 1.5;
                margin-bottom: 11px;
            }

            .page_item .detail_box .sample_video_play {
                margin-bottom: 5px;
            }

                .page_item .detail_box .sample_video_play .teacher_thumbnail {
                    margin-bottom: 10px;
                }

                .page_item .detail_box .sample_video_play .sample_video {
                    display: inline-block;
                    background: url('/doctorsstudy/img/user/sp/item/sample_ico.png') no-repeat left center;
                    background-size: 18px auto;
                    padding-left: 23px;
                    text-decoration: underline;
                }


            .page_item .detail_box .price_box {
                margin-bottom: 10px;
            }

                .page_item .detail_box .price_box .price {
                    font-size: 13px;
                    margin-right: 5px;
                }

                    .page_item .detail_box .price_box .price .price_name {
                        font-size: 11px;
                        margin: 0 5px 8px 0;
                    }

                    .page_item .detail_box .price_box .price .num {
                        font-size: 20px;
                    }

                    .page_item .detail_box .price_box .price .tax {
                        font-size: 11px;
                    }

            .page_item .detail_box .tag_list {
                margin: 10px 0;
            }

                .page_item .detail_box .tag_list .tag_category {
                    font-size: 11px;
                    margin: 0 5px 5px 0;
                    padding: 3px 5px;
                }

            .page_item .detail_box .description {
                margin-bottom: 10px;
            }

                .page_item .detail_box .button_area button {
                    padding: 15px 20px;
                    font-size: 14px;
                }

            .page_item .review_box .box {
                margin: 25px 0;
            }

                .page_item .review_box .box .review_ico {
                    margin-right: 20px;
                    max-width: 60px;
                }

                    .page_item .review_box .box .box_content .reviewer_data {
                        margin-bottom: 0;
                    }

                    .page_item .review_box .box .box_content .evaluate_box {
                        margin: 0 0 10px;
                    }

                .page_item .review_box .box .box_text {
                    margin-top: 15px;
                }

            .page_item .review_box .btn_generic {
                padding: 7px 10px;
                width: 70%;
            }

        .page_item .recommend_box {
            margin: 20px 0 0;
        }

        .page_item .banner_box {
            margin: 0 3% 20px;
        }

        .page_item .button_area {
            margin: 10px 0;
        }

            .page_item .button_area button {
                margin: 10px 0;
                width: 100%;
            }

        .page_item .is-fixed {
            position: fixed;
            top: 30px;
            z-index: 2;
            text-align: left;
            width: 100%;
        }

            .page_item .is-fixed button {
                width: 94%;
            }

                .page_item .is-fixed button.cart_added {
                    opacity: 1;
                    border: solid 1px rgba(17, 17, 17, 0.5);
                    color: rgba(17, 17, 17, 0.5);
                }

        .page_item .no_data {
            font-size: 15px;
            padding: 15px 10px;
        }
    }

/* ----------------------------------------------------
 商品一覧 .page_item_list
---------------------------------------------------- */
.page_item_list .title_txt {
        background: url('/doctorsstudy/img/user/item/product_ttl.png') no-repeat right bottom 20px;
        padding-right: 119px;
    }
.page_item_list .items_flex_box {
        display: flex;
    }
.page_item_list .search_item {
        margin: 0 50px 20px 0;
        max-width: 260px;
        width: 24%;
    }
.page_item_list .search_item .search_item_box {
            border: 1px solid #adadad;
            padding: 25px 17px 45px;
            position: relative;
        }
.page_item_list .search_item .search_item_box_sp {
            padding: 0 5px 20px;
        }
.page_item_list .search_item .search_item_box_sp .banner_box {
                margin: 20px 22px 0;
            }
.page_item_list .search_item .search {
            width: 100%;
        }
.page_item_list .search_item .search .input_search {
                padding: 14px 18px 14px 50px;
                border-radius: 50px;
            }
.page_item_list .search_item #search_result {
            display: none;
            background-color: #fff;
            border: 1px solid #cccccc;
            font-size: 12px;
            position: absolute;
            left: 0;
            top: 75px;
            z-index: 8;
            padding: 20px;
            line-height: 200%;
        }
.page_item_list .search_item #search_result li {
                cursor: pointer;
            }
.page_item_list .search_item .filter_btn {
            display: flex;
            cursor: pointer;
            align-items: center;
            font-weight: bold;
            justify-content: center;
            margin-left: 10px;
            min-width: 80px;
        }
.page_item_list .search_item .filter_btn img {
                margin-right: 10px;
            }
.page_item_list .search_item .sort_box {
            width: 27%;
        }
.page_item_list .search_item .sort_box select {
                width: 100%;
            }
.page_item_list .search_item .search_title {
            font-weight: bold;
            font-size: 16px;
            margin: 20px 0 15px;
        }
.page_item_list .search_item hr {
            border-top: 1px solid #333;
        }
.page_item_list .search_item .categorySelect{
            border: 1px solid #adadad;
            display: none;
            padding: 15px 20px;
            margin: 0 20px;
        }
.page_item_list .search_item .categorySelect.link_arrow {
                display: none;
                background-position: center right 15px;
            }
.page_item_list .search_item .category_list {
            padding: 0;
        }
.page_item_list .search_item .category_list .checkbox_category {
                padding-right: 0;
            }
.page_item_list .search_item .category_list .checkbox_category a {
                    padding: 6px 12px 6px 16px;
                }
.page_item_list .search_item .category_list .checkbox_category a.on {
                        background: url('/doctorsstudy/img/user/sp/common/check_black.png') no-repeat left center #fff;
                        background-size: 9px auto;
                    }
.page_item_list .search_item .course_type_box {
            padding: 0 8px 0 16px;
        }
.page_item_list .search_item .course_type_box input[type='checkbox'] {
                cursor: pointer;
                height: 16px;
                margin: 0 10px 3px 0;
                padding: 0;
                width: 16px;
                border: 2px solid #ba9e6c;
            }
.page_item_list .search_item .course_type_box input[type='checkbox']:checked {
                background: url('/doctorsstudy/img/user/common/check_black.png') no-repeat center;
            }
.page_item_list .search_item .course_type_box .form-check-label {
                font-weight: bold;
                cursor: pointer;
            }
.page_item_list .search_item .btn_box {
            padding-top: 30px;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
.page_item_list .search_item .btn_clear {
            border-radius: 50px;
            background-color: #ecebeb;
            color: #ba9e6c;
            padding: 10px 20px;
            margin-right: 11px;
            font-weight: bold;
        }
.page_item_list .search_item .btn_clear:hover{
                opacity: 0.6;
            }
.page_item_list .search_item .submit_btn{
            border-radius: 50px;
            background-color: #ba9e6c;
            color: #fff;
            padding: 10px 30px;
        }
.page_item_list .search_item .submit_btn:hover{
                opacity: 0.6;
            }
.page_item_list .banner_box {
        margin: 25px 0;
    }
.page_item_list .cate_parts {
        word-break: break-all;
        padding-top: 30px;

    }
.page_item_list .cate_parts p {
            margin-bottom: 15px;
        }
.page_item_list .cate_parts span.text_bold {
            font-weight: bold;
        }
.page_item_list .cate_parts span.text_red {
            color: var(--colorAccent01);
        }
.page_item_list .cate_parts span.text_marker {
            background: #f7eedf;
        }
.page_item_list .cate_parts h2 {
             font-size: 26px;
            font-weight: bold;
            margin: 30px 0;
        }
/*
        h3 {
            font-size: 22px;
            font-weight: bold;
            margin: 30px 0;
            border-left: 2px solid #ded1bc;
            line-height: 1.4;
            padding-left: 16px;

        }
*/
.page_item_list .cate_parts h3 {
            border-bottom: 4px double var(--colorAccent03);
            color: var(--colorAccent03);
            font-size: 18px;
            font-weight: bold;
            margin: 30px 0;
        }
.page_item_list .cate_parts h4 {
            font-size: 16px;
            font-weight: bold;
            margin: 30px 0;
        }
.page_item_list .cate_parts h5 {
            font-size: 14px;
            font-weight: bold;
            margin: 30px 0;
        }
.page_item_list .cate_parts h6 {
            font-size: 14px;
            font-weight: bold;
            margin: 30px 0;
        }
.page_item_list .cate_parts ul {
            margin: 30px 0;

        }
.page_item_list .cate_parts ul li {
                background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 6px;
                padding-left: 20px;
            }
.page_item_list .cate_parts ol {
            margin: 30px 0;

        }
.page_item_list .cate_parts ol li {
                margin-left: 17px;
                list-style-type: inherit;
                padding-left: 3px;
            }
.page_item_list .cate_parts img {
            margin: 15px 0;
        }
.page_item_list .cate_parts a {
            text-decoration: underline;
        }
.page_item_list .cate_parts a:hover {
                text-decoration: none;
            }
.page_item_list .cate_parts table {
            border-collapse: collapse;
            border: 1px solid #adadad;
            width: -webkit-max-content !important;
            width: -moz-max-content !important;
            width: max-content !important;
            margin-bottom: 30px;
            max-width: 100%;
        }
.page_item_list .cate_parts table th {
                background: #f8f5f0;
                border: 1px solid #adadad;
                padding: 5px 10px;
                font-size: 16px;
                vertical-align: middle;
            }
.page_item_list .cate_parts table td {
                border: 1px solid #adadad;
                padding: 5px 10px;
                vertical-align: middle;
            }
.page_item_list .item_box .box .box_thumbnail {
                max-width: 260px;
            }
.page_item_list .item_box .box .box_thumbnail img {
                    border-radius: 20px;
                    width: 100%;
                }
.page_item_list .item_box .box .box_content {
                max-width: 500px;
            }
.page_item_list .useful_column {
        padding: 50px 0 100px;
    }
.page_item_list .useful_column .inner {
            max-width: 1550px;
        }
.page_item_list .useful_column .magazine {
            max-width: 150px;
            margin-bottom: 10px;
        }
.page_item_list .useful_column .scroll {
            overflow-x: inherit;
        }
.page_item_list .useful_column .column_box {
            position: relative;
        }
.page_item_list .useful_column .column_box:before {
                content: url('/doctorsstudy/img/user/top/top_recommended_ttl_img.png');
                left: -60px;
                position: absolute;
                top: 15px;
                z-index: -1;
            }
.page_item_list .useful_column .column_box .column_box_title {
                background: url('/doctorsstudy/img/user/common/column_ttl.png') no-repeat right bottom 12px;
                display: inline-block;
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 40px;
                padding-right: 104px;
                position: relative;
            }
.page_item_list .useful_column .column_box .column_content {
                margin-bottom: 50px;
            }
.page_item_list .useful_column .column_box .column_content .box_link {
                    background: #fff;
                    flex: 0 0 auto;
                    margin-right: 30px;
                    width: 250px;
                }
.page_item_list .useful_column .column_box .column_content .box_link:last-child {
                        margin-right: 0;
                    }
.page_item_list .useful_column .column_box .column_content .box_link .box_thumbnail img {
                            width: 100%;
                        }
.page_item_list .useful_column .column_box .column_content .box_link .box_title {
                        font-size: 16px;
                        font-weight: bold;
                    }
.page_item_list .useful_column .column_box .column_content .box_link .info_box {
                        gap: 0 10px;
                        padding: 10px 0 5px;
                    }
.page_item_list .useful_column .column_box .column_content .box_link .info_box .date {
                            line-height: 1;

                        }
.page_item_list .useful_column .column_box .link_circle_box .link_circle .label {
                        font-size: 18px;
                        font-weight: bold;
                        padding-right: 80px;
                        position: relative;
                    }
.page_item_list .useful_column .column_box .link_circle_box .link_circle .label:after {
                            background: #9a9a9a;
                            content: '';
                            display: block;
                            height: 1px;
                            left: 105px;
                            position: absolute;
                            top: 50%;
                            width: 80px;
                            z-index: 1;
                        }
.page_item_list .useful_column .column_box .link_circle_box .link_circle .arrow {
                        align-items: center;
                        display: flex;
                        height: 70px;
                        justify-content: center;
                        position: relative;
                        width: 70px;
                    }
.page_item_list .useful_column .column_box .link_circle_box .link_circle .arrow img {
                            z-index: 1;
                        }
.page_item_list .useful_column .column_box .link_circle_box .link_circle .arrow:after {
                            background: var(--colorMain);
                            border-radius: 50%;
                            content: '';
                            height: 100%;
                            left: 0;
                            position: absolute;
                            top: 0;
                            width: 100%;
                        }
.page_item_list .useful_column .column_box .link_circle_box .link_circle:hover {
                        opacity: 1;
                    }
.page_item_list .useful_column .column_box .link_circle_box .link_circle:hover .arrow:after {
                                transform: scale(1.2, 1.2);
                                transition: 0.5s all;
                            }
.page_item_list .useful_column .column_box .arrow_box {
                position: absolute;
                top: 0;
                bottom: 0;
                margin: auto;
                height: -webkit-fit-content;
                height: -moz-fit-content;
                height: fit-content;
                padding: 20px 10px;
                background-color: #fff;
                border: 1px solid #e4e2df;
                z-index: 99;
                box-shadow: 0 2px 5px 0 rgb(213 217 217 / 50%);
                cursor: pointer;
            }
.page_item_list .useful_column .column_box .arrow_box.prev {
                    left: -20px;
                }
.page_item_list .useful_column .column_box .arrow_box.next {
                    right: -20px;
                }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_item_list .modal {
            display: none;
        }
            .page_item_list .modal.active {
                display: block;
                background-color: #333;
                opacity: 0.3;
                width: 100%;
                height: 100%;
                position: fixed;
                z-index: 6;
                top: 0;
                left: 0;
            }

        .page_item_list .title_txt {
            background: url('/doctorsstudy/img/user/sp/item/product_ttl.png') no-repeat right bottom 10px;
            background-size: 50px auto;
            padding-right: 60px;
            font-size: 16px;
        }

        .page_item_list .items_flex_box {
            display: block;
        }

        .page_item_list .scroll_set {
            display: flex;
            flex-wrap: nowrap;
            justify-content: flex-start;
            overflow-x: scroll;
            padding: 5px 15px 10px 0;
            width: calc(100% + ((100vw - 100%) / 2));
            margin-bottom: 20px;
        }
            .page_item_list .scroll_set::-webkit-scrollbar {
                height: 5px;
            }
            /* Styling the scrollbar track (background) */
            .page_item_list .scroll_set::-webkit-scrollbar-track {
                background-color: #f5f5f5;
                border-radius: 10px;
                max-width: 90%;
                height: 10px;
            }

            /* Styling the scrollbar handle */
            .page_item_list .scroll_set::-webkit-scrollbar-thumb {
                background-color: #888;
                border-radius: 10px;
                max-width: 90%;
                height: 10px;
            }

            /* Optional: styling the scrollbar handle on hover */
            .page_item_list .scroll_set::-webkit-scrollbar-thumb:hover {
                background-color: #555;
                border-radius: 10px;
                max-width: 90%;
                height: 10px;
            }
                .page_item_list .items_box .box .box_thumbnail {
                    max-width: 100%;
                }
                    .page_item_list .items_box .box .box_thumbnail img {
                        border-radius: 10px;
                        width: 100%;
                    }
                .page_item_list .items_box .box .box_content {
                    max-width: 100%;
                }
                .page_item_list .items_box .set_box.scroll {
                    margin-right: 15px;
                    min-width: 135px;
                    width: 135px;
                }

        .page_item_list .search_item {
            margin: 10px 0;
            width: 100%;
            max-width: 100%;
        }
            .page_item_list .search_item .search_item_box {
                border: none;
                padding: 25px 17px 45px;
                display: none;
            }
                .page_item_list .search_item .search_item_box.active {
                    display: block;
                    z-index: 7;
                    background: #fff;
                    border-radius: 25px 25px 0 0;
                    border: 2px solid #adadad;
                    position: absolute;
                    top: 8px;
                    left: 0;
                    width: 100%;
                }

            .page_item_list .search_item .banner_box {
                margin: 25px 0;
            }
            .page_item_list .search_item .btn_clear {
                padding: 9px 40px;
            }
                .page_item_list .search_item .btn_clear.short {
                    padding: 9px 20px;
                }

            .page_item_list .search_item .submit_btn{
                 padding: 9px 70px;
            }

            .page_item_list .search_item .filter_options_header {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
                .page_item_list .search_item .filter_options_header .close_btn {
                    flex: 0.8;
                }
                .page_item_list .search_item .filter_options_header .title {
                    flex: 1;
                    font-size: 22px;
                    font-weight: bold;
                }
                .page_item_list .search_item .filter_options_header .btn_clear {
                    margin-right: 0;
                }

            .page_item_list .search_item hr {
                border: noe;
                height: 2px;
                background-color: #adadad;
                margin: 20px calc(50% - 50vw);
            }
            .page_item_list .search_item .search {
                width: 100%;
            }
                /*margin: 0 20px;*/
                .page_item_list .search_item .search .input_search {
                    padding: 4px 0px 4px 37px;
                    font-size: 16px;
                }

            .page_item_list .search_item #search_result {
                display: none;
                background-color: #fff;
                border: 1px solid #cccccc;
                font-size: 12px;
                position: absolute;
                left: 0;
                top: 150px;
                z-index: 8;
                padding: 20px;
                line-height: 200%;
            }
                .page_item_list .search_item #search_result li {
                    cursor: pointer;
                }
            .page_item_list .search_item #search_result_sp {
                display: none;
                background-color: #fff;
                border: 1px solid #cccccc;
                font-size: 12px;
                position: absolute;
                left: 0;
                top: 170px;
                z-index: 8;
                padding: 20px;
                line-height: 200%;
            }
                .page_item_list .search_item #search_result_sp li {
                    cursor: pointer;
                }

            .page_item_list .search_item .sort_box {
                width: 30%;
            }

                .page_item_list .search_item .sort_box select {
                    width: 100%;
                    padding: 8px 13px;
                    font-size: 14px;
                    color: #494949;
                }
            .page_item_list .search_item .categorySelect{
                border: 1px solid #adadad;
                padding: 15px 20px;
                margin: 0 20px;
            }
                .page_item_list .search_item .categorySelect.link_arrow {
                    display: block;
                    background-position: center right 15px;
                }

            .page_item_list .search_item .category_list {
                display: none;
                margin: 0 20px;
            }
                .page_item_list .search_item .category_list .checkbox_category {
                    margin: 0;
                }
                    .page_item_list .search_item .category_list .checkbox_category a {
                        padding: 6px 12px 6px 16px;
                    }
                        .page_item_list .search_item .category_list .checkbox_category a.on {
                            background: url('/doctorsstudy/img/user/sp/common/check_black.png') no-repeat left center #fff;
                            background-size: 9px auto;
                        }
                .page_item_list .search_item .category_list li {
                    border: 1px solid #adadad;
                    border-top: none;
                    padding: 15px 20px;
                }
                    .page_item_list .search_item .category_list li.link_arrow {
                        background: none;
                    }
            .page_item_list .search_item .course_type_box {
                padding: 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
                .page_item_list .search_item .course_type_box .form-check-inline {
                    border: 2px solid #adadad;
                    border-radius: 50px;
                    color: #adadad;
                    cursor: pointer;
                    background: url('/doctorsstudy/img/user/sp/item/parts_01_sp.png') no-repeat right 10px center;
                    background-size: 28px 28px;
                    width: 160px;
                    overflow: hidden;
                    font-weight: bold;
                }
                    .page_item_list .search_item .course_type_box .form-check-inline.active {
                        color: #ba9e6c;
                        border: 2px solid #ba9e6c;
                        background: url('/doctorsstudy/img/user/sp/item/parts_02_sp.png') no-repeat right 10px center;
                        background-size: 28px 28px;
                        }
                .page_item_list .search_item .course_type_box .form-check-label {
                    display: block;
                    padding: 15px 50px;
                }
                .page_item_list .search_item .course_type_box input[type='checkbox'] {
                    display: none;
                }
                .page_item_list .search_item .course_type_box input[type='checkbox']:checked {
                    background: none;
                }

        .page_item_list .cate_parts {
            font-size: 15px;
            padding-top: 10px;
        }

            .page_item_list .cate_parts h2 {
                background: url('/doctorsstudy/img/user/sp/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                background-size: 18px auto;
                font-size: 17px;
                margin: 10px 0;
                padding: 5px 10px 5px 45px;
            }

            .page_item_list .cate_parts h3 {
                font-size: 16px;
                margin: 10px 0;
                padding-left: 10px;
            }

            .page_item_list .cate_parts h4 {
                font-size: 15px;
                margin: 10px 0;
            }

            .page_item_list .cate_parts h5 {
                font-size: 15px;
                margin: 10px 0;
            }

            .page_item_list .cate_parts h6 {
                font-size: 15px;
                margin: 10px 0;
            }

            .page_item_list .cate_parts ul {
                margin: 10px 0;
            }

                .page_item_list .cate_parts ul li {
                    background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 8px;
                    background-size: 8px auto;
                    padding-left: 15px;
                }

            .page_item_list .cate_parts ol {
                margin: 10px 0;

            }

                .page_item_list .cate_parts ol li {
                    margin-left: 18px;
                    padding-left: 0;
                }


            .page_item_list .cate_parts img {
                margin: 15px 0;
            }

            .page_item_list .cate_parts .sp_table_scroll {
                overflow-x: scroll;
                margin-bottom: 15px;
            }

            .page_item_list .cate_parts table {
                margin-bottom: 0;
                max-width: inherit;
                font-size: 15px;
                width: 100% !important;
            }

                .page_item_list .cate_parts table th {
                    font-size: 13px;
                }

                .page_item_list .cate_parts table td {
                    font-size: 12px !important;
                }

        .page_item_list .useful_column {
            padding: 20px 0;
            margin-top: 0;
        }

            .page_item_list .useful_column .magazine {
                max-width: 80px;
                margin-bottom: 10px;
            }

            .page_item_list .useful_column .scroll {
                overflow-x: scroll;
            }

                .page_item_list .useful_column .column_box:before {
                    background: url('/doctorsstudy/img/user/sp/top/top_recommended_ttl_img.png') no-repeat center center;
                    background-size: 100%;
                    content: '';
                    display: inline-block;
                    height: 61px;
                    left: -17px;
                    top: 12px;
                    width: 61px;
                }

                .page_item_list .useful_column .column_box .column_box_title {
                    background: url('/doctorsstudy/img/user/sp/common/column_ttl.png') no-repeat right bottom 8px;
                    background-size: 43px;
                    font-size: 15px;
                    margin-bottom: 5px;
                    padding-right: 46px;
                }

                .page_item_list .useful_column .column_box .column_content {
                    margin-bottom: 0;
                }

                    .page_item_list .useful_column .column_box .column_content .box_link {
                        margin-right: 15px;
                        min-width: 125px;
                        width: 125px;
                    }

                        .page_item_list .useful_column .column_box .column_content .box_link .box_title {
                            font-size: 12px;
                        }

                        .page_item_list .useful_column .column_box .column_content .box_link .info_box {
                            gap: 0 10px;
                        }

                            .page_item_list .useful_column .column_box .column_content .box_link .info_box .date {
                                font-size: 12px;

                            }

                            .page_item_list .useful_column .column_box .column_content .box_link .info_box .tag_new {
                                padding: 2px 3px;
                            }

                        .page_item_list .useful_column .column_box .link_circle_box .link_circle .label {
                            font-size: 14px;
                            font-weight: normal;
                            padding-right: 35px;
                        }


                            .page_item_list .useful_column .column_box .link_circle_box .link_circle .label:after {
                                left: 75px;
                                width: 40px;
                            }

                        .page_item_list .useful_column .column_box .link_circle_box .link_circle .arrow {
                            height: 35px;
                            width: 35px;
                        }

                            .page_item_list .useful_column .column_box .link_circle_box .link_circle .arrow img {
                                width: 5px
                            }
    }

/* ----------------------------------------------------
 商品詳細(講座) .page_item_course
---------------------------------------------------- */
.page_item_course .content_box {
        margin-top: 75px;
    }
.page_item_course .content_box .title_line {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 20px;
        }
.page_item_course .content_box .title_line .text_emphasis02 {
                font-size: 16px;
                margin-left: 20px;
            }
.page_item_course .content_box.video .content_box_row {
                border-left: 1px solid var(--colorBorder);
                border-right: 1px solid var(--colorBorder);
            }
.page_item_course .content_box.video .content_box_row .box {
                    border-left: 20px solid #f4f4f4;
                    padding: 18px 10px;
                }
.page_item_course .content_box.video .content_box_row .box .separately {
                        color: #919191;
                        font-size: 12px;
                        margin-left: 15px;
                    }
.page_item_course .content_box.review .title_bg {
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 20px;
            }
.page_item_course .content_box.review .video_evaluate {
                font-size: 17px;
                font-weight: bold;
                padding: 20px 20px 40px;
            }
.page_item_course .content_box.review .video_evaluate .average_big {
                    margin-left: 20px;
                    width: 174px;
                }
.page_item_course .content_box.review .video_evaluate .average_big .num {
                        font-size: 36px;
                        margin-right: 0;
                        width: 74px;
                    }
.page_item_course .content_box.review .video_evaluate .average_big:after {
                        top: unset;
                        right: unset;
                        left: 74px;
                    }
.page_item_course .content_box.review .review_box {
                border-top: 1px solid #e5e5e5;
            }
.page_item_course .content_box.item .item_box_title {
                font-size: 18px;
                font-weight: bold;
                letter-spacing: 0.6px;
                margin-bottom: 20px;
            }
.page_item_course .content_box.item .item_box {
                padding: 20px 3%;
                border: 1px solid #adadad;
            }
.page_item_course .content_box .box_content a {
                text-decoration: underline;
            }
.page_item_course .content_box .box_content a:hover {
                    text-decoration: none;
                }
.page_item_course .content_box .box_content.item_content {
                word-break: break-all;
            }
.page_item_course .content_box .box_content.item_content p {
                    margin-bottom: 15px;
                }
.page_item_course .content_box .box_content.item_content span.text_bold {
                    font-weight: bold;
                }
.page_item_course .content_box .box_content.item_content span.text_red {
                    color: var(--colorAccent01);
                }
.page_item_course .content_box .box_content.item_content span.text_marker {
                    background: #f7eedf;
                }
.page_item_course .content_box .box_content.item_content h2 {
                    font-size: 26px;
                    font-weight: bold;
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content h3 {
                    border-bottom: 4px double var(--colorAccent03);
                    color: var(--colorAccent03);
                    font-size: 18px;
                    font-weight: bold;
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content h4 {
                    font-size: 16px;
                    font-weight: bold;
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content h6 {
                    font-size: 14px;
                    font-weight: bold;
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content h5 {
                    font-size: 14px;
                    font-weight: bold;
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content ul {
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content ul li {
                        background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 6px;
                        padding-left: 20px;
                    }
.page_item_course .content_box .box_content.item_content ol {
                    margin: 30px 0;
                }
.page_item_course .content_box .box_content.item_content ol li {
                        margin-left: 17px;
                        list-style-type: inherit;
                        padding-left: 3px;
                    }
.page_item_course .content_box .box_content.item_content img {
                    margin: 15px 0;
                }
.page_item_course .content_box .box_content.item_content table {
                    border-collapse: collapse;
                    border: 1px solid #adadad;
                    margin-bottom: 30px;
                    max-width: 100%;
                }
.page_item_course .content_box .box_content.item_content table th {
                        background: #f8f5f0;
                        border: 1px solid #adadad;
                        padding: 5px 10px;
                        font-size: 16px;
                        vertical-align: middle;
                    }
.page_item_course .content_box .box_content.item_content table td {
                        border: 1px solid #adadad;
                        padding: 5px 10px;
                        vertical-align: middle;
                    }
.page_item_course .textbook_select_box {
        margin-bottom: 70px;
    }
.page_item_course .textbook_select_box h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
.page_item_course .textbook_select_box .textbook_select_item {
            background: url('/doctorsstudy/img/user/sp/item/parts_01_sp.png') no-repeat left 18px center;
            background-size: 30px 30px;
            border: 1px solid #adadad;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            padding: 15px 35px 15px 70px;
            margin-bottom: 15px;
        }
.page_item_course .textbook_select_box .textbook_select_item.active {
                color: #ba9e6c;
                border: 2px solid #ba9e6c;
                background: url('/doctorsstudy/img/user/sp/item/parts_02_sp.png') no-repeat left 18px center;
                background-size: 30px 30px;
            }
.page_item_course .textbook_select_box .textbook_select_item .textbook_select_item_text {
                line-height: 1.5;
            }
.page_item_course .textbook_select_box .textbook_select_item .textbook_select_item_text span {
                    font-size: 10px;
                }
.page_item_course .textbook_select_box .textbook_select_item input[name="course_option"] {
                display: none;
            }
.page_item_course .textbook_select_box .textbook_select_item .price_box {
                align-items: baseline;
                font-weight: bold;
                letter-spacing: 1px;
                margin-bottom: 0;
            }
.page_item_course .textbook_select_box .textbook_select_item .price_box .price {
                    font-size: 24px;
                    margin-right: 0;
                }
.page_item_course .textbook_select_box .textbook_select_item .price_box .price .price_name {
                        font-size: 16px;
                        margin: 0 10px 16px 0;
                    }
.page_item_course .textbook_select_box .textbook_select_item .price_box .price .num {
                        font-size: 26px;
                    }
.page_item_course .textbook_select_box .textbook_select_item .price_box .price .tax {
                        font-size: 18px;
                    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_item_course .inner {
            padding: 0;
        }

        .page_item_course .main_inner {
            padding: 0 5%;
        }

        .page_item_course .content_box_row {
            border-bottom: 1px solid #d0d0d0;
            border-top: 1px solid #d0d0d0;
            margin: 15px 0;

        }


            .page_item_course .content_box_row .box {
                padding: 4px 0;
            }

                .page_item_course .content_box_row .box .box_title {
                    font-size: 12px;
                    margin-right: 5px;
                    width: 30%;
                }

                .page_item_course .content_box_row .box .box_content {
                    font-size: 13px;
                    width: 56%;
                }
                        .page_item_course .content_box_row .box .evaluate_box .average .star {
                            position: relative;
                        }
            .page_item_course .detail_box .page_title {
                margin-bottom: 30px;
            }
        .page_item_course .content_box {
            margin-top: 25px;

        }

            .page_item_course .content_box .title_line {
                font-size: 16px;
                margin-bottom: 10px;
                border: 1px solid #333;
                padding: 10px 20px;
                background: url('/doctorsstudy/img/user/common/page_feed_left.png') no-repeat;
                background-size: 10px 10px;
                background-position: center right 20px;
            }
                .page_item_course .content_box .title_line.active {
                    background: url('/doctorsstudy/img/user/sp/item/ar_sp.png') no-repeat;
                    background-size: 15px 10px;
                    background-position: center right 20px;
                }
                .page_item_course .content_box .title_line.no_contents {
                    background: none;
                }
                .page_item_course .content_box .title_line .text_emphasis02 {
                    font-size: 12px;
                    margin-left: 10px;
                }

                .page_item_course .content_box .box_content.item_content {
                     font-size: 15px;
                }

                    .page_item_course .content_box .box_content.item_content h2 {
                        background: url('/doctorsstudy/img/user/sp/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                        background-size: 18px auto;
                        font-size: 17px;
                        margin: 10px 0;
                        padding: 5px 10px 5px 45px;
                    }

                    .page_item_course .content_box .box_content.item_content h3 {
                        font-size: 16px;
                        margin: 10px 0;
                        padding-left: 10px;
                    }

                    .page_item_course .content_box .box_content.item_content h4 {
                        font-size: 15px;
                        margin: 10px 0;
                    }

                    .page_item_course .content_box .box_content.item_content h5 {
                        font-size: 15px;
                        margin: 10px 0;
                    }

                    .page_item_course .content_box .box_content.item_content h6 {
                        font-size: 15px;
                        margin: 10px 0;
                    }

                    .page_item_course .content_box .box_content.item_content p {
                        margin: 10px 0;
                    }

                    .page_item_course .content_box .box_content.item_content ul {
                        margin: 10px 0;
                    }

                        .page_item_course .content_box .box_content.item_content ul li {
                            background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 8px;
                            background-size: 8px auto;
                            padding-left: 15px;
                        }

                    .page_item_course .content_box .box_content.item_content ol {
                        margin: 10px 0;
                    }

                        .page_item_course .content_box .box_content.item_content ol li {
                            margin-left: 18px;
                            padding-left: 0;
                        }

                    .page_item_course .content_box .box_content.item_content img {
                        margin: 15px 0;
                    }

                    .page_item_course .content_box .box_content.item_content .sp_table_scroll {
                        overflow-x: scroll;
                        margin-bottom: 15px;
                    }

                    .page_item_course .content_box .box_content.item_content table {
                        margin-bottom: 0;
                        max-width: inherit;
                        font-size: 15px;
                    }

                        .page_item_course .content_box .box_content.item_content table th {
                            font-size: 15px;
                        }

                .page_item_course .content_box.video .content_box_row {
                    border-left: 1px solid var(--colorBorder);
                    border-right: 1px solid var(--colorBorder);
                    display: none;
                }
                    .page_item_course .content_box.video .content_box_row .box {
                        border-left: 10px solid #f4f4f4;
                        padding: 6px;
                    }

                        .page_item_course .content_box.video .content_box_row .box .separately {
                            color: #919191;
                            font-size: 12px;
                            margin-left: 15px;
                        }

                        .page_item_course .content_box.video .content_box_row .box .box_title {
                            width: 100%;
                        }
                .page_item_course .content_box.review .title_bg {
                    font-size: 16px;
                    margin-bottom: 10px;
                }

                .page_item_course .content_box.review .video_evaluate {
                    font-size: 12px;
                    padding: 5px;
                }

                    .page_item_course .content_box.review .video_evaluate .average_big {
                        margin-left: 5px;
                        width: 123px;
                    }

                        .page_item_course .content_box.review .video_evaluate .average_big .num {
                            font-size: 24px;
                            margin-right: 0;
                            width: 48px;
                        }

                        .page_item_course .content_box.review .video_evaluate .average_big:after {
                            top: unset;
                            right: unset;
                            left: 48px;
                        }

                .page_item_course .content_box.review .review_box {
                    border-top: 1px solid #e5e5e5;
                }

                .page_item_course .content_box.item .item_box_title {
                    font-size: 16px;
                }

                .page_item_course .content_box.item .item_box {
                    margin: 5px 0;
                }

                    .page_item_course .content_box +.is_sp .button_area button {
                        padding: 15px 20px;
                        font-size: 14px;


                    }

        .page_item_course .textbook_select_box {
            margin-bottom: 0;
            text-align: left;
        }
            .page_item_course .textbook_select_box h2 {
                font-size: 16px;
                margin-bottom: 15px;
            }
            .page_item_course .textbook_select_box .textbook_select_item {
                flex-direction: column;
                background: url('/doctorsstudy/imguser/sp/item/parts_01_sp.png') no-repeat left 18px center;
                background-size: 30px 30px;
                border: 1px solid #adadad;
                display: flex;
                justify-content: space-between;
                padding: 8px 30px 5px 60px;
                margin-bottom: 15px;
            }
                .page_item_course .textbook_select_box .textbook_select_item.active {
                    color: #ba9e6c;
                    border: 2px solid #ba9e6c;
                    background: url('/doctorsstudy/img/user/sp/item/parts_02_sp.png') no-repeat left 18px center;
                    background-size: 30px 30px;
                }
                .page_item_course .textbook_select_box .textbook_select_item .textbook_select_item_text {
                    line-height: 1.5;
                }
                    .page_item_course .textbook_select_box .textbook_select_item .textbook_select_item_text span {
                        font-size: 9px;
                    }
                .page_item_course .textbook_select_box .textbook_select_item .price_box {
                    align-items: baseline;
                    font-weight: bold;
                    letter-spacing: 1px;
                }
                    .page_item_course .textbook_select_box .textbook_select_item .price_box .price {
                        font-size: 10px;
                    }
                        .page_item_course .textbook_select_box .textbook_select_item .price_box .price .price_name {
                            font-size: 10px;
                            margin: 0 10px 16px 0;
                        }

                        .page_item_course .textbook_select_box .textbook_select_item .price_box .price .num {
                            font-size: 16px;
                        }

                        .page_item_course .textbook_select_box .textbook_select_item .price_box .price .tax {
                            font-size: 10px;
                        }
    }

/* ----------------------------------------------------
 商品詳細(セット) .page_item_set
---------------------------------------------------- */
.page_item_set .content_box {
        margin-top: 35px;
    }
.page_item_set .content_box .title_line {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 20px;
        }
.page_item_set .content_box .title_line .text_emphasis02 {
                font-size: 16px;
                margin-left: 20px;
            }
.page_item_set .content_box .item_content {
            word-break: break-all;
        }
.page_item_set .content_box .item_content p {
                margin-bottom: 15px;
            }
.page_item_set .content_box .item_content span.text_bold {
                font-weight: bold;
            }
.page_item_set .content_box .item_content span.text_red {
                color: var(--colorAccent01);
            }
.page_item_set .content_box .item_content span.text_marker {
                background: #f7eedf;
            }
.page_item_set .content_box .item_content h2 {
                font-size: 26px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_set .content_box .item_content h3 {
                border-bottom: 4px double var(--colorAccent03);
                color: var(--colorAccent03);
                font-size: 18px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_set .content_box .item_content h5 {
                font-size: 16px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_set .content_box .item_content h6 {
                font-size: 14px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_set .content_box .item_content ul {
                margin: 30px 0;
            }
.page_item_set .content_box .item_content ul li {
                    background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 6px;
                    padding-left: 20px;
                }
.page_item_set .content_box .item_content ol {
                margin: 30px 0;
            }
.page_item_set .content_box .item_content ol li {
                    margin-left: 17px;
                    list-style-type: inherit;
                    padding-left: 3px;
                }
.page_item_set .content_box .item_content img {
                margin: 15px 0;
            }
.page_item_set .content_box .item_content a {
                text-decoration: underline;
            }
.page_item_set .content_box .item_content a:hover {
                    text-decoration: none;
                }
.page_item_set .content_box .item_content table {
                border-collapse: collapse;
                border: 1px solid #adadad;
                margin-bottom: 30px;
                max-width: 100%;
            }
.page_item_set .content_box .item_content table th {
                    background: #f8f5f0;
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    font-size: 16px;
                    vertical-align: middle;
                }
.page_item_set .content_box .item_content table td {
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    vertical-align: middle;
                }
.page_item_set .textbook_select_box {
        margin-bottom: 70px;
    }
.page_item_set .textbook_select_box h2 {
            font-size: 18px;
            margin-bottom: 20px;
        }
.page_item_set .textbook_select_box .textbook_select_item {
            background: url('/doctorsstudy/img/user/sp/item/parts_01_sp.png') no-repeat left 18px center;
            background-size: 30px 30px;
            border: 1px solid #adadad;
            display: flex;
            cursor: pointer;
            justify-content: space-between;
            padding: 15px 35px 15px 70px;
            margin-bottom: 15px;
        }
.page_item_set .textbook_select_box .textbook_select_item.active {
                color: #ba9e6c;
                border: 2px solid #ba9e6c;
                background: url('/doctorsstudy/img/user/sp/item/parts_02_sp.png') no-repeat left 18px center;
                background-size: 30px 30px;
            }
.page_item_set .textbook_select_box .textbook_select_item .textbook_select_item_text {
                line-height: 1.5;
            }
.page_item_set .textbook_select_box .textbook_select_item .textbook_select_item_text span {
                    font-size: 10px;
                }
.page_item_set .textbook_select_box .textbook_select_item input[name="course_option"] {
                display: none;
            }
.page_item_set .textbook_select_box .textbook_select_item .price_box {
                align-items: baseline;
                font-weight: bold;
                letter-spacing: 1px;
                margin-bottom: 0;
            }
.page_item_set .textbook_select_box .textbook_select_item .price_box .price {
                    font-size: 24px;
                    margin-right: 0;
                }
.page_item_set .textbook_select_box .textbook_select_item .price_box .price .price_name {
                        font-size: 16px;
                        margin: 0 10px 16px 0;
                    }
.page_item_set .textbook_select_box .textbook_select_item .price_box .price .num {
                        font-size: 26px;
                    }
.page_item_set .textbook_select_box .textbook_select_item .price_box .price .tax {
                        font-size: 18px;
                    }
.page_item_set .side_item .sample_video_wrap {
            margin-bottom: 20px;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_item_set .inner {
            padding: 0;
        }

        .page_item_set .main_inner {
            padding: 0 3%;
        }

        .page_item_set .title_line {
            font-size: 16px;
            margin-bottom: 10px;
            border: 1px solid #333;
            padding: 10px 20px;
            background: url('/doctorsstudy/img/user/common/page_feed_left.png') no-repeat;
            background-size: 10px 10px;
            background-position: center right 20px;
        }
            .page_item_set .title_line.active {
                background: url('/doctorsstudy/img/user/sp/item/ar_sp.png') no-repeat;
                background-size: 15px 10px;
                background-position: center right 20px;
            }
            .page_item_set .title_line.no_contents {
                background: none;
            }
            .page_item_set .title_line .text_emphasis02 {
                font-size: 16px;
                margin-left: 20px;
            }

        .page_item_set .content_box_row {
            border-bottom: 1px solid #d0d0d0;
            border-top: 1px solid #d0d0d0;
            margin: 15px 0;

        }

            .page_item_set .content_box_row .box {
                padding: 4px 0;
            }

                .page_item_set .content_box_row .box .box_title {
                    font-size: 12px;
                    margin-right: 5px;
                    width: 30%;
                }

                .page_item_set .content_box_row .box .box_content {
                    font-size: 13px;
                    width: 56%;
                }

       .page_item_set .content_box {
            margin-top: 25px;
        }

            .page_item_set .content_box .title_line {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .page_item_set .content_box .item_content {
                font-size: 15px;
            }

                .page_item_set .content_box .item_content h2 {
                    background: url('/doctorsstudy/img/user/sp/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                    background-size: 18px auto;
                    font-size: 17px;
                    margin: 10px 0;
                    padding: 5px 10px 5px 45px;
                }

                .page_item_set .content_box .item_content h3 {
                    font-size: 16px;
                    margin: 10px 0;
                    padding-left: 10px;
                }

                .page_item_set .content_box .item_content h4 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_item_set .content_box .item_content h5 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_item_set .content_box .item_content h6 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_item_set .content_box .item_content p {
                    margin: 10px 0;
                }

                .page_item_set .content_box .item_content ul {
                    margin: 10px 0;
                }

                    .page_item_set .content_box .item_content ul li {
                        background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 8px;
                        background-size: 8px auto;
                        padding-left: 15px;
                    }

                .page_item_set .content_box .item_content ol {
                    margin: 10px 0;
                }

                    .page_item_set .content_box .item_content ol li {
                        margin-left: 18px;
                        padding-left: 0;
                    }

                .page_item_set .content_box .item_content img {
                    margin: 15px 0;
                }

                .page_item_set .content_box .item_content .sp_table_scroll {
                    overflow-x: scroll;
                    margin-bottom: 15px;
                }

                .page_item_set .content_box .item_content table {
                    margin-bottom: 0;
                    max-width: inherit;
                    font-size: 15px;
                }

                    .page_item_set .content_box .item_content table th {
                        font-size: 15px;
                    }
        .page_item_set .textbook_select_box {
            margin-bottom: 0;
            text-align: left;
        }
            .page_item_set .textbook_select_box h2 {
                font-size: 16px;
                margin-bottom: 15px;
            }
            .page_item_set .textbook_select_box .textbook_select_item {
                flex-direction: column;
                background: url('/doctorsstudy/img/user/sp/item/parts_01_sp.png') no-repeat left 18px center;
                background-size: 30px 30px;
                border: 1px solid #adadad;
                display: flex;
                justify-content: space-between;
                padding: 8px 30px 5px 60px;
                margin-bottom: 15px;
            }
                .page_item_set .textbook_select_box .textbook_select_item.active {
                    color: #ba9e6c;
                    border: 2px solid #ba9e6c;
                    background: url('/doctorsstudy/img/user/sp/item/parts_02_sp.png') no-repeat left 18px center;
                    background-size: 30px 30px;
                }
                .page_item_set .textbook_select_box .textbook_select_item .textbook_select_item_text {
                    line-height: 1.5;
                }
                    .page_item_set .textbook_select_box .textbook_select_item .textbook_select_item_text span {
                        font-size: 9px;
                    }
                .page_item_set .textbook_select_box .textbook_select_item .price_box {
                    align-items: baseline;
                    font-weight: bold;
                    letter-spacing: 1px;
                }
                    .page_item_set .textbook_select_box .textbook_select_item .price_box .price {
                        font-size: 10px;
                    }
                        .page_item_set .textbook_select_box .textbook_select_item .price_box .price .price_name {
                            font-size: 10px;
                            margin: 0 10px 16px 0;
                        }

                        .page_item_set .textbook_select_box .textbook_select_item .price_box .price .num {
                            font-size: 16px;
                        }

                        .page_item_set .textbook_select_box .textbook_select_item .price_box .price .tax {
                            font-size: 10px;
                        }
    }

/* ----------------------------------------------------
 商品詳細(項目) .page_item_video
---------------------------------------------------- */
.page_item_video .content_box {
        margin-top: 75px;
    }
.page_item_video .content_box .title_line {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 20px;
        }
.page_item_video .content_box .title_line .text_emphasis02 {
                font-size: 16px;
                margin-left: 20px;
            }
.page_item_video .content_box .item_content {
            word-break: break-all;
        }
.page_item_video .content_box .item_content p {
                margin-bottom: 15px;
            }
.page_item_video .content_box .item_content span.text_bold {
                font-weight: bold;
            }
.page_item_video .content_box .item_content span.text_red {
                color: var(--colorAccent01);
            }
.page_item_video .content_box .item_content span.text_marker {
                background: #f7eedf;
            }
.page_item_video .content_box .item_content h2 {
                font-size: 26px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_video .content_box .item_content h3 {
                border-bottom: 4px double var(--colorAccent03);
                color: var(--colorAccent03);
                font-size: 18px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_video .content_box .item_content h4 {
                font-size: 16px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_video .content_box .item_content h5 {
                font-size: 14px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_video .content_box .item_content h6 {
                font-size: 14px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_item_video .content_box .item_content ul {
                margin: 30px 0;
            }
.page_item_video .content_box .item_content ul li {
                    background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 6px;
                    padding-left: 20px;
                }
.page_item_video .content_box .item_content ol {
                margin: 30px 0;
            }
.page_item_video .content_box .item_content ol li {
                    margin-left: 17px;
                    list-style-type: inherit;
                    padding-left: 3px;
                }
.page_item_video .content_box .item_content img {
                margin: 15px 0;
            }
.page_item_video .content_box .item_content a {
                text-decoration: underline;
            }
.page_item_video .content_box .item_content a:hover {
                    text-decoration: none;
                }
.page_item_video .content_box .item_content table {
                border-collapse: collapse;
                border: 1px solid #adadad;
                margin-bottom: 30px;
                max-width: 100%;
            }
.page_item_video .content_box .item_content table th {
                    background: #f8f5f0;
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    font-size: 16px;
                    vertical-align: middle;
                }
.page_item_video .content_box .item_content table td {
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    vertical-align: middle;
                }
.page_item_video .content_box.video {
            margin-top: 30px;
        }
.page_item_video .content_box.video .video_list li {
                    background: url('/doctorsstudy/img/user/item/sample_ico.png') no-repeat left center;
                    margin: 5px 0;
                    padding-left: 32px;
                }
.page_item_video .content_box.review .title_bg {
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 20px;
            }
.page_item_video .content_box.review .video_evaluate {
                font-size: 17px;
                font-weight: bold;
                padding: 20px 20px 40px;
            }
.page_item_video .content_box.review .video_evaluate .average_big {
                    margin-left: 20px;
                    width: 159px;
                }
.page_item_video .content_box.review .video_evaluate .average_big .num {
                        font-size: 36px;
                    }
.page_item_video .content_box.review .video_evaluate .average_big:after {
                        top: 22px;
                    }
.page_item_video .content_box.review .review_box {
                border-top: 1px solid #e5e5e5;
            }
.page_item_video .content_box.review .button_area .btn_generic {
                    padding: 7px 37px;
                }
.page_item_video .content_box.item .item_box_title {
                font-size: 24px;
                font-weight: bold;
                letter-spacing: 0.6px;
            }
.page_item_video .content_box.item .item_box {
                margin: 20px 0;
            }
.page_item_video .content_box.item .item_box .course_box .price {
                        margin-right: 15px;
                    }
.page_item_video .content_box.item .item_box .course_box .set_price {
                        color: #a0a0a0;
                        font-size: 18px;
                    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_item_video .inner {
            padding: 0;
        }

        .page_item_video .main_inner {
            padding: 0 3%;
        }

        .page_item_video .content_box_row {
            border-bottom: 1px solid #d0d0d0;
            border-top: 1px solid #d0d0d0;
            margin: 15px 0;
        }


            .page_item_video .content_box_row .box {
                padding: 4px 0;
            }

                .page_item_video .content_box_row .box .box_title {
                    font-size: 12px;
                    margin-right: 5px;
                    width: 30%;
                }

                .page_item_video .content_box_row .box .box_content {
                    font-size: 13px;
                    width: 56%;
                }

            .page_item_video .content_box .title_line {
                font-size: 16px;
                margin-bottom: 10px;
                border: 1px solid #333;
            }
                .page_item_video .content_box .title_line .text_emphasis02 {
                    font-size: 12px;
                    margin-left: 10px;
                }

            .page_item_video .content_box .item_content {
                font-size: 15px;
            }

                .page_item_video .content_box .item_content h2 {
                    background: url('/doctorsstudy/img/user/sp/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                    background-size: 18px auto;
                    font-size: 17px;
                    margin: 10px 0;
                    padding: 5px 10px 5px 45px;
                }

                .page_item_video .content_box .item_content h3 {
                    font-size: 16px;
                    margin: 10px 0;
                    padding-left: 10px;
                }

                .page_item_video .content_box .item_content h4 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_item_video .content_box .item_content h5 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_item_video .content_box .item_content h6 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_item_video .content_box .item_content p {
                    margin: 10px 0;
                }

                .page_item_video .content_box .item_content ul {
                    margin: 10px 0;
                }

                    .page_item_video .content_box .item_content ul li {
                        background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 8px;
                        background-size: 8px auto;
                        padding-left: 15px;
                    }

                .page_item_video .content_box .item_content ol {
                    margin: 10px 0;
                }

                    .page_item_video .content_box .item_content ol li {
                        margin-left: 18px;
                        padding-left: 0;
                    }

                .page_item_video .content_box .item_content img {
                    margin: 15px 0;
                }

                .page_item_video .content_box .item_content .sp_table_scroll {
                    overflow-x: scroll;
                    margin-bottom: 15px;
                }

                .page_item_video .content_box .item_content table {
                    margin-bottom: 0;
                    max-width: inherit;
                    font-size: 15px;
                }

                    .page_item_video .content_box .item_content table th {
                        font-size: 15px;
                    }

            .page_item_video .content_box.video {
                margin-top: 30px;
            }

                .page_item_video .content_box.video .video_list {
                    font-size: 12px;
                }

                    .page_item_video .content_box.video .video_list li {
                        background: url('/doctorsstudy/img/user/sp/item/sample_ico.png') no-repeat left center;
                        background-size: 17px auto;
                        margin: 5px 0;
                        padding-left: 26px;
                    }
                .page_item_video .content_box.review .title_bg {
                    font-size: 16px;
                    margin-bottom: 10px;
                }

                .page_item_video .content_box.review .video_evaluate {
                    font-size: 12px;
                    padding: 5px;
                }

                    .page_item_video .content_box.review .video_evaluate .average_big {
                        margin-left: 5px;
                        width: 116px;
                    }

                        .page_item_video .content_box.review .video_evaluate .average_big .num {
                            font-size: 24px;
                        }

                        .page_item_video .content_box.review .video_evaluate .average_big:after {
                            top: inherit;
                        }

                .page_item_video .content_box.review .review_box {
                    border-top: 1px solid #e5e5e5;
                }

                .page_item_video .content_box.item .item_box_title {
                    font-size: 16px;
                }

                .page_item_video .content_box.item .item_box {
                    margin: 5px 0;
                }

                        .page_item_video .content_box.item .item_box .course_box .price {
                            margin-right: 5px;
                        }

                        .page_item_video .content_box.item .item_box .course_box .set_price {
                            font-size: 11px;
                        }

                    .page_item_video .content_box +.is_sp .button_area button {
                        padding: 15px 20px;
                        font-size: 14px;
                    }

    }

/* ----------------------------------------------------
 レビュー一覧 .page_item_review
---------------------------------------------------- */
.page_item_review .title_txt {
        background: url('/doctorsstudy/img/user/item/review_ttl.png') no-repeat right bottom 20px;
        padding-right: 97px;
    }
.page_item_review .video_evaluate {
        border-bottom: 1px solid #e5e5e5;
        border-top: 1px solid #e5e5e5;
        font-size: 17px;
        font-weight: bold;
        padding: 35px 20px;
    }
.page_item_review .video_evaluate .average_big {
            margin-left: 20px;
            width: 174px;
        }
.page_item_review .video_evaluate .average_big .num {
                font-size: 36px;
                margin-right: 0;
                width: 74px;
            }
.page_item_review .video_evaluate .average_big:after {
                top: unset;
                right: unset;
                left: 74px;
            }
.page_item_review .review_box .box {
            margin: 60px 0;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_item_review .title_txt {
            background: url('/doctorsstudy/img/user/sp/common/ttl_ico.png') no-repeat left top 6px, url('/img/user/sp/item/review_ttl.png') no-repeat right bottom 10px;
            background-size: 7px auto, 40px auto;
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 10px;
            padding: 0 48px 0 15px;
        }

        .page_item_review .video_evaluate {
            font-size: 12px;
            padding: 5px;
        }

            .page_item_review .video_evaluate .average_big {
                margin-left: 5px;
                width: 123px;
            }

                .page_item_review .video_evaluate .average_big .num {
                    font-size: 24px;
                    margin-right: 0;
                    width: 48px;
                }

                .page_item_review .video_evaluate .average_big:after {
                    top: unset;
                    right: unset;
                    left: 48px;
                }

            .page_item_review .review_box .box {
                margin: 30px 0 10px;
            }
    }

/* ----------------------------------------------------
 サイドバー #side
---------------------------------------------------- */
.side_item {
    border: 1px solid #adadad;
    padding: 20px 7%;
}
.side_item .purchase_box .side_title {
            font-size: 16px;
            font-weight: bold;
        }
.side_item .purchase_box .price {
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 0.5px;
        }
.side_item .purchase_box .price .num {
                font-size: 26px;
                margin-left: 15px;
            }
.side_item .purchase_box .price .tax {
                font-size: 14px;
            }
.side_item .purchase_box .set_price {
            font-size: 16px;
            font-weight: bold;
        }
.side_item .purchase_box .button_area {
            margin-top: 30px;
        }
.side_item .purchase_box .button_area .btn_cart {
                font-size: 18px;
                margin-bottom: 10px;
                padding: 14px 17px;
                width: 100%;
            }
.side_item .purchase_box .button_area .btn_cart:not(.cart_added) {
                    background: url('/doctorsstudy/img/user/common/header_cart_ico.png') no-repeat left 10% center var(--colorAccent03);
                    padding: 14px 17px 14px 40px;
                }
.side_item .purchase_box .button_area .btn_cart.disable {
                    background: #adadad url('/doctor-study/img/user/common/header_cart_ico.png') no-repeat left 10% center;
                }
.side_item .purchase_box .button_area .btn_generic {
                font-size: 18px;
                padding: 13px 19px;
                width: 100%;
            }
.side_item .content_box_row {
        border-top: 1px solid #e5e5e5;
        margin-top: 30px;
    }
.side_item .content_box_row .box {
            border-bottom: 1px solid #e5e5e5;
            padding: 22px 0;
            flex-wrap: nowrap;
        }
.side_item .content_box_row .box:last-child {
                border-bottom: none;
            }
.side_item .content_box_row .box .box_title {
                margin-right: 30px;
                width: 30%;
            }
.side_item .content_box_row .box .box_content {
                width: 56%;
            }
.side_item .content_box_row .box.video_evaluate {
                border-bottom: 1px solid #e5e5e5;
                border-top: 1px solid #e5e5e5;
                font-size: 17px;
                font-weight: bold;
                padding: 22px 0;
            }
.side_item .content_box_row .box.video_evaluate .box_title {
                    font-size: 13px;
                }
.side_item .content_box_row .box.video_evaluate .average .num {
                        text-decoration: underline;
                    }
.side_item .content_box_row .box.video_evaluate .average .star {
                        position: relative;
                    }

/* ----------------------------------------------------
 サンプル動画 #sample_video_popup
---------------------------------------------------- */
.sample_video_popup.ui-dialog {
        width: 65% !important;
    }
.sample_video_popup #sample_video_popup {
        min-height: 500px !important;
    }
.sample_video_popup #sample_video_popup iframe {
            height: 500px;
            width: 100%;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .sample_video_popup.ui-dialog {
            width: 94% !important;
        }

        .sample_video_popup #sample_video_popup {
            min-height: 275px !important;
        }

            .sample_video_popup #sample_video_popup iframe {
                height: 275px;
                width: 100%;
            }

    }

/* ----------------------------------------------------
 関連おすすめ商品 .recommend_box
---------------------------------------------------- */
.recommend_box .title_txt {
        background: url('/doctorsstudy/img/user/common/recommended_ttl.png') no-repeat right bottom 12px;
        font-size: 24px;
        margin-bottom: 24px;
        padding-right: 179px;
    }
.recommend_box .box {
        flex: 1 0 auto;
        margin: 0 21px 10px 0;
        max-width: 232px;
        width: 30%;
    }
.recommend_box .box:last-child {
            margin-right: 0;
        }
.recommend_box .box .box_link {
            background: #fff;
            border-radius: 10px;
            box-shadow: -19px 19px 10px 0 #aeaeae;
            flex: 1 0 auto;
            min-height: 0%;
        }
.recommend_box .box .box_link .box_thumbnail {
                min-height: 0%;
            }
.recommend_box .box .box_link .box_thumbnail img {
                    border-radius: 10px 10px 0 0;
                    width: 100%;
                }
.recommend_box .box .box_link .box_content {
                font-size: 12px;
                flex: 1 0 auto;
                padding: 10px;
            }
.recommend_box .box .box_link .box_content .box_title {
                    font-weight: bold;
                    margin-bottom: 15px;
                }
.recommend_box .box .box_link .box_content .box_detail .item {
                        font-size: 8px;
                    }
.recommend_box .box .box_link .box_content .box_detail .evaluate_box .average {
                            font-size: 14px;
                            width: 105px;
                        }
.recommend_box .box .box_link .box_content .box_detail .evaluate_box .average:after {
                                background-size: 14px;
                                top: unset;
                                width: 70px;
                            }
.recommend_box .box .box_link .box_content .box_detail .evaluate_box .average .star {
                                background-size: 14px;
                            }
.recommend_box .box .box_link .box_content .box_detail .price {
                        font-weight: bold;
                    }
.recommend_box .box .box_link .box_content .box_detail .price .num {
                            font-size: 16px;
                            margin-left: 8px;
                        }
.recommend_box .box .box_link .box_content .box_detail .price .yen {
                            font-size: 14px;
                        }
.recommend_box .box .button_area {
            margin-top: 30px;
        }
.recommend_box .box .button_area .btn_cart {
                width: 87%;
            }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .recommend_box .title_txt {
            background: url('/doctorsstudy/img/user/sp/common/recommended_ttl.png') no-repeat right bottom 8px;
            background-size: 81px auto;
            font-size: 16px;
            margin-bottom: 0;
            padding: 0 100px 0 3%;
            white-space: nowrap;
        }

        .recommend_box .box {
            margin-right: 11px;
            min-width: 165px;
        }

            .recommend_box .box .box_link {
                box-shadow: -6px 6px 10px 0 #aeaeae;
            }

                .recommend_box .box .box_link .box_content {
                    font-size: 13px;
                    padding: 5px;
                }

                    .recommend_box .box .box_link .box_content .box_title {
                        margin-bottom: 5px;
                    }

                        .recommend_box .box .box_link .box_content .box_detail .item {
                            font-size: 13px;
                        }

                            .recommend_box .box .box_link .box_content .box_detail .evaluate_box .average {
                                font-size: 12px;
                                width: 96px;
                            }

                                .recommend_box .box .box_link .box_content .box_detail .evaluate_box .average:after {
                                    background-size: 14px;
                                    top: inherit;
                                    left: 26px;
                                    width: 70px;
                                }

                                .recommend_box .box .box_link .box_content .box_detail .evaluate_box .average .num {
                                    margin-right: 0;
                                    width: 26px;
                                }

                                .recommend_box .box .box_link .box_content .box_detail .evaluate_box .average .star {
                                    background-size: 14px;
                                }

                        .recommend_box .box .box_link .box_content .box_detail .price {
                            font-size: 12px;
                        }

                            .recommend_box .box .box_link .box_content .box_detail .price .num {
                                font-size: 16px;
                                margin-left: 2px;
                            }

                            .recommend_box .box .box_link .box_content .box_detail .price .yen {
                                font-size: 12px;
                            }

            .recommend_box .box .button_area {
                margin-top: 20px;
            }

                .recommend_box .box .button_area .btn_cart {
                    width: 100%;
                }
    }

@charset "UTF-8";

/* ----------------------------------------------------
 ログイン .page_login
---------------------------------------------------- */
.page_login .title_txt {
        background: url('/doctorsstudy/img/user/login/login_ttl.png') no-repeat right bottom 20px;
        padding-right: 81px;
    }
.page_login .content_box {
        padding: 9% 6% 10%;

    }
.page_login .content_box .account_transfers_text {
            text-align: center;
            color: #b92e2e;
            color: var(--colorAccent01);
            font-weight: bold;
            margin-top: -60px;
            margin-bottom: 80px;
        }
.page_login .content_box .account_transfers_text a {
                color: #5E65A4;
            }
.page_login .content_box .alert_danger {
            max-width: 440px;
            width: 100%;
            margin: -30px auto 30px;
        }
.page_login .content_box form {
            max-width: 440px;
            width: 100%;
            margin: 0 auto;

        }
.page_login .content_box form .userid_box {
                margin-bottom: 30px;
            }
.page_login .content_box form .password_box {
                margin-bottom: 21px;
            }
.page_login .content_box form label {
                display: block;
                font-size: 16px;
                letter-spacing: 0.025em;
                font-weight: bold;
            }
.page_login .content_box form label span {
                    font-size: 14px;
                    letter-spacing: 0.025em;
                }
.page_login .content_box form .remember_me_box {
                margin-bottom: 36px;

            }
.page_login .content_box form input {
                width: 100%;
            }
.page_login .content_box form input#remember_me {
                    cursor: pointer;
                    height: 14px;
                    padding: 0;
                    width: 14px;
                    margin-top: 1px;
                }
.page_login .content_box form input#remember_me:checked {
                        background: url('/doctorsstudy/img/user/common/check_white.png') no-repeat center #494949;
                    }
.page_login .content_box form .button_area {
                margin: 36px 0 21px;
            }
.page_login .content_box form .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }
.page_login .content_box .forgot_password {
            letter-spacing: 0.05em;
            padding-bottom: 30px;
            margin-bottom: 30px;
        }
.page_login .content_box .new_member_registration {
            width: 100%;
            margin: 0 auto;
        }
.page_login .content_box .new_member_registration .new_member_registration_midashi {
                font-size: 16px;
                letter-spacing: 0.025em;
            }
.page_login .content_box .new_member_registration .button_area {
                margin: 10px auto 35px;
                max-width: 440px;
            }
.page_login .content_box .new_member_registration .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }
.page_login .content_box .account_migration {
            width: 100%;
            margin: 0 auto;
        }
.page_login .content_box .account_migration .account_migration_midashi {
                font-size: 16px;
                letter-spacing: 0.025em;
            }
.page_login .content_box .account_migration .button_area {
                margin: 10px auto 21px;
                max-width: 440px;
            }
.page_login .content_box .account_migration .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                    background-color: #5E65A4;
                }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_login .content {
            margin-top: 5px;

        }

            .page_login .content .account_transfers_text {
                margin-top: 10px;
                margin-bottom: 20px;
            }




        .page_login .title_txt {
            background: url('/doctorsstudy/img/user/sp/login/login_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 30px;
            padding-right: 35px;
        }

        .page_login .content_box {
            padding: 15px 16px 24px;

        }

            .page_login .content_box .alert_danger {
                max-width: inherit;
                margin: 0 auto 15px;
            }

            .page_login .content_box form {
                max-width: inherit;

            }

                .page_login .content_box form .userid_box {
                    margin-bottom: 15px;
                }

                    .page_login .content_box form .userid_box input {
                        padding: 6px 18px;
                    }

                .page_login .content_box form .password_box {
                    margin-bottom: 15px;
                }

                    .page_login .content_box form .password_box input {
                        padding: 6px 18px;
                    }

                .page_login .content_box form label {
                    font-size: 11px;
                }

                    .page_login .content_box form label span {
                        font-size: 12px;
                    }

                .page_login .content_box form .remember_me_box {
                    margin-bottom: 25px;

                }

                .page_login .content_box form input {
                    width: 100%;

                }

                        .page_login .content_box form input#remember_me:checked {
                            background: url('/doctorsstudy/img/user/sp/common/check_white.png') no-repeat center #494949;
                            background-size: contain;
                        }

                .page_login .content_box form .button_area {
                    margin: 0 0 20px;
                }

                    .page_login .content_box form .button_area .btn_main {
                        font-size: 16px;
                    }

            .page_login .content_box .forgot_password {
                font-size: 14px;
                padding-bottom: 20px;
                margin-bottom: 20px;
            }

                .page_login .content_box .new_member_registration .new_member_registration_midashi {
                    font-size: 14px;
                }

                    .page_login .content_box .new_member_registration .button_area .btn_main {
                        font-size: 14px;
                    }


                .page_login .content_box .account_migration .account_migration_midashi {
                    font-size: 14px;
                }

                    .page_login .content_box .account_migration .button_area .btn_main {
                        font-size: 14px;
                    }
}

@charset "UTF-8";

/* ----------------------------------------------------
 マイページ .page_mypage
---------------------------------------------------- */
.page_mypage .title_txt {
        background: url('/doctorsstudy/img/user/mypage/mypage_ttl.png') no-repeat right bottom 20px;
        padding-right: 112px;
    }
.page_mypage #main {
        max-width: 740px;
        width: 68%;
    }
.page_mypage #side {
        max-width: 300px;
        width: 28%;
    }
.page_mypage .content {
        border-top: 1px solid #e5e5e5;
        margin: 10px 0 30px;
        padding-top: 47px;
    }
.page_mypage .news_box {
        font-size: 16px;
        font-weight: bold;
    }
.page_mypage .news_box .title_line {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 30px;
        }
.page_mypage .news_box .news {
            margin-bottom: 10px;
        }
.page_mypage .news_box .news .date {
                margin-right: 35px;
            }
.page_mypage .content_box {
        margin: 60px 0;
    }
.page_mypage .content_box .title_line {
            font-size: 22px;
            font-weight: bold;
        }
.page_mypage .content_box.recently_column_box .recently_column_box_title {
                background: url('/doctorsstudy/img/user/mypage/mypage_your_recently_viewed_blog_ttl.png') no-repeat right bottom 10px;
                display: inline-block;
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 20px;
                padding-right: 265px;
            }
.page_mypage .content_box.recently_column_box .box {
                margin-right: 15px;
                max-width: 234px;
            }
.page_mypage .content_box.recently_column_box .box:last-child {
                    margin-right: 0;
                }
.page_mypage .content_box.recently_column_box .box .box_title {
                    font-weight: bold;
                    margin-top: 10px;
                }
.page_mypage .content_box.recently_column_box .box .tag_category {
                    display: inline-block;
                    margin: 10px 10px 0 0;
                    padding: 5px 17px;
                }
.page_mypage .content_box.recommend_box {
            margin-top: 70px;
        }
.page_mypage .content_box.recommend_box .recommend_box_title {
                background: url('/doctorsstudy/img/user/common/recommended_ttl.png') no-repeat right bottom 10px;
                display: inline-block;
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 20px;
                padding-right: 179px;
            }
.page_mypage .purchase_box .box {
            border-bottom: 1px solid #e5e5e5;
            padding: 30px 20px;
        }
.page_mypage .purchase_box .box .box_spotlight {
                margin-right: 30px;
                flex: 1;
                max-width: 200px;
            }
.page_mypage .purchase_box .box .box_spotlight .box_thumbnail {
                    min-width: 130px;
                }
.page_mypage .purchase_box .box .status {
                border: 1px solid #d3d3d3;
                font-size: 12px;
                padding: 5px 5px 2px;
                margin: 10px 0;
            }
.page_mypage .purchase_box .box .box_content .box_title {
                    font-size: 22px;
                    font-weight: bold;
                }
.page_mypage .purchase_box .box .box_content .tag_list {
                    margin-bottom: 10px;
                }
.page_mypage .purchase_box .box .box_content .tag_list .tag_category {
                        display: inline-block;
                        margin: 10px 10px 0 0;
                        padding: 5px 17px;
                    }
.page_mypage .purchase_box .box .box_content .lesson {
                    margin-bottom: 10px;
                }
.page_mypage .purchase_box .box .box_content .lesson .lesson_label {
                        font-size: 12px;
                    }
.page_mypage .purchase_box .box .last_watch {
                font-size: 18px;
            }
.page_mypage .purchase_box .box .period {
                font-size: 18px;
            }
.page_mypage .watch_box {
        margin-top: 20px;
    }
.page_mypage .watch_box .box {
            font-size: 16px;
            font-weight: bold;
            padding: 30px 0;
            border-bottom: 1px solid #e5e5e5;
        }
.page_mypage .watch_box .box .box_thumbnail {
                flex: 1;
                max-width: 160px;
                margin-right: 30px;
                min-width: 100px;
            }
.page_mypage .watch_box .box .box_content .box_title {
                    font-size: 26px;
                }
.page_mypage .no_data {
        font-size: 16px;
    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_mypage .inner {
            padding: 0;
        }

        .page_mypage .title_box {
            padding: 0 3%;
        }

            .page_mypage .title_box .title_txt {
                background: url('/doctorsstudy/img/user/sp/mypage/mypage_ttl.png') no-repeat right bottom 10px;
                background-size: 47px;
                padding-right: 56px;
            }

        .page_mypage .content {
            border-top: none;
            margin: 0;
            padding: 10px 0 20px;
        }

            .page_mypage .content #main {
                width: 100%;
            }

                .page_mypage .content #main .main_inner {
                    padding: 0 3%;
                }

            .page_mypage .content #side {
                display: none;
            }

        .page_mypage .news_box {
            font-size: 12px;
            padding: 0 3%;
        }

            .page_mypage .news_box .title_line {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .page_mypage .news_box .news {
                align-items: baseline;
                flex-direction: column;
                margin-bottom: 15px;
            }

                .page_mypage .news_box .news .date {
                    font-size: 9px
                }

        .page_mypage .tab_box {
            border-top: 1px solid #adadad;
        }

            .page_mypage .tab_box li {
                flex: 1 0 auto;
                font-size: 12px;
                line-height: 1.4;
                width: 20%;
            }

                    .page_mypage .tab_box li:last-child .link_button {
                        border-right: none;
                    }

                .page_mypage .tab_box li .link_button {
                    background: #f4f4f4;
                    border-bottom: 1px solid #adadad;
                    border-right: 1px solid #adadad;
                    height: 100%;
                    padding: 4px 2px;
                    width: 100%;
                }

                    .page_mypage .tab_box li .link_button.current {
                        background: #fff;
                        border-bottom: none;
                    }

        .page_mypage .content_box {
            margin: 20px 0 35px;
        }

            .page_mypage .content_box .title_line {
                font-size: 16px;
            }

                .page_mypage .content_box.recently_column_box .recently_column_box_title {
                    background: url('/doctorsstudy/img/user/sp/mypage/mypage_your_recently_viewed_blog_ttl.png') no-repeat right bottom 10px;
                    background-size: 124px auto;
                    font-size: 16px;
                    margin-bottom: 0;
                    padding: 0 142px 0 3%;
                }

                .page_mypage .content_box.recently_column_box .box {
                    margin-right: 11px;
                    max-width: 100%;
                    min-width: 165px;
                }

                    .page_mypage .content_box.recently_column_box .box:last-child {
                        margin-right: 0;
                    }

                    .page_mypage .content_box.recently_column_box .box .box_title {
                        margin-top: 10px;
                    }

                    .page_mypage .content_box.recently_column_box .box .tag_category {
                        display: none;
                    }

            .page_mypage .content_box.recommend_box {
                margin: 20px 0 10px;
            }

                .page_mypage .content_box.recommend_box .recommend_box_title {
                    background: url('/doctorsstudy/img/user/sp/common/recommended_ttl.png') no-repeat right bottom 8px;
                    background-size: 81px auto;
                    font-size: 16px;
                    margin-bottom: 0;
                    padding: 0 88px 0 3%;
                }

            .page_mypage .purchase_box .box {
                padding: 15px 3px;
            }

                .page_mypage .purchase_box .box .box_inner {
                    margin-bottom: 10px;
                }

                    .page_mypage .purchase_box .box .box_inner .box_spotlight {
                        margin-right: 10px;
                    }

                    .page_mypage .purchase_box .box .box_inner .box_content {
                        width: 50%;
                    }

                        .page_mypage .purchase_box .box .box_inner .box_content .box_title {
                            font-size: 16px;
                            line-height: 1.5;
                        }

                        .page_mypage .purchase_box .box .box_inner .box_content .tag_list {
                            margin-bottom: 5px;
                        }

                            .page_mypage .purchase_box .box .box_inner .box_content .tag_list .tag_category {
                                font-size: 11px;
                                margin: 5px 5px 0 0;
                                padding: 3px 11px;
                            }

                        .page_mypage .purchase_box .box .box_inner .box_content .lesson {
                            margin-bottom: 5px;
                        }

                .page_mypage .purchase_box .box .last_watch {
                    font-size: 11px;
                }

                .page_mypage .purchase_box .box .period {
                    font-size: 14px;
                }

        .page_mypage .watch_box {
            margin-top: 0;
        }

            .page_mypage .watch_box .box {
                padding: 15px;
            }

                .page_mypage .watch_box .box .box_inner {
                    margin-bottom: 10px;
                }

                    .page_mypage .watch_box .box .box_inner .box_thumbnail {
                        margin-right: 10px;
                    }

                    .page_mypage .watch_box .box .box_inner .box_content {
                        line-height: 1.5;
                        width: 64%;
                    }

                        .page_mypage .watch_box .box .box_inner .box_content .course_title {
                            font-size: 12px;
                            margin-bottom: 5px;
                        }

                        .page_mypage .watch_box .box .box_inner .box_content .box_title {
                            font-size: 16px;
                        }

                .page_mypage .watch_box .box .last_watch {
                    font-size: 11px;
                }

                .page_mypage .watch_box .box .period {
                    font-size: 14px;
                    margin-top: 5px;
                }

        .page_mypage .button_area {
            margin-top: 20px;
        }

            .page_mypage .button_area .logout {
                background: #c4c4c4;
                border-radius: 3px;
                color: #fff;
                display: inline-block;
                font-size: 14px;
                font-weight: bold;
                letter-spacing: 1px;
                text-align: center;
                width: 80%;
            }
    }

/* ----------------------------------------------------
 購入した商品 .page_mypage_purchase
---------------------------------------------------- */
.page_mypage_purchase .title_box .title_txt {
            background: url('/doctorsstudy/img/user/mypage/purchased_course_ttl.png') no-repeat right bottom 20px;
            padding-right: 233px;
        }
.page_mypage_purchase .purchase_box .box {
            border: 1px solid #adadad;
            padding: 30px 5%;
            margin-bottom: 30px;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

            .page_mypage_purchase .title_box .title_txt {
                background: url('/doctorsstudy/img/user/sp/mypage/purchased_course_ttl.png') no-repeat right bottom 10px;
                background-size: 100px auto;
                padding-right: 118px;
            }

        .page_mypage_purchase .purchase_box {
            margin: 15px 0;
        }

            .page_mypage_purchase .purchase_box .box {
                padding: 15px 5%;
                margin-bottom: 10px;
            }
    }

/* ----------------------------------------------------
 会員情報 .page_mypage_profile
---------------------------------------------------- */
.page_mypage_profile .title_box .title_txt {
            background: url('/doctorsstudy/img/user/mypage/menber_infomation_ttl.png') no-repeat right bottom 16px;
            padding-right: 250px;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

            .page_mypage_profile .title_box .title_txt {
                background: url('/doctorsstudy/img/user/sp/mypage/menber_infomation_ttl.png') no-repeat right bottom 10px;
                background-size: 116px auto;
                padding-right: 134px;
            }
    }

/* ----------------------------------------------------
 ログイン情報変更 .page_mypage_account
---------------------------------------------------- */
.page_mypage_account .title_box .title_txt {
            background: url('/doctorsstudy/img/user/mypage/acount_ttl.png') no-repeat right bottom 16px;
            padding-right: 110px;
        }
.page_mypage_account .box {
        padding: 0 10% 50px;
    }
.page_mypage_account .box .box_title {
            font-size: 16px;
            font-weight: bold;
        }
.page_mypage_account .box .input_box {
            margin-bottom: 15px;
        }
.page_mypage_account .box .input_box:last-child {
                margin-bottom: 0;
            }
.page_mypage_account .box .input_box input {
                width: 100%;
            }
.page_mypage_account .mail_box {
        margin-bottom: 50px;
    }
.page_mypage_account .mail_box .input_box {
            position: relative;
        }
.page_mypage_account .mail_box .edit {
            background: #f8f5f0;
            height: 49px;
            position: absolute;
            right: 1px;
            top: 1px;
            width: 50px;
        }
.page_mypage_account .mail_box .edit img {
                margin: 0 auto;
                width: 25px;
            }
.page_mypage_account .button_area {
        margin: 50px 0;
    }
.page_mypage_account .button_area .btn_main {
            padding: 13px;
            width: 46%;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
            .page_mypage_account .title_box .title_txt {
                background: url('/doctorsstudy/img/user/sp/mypage/acount_ttl.png') no-repeat right bottom 10px;
                padding-right: 110px;
            }

        .page_mypage_account .box {
            padding: 15px 5%;
        }

            .page_mypage_account .box .box_title {
                font-size: 12px;
                margin-bottom: 10px;
            }

            .page_mypage_account .box .input_box {
                margin-bottom: 10px;
            }

                .page_mypage_account .box .input_box input {
                    width: 100%;
                }

        .page_mypage_account .mail_box {
            margin-bottom: 0;
        }

            .page_mypage_account .mail_box .edit {
                height: 32px;
                position: absolute;
                right: 1px;
                top: 1px;
                width: 30px;
            }

                .page_mypage_account .mail_box .edit img {
                    width: 18px;
                }

        .page_mypage_account .button_area {
            margin: 35px 0;
        }

            .page_mypage_account .button_area .btn_main {
                padding: 10px;
                width: 90%;
            }
    }

/* ----------------------------------------------------
 メールアドレス変更完了 .page_email_change_complete
---------------------------------------------------- */
.page_email_change_complete .content_box {
        padding: 6%;
    }
.page_email_change_complete .content_box p {
            font-size: 16px;
            letter-spacing: 0.05em;
        }
.page_email_change_complete .content_box .content_title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 0.025em;
        }
.page_email_change_complete .content_box .button_area {
            margin: 46px 0 20px;
        }
.page_email_change_complete .content_box .button_area .btn_main {
                padding: 11px;
                width: 40%;
            }

/* ----------------------------------------------------
 領収書発行 .page_email_change_complete
---------------------------------------------------- */
.page_mypage_recept .caution {
        margin-top: 10px;
    }
.page_mypage_recept .button_area {
        margin: 100px 0 20px;
    }
.page_mypage_recept .button_area .btn_main {
            padding: 13px;
            width: 40%;
        }
@media screen and (max-width: 767px) {
        .page_mypage_recept .box_title {
            margin-top: 20px;
        }
    }


/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    .content {
        margin-top: 17px;
    }
        .page_signup_complete .content_box {
            padding: 12px 18px;
        }
            .page_signup_complete .content_box p {
                font-size: 11px;
                text-align: left;
            }
            .page_signup_complete .content_box .button_area {
                margin: 20px 0 0;
            }
                .page_signup_complete .content_box .button_area .btn_main {
                    padding: 15px;
                    font-size: 16px;
                    width: 100%;
                }
}

/* ----------------------------------------------------
 サイドバー #side
---------------------------------------------------- */
.side_mypage {
    border: 1px solid #adadad;
    font-size: 18px;
    padding: 40px 13%;
}
.side_mypage .name {
        border-bottom: 1px solid #e4d0aa;
        font-size: 20px;
        font-weight: bold;
        padding-bottom: 15px;
    }
.side_mypage .link_area {
        padding: 20px 0 15px;
    }
.side_mypage .link_area li {
            margin: 20px 0;
        }
.side_mypage .link_area li .link_block {
                padding: 5px 0 5px 42px;
            }
.side_mypage .link_area .mypage_link {
            background: url('/doctorsstudy/img/user/mypage/mypage_sub_ico01.png') no-repeat left center;
        }
.side_mypage .link_area .purchase_link {
            background: url('/doctorsstudy/img/user/mypage/mypage_sub_ico02.png') no-repeat left center;
        }
.side_mypage .link_area .profile_link {
            background: url('/doctorsstudy/img/user/mypage/mypage_sub_ico03.png') no-repeat left center;
        }
.side_mypage .link_area .account_link {
            background: url('/doctorsstudy/img/user/mypage/mypage_sub_ico04.png') no-repeat left center;
        }
.side_mypage .link_area .receipt_link {
            background: url('/doctorsstudy/img/user/mypage/mypage_sub_ico05.png') no-repeat left center;
        }
.side_mypage .logout {
        border-top: 1px solid #818181;
        padding-top: 25px;
    }
.side_mypage .logout input {
            border: none;
            color: #494949;
            cursor: pointer;
            font-size: 18px;
            font-weight: normal;
            padding: 0;
        }
.side_mypage .logout input:hover {
                opacity: 0.6;
            }

@charset "UTF-8";

/* ----------------------------------------------------
 ニュース .page_news
---------------------------------------------------- */
.page_news .title_txt {
        background: url('/doctorsstudy/img/user/news/news_ttl.png') no-repeat right bottom 20px;
        padding-right: 86px;
    }
.page_news .content_box {
        margin-bottom: 50px;
    }
.page_news .content_box .date {
            color: #a7a7a7;
            margin-right: 88px;
        }
.page_news .content_box .news_title {
            font-size: 17px;
            font-weight: bold;
            width: 100%;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_news .title_txt {
            background: url('/doctorsstudy/img/user/sp/news/news_ttl.png') no-repeat right bottom 10px;
            background-size: 29px;
            padding-right: 40px;
        }

        .page_news .content_box {
            flex-direction: column;
            margin-bottom: 20px;
        }

            .page_news .content_box .date {
                font-size: 12px;
                margin: 0 0 10px;
            }

            .page_news .content_box .news_title {
                font-size: 15px;
            }

                .page_news .content_box .news_title.link_arrow {
                    background: none;
                    padding-right: 0;
                    text-decoration: underline;
                }
    }

/* ----------------------------------------------------
 ニュース詳細 .page_news_detail
---------------------------------------------------- */
.page_news_detail .content_box {
        word-break: break-all;
    }
.page_news_detail .content_box .date {
            color: #a7a7a7;
            font-weight: bold;
            justify-content: flex-end;
            margin-bottom: 17px;
        }
.page_news_detail .content_box .title_line {
            font-size: 30px;
            font-weight: bold;
        }
.page_news_detail .content_box .box_content {
            margin: 60px 0;
            font-size: 16px;
        }
.page_news_detail .content_box .box_content a {
                text-decoration: underline;
            }
.page_news_detail .content_box .box_content a:hover {
                    text-decoration: none;
                }
.page_news_detail .content_box .box_content span.text_bold {
                font-weight: bold;
            }
.page_news_detail .content_box .box_content span.text_red {
                color: var(--colorAccent01);
            }
.page_news_detail .content_box .box_content span.text_marker {
                background: #f7eedf;
            }
.page_news_detail .content_box .box_content h2 {
                background: url('/doctorsstudy/img/user/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                font-size: 35px;
                font-weight: bold;
                margin: 30px 0;
                padding: 8px 15px 8px 67px;
            }
.page_news_detail .content_box .box_content h3 {
                font-size: 30px;
                font-weight: bold;
                margin: 30px 0;
                border-left: 2px solid #ded1bc;
                line-height: 1.4;
                padding-left: 16px;

            }
.page_news_detail .content_box .box_content h4 {
                border-bottom: 4px double var(--colorAccent03);
                color: var(--colorAccent03);
                font-size: 24px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_news_detail .content_box .box_content h5 {
                font-size: 16px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_news_detail .content_box .box_content h6 {
                font-size: 14px;
                font-weight: bold;
                margin: 30px 0;
            }
.page_news_detail .content_box .box_content ul {
                list-style-type: disc;
            }
/* 点形式のリストスタイル */
.page_news_detail .content_box .box_content ul li {
                    list-style-type: inherit; /* 親要素からスタイルを継承 */
                    list-style-position: inside;
                }
.page_news_detail .content_box .box_content ol {
                list-style-type: decimal;
            }
/* 数字形式のリストスタイル */
.page_news_detail .content_box .box_content ol li {
                    list-style-type: inherit; /* 親要素からスタイルを継承 */
                    list-style-position: inside;
                }
.page_news_detail .content_box .box_content .bracketed-list {
                counter-reset: list-counter; /* カウンターをリセット */
                margin: 0;
            }
.page_news_detail .content_box .box_content .bracketed-list >li {
                    background: none;
                    list-style-type: none;
                    counter-increment: list-counter; /* アイテムごとにカウンターを増やす */
                    color: #af8c50;
                    font-weight: bold;
                    font-size: 24px;
                }
.page_news_detail .content_box .box_content .bracketed-list >li::before {
                        content: "(" counter(list-counter) ") "; /* カウンターの値を表示、カッコ付き */
                        margin-right: 5px; /* カッコとテキストの間のスペース（必要に応じて調整） */
                    }
.page_news_detail .content_box .box_content .disc-list {
                margin: 15px 0 50px;
            }
.page_news_detail .content_box .box_content .disc-list >li {
                    background: none;
                    list-style-type: disc;
                    list-style-position: inside;
                    color: #333;
                    font-weight: normal;
                    font-size: 18px;
                    margin-left: 0;
                }
.page_news_detail .content_box .box_content .disc-list :last-child {
                    margin-bottom: 0;
                }
.page_news_detail .content_box .box_content .background-color-list {
                font-size: 20px;
                list-style: none;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
                margin: 20px 18px;
                width: 100%;
            }
.page_news_detail .content_box .box_content .background-color-list li{
                    background: none;
                    list-style: none;
                    background-color: #f7f5ef;
                    padding: 40px 15px;
                }
.page_news_detail .content_box .box_content img {
                margin: 15px 0;
            }
.page_news_detail .content_box .box_content table {
                border-collapse: collapse;
                border: 1px solid #adadad;
                /*width: max-content !important;*/
                margin-bottom: 30px;
                max-width: 100%;
                width: 100%;
                color: #af8c50;
                font-size: 20px;
            }
.page_news_detail .content_box .box_content table tr:nth-child(odd) {
                        background: #f7f5ef;
                    }
.page_news_detail .content_box .box_content table tr:nth-child(even) {
                        background: #fff;
                    }
.page_news_detail .content_box .box_content table th {
                    background: #f8f5f0;
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    font-size: 16px;
                    vertical-align: middle;
                }
.page_news_detail .content_box .box_content table td {
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    vertical-align: middle;
                    width: auto;
                }
.page_news_detail .content_box .box_content .border-box {
                border: 2px solid #af8c50;
                padding: 20px 20px 30px;
                margin: 0 18px 45px;
            }
.page_news_detail .content_box .box_content .border-box.note {
                    font-size: 16px;
                    border: 2px solid #ded1bc;
                    padding: 16px 16px 30px;
                }
.page_news_detail .content_box .box_content .share_box {
                display: flex;
                align-items: center;
                gap: 0px 10px;
                padding: 30px 0;
            }
.page_news_detail .content_box .box_content .share_box .fb_iframe_widget {
                    display: inherit;
                }
.page_news_detail .content_box .box_content .high-light {
                color: #af8c50;
            }
.page_news_detail .content_box .box_content sup {
                vertical-align: super;
                font-size: smaller;
                line-height: 0;
            }
.page_news_detail .pagination {
        margin: 90px 0 20px;
    }
.page_news_detail .pagination .news_index {
            font-size: 12px;
            padding: 10px;
            width: 19%;
        }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {

            .page_news_detail .content_box .box_title {
                display: flex;
                flex-direction: column-reverse;
            }

                .page_news_detail .content_box .box_title .date {
                    font-size: 12px;
                    font-weight: normal;
                    margin-bottom: 0;
                }

                .page_news_detail .content_box .box_title .title_line {

                    border-left: none;
                    font-size: 18px;
                }
                .page_news_detail .content_box .box_title h2 {
                    background: url('/doctorsstudy/img/user/sp/column/magazine_ttl_ico.png') no-repeat left 13px center #f8f5f0;
                    background-size: 18px auto;
                    font-size: 22px;
                    margin: 10px 0;
                    padding: 5px 10px 5px 45px;
                }

                .page_news_detail .content_box .box_title h3 {
                    font-size: 20px;
                    margin: 10px 0;
                    padding-left: 10px;
                }

                .page_news_detail .content_box .box_title h4 {
                    font-size: 18px;
                    margin: 10px 0;
                }

                .page_news_detail .content_box .box_title h5 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_news_detail .content_box .box_title h6 {
                    font-size: 15px;
                    margin: 10px 0;
                }

                .page_news_detail .content_box .box_title ul {
                    margin: 10px 0;
                }

                    .page_news_detail .content_box .box_title ul li {
                        background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 8px;
                        background-size: 8px auto;
                        padding-left: 15px;
                    }

                .page_news_detail .content_box .box_title ol {
                    margin: 10px 0;

                }

                    .page_news_detail .content_box .box_title ol li {
                        margin-left: 18px;
                        padding-left: 0;
                    }

                .page_news_detail .content_box .box_title .bracketed-list {
                    counter-reset: list-counter; /* カウンターをリセット */
                    margin: 0;
                }
                    .page_news_detail .content_box .box_title .bracketed-list >li {
                        background: none;
                        list-style-type: none;
                        counter-increment: list-counter; /* アイテムごとにカウンターを増やす */
                        color: #af8c50;
                        font-weight: bold;
                        font-size: 18px;
                        margin-left: 0;
                    }
                        .page_news_detail .content_box .box_title .bracketed-list >li::before {
                            content: "(" counter(list-counter) ") "; /* カウンターの値を表示、カッコ付き */
                            margin-right: 5px; /* カッコとテキストの間のスペース（必要に応じて調整） */
                        }
                .page_news_detail .content_box .box_title .disc-list {
                    margin: 5px 0 20px;
                }
                    .page_news_detail .content_box .box_title .disc-list >li {
                        background: none;
                        list-style-type: disc;
                        list-style-position: inside;
                        color: #333;
                        font-weight: normal;
                        font-size: 16px;
                        margin-left: 0;
                    }
                    .page_news_detail .content_box .box_title .disc-list :last-child {
                        margin-bottom: 0;
                    }
    
                .page_news_detail .content_box .box_title .background-color-list {
                    grid-template-columns: repeat(1, 1fr);
                    font-size: 16px;
                    margin: 20px 0;
                }
                    .page_news_detail .content_box .box_title .background-color-list li{
                        padding: 20px 8px;
                    }

                .page_news_detail .content_box .box_title img {
                    margin: 15px 0;
                }

                .page_news_detail .content_box .box_title .sp_table_scroll {
                    overflow-x: scroll;
                    margin-bottom: 15px;
                }

                .page_news_detail .content_box .box_title table {
                    margin-bottom: 0;
                    max-width: inherit;
                    font-size: 15px;
                }

                    .page_news_detail .content_box .box_title table th {
                        font-size: 15px;
                    }
                .page_news_detail .content_box .box_title .border-box {
                    margin: 20px auto;
                    padding: 15px 18px 0;
                }
                    .page_news_detail .content_box .box_title .border-box.note {
                        font-size: 14px;
                    }
                .page_news_detail .content_box .box_title sup {
                    vertical-align: super;
                    font-size: smaller;
                    line-height: 0;
                }

            .page_news_detail .content_box .box_content {
                margin: 10px 0 20px;
                font-size: 14px;
            }

        .page_news_detail .pagination {
            margin: 35px 0 10px;
        }

            .page_news_detail .pagination .news_index {
                font-size: 12px;
                padding: 5px 10px;
                width: 53%;
            }

    }

@charset "UTF-8";

/* ----------------------------------------------------
購入確認（会員情報入力） .page_purchase_profile
---------------------------------------------------- */
.page_purchase_profile .inner {
        position: relative;
    }
.page_purchase_profile #main {
        max-width: 750px;
        width: 70%;
        margin-right: 2%;
        margin-top: 126px;

    }
.page_purchase_profile #main .title_box {
            position: absolute;
            top: 0;
            max-width: 1100px;
            width: 100%;
            border-bottom: 1px solid #e5e5e5;

        }
.page_purchase_profile #main .title_box .title_txt {
                background: url('/doctorsstudy/img/user/purchase/confirmation_ttl.png') no-repeat right bottom 20px;
                padding-right: 180px;
                margin-bottom: 20px;
            }
.page_purchase_profile #main .profile_box .caution_box {
                border: 3px solid var(--colorAccent01);
                margin-bottom: 35px;
                padding: 23px 0;
                letter-spacing: 0.025em;
                font-weight: bold;

            }
.page_purchase_profile #main .profile_box .caution_box .caution {
                    font-size: 18px;
                }
.page_purchase_profile #main .profile_box .caution_box .annotation {
                    font-size: 14px;
                }
.page_purchase_profile #side {
        max-width: 300px;
        width: 28%;
        margin-top: 126px;

    }
.page_purchase_profile #side .side_item {
            padding: 20px 6%;

        }
.page_purchase_profile #side .side_item .purchase_box .box_price {
                    font-size: 24px;
                    letter-spacing: 0.05em;
                    font-weight: bold;
                    line-height: 40px;
                    margin: 0 auto 10px;

                }
.page_purchase_profile #side .side_item .purchase_box .box_price #price_sum {
                        font-size: 36px;
                    }
.page_purchase_profile #side .side_item .purchase_box .box_price .tax {
                        font-size: 18px;
                    }
.page_purchase_profile #side .side_item .purchase_box .btn_main {
                    padding: 30px;
                    width: 100%;
                    line-height: 1;
                    font-size: 22px;
                }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {


        .page_purchase_profile .inner {
            display: block;

        }

        .page_purchase_profile #main {
            max-width: inherit;
            width: 100%;
            margin-right: inherit;
            margin-top: 0;
            padding-top: 55px;

        }

            .page_purchase_profile #main .title_box {
                max-width: inherit;
                padding-bottom: 10px;

            }

                .page_purchase_profile #main .title_box .title_txt {
                    background: url('/doctorsstudy/img/user/sp/purchase/confirmation_ttl_sp.png') no-repeat right bottom 10px;
                    background-size: 90px;
                    padding-right: 95px;
                    margin-bottom: 0;
                }

                .page_purchase_profile #main .profile_box .caution_box {
                    border: 3px solid var(--colorAccent01);
                    margin-bottom: 0;
                    padding: 10px 30px;

                }

                    .page_purchase_profile #main .profile_box .caution_box .caution {
                        font-size: 15px;
                        margin-bottom: 10px;
                    }

                    .page_purchase_profile #main .profile_box .caution_box .annotation {
                        font-size: 12px;
                        text-align: left;
                    }

            .page_purchase_profile #main .input_profile {
                margin-bottom: 40px;
            }


        .page_purchase_profile #side {
            max-width: inherit;
            width: 100%;
            margin-top: 0;
            margin-bottom: 30px;

        }

            .page_purchase_profile #side .side_item {
                padding: 16px 5% 10px;

            }

                    .page_purchase_profile #side .side_item .purchase_box .box_price {
                        font-size: 18px;
                        margin-bottom: 0;
                        line-height: 28px;

                    }


                        .page_purchase_profile #side .side_item .purchase_box .box_price #price_sum {
                            font-size: 27px;
                        }

                        .page_purchase_profile #side .side_item .purchase_box .box_price .tax {
                            font-size: 14px;
                        }

                    .page_purchase_profile #side .side_item .purchase_box .box-description {
                        font-size: 13px;
                    }

                    .page_purchase_profile #side .side_item .purchase_box .button_area {
                        margin-top: 10px;

                    }

                        .page_purchase_profile #side .side_item .purchase_box .button_area .btn_main {
                            padding: 20px;
                            font-size: 18px;
                        }

}


/* ----------------------------------------------------
購入確認 .page_purchase
---------------------------------------------------- */

.page_purchase .inner {
        position: relative;
    }

.page_purchase #main {
        max-width: 750px;
        width: 70%;
        margin-right: 2%;
        margin-top: 108px;

    }

.page_purchase #main .title_box {
            position: absolute;
            top: 0;
            max-width: 1100px;
            width: 100%;
            border-bottom: 1px solid #e5e5e5;

        }

.page_purchase #main .title_box .title_txt {
                background: url('/doctorsstudy/img/user/purchase/confirmation_ttl.png') no-repeat right bottom 20px;
                padding-right: 184px;
                margin-bottom: 20px;
            }

.page_purchase #main .box_title {
            font-size: 18px;
            letter-spacing: 0.025em;
            margin-bottom: 15px;
        }

.page_purchase #main .delivery_address_box {
            padding-bottom: 35px;
            border-bottom: 1px solid #e5e5e5;
            font-size: 14px;
            line-height: 1.7;
            letter-spacing: 0.025em;
            margin-bottom: 30px;
        }

.page_purchase #main .delivery_address_box .change_delivery_address {
                font-size: 12px;
                margin-top: 15px;
                letter-spacing: 0.05em;

            }

.page_purchase #main .delivery_address_box .change_delivery_address a {
                    font-weight: bold;
                }

.page_purchase #main .delivery_address_box tbody {
                text-align: left;
            }

.page_purchase #main .delivery_address_box tbody th {
                    width: 90px;
                    font-weight: 500;
                }

.page_purchase #main .payment_method_box {
            padding-bottom: 35px;
            border-bottom: 1px solid #e5e5e5;
            font-size: 14px;
            line-height: 1.7;
            letter-spacing: 0.05em;
            margin-bottom: 25px;
        }

.page_purchase #main .payment_method_box .content_box_row {
                border: none;
            }

.page_purchase #main .payment_method_box label {
                display: flex;
                flex-wrap: wrap;
                margin-bottom: 20px;
            }

.page_purchase #main .payment_method_box label .credit_card_type {
                    width: 100%;
                    padding-left: 15px;
                }

.page_purchase #main .payment_method_box label.is_disabled {
                    cursor: default;
                    opacity: 0.5;
                    pointer-events: none;
                }

.page_purchase #main .item_box {
            border: 1px solid #adadad;
            margin-bottom: 90px;

        }

.page_purchase #main .item_box .box {
                border-bottom: 1px solid #adadad;
                padding: 30px 24px 30px;
                display: grid;
                grid-template:
                        "thum title"
                        "thum content"
                        "thum content";
                grid-template-columns: auto 1fr;

            }

.page_purchase #main .item_box .box.set_box {
                    grid-template:
                            "title"
                            "content"
                }

.page_purchase #main .item_box .box:last-child {
                    border-bottom: none;
                }

.page_purchase #main .item_box .box .item_thumbnail {
                    margin-right: 27px;
                    max-width: 200px;
                    grid-area: thum;

                }

.page_purchase #main .item_box .box .item_content {
                    margin-right: 27px;
                    letter-spacing: 0.05em;
                    width: 100%;
                    grid-area: title;

                }

.page_purchase #main .item_box .box .item_content .item_title {
                        font-size: 17px;
                        margin-bottom: 15px;
                    }

.page_purchase #main .item_box .box .item_info {
                    grid-area: content;

                }

.page_purchase #main .item_box .box .item_info .item_description {
                        font-size: 14px;
                        margin-bottom: 15px;
                        line-height: 2;
                    }

.page_purchase #main .item_box .box .item_info .item_teacher {
                        font-size: 14px;

                    }

.page_purchase #main .item_box .box .item_info .item_teacher .teacher_label {
                            font-size: 12px;
                        }

.page_purchase #main .item_box .box .item_info .item_lesson {
                        font-size: 14px;
                        margin-bottom: 10px;

                    }

.page_purchase #main .item_box .box .item_info .item_lesson .lesson_label {
                            font-size: 12px;
                        }

.page_purchase #main .item_box .box .item_info .item_price {
                        font-size: 22px;
                        font-feature-settings: "palt";
                        text-align: right;
                        font-weight: bold;

                    }

.page_purchase #main .item_box .box .item_info .item_price .price_label {
                            font-size: 16px;
                            margin-right: 10px;
                        }

.page_purchase #main .item_box .box .item_info .item_price .num {
                            font-size: 26px;
                        }

.page_purchase #main .item_box .box .item_info .item_price .tax {
                            font-size: 18px;
                        }

.page_purchase #side {
        max-width: 300px;
        width: 28%;
        margin-top: 108px;

    }

.page_purchase #side .side_item {
            padding: 20px 6% 9px;

        }

.page_purchase #side .side_item .purchase_box .box_price {
                    font-size: 24px;
                    letter-spacing: 0.05em;
                    font-weight: bold;
                    line-height: 40px;
                    margin: 0 auto 10px;

                }

.page_purchase #side .side_item .purchase_box .box_price #price_sum {
                        font-size: 36px;
                    }

.page_purchase #side .side_item .purchase_box .box_price .tax {
                        font-size: 18px;
                    }

.page_purchase #side .side_item .purchase_box .button_area .btn_main {
                        padding: 30px;
                        width: 100%;
                        line-height: 1;
                        margin-bottom: 10px;
                        font-size: 22px;
                    }

.page_purchase #side .side_item .purchase_box .button_area span {
                        display: block;
                        font-size: 13px;
                    }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_purchase .inner {
            display: block;

        }

        .page_purchase #main {
            max-width: inherit;
            width: 100%;
            margin-right: inherit;
            margin-top: 0;
            padding-top: 60px;

        }

            .page_purchase #main .title_box {
                max-width: inherit;
                padding-bottom: 10px;

            }

                .page_purchase #main .title_box .title_txt {
                    background: url('/doctorsstudy/img/user/sp/purchase/confirmation_ttl_sp.png') no-repeat right bottom 10px;
                    background-size: 90px;
                    padding-right: 95px;
                    margin-bottom: 0;
                }

            .page_purchase #main .box_title {
                font-size: 16px;
                margin-bottom: 5px;
            }

            .page_purchase #main .delivery_address_box {
                padding-bottom: 15px;
                margin-bottom: 15px;

            }

                .page_purchase #main .delivery_address_box .change_delivery_address {
                    font-size: 13px;
                }

            .page_purchase #main .payment_method_box {
                margin-bottom: 20px;
                padding-bottom: 10px;

            }

                .page_purchase #main .payment_method_box label {
                    margin-bottom: 15px;

                }

                    .page_purchase #main .payment_method_box label .credit_card_type {
                        font-size: 12px;
                    }

            .page_purchase #main .item_box {
                margin-bottom: 15px;

            }

                .page_purchase #main .item_box .box {
                    padding: 15px 4% 15px 5%;
                    display: grid;
                    grid-template:
                            "thum title"
                            "thum title"
                            "content content";
                    grid-template-columns: minmax(100px, 37%) 1fr;

                }


                    .page_purchase #main .item_box .box .item_thumbnail {
                        margin-right: 13px;
                        max-width: inherit;
                    }

                    .page_purchase #main .item_box .box .item_content {
                        margin-right: 0;

                    }


                        .page_purchase #main .item_box .box .item_content .item_title {
                            font-size: 15px;
                            margin-bottom: 10px;
                        }
                        .page_purchase #main .item_box .box .item_info .item_description {
                            font-size: 13px;
                            margin-bottom: 0;
                            line-height: 2;
                        }

                        .page_purchase #main .item_box .box .item_info .item_other_info {
                            display: flex;
                            flex-wrap: wrap;
                            font-feature-settings: "palt";

                        }

                            .page_purchase #main .item_box .box .item_info .item_other_info .item_teacher {
                                font-size: 10px;
                                margin-right: 10px;

                            }

                                .page_purchase #main .item_box .box .item_info .item_other_info .item_teacher .teacher_label {
                                    font-size: 10px;
                                }

                            .page_purchase #main .item_box .box .item_info .item_other_info .item_lesson {
                                font-size: 10px;
                                margin-bottom: 0;

                            }

                                .page_purchase #main .item_box .box .item_info .item_other_info .item_lesson .lesson_label {
                                    font-size: 10px;
                                }

                        .page_purchase #main .item_box .box .item_info .item_price {
                            font-size: 15px;

                        }

                            .page_purchase #main .item_box .box .item_info .item_price .price_label {
                                font-size: 12px;
                                margin-right: 5px;
                            }

                            .page_purchase #main .item_box .box .item_info .item_price .num {
                                font-size: 21px;
                            }

                            .page_purchase #main .item_box .box .item_info .item_price .tax {
                                font-size: 12px;
                            }

        .page_purchase #side {
            max-width: inherit;
            width: 100%;
            margin-top: 0;
            margin-bottom: 30px;

        }

            .page_purchase #side .side_item {
                padding: 16px 5% 10px;

            }

                    .page_purchase #side .side_item .purchase_box .box_price {
                        font-size: 18px;
                        margin-bottom: 0;
                        line-height: 28px;

                    }


                        .page_purchase #side .side_item .purchase_box .box_price #price_sum {
                            font-size: 27px;
                        }

                        .page_purchase #side .side_item .purchase_box .box_price .tax {
                            font-size: 14px;
                        }

                    .page_purchase #side .side_item .purchase_box .box-description {
                        font-size: 13px;
                    }

                    .page_purchase #side .side_item .purchase_box .button_area {
                        margin-top: 10px;

                    }

                        .page_purchase #side .side_item .purchase_box .button_area .btn_main {
                            padding: 20px;
                            font-size: 18px;
                        }
}

/* ----------------------------------------------------
決済 .page_settlement
---------------------------------------------------- */
.page_settlement .title_txt {
        background: url('/doctorsstudy/img/user/purchase/settlement_ttl.png') no-repeat right bottom 20px;
        padding-right: 162px;
    }
.page_settlement .content_box_row .box {
            padding: 40px 0;
        }
.page_settlement .content_box_row .box:first-child {
                padding: 28px 0;
            }
.page_settlement .content_box_row .box .order_details th, .page_settlement .content_box_row .box .order_details td {
                    font-size: 16px;
                    padding: 17px;
                    vertical-align: middle;
                }
.page_settlement .content_box_row .box .order_details th {
                    background: #f5f0ec;
                    font-weight: normal;
                    text-align: center;
                    width: 13%;
                }
.page_settlement .content_box_row .box .order_details td {
                    background: #fff;
                    padding: 17px 32px;
                }
.page_settlement .content_box_row .box .box_title {
                margin-right: 10px;
                max-width: 20%;
                min-width: 230px;
                width: 29%;
            }
.page_settlement .content_box_row .box .box_title .text_emphasis01,
                .page_settlement .content_box_row .box .box_title .text_emphasis04 {
                    margin-left: 15px;
                }
.page_settlement .content_box_row .box .box_content {
                max-width: 515px;
                width: 70%;
            }
.page_settlement .content_box_row .box .box_content input[type=text],
                .page_settlement .content_box_row .box .box_content input[type=tel],
                .page_settlement .content_box_row .box .box_content input[type=email] {
                    border: 1px solid #e5e5e5;
                }
.page_settlement .content_box_row .box .box_content select {
                    width: 100%;
                }
.page_settlement .content_box_row .box .box_content .item {
                    margin-right: 18px;
                    width: 28%;
                }
.page_settlement .content_box_row .box .box_content .item:last-child {
                        margin-right: 0;
                    }
.page_settlement .content_box_row .box .box_content .large_item {
                    width: 43%;
                }
.page_settlement .content_box_row .box .box_content .note {
                    font-size: 13px;
                    margin-top: 8px;
                }
.page_settlement .content_box_row .button_area {
            margin: 60px 0;
        }
.page_settlement .content_box_row .button_area .btn_main, .page_settlement .content_box_row .button_area .btn_return {
                padding: 13px;
                margin: 0 8px;
                width: 31%;
            }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_settlement .title_txt {
            background: url('/doctorsstudy/img/user/sp/purchase/settlement_ttl.png') no-repeat right bottom 10px;
            background-size: 71px;
            padding-right: 89px;
        }

            .page_settlement .content_box_row .box {
                padding: 17px;
            }

                .page_settlement .content_box_row .box:first-child {
                    padding: 15px 0;
                }

                    .page_settlement .content_box_row .box .order_details th, .page_settlement .content_box_row .box .order_details td {
                        font-size: 11px;
                        padding: 8px 10px;
                    }

                    .page_settlement .content_box_row .box .order_details th {
                        width: 21%;
                    }

                    .page_settlement .content_box_row .box .order_details td {
                        padding: 8px 12px;
                    }

                .page_settlement .content_box_row .box .box_title {
                    font-size: 11px;
                }

                .page_settlement .content_box_row .box .box_content {
                    font-size: 12px;
                    margin-top: 10px;
                    max-width: 100%;
                    width: 100%;
                }

                    .page_settlement .content_box_row .box .box_content .note {
                        font-size: 10px;
                    }

            .page_settlement .content_box_row .button_area {
                display: flex;
                flex-direction: column;
                margin: 15px 0;
            }


                .page_settlement .content_box_row .button_area .btn_main, .page_settlement .content_box_row .button_area .btn_return {
                    margin: 0;
                    padding: 11px;
                    width: 100%;
                }

                .page_settlement .content_box_row .button_area .btn_main {
                    order: 1;
                }

                .page_settlement .content_box_row .button_area .btn_return {
                    order: 2;
                    margin-top: 10px;
                }
    }

/* ----------------------------------------------------
決済確認 .page_settlement_confirm
---------------------------------------------------- */
.page_settlement_confirm .title_txt {
        background: url('/doctorsstudy/img/user/purchase/settlement_ttl.png') no-repeat right bottom 20px;
        padding-right: 162px;
    }
.page_settlement_confirm .content_box_row .box {
            padding: 40px 0;
        }
.page_settlement_confirm .content_box_row .box .order_details th, .page_settlement_confirm .content_box_row .box .order_details td {
                    font-size: 16px;
                    padding: 17px;
                    vertical-align: middle;
                }
.page_settlement_confirm .content_box_row .box .order_details th {
                    background: #f5f0ec;
                    font-weight: normal;
                    text-align: center;
                    width: 13%;
                }
.page_settlement_confirm .content_box_row .box .order_details td {
                    background: #fff;
                    padding: 17px 32px;
                }
.page_settlement_confirm .content_box_row .box .box_title {
                margin-right: 10px;
                max-width: 20%;
                min-width: 230px;
                width: 29%;
            }
.page_settlement_confirm .content_box_row .box .box_title .text_emphasis01,
                .page_settlement_confirm .content_box_row .box .box_title .text_emphasis04 {
                    margin-left: 15px;
                }
.page_settlement_confirm .content_box_row .box .box_content {
                max-width: 515px;
                width: 70%;
            }
.page_settlement_confirm .content_box_row .box .box_content input[type=text],
                .page_settlement_confirm .content_box_row .box .box_content input[type=tel],
                .page_settlement_confirm .content_box_row .box .box_content input[type=email] {
                    border: 1px solid #e5e5e5;
                }
.page_settlement_confirm .content_box_row .box .box_content select {
                    width: 100%;
                }
.page_settlement_confirm .content_box_row .box .box_content .item {
                    margin-right: 0;
                    width: 15%;

                }
.page_settlement_confirm .content_box_row .box .box_content .large_item {
                    width: 43%;
                }
.page_settlement_confirm .content_box_row .button_area {
            margin: 60px 0;
        }
.page_settlement_confirm .content_box_row .button_area .btn_main, .page_settlement_confirm .content_box_row .button_area .btn_return {
                padding: 13px;
                margin: 0 8px;
                width: 31%;
            }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_settlement_confirm .title_txt {
            background: url('/doctorsstudy/img/user/sp/purchase/settlement_ttl.png') no-repeat right bottom 10px;
            background-size: 71px;
            padding-right: 89px;
        }

            .page_settlement_confirm .content_box_row .box {
                padding: 17px;
            }

                .page_settlement_confirm .content_box_row .box:first-child {
                    padding: 15px 0;
                }

                    .page_settlement_confirm .content_box_row .box .order_details th, .page_settlement_confirm .content_box_row .box .order_details td {
                        font-size: 11px;
                        padding: 8px 10px;
                    }

                    .page_settlement_confirm .content_box_row .box .order_details th {
                        width: 21%;
                    }

                    .page_settlement_confirm .content_box_row .box .order_details td {
                        padding: 8px 12px;
                    }

                .page_settlement_confirm .content_box_row .box .box_title {
                    font-size: 11px;
                }

                .page_settlement_confirm .content_box_row .box .box_content {
                    font-size: 12px;
                    margin-top: 10px;
                    max-width: 100%;
                    width: 100%;
                }

            .page_settlement_confirm .content_box_row .button_area {
                display: flex;
                flex-direction: column;
                margin: 15px 0;
            }


                .page_settlement_confirm .content_box_row .button_area .btn_main, .page_settlement_confirm .content_box_row .button_area .btn_return {
                    margin: 0;
                    padding: 11px;
                    width: 100%;
                }

                .page_settlement_confirm .content_box_row .button_area .btn_main {
                    order: 1;
                }

                .page_settlement_confirm .content_box_row .button_area .btn_return {
                    order: 2;
                    margin-top: 10px;
                }
    }

/* ----------------------------------------------------
決済実行 .page_settlement_tran_gmo
---------------------------------------------------- */
.page_settlement_tran_gmo .content {
        font-size: 22px;
        min-height: 150px;
    }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_settlement_tran_gmo .content {
            font-size: 16px;
        }
    }

/* ----------------------------------------------------
購入完了 .page_purchase_complete
---------------------------------------------------- */
.page_purchase_complete .title_txt {
        background: url('/doctorsstudy/img/user/purchase/completed_ttl.png') no-repeat right bottom 20px;
        padding-right: 156px;
    }
.page_purchase_complete .content_box {
        font-size: 16px;
        letter-spacing: 0.05em;
        padding: 6%;
    }
.page_purchase_complete .content_box .box {
            margin: 25px 0;
        }
.page_purchase_complete .content_box .box:first-child {
                margin: 0;
            }
.page_purchase_complete .content_box .box.credit_box {
                margin: 17px auto;
                max-width: 630px;
            }
.page_purchase_complete .content_box .box .border_wrap {
                padding: 20px 25px;
            }
.page_purchase_complete .content_box .box .payment_information {
                margin: 10px 0;
            }
.page_purchase_complete .content_box .box .payment_information th, .page_purchase_complete .content_box .box .payment_information td {
                    padding: 17px;
                    vertical-align: middle;
                }
.page_purchase_complete .content_box .box .payment_information th {
                    background: #f5f0ec;
                    font-weight: normal;
                    text-align: center;
                    width: 25%;
                }
.page_purchase_complete .content_box .box .payment_information td {
                    background: #fff;
                    padding: 17px 32px;
                }
.page_purchase_complete .content_box .box ul li {
                    background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 8px;
                    padding-left: 20px;
                }
.page_purchase_complete .content_box .box ol {
                margin-left: 30px;
            }
.page_purchase_complete .content_box .box ol li {
                    list-style-type: decimal;
                }
.page_purchase_complete .content_box .button_area {
            margin: 46px 0 20px;
        }
.page_purchase_complete .content_box .button_area .btn_main {
                padding: 11px;
                width: 40%;
            }
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
        .page_purchase_complete .title_txt {
            background: url('/doctorsstudy/img/user/sp/purchase/completed_ttl.png') no-repeat right bottom 10px;
            background-size: 71px;
            padding-right: 89px;
        }

        .page_purchase_complete .content_box {
            font-size: 12px;
            text-align: left;
        }

            .page_purchase_complete .content_box .box {
                margin: 17px 0;
            }

                .page_purchase_complete .content_box .box .border_wrap {
                    padding: 4%;
                }

                    .page_purchase_complete .content_box .box .payment_information th, .page_purchase_complete .content_box .box .payment_information td {
                        font-size: 11px;
                        padding: 8px 10px;
                    }

                    .page_purchase_complete .content_box .box .payment_information th {
                        width: 34%;
                    }
                    .page_purchase_complete .content_box .box ul li {
                        background: url('/doctorsstudy/img/user/sp/column/magazine_li_ico.png') no-repeat left top 6px;
                        background-size: 8px auto;
                        padding-left: 15px;
                    }

                .page_purchase_complete .content_box .box ol {
                    margin-left: 4%;
                }

            .page_purchase_complete .content_box .button_area {
                margin: 25px 0 0;
            }

                .page_purchase_complete .content_box .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }
    }

@charset "UTF-8";
/* ----------------------------------------------------
 パスワード再設定 .page_reset_password
---------------------------------------------------- */
.page_reset_password .title_txt {
        background: url('/doctorsstudy/img/user/reset_password/password_reissue_ttl.png') no-repeat right bottom 15px;
        padding-right: 226px;
    }
.page_reset_password .content_box {
        padding: 10% 6%;
    }
.page_reset_password .content_box .alert_danger {
            max-width: 440px;
            width: 100%;
            margin: 0 auto 20px;
        }
.page_reset_password .content_box form {
            max-width: 440px;
            width: 100%;
            margin: 0 auto;
        }
.page_reset_password .content_box form .box {
                margin-bottom: 30px;
            }
.page_reset_password .content_box form .box label {
                    display: block;
                    font-size: 16px;
                }
.page_reset_password .content_box form .box input {
                    width: 100%;
                }
.page_reset_password .content_box form .button_area {
                margin: 50px 0 0;
            }
.page_reset_password .content_box form .button_area button {
                    padding: 11px;
                    width: 100%;
                }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_reset_password .title_txt {
            background: url('/doctorsstudy/img/user/sp/reset_password/password_reissue_ttl.png') no-repeat right bottom 10px;
            background-size: 104px;
            padding-right: 122px;
        }

        .page_reset_password .content {
            margin-top: 5px;
        }

            .page_reset_password .content .content_box {
                padding: 15px 16px 24px;
            }

                .page_reset_password .content .content_box .alert_danger {
                    margin: 0 auto 15px;
                }

                    .page_reset_password .content .content_box form .box {
                        margin-bottom: 15px;
                    }

                        .page_reset_password .content .content_box form .box label {
                            font-size: 11px;
                        }

                    .page_reset_password .content .content_box form .button_area {
                        margin: 25px 0 0;
                    }
}

@charset "UTF-8";

/* ----------------------------------------------------
 会員登録 .page_signup
---------------------------------------------------- */
.page_signup .title_txt {
        background: url('/doctorsstudy/img/user/signup/account_registration_ttl.png') no-repeat right bottom 20px;
        padding-right: 286px;
    }
.page_signup .content_box {
        padding: 10% 6%;
    }
.page_signup .content_box .alert_danger {
            max-width: 440px;
            width: 100%;
            margin: -30px auto 30px;
        }
.page_signup .content_box .input_box {
            max-width: 680px;
            margin: 0 auto;
            padding: 0px 12%;
        }
.page_signup .content_box .input_box .email_box {
                margin-bottom: 30px;
            }
.page_signup .content_box .input_box .password_box {
                margin-bottom: 21px;
            }
.page_signup .content_box .input_box .mail_magazine_box {
                margin-bottom: 35px;
            }
.page_signup .content_box .input_box .mail_magazine_box input {
                    cursor: pointer;
                    height: 17px;
                    padding: 0;
                    width: 22px;
                    margin-top: 5px;
                    -webkit-user-select: none;
                       -moz-user-select: none;
                        -ms-user-select: none;
                            user-select: none;
                }
.page_signup .content_box .input_box .mail_magazine_box input:checked {
                        background: url('/doctorsstudy/img/user/common/check_white.png') no-repeat center #494949;
                    }
.page_signup .content_box .input_box .mail_magazine_box label {
                    cursor: pointer;
                    font-size: 14px;
                    padding-left: 8px;
                    white-space: pre-line;
                    margin-top: calc(-14px *1.8);
                }
.page_signup .content_box .input_box label {
                display: block;
                font-size: 16px;
                letter-spacing: 0.025em;
            }
.page_signup .content_box .input_box input {
                width: 100%;
            }
.page_signup .content_box .input_box .button_area {
                margin: 0 0 20px;
            }
.page_signup .content_box .input_box .button_area .btn_main {
                    padding: 13px;
                    width: 100%;
                }
.page_signup .content_box .input_box .register_box {
                margin-bottom: 20px;
            }
.page_signup .content_box .input_box .register_box p {
                    letter-spacing: 0.05em;
                }
.page_signup .content_box .login {
            font-size: 18px;
            letter-spacing: 0.025em;
            padding-top: 35px;
        }
.page_signup .content_box .login a {
                letter-spacing: 0.025em;
            }
.page_signup .alert_danger {
        font-size: 16px;

    }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_signup .content {
            margin-top: 5px;
        }

        .page_signup .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/account_registration_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 120px;
            padding-right: 125px;
        }



        .page_signup .content_box {
            padding: 15px 16px 24px;

        }

            .page_signup .content_box .alert_danger {
                max-width: inherit;
                margin: 0 auto 15px;
            }

            .page_signup .content_box .input_box {
                padding: inherit;
            }

                .page_signup .content_box .input_box .email_box {
                    margin-bottom: 15px;
                }

                    .page_signup .content_box .input_box .email_box input {
                        padding: 6px 18px;
                    }

                .page_signup .content_box .input_box .password_box {
                    margin-bottom: 15px;
                }

                    .page_signup .content_box .input_box .password_box input {
                        padding: 6px 18px;
                    }

                .page_signup .content_box .input_box .mail_magazine_box {
                    margin-bottom: 0;
                }

                    .page_signup .content_box .input_box .mail_magazine_box input {
                        -webkit-appearance: none;
                        height: 14px;
                        width: 25px;

                    }

                    .page_signup .content_box .input_box .mail_magazine_box label {
                        font-size: 12px;
                        padding-left: 9px;
                        margin-top: calc(-12px *1.6);
                    }

                .page_signup .content_box .input_box label {
                    font-size: 11px;
                    margin-bottom: 5px;
                }

                .page_signup .content_box .input_box .button_area {
                    margin: 0 0 20px;
                }

                    .page_signup .content_box .input_box .button_area .btn_main {
                        padding: 13px;
                        font-size: 16px;
                    }

                .page_signup .content_box .input_box .register_box {
                    margin-bottom: 20px;
                }

                    .page_signup .content_box .input_box .register_box p {
                        font-size: 11px;
                        letter-spacing: 0.05em;
                        text-align: left;
                    }

            .page_signup .content_box .login {
                font-size: 14px;
                padding-top: 25px;
            }

        .page_signup .alert_danger {
            font-size: 14px;
        }
}

/* ----------------------------------------------------
 会員登録確認 .page_signup_confirm
---------------------------------------------------- */
.page_signup_confirm .title_txt {
        background: url('/doctorsstudy/img/user/signup/account_registration_ttl.png') no-repeat right bottom 20px;
        padding-right: 286px;
    }
.page_signup_confirm .content_box {
        padding: 10% 6%;

    }
.page_signup_confirm .content_box .description_box {
            margin-bottom: 30px;
        }
.page_signup_confirm .content_box .description_box .description_box_midashi {
                font-size: 16px;
                letter-spacing: 0.025em;
                margin-bottom: 15px;
            }
.page_signup_confirm .content_box .description_box .description_box_content {
                font-size: 14px;
                letter-spacing: 0.025em;
            }
.page_signup_confirm .content_box .alert_danger {
            max-width: 440px;
            width: 100%;
            margin: -30px auto 30px;
        }
.page_signup_confirm .content_box form {
            max-width: 440px;
            width: 100%;
            margin: 0 auto;

        }
.page_signup_confirm .content_box form .email_box {
                margin-bottom: 21px;
            }
.page_signup_confirm .content_box form .authentication_code_box {
                margin-bottom: 21px;
            }
.page_signup_confirm .content_box form label {
                display: block;
                font-size: 16px;
                letter-spacing: 0.025em;
                font-weight: bold;
            }
.page_signup_confirm .content_box form input {
                width: 100%;
            }
.page_signup_confirm .content_box form .button_area {
                margin: 36px auto 21px;
            }
.page_signup_confirm .content_box form .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }
.page_signup_confirm .alert_danger {
        font-size: 16px;

    }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_signup_confirm .content {
            margin-top: 5px;
        }

        .page_signup_confirm .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/account_registration_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 120px;
            padding-right: 125px;
        }



        .page_signup_confirm .content_box {
            padding: 15px 16px 24px;


        }

            .page_signup_confirm .content_box .alert_danger {
                max-width: inherit;
                margin: 0 auto 15px;
            }

            .page_signup_confirm .content_box .description_box {
                margin-bottom: 20px;

            }

                .page_signup_confirm .content_box .description_box .description_box_midashi {
                    text-align: left;
                    font-size: 14px;
                }

                .page_signup_confirm .content_box .description_box .description_box_content {
                    font-size: 12px;
                }



            .page_signup_confirm .content_box form {
                max-width: inherit;

            }

                .page_signup_confirm .content_box form .email_box {
                    margin-bottom: 20px;
                }

                    .page_signup_confirm .content_box form .email_box input {
                        padding: 6px 18px;
                    }

                .page_signup_confirm .content_box form .authentication_code_box {
                    margin-bottom: 20px;
                }

                    .page_signup_confirm .content_box form .authentication_code_box input {
                        padding: 6px 18px;
                    }

                .page_signup_confirm .content_box form label {
                    font-size: 11px;

                }

                .page_signup_confirm .content_box form input {
                    width: 100%;

                }

                .page_signup_confirm .content_box form .button_area {
                    margin: 0 0 20px;
                }

                    .page_signup_confirm .content_box form .button_area .btn_main {
                        font-size: 16px;
                    }

        .page_signup_confirm .alert_danger {
            font-size: 14px;
        }
}

/* ----------------------------------------------------
 会員登録完了 .page_signup_complete
---------------------------------------------------- */
.page_signup_complete .title_txt {
        background: url('/doctorsstudy/img/user/signup/completed_ttl.png') no-repeat right bottom 20px;
        padding-right: 156px;
    }
.page_signup_complete .content_box {
        padding: 6%;

    }
.page_signup_complete .content_box p {
            font-size: 16px;
            letter-spacing: 0.05em;
        }
.page_signup_complete .content_box .content_title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 0.025em;
        }
.page_signup_complete .content_box .button_area {
            margin: 46px 0 20px;

        }
.page_signup_complete .content_box .button_area .btn_main {
                padding: 11px;
                width: 40%;
            }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    .content {
        margin-top: 17px;
    }

        .page_signup_complete .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/completed_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 80px;
            padding-right: 85px;
        }

        .page_signup_complete .content_box {
            padding: 12px 18px;

        }

            .page_signup_complete .content_box p {
                font-size: 11px;
                text-align: left;
            }

            .page_signup_complete .content_box .button_area {
                margin: 20px 0 0;

            }

                .page_signup_complete .content_box .button_area .btn_main {
                    padding: 15px;
                    font-size: 16px;
                    width: 100%;
                }

}



/* ----------------------------------------------------
 会員仮登録完了 .page_signup_tmp_complete
---------------------------------------------------- */
.page_signup_tmp_complete .title_txt {
        background: url('/doctorsstudy/img/user/signup/completed_ttl.png') no-repeat right bottom 20px;
        padding-right: 156px;
    }
.page_signup_tmp_complete .content_box {
        padding: 6%;


    }
.page_signup_tmp_complete .content_box p {
            font-size: 16px;
            letter-spacing: 0.05em;
        }
.page_signup_tmp_complete .content_box .content_title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 0.025em;
        }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    .content {
        margin-top: 17px;
    }

        .page_signup_tmp_complete .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/completed_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 80px;
            padding-right: 85px;
        }

        .page_signup_tmp_complete .content_box {
            padding: 12px 18px 18px;

        }

            .page_signup_tmp_complete .content_box p {
                font-size: 11px;
                text-align: left;
            }

}


/* ----------------------------------------------------
 会員登録完了 .page_signup_complete
---------------------------------------------------- */
.page_signup_complete .title_txt {
        background: url('/doctorsstudy/img/user/signup/completed_ttl.png') no-repeat right bottom 20px;
        padding-right: 156px;
    }
.page_signup_complete .content_box {
        padding: 6%;

    }
.page_signup_complete .content_box p {
            font-size: 16px;
            letter-spacing: 0.05em;
        }
.page_signup_complete .content_box .content_title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 0.025em;
        }
.page_signup_complete .content_box .button_area {
            margin: 46px 0 20px;

        }
.page_signup_complete .content_box .button_area .btn_main {
                padding: 11px;
                width: 40%;
            }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    .content {
        margin-top: 17px;
    }

        .page_signup_complete .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/completed_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 80px;
            padding-right: 85px;
        }

        .page_signup_complete .content_box {
            padding: 12px 18px;

        }

            .page_signup_complete .content_box p {
                font-size: 11px;
                text-align: left;
            }

            .page_signup_complete .content_box .button_area {
                margin: 20px 0 0;

            }

                .page_signup_complete .content_box .button_area .btn_main {
                    padding: 15px;
                    font-size: 16px;
                    width: 100%;
                }

}



/* ----------------------------------------------------
 会員登録完了 .page_signup_complete
---------------------------------------------------- */
.page_signup_complete .title_txt {
        background: url('/doctorsstudy/img/user/signup/completed_ttl.png') no-repeat right bottom 20px;
        padding-right: 156px;
    }
.page_signup_complete .content_box {
        padding: 6%;

    }
.page_signup_complete .content_box p {
            font-size: 16px;
            letter-spacing: 0.05em;
        }
.page_signup_complete .content_box .content_title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 0.025em;
        }
.page_signup_complete .content_box .button_area {
            margin: 46px 0 20px;

        }
.page_signup_complete .content_box .button_area .btn_main {
                padding: 11px;
                width: 40%;
            }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    .content {
        margin-top: 17px;
    }

        .page_signup_complete .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/completed_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 80px;
            padding-right: 85px;
        }

        .page_signup_complete .content_box {
            padding: 12px 18px;

        }

            .page_signup_complete .content_box p {
                font-size: 11px;
                text-align: left;
            }

            .page_signup_complete .content_box .button_area {
                margin: 20px 0 0;

            }

                .page_signup_complete .content_box .button_area .btn_main {
                    font-size: 16px;
                    width: 100%;
                }

}

@charset "UTF-8";

/* ----------------------------------------------------
 講師一覧 .page_teacher
---------------------------------------------------- */
.page_teacher .title_txt {
		background: url('/doctorsstudy/img/user/teacher/teacher_ttl.png') no-repeat right bottom 20px;
		padding-right: 117px;
	}
.page_teacher .preface {
		font-size: 16px;
	}
.page_teacher .category_list {
		margin: 30px 0;
	}
.page_teacher .teacher_list .box_link {
			background: #fff;
			border-radius: 8px;
			border: 1px solid #f4f4f4;
			box-shadow: -19px 19px 10px 0 #aeaeae;
			margin: 0 10px 35px;
			padding: 25px;
			width: 200px;
		}
.page_teacher .teacher_list .box_link .box_thumbnail {
				border-radius: 50%;
				height: 140px;
				overflow: hidden;
				position: relative;
				width: 140px;
			}
.page_teacher .teacher_list .box_link .box_thumbnail .teacher_thumbnail {
					height: 100%;
					left: 50%;
					max-width: -webkit-fit-content;
					max-width: -moz-fit-content;
					max-width: fit-content;
					position: absolute;
					top: 50%;
					transform: translate(-50%, -50%);
				}
.page_teacher .teacher_list .box_link .name {
				text-align: center;
				font-size: 17px;
				font-weight: bold;
				margin: 15px 0;
			}
.page_teacher .teacher_list .box_link .text {
				font-size: 12px;
			}
/* SPサイト用記述 */
@media screen and (max-width: 767px) {
		.page_teacher .title_txt {
			background: url('/doctorsstudy/img/user/sp/teacher/teacher_ttl.png') no-repeat right bottom 10px;
			background-size: 54px;
			padding-right: 65px;
		}

		.page_teacher .content {
			margin-top: 0;
		}

		.page_teacher .preface {
			font-size: 15px;
		}

		.page_teacher .page_sort_box {
			margin: 15px 0;
		}

			.page_teacher .page_sort_box .form_submit {
				background: url('/doctorsstudy/img/user/sp/common/sort_ico.png') no-repeat right 19px center;
				background-size: 8px auto;
				border-radius: 4px;
				color: #7c7c7c;
				font-size: 15px;
				padding: 10px 19px 10px 16px;
				width: 100%;
			}

			.page_teacher .teacher_list .box_link {
				margin: 0 0 20px;
				padding: 18px 20px;
				width: 100%;
				display: flex;
				gap: 0 5%;
			}

				.page_teacher .teacher_list .box_link .box_thumbnail {
					height: 109px;
					width: 109px;
				}

				.page_teacher .teacher_list .box_link .box_link_right {
					width: 60%;
				}

					.page_teacher .teacher_list .box_link .box_link_right .name {
						text-align: left;
						font-size: 15px;
						margin: 5px 0;
					}
	}

/* ----------------------------------------------------
 講師詳細 .page_teacher_detail
---------------------------------------------------- */
.page_teacher_detail #main {
		max-width: 643px;
		width: 59%;
	}
.page_teacher_detail #main .box_title {
			font-size: 36px;
			font-weight: bold;
			margin-bottom: 46px;
		}
.page_teacher_detail #main .box_title .kana {
				font-size: 23px;
				margin-left: 25px;
			}
.page_teacher_detail #main .box_content {
			font-size: 16px;
			margin: 45px 0;
		}
.page_teacher_detail #main .title_line {
			font-size: 22px;
			font-weight: bold;
			margin: 65px 0 30px;
		}
.page_teacher_detail #main .tag_list .tag_category {
				font-size: 14px;
				margin: 10px 10px 0 0;
				padding: 4px 10px;
			}
.page_teacher_detail #main .message_box iframe {
				height: auto;
				min-height: 358px;
				width: 100%;
			}
.page_teacher_detail #side {
		max-width: 400px;
		width: 37%;
	}
.page_teacher_detail #side .box_thumbnail {
			border-radius: 50%;
			height: 400px;
			margin-bottom: 30px;
			overflow: hidden;
			position: relative;
			width: 400px;
		}
.page_teacher_detail #side .box_thumbnail .teacher_thumbnail {
				height: 100%;
				left: 50%;
				max-width: -webkit-fit-content;
				max-width: -moz-fit-content;
				max-width: fit-content;
				position: absolute;
				top: 50%;
				transform: translate(-50%, -50%);
			}
.page_teacher_detail #side .sns_box .link_block {
				margin: 0 10px;
			}
.page_teacher_detail #side .course_box {
			margin: 50px 0 30px;
		}
.page_teacher_detail #side .course_box .course_box_title {
				font-size: 17px;
				font-weight: bold;
				margin-bottom: 23px;
				text-align: center;
			}
.page_teacher_detail #side .course_box .item_box {
				background: #fff;
				box-shadow: -7px 7px 8px 0 #aeaeae;
				margin-bottom: 30px;
				max-width: 286px;
			}
.page_teacher_detail #side .course_box .item_box .course_thumbnail {
					text-align: center;
				}
.page_teacher_detail #side .course_box .item_box .course_thumbnail img {
						width: 100%;
					}
.page_teacher_detail #side .course_box .item_box .course_content {
					padding: 15px 12px;
					font-weight: bold;
				}
@media screen and (max-width: 767px) {
		.page_teacher_detail .inner {
			flex-direction: column;
		}

		.page_teacher_detail .box_title {
			font-size: 20px;
			margin-bottom: 23px;
		}

			.page_teacher_detail .box_title .kana {
				font-size: 12px;
				margin-left: 10px;
			}

		.page_teacher_detail #main {
			max-width: inherit;
			width: 100%;
		}

			.page_teacher_detail #main .box_content {
				font-size: 15px;
				margin: 0 0 36px;
			}

			.page_teacher_detail #main .title_line {
				font-size: 16px;
				margin: 0 0 10px;
			}

			.page_teacher_detail #main .tag_list {
				gap: 10px 5px;
				margin-bottom: 20px;
			}

				.page_teacher_detail #main .tag_list .tag_category {
					font-size: 11px;
					margin: 0 5px 0 0;
					padding: 2px 6px;
				}

				.page_teacher_detail #main .message_box iframe {
					min-height: 193px;
				}

		.page_teacher_detail #side {
			max-width: inherit;
			width: 100%;
		}

			.page_teacher_detail #side .box_thumbnail {
				height: 250px;
				margin: 0 auto 17px;
				width: 250px;
			}

			.page_teacher_detail #side .sns_box {
				width: 30%;
				margin: 0 auto 15px;
				gap: 0 16px;
			}

				.page_teacher_detail #side .sns_box .link_block {
					margin: inherit;
				}

		.page_teacher_detail .course_box {
			margin: 0 0 30px;
			width: 100%;
		}

			.page_teacher_detail .course_box .course_box_title {
				font-size: 16px;
				font-weight: bold;
				margin-bottom: 20px;
				padding-bottom: 15px;
				text-align: center;
				border-bottom: 1px solid #adadad;
			}

			.page_teacher_detail .course_box .item_row {
				display: flex;
				justify-content: flex-start;
				gap: 0 10px;
				overflow: scroll;
				overflow-x: scroll;
				-ms-overflow-style: none;
				scrollbar-width: none;
				width: calc(100% + ((100vw - 100%) / 2));
			}

				.page_teacher_detail .course_box .item_row::-webkit-scrollbar {
					display: none;
				}

				.page_teacher_detail .course_box .item_row .item_box {
					background: #fff;
					box-shadow: -7px 7px 8px 0 #aeaeae;
					margin-bottom: 30px;
					max-width: inherit;
					min-width: 170px;
					width: 45%;
					border-radius: 0 0 8px 8px;
				}
						.page_teacher_detail .course_box .item_row .item_box .course_thumbnail img {
							border-radius: 8px 8px 0 0;
						}

					.page_teacher_detail .course_box .item_row .item_box .course_content {
						padding: 7px 15px 10px;
						font-weight: bold;
						font-size: 13px;
					}
	}

@charset "UTF-8";

/* ----------------------------------------------------
 トップページ .page_top
---------------------------------------------------- */
.page_top .full_content_wrap .inner {
            max-width: 1550px;
        }
.page_top .full_content_wrap .serif {
            font-family: "NotoSerifJP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        }
.page_top .full_content_wrap .anm_display {
            opacity: 0;
            transform: translate(0, 120px);
            transition: transform 1s, opacity 1s;
        }
.page_top .full_content_wrap .anm_display.show {
                opacity: 1;
                transform: inherit;
            }
.page_top .full_content_wrap .link_circle .label {
                font-size: 18px;
                font-weight: bold;
                padding-right: 80px;
                position: relative;
            }
.page_top .full_content_wrap .link_circle .label:after {
                    background: #9a9a9a;
                    content: '';
                    display: block;
                    height: 1px;
                    left: 105px;
                    position: absolute;
                    top: 50%;
                    width: 80px;
                    z-index: 1;
                }
.page_top .full_content_wrap .link_circle .arrow {
                align-items: center;
                display: flex;
                height: 70px;
                justify-content: center;
                position: relative;
                width: 70px;
            }
.page_top .full_content_wrap .link_circle .arrow img {
                    z-index: 1;
                }
.page_top .full_content_wrap .link_circle .arrow:after {
                    background: #fff;
                    border-radius: 50%;
                    content: '';
                    height: 100%;
                    left: 0;
                    position: absolute;
                    top: 0;
                    width: 100%;
                }
.page_top .full_content_wrap .link_circle:hover {
                opacity: 1;
            }
.page_top .full_content_wrap .link_circle:hover .arrow:after {
                        transform: scale(1.2, 1.2);
                        transition: 0.5s all;
                    }
.page_top .full_content_wrap .content_box {
            max-width: 1036px;
        }
.page_top .full_content_wrap .courses_box {
            margin-top: 40px;
            position: relative;
        }
.page_top .full_content_wrap .courses_box:before {
                content: url('/doctorsstudy/img/user/top/top_recommended_ttl_img.png');
                left: -60px;
                position: absolute;
                top: 15px;
            }
.page_top .full_content_wrap .courses_box .courses_box_title {
                background: url('/doctorsstudy/img/user/common/recommended_ttl.png') no-repeat right bottom 12px;
                display: inline-block;
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 20px;
                padding-right: 173px;
                position: relative;
            }
.page_top .full_content_wrap .courses_box .courses_content {
                position: relative;
            }
.page_top .full_content_wrap .courses_box .courses_content .scroll {
                    overflow-x: inherit;
                }
.page_top .full_content_wrap .courses_box .courses_content .box {
                    background: #fff;
                    border-radius: 10px;
                    box-shadow: -19px 19px 10px 0 #aeaeae;
                    flex: 1;
                    margin-right: 21px;
                    max-width: 330px;
                }
.page_top .full_content_wrap .courses_box .courses_content .box:last-child {
                        margin-right: 0;
                    }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_thumbnail img {
                                border-radius: 10px 10px 0 0;
                                width: 100%;
                            }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content {
                            font-size: 16px;
                            padding: 15px;
                        }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_title {
                                border-bottom: 1px solid #e5e5e5;
                                font-size: 16px;
                                font-weight: bold;
                                margin-bottom: 20px;
                                padding-bottom: 20px;
                            }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .item {
                                    font-size: 12px;
                                }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .average .text_emphasis02 {
                                        font-weight: bold;
                                    }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .average .count {
                                        color: #9b9b9b;
                                    }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .price {
                                    font-weight: bold;
                                }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .price .num {
                                        font-size: 22px;
                                        margin-left: 11px;
                                    }
.page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .price .yen {
                                        font-size: 18px;
                                    }
.page_top .full_content_wrap .courses_box .courses_content .link_circle_box {
                    margin-top: 50px;
                }
.page_top .full_content_wrap .scroll {
            overflow-x: scroll;
            padding: 10px 15px 10px 0;
            width: calc(100% + ((100vw - 100%) /2) - 9px);
            -ms-overflow-style: none;
            scrollbar-width: none;

        }
.page_top .full_content_wrap .scroll::-webkit-scrollbar {
                display: none;
            }
.page_top .full_content_wrap .scroll::-webkit-scrollbar-track {
                background: #f1f1f1;
            }
.page_top .full_content_wrap .scroll::-webkit-scrollbar-thumb {
                background: #bcbcbc;
            }
.page_top .full_content_wrap .main_visual {
            background: #8ebfc5;
            position: relative;
            height: 55vh;
            min-height: 600px;
            overflow: hidden;
        }
.page_top .full_content_wrap .main_visual .video_area {
                position: absolute;
                top: 0;
                right: 0;
                z-index: 0;
            }
.page_top .full_content_wrap .main_visual .video_area video {
                    height: 77vh;
                }
.page_top .full_content_wrap .main_visual .text_area {
                background: linear-gradient(to right, #11162c, transparent 60%);
                height: 100%;
                position: relative;
            }
.page_top .full_content_wrap .main_visual .text_area .inner {
                    height: 100%;
                }
.page_top .full_content_wrap .main_visual .text_area .inner .text_box {
                        color: #fff;
                        min-height: 293px;
                        padding: 15px 15px 15px 30px;
                    }
.page_top .full_content_wrap .main_visual .text_area .inner .text_box .text_box_title {
                            font-size: 36px;
                            letter-spacing: 2.7px;
                            line-height: 1.5;
                        }
.page_top .full_content_wrap .main_visual .text_area .inner .text_box .text_box_title .text_s {
                                font-size: 26px;
                            }
.page_top .full_content_wrap .main_visual .text_area .inner .text_box .text_box_title .text_l {
                                font-size: 50px;
                            }
.page_top .full_content_wrap .main_visual .text_area .inner .text_box .link_circle_box {
                            margin-top: 20px;
                        }
.page_top .full_content_wrap .main_visual .text_area .inner .text_box .link_circle_box .link_circle {
                                color: #fff;
                            }
.page_top .full_content_wrap .main_visual .news_box {
                background: #fff;
                border-bottom: 1px solid #ebebeb;
                bottom: 0;
                font-size: 16px;
                font-weight: bold;
                max-width: 1100px;
                position: absolute;
                right: 0;
                width: 100%;
            }
.page_top .full_content_wrap .main_visual .news_box .box_content {
                    padding: 16px 35px;
                    margin-right: 120px;
                }
.page_top .full_content_wrap .main_visual .news_box .box_content .slick-track {
                        align-items: center;
                        display: flex;
                    }
.page_top .full_content_wrap .main_visual .news_box .news_arrow {
                    height: 100%;
                    position: absolute;
                    top: 50%;
                    transform: translate(0, -50%);
                    right: 0;
                }
.page_top .full_content_wrap .main_visual .news_box .news_arrow .slide_arrow {
                        cursor: pointer;
                        border-left: 1px solid #ebebeb;
                        height: 100%;
                        padding: 0 25px;
                    }
.page_top .full_content_wrap .main_visual .news_box .news_arrow .slide_arrow.slick-disabled {
                            cursor: default;
                            opacity: 0.6;
                        }
.page_top .full_content_wrap .main_visual .news_box .link {
                    margin-left: 15px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
.page_top .full_content_wrap .main_visual.login {
                background: #fff;
                margin-top: 81px;
                min-height: auto;
                height: auto;
            }
.page_top .full_content_wrap .main_visual.login .news_box {
                    border-top: 1px solid #ebebeb;
                    max-width: 100%;
                    position: unset;
                }
.page_top .full_content_wrap .main_visual.login .news_box .box_content {
                        padding: 16px 35px 16px 3%;
                    }
.page_top .full_content_wrap .induction {
            background: url('/doctorsstudy/img/user/top/top_con1_ttl_bg.png') no-repeat center top 95px;
        }
.page_top .full_content_wrap .induction .head_box {
                border-left: 1px solid #ebebeb;
                border-right: 1px solid #ebebeb;
                padding: 70px 0;
            }
.page_top .full_content_wrap .induction .head_box .induction_title {
                    font-size: 34px;
                    font-weight: bold;
                    letter-spacing: 3.2px;
                }
.page_top .full_content_wrap .induction .head_box .induction_title .bg_color {
                        background: #fff;
                    }
.page_top .full_content_wrap .induction .head_box .induction_title .text_emphasis03 {
                        font-size: 42px;
                        margin: 0 5px;
                    }
.page_top .full_content_wrap .induction .induction_content {
                border-top: 1px solid #ebebeb;
            }
.page_top .full_content_wrap .induction .induction_content .link_circle_box {
                    width: 50%;
                }
.page_top .full_content_wrap .induction .induction_content .link_circle_box:first-child {
                        margin-right: 2px;
                    }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .link_circle {
                        overflow: hidden;
                        padding: 43px 20px 67px;
                        position: relative;
                        z-index: 1;
                    }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .link_circle:after {
                            content: '';
                            height: 100%;
                            left: 0;
                            position: absolute;
                            top: 0;
                            width: 100%;
                            z-index: -1;
                        }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .link_circle .link_label {
                            color: #fff;
                            font-size: 42px;
                            width: 100%;
                        }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .link_circle .position {
                            bottom: 25px;
                            position: absolute;
                            right: 30px;
                        }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .link_circle:hover:after {
                                transform: scale(1.1, 1.1);
                                transition: 0.5s all;
                            }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .specialist_link .link_label {
                            background: url('/doctorsstudy/img/user/top/top_con1_banner01_ttl.png') no-repeat center bottom;
                            padding-bottom: 14px;
                        }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .specialist_link:after {
                            background: url('/doctorsstudy/img/user/top/top_con1_banner01.png') no-repeat right center;
                        }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .resident_link .link_label {
                            background: url('/doctorsstudy/img/user/top/top_con1_banner02_ttl.png') no-repeat center bottom;
                            padding-bottom: 14px;
                        }
.page_top .full_content_wrap .induction .induction_content .link_circle_box .resident_link:after {
                            background: url('/doctorsstudy/img/user/top/top_con1_banner02.png') no-repeat left center;
                        }
.page_top .full_content_wrap .specialist {
            background: url('/doctorsstudy/img/user/top/top_con1_bg.png') no-repeat center center;
            background-size: cover;
            padding: 104px 45px 50px;
        }
.page_top .full_content_wrap .specialist .specialist_title {
                font-size: 34px;
                font-weight: bold;
                letter-spacing: 2.8px;
                margin-bottom: 35px;
            }
.page_top .full_content_wrap .specialist .specialist_title .text_emphasis03 {
                    border-bottom: 2px solid var(--colorAccent03);
                    font-size: 46px;
                }
.page_top .full_content_wrap .specialist .specialist_text {
                font-size: 18px;
            }
.page_top .full_content_wrap .specialist .field_box {
                margin: 35px 0 60px;
            }
.page_top .full_content_wrap .specialist .field_box .field_title {
                    font-size: 22px;
                    font-weight: bold;
                    margin-bottom: 10px;
                }
.page_top .full_content_wrap .specialist .field_box .link_block {
                    background: url('/doctorsstudy/img/user/top/top_con1_tag_ico.png') no-repeat left 22px center var(--colorAccent03);
                    border-radius: 3px;
                    display: inline-block;
                    color: #fff;
                    font-size: 22px;
                    font-weight: bold;
                    letter-spacing: 1px;
                    margin-right: 20px;
                    padding: 0 24px 0 55px;
                }
.page_top .full_content_wrap .specialist .field_box .basic {
                    border-right: 2px solid #e5dfd5;
                    margin-right: 30px;
                    padding-right: 20px;
                }
.page_top .full_content_wrap .resident {
            background: url('/doctorsstudy/img/user/top/top_con2_bg.png') no-repeat center center;
            background-size: cover;
            padding: 102px 45px 45px;
        }
.page_top .full_content_wrap .resident .resident_title {
                font-size: 34px;
                font-weight: bold;
                letter-spacing: 2.8px;
                margin-bottom: 35px;
            }
.page_top .full_content_wrap .resident .resident_title .text_emphasis03 {
                    border-bottom: 2px solid var(--colorAccent03);
                    font-size: 46px;
                }
.page_top .full_content_wrap .resident .resident_text {
                font-size: 18px;
            }
.page_top .full_content_wrap .popular {
            padding: 50px 45px;
        }
.page_top .full_content_wrap .popular .courses_box .courses_box_title {
                    background: url('/doctorsstudy/img/user/common/popularity_ttl.png') no-repeat right bottom 12px;
                    padding-right: 152px;
                }
.page_top .full_content_wrap .popular .courses_box .courses_content .slick-list {
                        margin-top: -100px;
                        padding-top: 100px;
                        height: 600px;
                    }
.page_top .full_content_wrap .popular .courses_box .courses_content .box {
                        border: 1px solid #e4e2df;
                        border-radius: 0;
                        box-shadow: none;
                        flex: 0 0 auto;
                        width: 330px;
                        transition: 0.5s all;
                        background: #fff;
                        z-index: 1;
                    }
.page_top .full_content_wrap .popular .courses_box .courses_content .box .box_thumbnail img {
                                border-radius: 0;
                            }
.page_top .full_content_wrap .popular .courses_box .courses_content .box .show_hover {
                            opacity: 0;
                            height: 0;
                        }
@media screen and (min-width: 768px) {
                            .page_top .full_content_wrap .popular .courses_box .courses_content .box:hover {
                                box-shadow: -19px 19px 10px 0 #aeaeae;
                                transform: translate(10px, 0) scale(1.15);
                                margin-bottom: 10px;
                                opacity: 1;
                                z-index: 2;
                            }

                                .page_top .full_content_wrap .popular .courses_box .courses_content .box:hover .show_hover {
                                    transition: 0.5s all;
                                    display: block;
                                    opacity: 1;
                                    height: inherit;
                                }
                        }
.page_top .full_content_wrap .useful_column {
            padding: 25px 45px 100px;
        }
/*margin-top: -150px;*/
.page_top .full_content_wrap .useful_column .magazine {
                max-width: 150px;
                margin-bottom: 10px;
            }
.page_top .full_content_wrap .useful_column .scroll {
                overflow-x: inherit;
            }
.page_top .full_content_wrap .useful_column .column_box {
                position: relative;
            }
.page_top .full_content_wrap .useful_column .column_box:before {
                    content: url('/doctorsstudy/img/user/top/top_recommended_ttl_img.png');
                    left: -60px;
                    position: absolute;
                    top: 15px;
                    z-index: -1;
                }
.page_top .full_content_wrap .useful_column .column_box .column_box_title {
                    background: url('/doctorsstudy/img/user/common/column_ttl.png') no-repeat right bottom 12px;
                    display: inline-block;
                    font-size: 22px;
                    font-weight: bold;
                    margin-bottom: 20px;
                    padding-right: 104px;
                    position: relative;
                }
.page_top .full_content_wrap .useful_column .column_box .column_content {
                    margin-bottom: 50px;
                }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link {
                        background: #fff;
                        flex: 0 0 auto;
                        margin-right: 30px;
                        width: 250px;
                    }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link:last-child {
                            margin-right: 0;
                        }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link .box_thumbnail img {
                                width: 100%;
                            }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link .box_title {
                            font-size: 16px;
                            font-weight: bold;
                        }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link .info_box {
                            padding: 10px 0 5px;
                            gap: 0 10px;
                        }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link .info_box .date {
                                line-height: 1;

                            }
.page_top .full_content_wrap .useful_column .column_box .column_content .box_link .info_box .tag_new {
                                border-width: 0;
                                font-size: 0.9em;
                            }
.page_top .full_content_wrap .useful_column .column_box .link_circle_box .link_circle .arrow:after {
                                background: var(--colorMain);
                            }
.page_top .full_content_wrap .arrow_box {
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            height: -webkit-fit-content;
            height: -moz-fit-content;
            height: fit-content;
            padding: 20px 10px;
            background-color: #fff;
            border: 1px solid #e4e2df;
            z-index: 99;
            box-shadow: 0 2px 5px 0 rgb(213 217 217 / 50%);
            cursor: pointer;
        }
.page_top .full_content_wrap .arrow_box.prev {
                left: -20px;
            }
.page_top .full_content_wrap .arrow_box.next {
                right: 20px;
            }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

            .page_top .full_content_wrap .inner {
                max-width: 100%;
            }

            .page_top .full_content_wrap .anm_display {
                opacity: 1;
                transform: translate(0, 0);
            }

                .page_top .full_content_wrap .link_circle .label {
                    font-size: 14px;
                    font-weight: normal;
                    padding-right: 35px;
                }


                    .page_top .full_content_wrap .link_circle .label:after {
                        left: 75px;
                        width: 40px;
                    }

                .page_top .full_content_wrap .link_circle .arrow {
                    height: 35px;
                    width: 35px;
                }

                    .page_top .full_content_wrap .link_circle .arrow img {
                        width: 5px
                    }

            .page_top .full_content_wrap .content_box {
                max-width: 100%;
            }

            .page_top .full_content_wrap .courses_box {
                margin-top: 26px;
            }

                .page_top .full_content_wrap .courses_box:before {
                    content: none;
                }

                .page_top .full_content_wrap .courses_box .courses_box_title {
                    background: url('/doctorsstudy/img/user/sp/common/recommended_ttl.png') no-repeat right bottom 8px;
                    background-size: 81px auto;
                    font-size: 15px;
                    margin-bottom: 5px;
                    padding-right: 88px;
                }

                .page_top .full_content_wrap .courses_box .courses_content {
                    position: relative;
                }

                    .page_top .full_content_wrap .courses_box .courses_content .scroll {
                        overflow-x: scroll;
                    }

                    .page_top .full_content_wrap .courses_box .courses_content .slick-list {
                        margin-top: inherit;
                        padding-top: inherit;
                        height: inherit;
                    }

                    .page_top .full_content_wrap .courses_box .courses_content .box {
                        box-shadow: -6px 6px 10px 0 #aeaeae;
                        margin-right: 11px;
                        min-width: 155px;
                    }

                            .page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content {
                                font-size: 13px;
                                padding: 7px;
                            }

                                .page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_title {
                                    border-bottom: none;
                                    font-size: 13px;
                                    margin-bottom: 10px;
                                    padding-bottom: 0;
                                }

                                    .page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .item {
                                        font-size: 12px;
                                    }
                                        .page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .price .num {
                                            font-size: 12px;
                                            margin-left: 5px;
                                        }

                                        .page_top .full_content_wrap .courses_box .courses_content .box.box_link .box_content .box_detail .price .yen {
                                            font-size: 12px;
                                        }

                    .page_top .full_content_wrap .courses_box .courses_content .link_circle_box {
                        margin-top: 10px;
                    }

            .page_top .full_content_wrap .main_visual {
                height: auto;
                min-height: auto;
            }
                /*padding-top: 52px;*/

                .page_top .full_content_wrap .main_visual .video_area {
                    transform: translate(17%, 0);
                }
                    /*transform: translate(17%, 52px);*/

                    .page_top .full_content_wrap .main_visual .video_area video {
                        height: 34vh;
                    }

                .page_top .full_content_wrap .main_visual .text_area {
                    margin-top: 42px;
                }

                        .page_top .full_content_wrap .main_visual .text_area .inner .text_box {
                            min-height: auto;
                            padding: 15px;
                        }

                            .page_top .full_content_wrap .main_visual .text_area .inner .text_box .text_box_title {
                                font-size: 18px;
                            }

                                .page_top .full_content_wrap .main_visual .text_area .inner .text_box .text_box_title .text_s {
                                    font-size: 14px;
                                }

                                .page_top .full_content_wrap .main_visual .text_area .inner .text_box .text_box_title .text_l {
                                    font-size: 25px;
                                }

                            .page_top .full_content_wrap .main_visual .text_area .inner .text_box .text {
                                font-size: 15px;
                            }

                            .page_top .full_content_wrap .main_visual .text_area .inner .text_box .link_circle_box {
                                margin-top: 10px;
                            }

                                .page_top .full_content_wrap .main_visual .text_area .inner .text_box .link_circle_box .link_circle {
                                    color: #fff;
                                }

                .page_top .full_content_wrap .main_visual .news_box {
                    font-size: 12px;
                    position: relative;
                }

                    .page_top .full_content_wrap .main_visual .news_box .box_content {
                        padding: 5px 15px;
                        margin-right: 60px;
                    }

                        .page_top .full_content_wrap .main_visual .news_box .box_content .slick-track {
                            align-items: center;
                            display: flex;
                        }

                        .page_top .full_content_wrap .main_visual .news_box .news_arrow .slide_arrow {
                            padding: 0 11px;
                        }

                        .page_top .full_content_wrap .main_visual .news_box .news_arrow img {
                            width: 8px
                        }

                    .page_top .full_content_wrap .main_visual .news_box .link {
                        margin-left: 15px;
                        white-space: inherit;
                        text-overflow: inherit;

                    }

                .page_top .full_content_wrap .main_visual.login {
                    margin-top: 42px;
                }

                        .page_top .full_content_wrap .main_visual.login .news_box .box_content {
                            padding: 5px 15px 5px 3%;
                        }

            .page_top .full_content_wrap .induction {
                background: url('/doctorsstudy/img/user/sp/top/top_con1_ttl_bg.png') no-repeat center top 28px;
                background-size: 90% auto;
            }

                .page_top .full_content_wrap .induction .head_box {
                    border: none;
                    padding: 14px 0;
                }

                    .page_top .full_content_wrap .induction .head_box .induction_title {
                        font-size: 15px;
                    }

                        .page_top .full_content_wrap .induction .head_box .induction_title .text_emphasis03 {
                            font-size: 21px;
                            letter-spacing: -2px;
                            margin: 0 3px;
                        }

                .page_top .full_content_wrap .induction .induction_content {
                    border-top: none;
                    margin: 0 3%;
                }

                    .page_top .full_content_wrap .induction .induction_content .link_area {
                        flex-direction: column;
                    }

                        .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box {
                            width: 100%;
                        }

                            .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box:first-child {
                                margin: 0 0 10px;
                            }

                            .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .link_circle {
                                padding: 10px;
                                min-height: 70px;
                            }

                                .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .link_circle .link_label {
                                    font-size: 21px;
                                }

                                .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .link_circle .position {
                                    bottom: 6px;
                                    right: 6px;
                                }

                                    .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .link_circle .position .arrow {
                                        height: 25px;
                                        width: 25px;
                                    }

                                .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .specialist_link .link_label {
                                    background: url('/doctorsstudy/img/user/sp/top/top_con1_banner01_ttl.png') no-repeat center bottom;
                                    background-size: 131px auto;
                                    padding-bottom: 8px;
                                }

                                .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .specialist_link:after {
                                    background: url('/doctorsstudy/img/user/sp/top/top_con1_banner01.png') no-repeat right center;
                                    background-size: cover;
                                }

                                .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .resident_link .link_label {
                                    background: url('/doctorsstudy/img/user/sp/top/top_con1_banner02_ttl.png') no-repeat center bottom;
                                    background-size: 82px auto;
                                    padding-bottom: 14px;
                                }

                                .page_top .full_content_wrap .induction .induction_content .link_area .link_circle_box .resident_link:after {
                                    background: url('/doctorsstudy/img/user/sp/top/top_con1_banner02.png') no-repeat left center;
                                    background-size: cover;
                                }

            .page_top .full_content_wrap .specialist {
                background: url('/doctorsstudy/img/user/sp/top/top_con1_bg.png') no-repeat center top #f1f1f1;
                background-size: 100% auto;
                padding: 20px 3%;
                z-index: 0;
                position: relative;
            }


                .page_top .full_content_wrap .specialist::after {
                    content: "";
                    position: absolute;
                    height: 100%;
                    width: 103%;
                    z-index: -1;
                    top: 0;
                    left: -3%;
                    background: rgba(255, 255, 255, 0.5);
                }

                .page_top .full_content_wrap .specialist .specialist_title {
                    font-size: 14px;
                    letter-spacing: 2px;
                    margin-bottom: 16px;
                }

                    .page_top .full_content_wrap .specialist .specialist_title .text_emphasis03 {
                        font-size: 20px;
                    }

                .page_top .full_content_wrap .specialist .specialist_text {
                    text-shadow: 0px 0px 20px #fff;
                    color: #363636;
                    font-size: 15px;

                }

                .page_top .full_content_wrap .specialist .field_box {
                    flex-direction: column;
                    margin: 22px 0;
                }

                    .page_top .full_content_wrap .specialist .field_box .field_title {
                        font-size: 14px;
                        margin-bottom: 8px;
                    }

                    .page_top .full_content_wrap .specialist .field_box .link_block {
                        background: url('/doctorsstudy/img/user/sp/top/top_con1_tag_ico.png') no-repeat left 8px center var(--colorAccent03);
                        background-size: 11px;
                        font-size: 13px;
                        margin-right: 10px;
                        padding: 4px 8px 3px 25px;
                    }

                    .page_top .full_content_wrap .specialist .field_box .basic {
                        border-bottom: 1px solid #e5dfd5;
                        border-right: none;
                        margin: 0 0 10px;
                        padding: 0 0 10px;
                    }

                .page_top .full_content_wrap .specialist .inner {
                    z-index: 2;

                }

            .page_top .full_content_wrap .resident {
                background: url('/doctorsstudy/img/user/sp/top/top_con2_bg.png') no-repeat left center, linear-gradient(to bottom, #fff, #f1f1f1);
                ;
                background-size: 100% auto, 100%;
                padding: 20px 3%;
                z-index: 0;
                position: relative;

            }

                .page_top .full_content_wrap .resident::after {
                    content: "";
                    position: absolute;
                    height: 100%;
                    width: 103%;
                    z-index: -1;
                    top: 0;
                    left: -3%;
                    background: rgba(255, 255, 255, 0.5);
                }

                .page_top .full_content_wrap .resident .resident_title {
                    font-size: 14px;
                    letter-spacing: 2px;
                    margin-bottom: 16px;

                }

                    .page_top .full_content_wrap .resident .resident_title .text_emphasis03 {
                        font-size: 20px;
                    }

                .page_top .full_content_wrap .resident .resident_text {
                    text-shadow: 0px 0px 20px #fff;
                    color: #363636;
                    font-size: 15px;
                }

                .page_top .full_content_wrap .resident .inner {
                    z-index: 2;

                }

            .page_top .full_content_wrap .popular {
                padding: 20px 3%;
            }

                .page_top .full_content_wrap .popular .courses_box {
                    margin-top: 0;
                }

                    .page_top .full_content_wrap .popular .courses_box:before {
                        background: url('/doctorsstudy/img/user/sp/top/top_recommended_ttl_img.png') no-repeat center center;
                        background-size: 100%;
                        content: '';
                        display: inline-block;
                        height: 61px;
                        left: -17px;
                        top: 12px;
                        width: 61px
                    }

                    .page_top .full_content_wrap .popular .courses_box .courses_box_title {
                        background: url('/doctorsstudy/img/user/sp/common/popularity_ttl.png') no-repeat right bottom 8px;
                        background-size: 67px auto;
                        padding-right: 85px;
                    }

                        .page_top .full_content_wrap .popular .courses_box .courses_content .box {
                            flex: 1 1 auto;
                            min-width: 155px;
                            width: auto;
                        }

            .page_top .full_content_wrap .useful_column {
                padding: 20px 3%;
                margin-top: 0;
            }

                .page_top .full_content_wrap .useful_column .magazine {
                    max-width: 80px;
                    margin-bottom: 10px;
                }

                .page_top .full_content_wrap .useful_column .scroll {
                    overflow-x: scroll;
                }

                    .page_top .full_content_wrap .useful_column .column_box:before {
                        background: url('/doctorsstudy/img/user/sp/top/top_recommended_ttl_img.png') no-repeat center center;
                        background-size: 100%;
                        content: '';
                        display: inline-block;
                        height: 61px;
                        left: -17px;
                        top: 12px;
                        width: 61px;
                    }

                    .page_top .full_content_wrap .useful_column .column_box .column_box_title {
                        background: url('/doctorsstudy/img/user/sp/common/column_ttl.png') no-repeat right bottom 8px;
                        background-size: 43px;
                        font-size: 15px;
                        margin-bottom: 5px;
                        padding-right: 46px;
                    }

                    .page_top .full_content_wrap .useful_column .column_box .column_content {
                        margin-bottom: 0;
                    }

                        .page_top .full_content_wrap .useful_column .column_box .column_content .box_link {
                            flex: 1 1 auto;
                            margin-right: 15px;
                            min-width: 125px;
                            width: auto;
                        }

                            .page_top .full_content_wrap .useful_column .column_box .column_content .box_link .box_title {
                                font-size: 12px;
                            }

                            .page_top .full_content_wrap .useful_column .column_box .column_content .box_link .info_box {
                                gap: 0 10px;
                            }

                                .page_top .full_content_wrap .useful_column .column_box .column_content .box_link .info_box .date {
                                    font-size: 12px;
                                }

                                .page_top .full_content_wrap .useful_column .column_box .column_content .box_link .info_box .tag_new {
                                    padding: 2px 3px;
                                }

}

@charset "UTF-8";

/* ----------------------------------------------------
動画詳細(動画閲覧) .page_video
---------------------------------------------------- */
.video_shortcut_popup.ui-dialog {
        border: 2px solid #494949 !important;
        padding: 2% !important;

    }
.video_shortcut_popup.ui-dialog .ui-dialog-titlebar-close {
            display: none;
        }
.video_shortcut_popup.ui-dialog .ui-dialog-titlebar {
            display: none;
        }
.video_shortcut_popup.ui-dialog .shortcut_title {
            margin-bottom: 20px;
            font-weight: bold;
        }
.video_shortcut_popup.ui-dialog .shortcut_command {
            margin-bottom: 10px;
        }
.video_shortcut_popup.ui-dialog .ui-dialog-buttonpane {
            border: none;

        }
.video_shortcut_popup.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
                float: inherit;

            }
.video_shortcut_popup.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button {
                    border: 1px solid #898989;
                    border-radius: 3px;
                    display: block;
                    letter-spacing: 1px;
                    text-align: center;
                    margin: 0 auto;
                    background: #fff;
                    width: 100%;

                }

.review_popup.ui-dialog {
        border: 2px solid #a7823e !important;
        padding: 28px 10px !important;

    }

.review_popup.ui-dialog .ui-dialog-titlebar-close {
            display: none;
        }

.review_popup.ui-dialog .ui-dialog-content {
            padding: 0;
        }

.review_popup.ui-dialog .ui-dialog-titlebar {
            display: none;
        }

.review_popup.ui-dialog .review_box_title {
            font-size: 16px;
            letter-spacing: 0.025em;
            margin-bottom: 15px;
            display: block;
            font-weight: bold;
        }

.review_popup.ui-dialog .review_area {
            width: 100%;
            max-width: 230px;
            margin: 0 auto;
        }

.review_popup.ui-dialog .review_area .num {
                font-size: 27px;
                margin-right: 5px;
            }

.review_popup.ui-dialog .review_area #set_point {
                flex-direction: row-reverse;
            }

.review_popup.ui-dialog .review_area #set_point input[type='radio'] {
                    display: none;
                }

.review_popup.ui-dialog .review_area #set_point input[type='radio']:checked~label {
                        background: url('/doctorsstudy/img/user/common/star_gold_big.png') no-repeat center;
                    }

.review_popup.ui-dialog .review_area #set_point label {
                    background: url('/doctorsstudy/img/user/common/star_white_big.png') no-repeat center;
                    cursor: pointer;
                    margin: 0 5px;
                    padding: 10px;
                    width: 20px;
                    height: 20px;
                }

.review_popup.ui-dialog .review_content {
            display: block;
            margin: 0px auto;
            width: 100%;
            max-width: 230px;
            height: 150px;
            font-size: 14px;
            line-height: 1.7;
            padding: 12px;
            letter-spacing: 0.05em;
            margin-bottom: 15px;
        }

.review_popup.ui-dialog .btn_main {
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
            padding: 18px 0;
            display: block;
            line-height: 1;
        }

.review_popup.ui-dialog .ui-dialog-buttonpane {
            padding: 0;
            border: none;
        }

.review_popup.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
                float: inherit;
                max-width: 200px;
                margin: 0 auto;
            }

.review_popup.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button {
                    width: 100%;
                    margin: 0 auto;
                }

.page_video #main {
        max-width: 750px;
        margin-right: 2%;
        width: 70%;

    }

.page_video #main .video_box {
            margin-bottom: 50px;

        }

.page_video #main .video_box .video_area {
                position: relative;
                width: 100%;
                overflow: hidden;
                padding-bottom: 56.25%;
                margin-bottom: 20px;

            }

.page_video #main .video_box .video_area iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border: none;
                }

.page_video #main .video_box.expired {
                background: #333;
            }

.page_video #main .video_box.expired .video_area {
                    font-size: 40px;
                    text-align: center;
                    color: #fff;
                    position: relative;
                }

.page_video #main .video_box.expired .video_area p {
                        margin: auto;
                        position:absolute;
                        top: 45%;
                        left: 30%;
                    }

.page_video #main .video_box #video_shortcut {
                background: url('/doctorsstudy/img/user/video/movie_question_ico.png') no-repeat left center;
                font-size: 12px;
                padding-left: 20px;
                cursor: pointer;
                display: inline-block;
            }

.page_video #main .item_content {
            font-size: 15px;
        }

.page_video #main .item_content h2 {
                font-size: 26px;
                font-weight: bold;
                margin: 30px 0;
            }

.page_video #main .item_content h3 {
                border-bottom: 4px double var(--colorAccent03);
                color: var(--colorAccent03);
                font-size: 18px;
                font-weight: bold;
                margin: 30px 0;
            }

.page_video #main .item_content h4 {
                font-size: 16px;
                font-weight: bold;
                margin: 30px 0;
            }

.page_video #main .item_content h5, .page_video #main .item_content h6 {
                font-size: 14px;
                font-weight: bold;
                margin: 30px 0;
            }

.page_video #main .item_content p {
                margin-bottom: 15px;
            }

.page_video #main .item_content ul {
                margin: 30px 0;
            }

.page_video #main .item_content ul li {
                    background: url('/doctorsstudy/img/user/column/magazine_li_ico.png') no-repeat left top 6px;
                    padding-left: 20px;
                }

.page_video #main .item_content ol {
                margin: 30px 0;
            }

.page_video #main .item_content ol li {
                    margin-left: 17px;
                    list-style-type: inherit;
                    padding-left: 3px;
                }

.page_video #main .item_content img {
                margin: 15px 0;
            }

.page_video #main .item_content a {
                text-decoration: underline;
            }

.page_video #main .item_content a:hover {
                    text-decoration: none;
                }

.page_video #main .item_content .sp_table_scroll {
                overflow-x: scroll;
                margin-bottom: 15px;
            }

.page_video #main .item_content table {
                border: 1px solid #adadad;
                margin-bottom: 30px;
                max-width: 100%;
            }

.page_video #main .item_content table th {
                    background: #f8f5f0;
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    font-size: 16px;
                    vertical-align: middle;
                }

.page_video #main .item_content table td {
                    border: 1px solid #adadad;
                    padding: 5px 10px;
                    vertical-align: middle;
                }

.page_video #main .download_box {
            margin-bottom: 58px;

        }

.page_video #main .download_box .title_line {
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 30px;
            }

.page_video #main .download_box .download_content {
                margin-left: 20px;

            }

.page_video #main .download_box .download_content .download_content_file {
                    background: url('/doctorsstudy/img/user/video/movie_pdf_ico.png') no-repeat left center;
                    font-size: 16px;
                    font-weight: bold;
                    padding-left: 30px;
                    margin: 0 0 15px 0;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: center;
                    gap: 0 20px;

                }

.page_video #main .download_box .download_content .download_content_file .btn_generic {
                        background: url('/doctorsstudy/img/user/video/movie_download_ico.png') no-repeat left 10px center;
                        padding: 6px 12px 6px 28px;
                        font-size: 12px;
                    }

.page_video #main .download_box .download_content .download_content_remaining {
                    font-size: 14px;
                    margin: 15px 0;

                }

.page_video #main .download_box .download_content .download_content_remaining .link_line {
                        cursor: pointer;
                        font-size: 12px;
                    }

.page_video #main .lesson_box {
            margin-bottom: 75px;
            border: 1px solid #e5e5e5;

        }

.page_video #main .lesson_box .lesson_list .lesson_info_box {
                    position: relative;
                    padding: 20px 30px 20px 63px;
                    letter-spacing: 0.025em;
                    cursor: pointer;

                }

.page_video #main .lesson_box .lesson_list .lesson_info_box .video_title {
                        font-size: 18px;
                        margin-right: 2%;
                    }

.page_video #main .lesson_box .lesson_list .lesson_info_box .lesson_info {
                        font-size: 14px;
                    }

.page_video #main .lesson_box .lesson_list .lesson_info_box::before {
                        content: "";
                        background-color: #cfcfcf;
                        width: 45px;
                        height: 1px;
                        position: absolute;
                        bottom: -1px;
                        left: 5px;
                    }

.page_video #main .lesson_box .lesson_list .lesson_info_box::after {
                        content: "";
                        display: block;
                        width: 8px;
                        height: 8px;
                        border-top: #494949 2px solid;
                        border-right: #494949 2px solid;
                        transform: rotate(-45deg) translateY(-50%);
                        position: absolute;
                        top: 51%;
                        left: 25px;
                        margin: auto;
                    }

.page_video #main .lesson_box .lesson_list .lesson_info_box.close {
                        background: var(--colorMain);
                        border-bottom: 1px solid #e5e5e5;

                    }

.page_video #main .lesson_box .lesson_list .lesson_info_box.close::after {
                            content: "";
                            display: block;
                            width: 8px;
                            height: 8px;
                            border-top: #494949 2px solid;
                            border-right: #494949 2px solid;
                            transform: rotate(135deg) translateY(-50%);
                            position: absolute;
                            top: 39%;
                            left: 20px;
                            margin: auto;
                        }

.page_video #main .lesson_box .lesson_list:last-child .lesson_info_box.close {
                            border-bottom: none;
                        }

.page_video #main .lesson_box .lesson_list .lesson_detail {
                    padding: 40px 30px 11px 21px;
                    display: block;

                }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info {
                        margin-bottom: 30px;

                    }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title {
                            font-size: 16px;
                            letter-spacing: 0.05em;
                            margin-right: 5%;
                            background: url('/doctorsstudy/img/user/video/movie_li_ico.png') no-repeat left center;
                            padding-left: 30px;
                            font-weight: 500;

                        }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title.current_video {
                                border-bottom: none;
                                font-weight: bold;
                            }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title.current_video a {
                                    border-bottom: none;
                                }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title a {
                                border-bottom: 2px solid #afafaf;
                                width: 100%;
                                display: block;
                            }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_info {
                            letter-spacing: 0.025em;

                        }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_info span {
                                font-weight: bold;
                                position: relative;
                            }

.page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_info span::before {
                                    content: "";
                                    display: block;
                                    width: 11px;
                                    height: 11px;
                                    background-color: var(--colorAccent02);
                                    position: absolute;
                                    transform: translateY(-50%);
                                    top: 50%;
                                    left: -20px;
                                    margin: auto;
                                }

.page_video #main .banner_box {
            margin-bottom: 50px;
            text-align: center;
        }

.page_video #main .banner_box img {
                max-width: 895px;
            }

.page_video #main .postscript_box {
            margin-bottom: 58px;

        }

.page_video #main .postscript_box .title_line {
                font-size: 22px;
                font-weight: bold;
                margin-bottom: 30px;
                position: relative;
            }

.page_video #main .postscript_box .title_line::after {
                    content: "";
                    display: block;
                    width: 8px;
                    height: 8px;
                    border-top: #494949 2px solid;
                    border-right: #494949 2px solid;
                    transform: rotate(-45deg) translateY(-50%);
                    position: absolute;
                    top: 40%;
                    right: 15px;
                    margin: auto;
                }

.page_video #main .postscript_box .title_line.close::after {
                        content: "";
                        display: block;
                        width: 8px;
                        height: 8px;
                        border-top: #494949 2px solid;
                        border-right: #494949 2px solid;
                        transform: rotate(135deg) translateY(-50%);
                        position: absolute;
                        top: 20%;
                        right: 20px;
                        margin: auto;
                    }

.page_video #main .postscript_box .postscript_box_file {
                background: url('/doctorsstudy/img/user/video/movie_pdf_ico.png') no-repeat left center;
                font-size: 14px;
                padding-left: 30px;
                margin: 0 0 25px 20px;
                font-size: 16px;
                font-weight: bold;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 0 20px;

            }

.page_video #main .postscript_box .postscript_box_file .btn_generic {
                    background: url('/doctorsstudy/img/user/video/movie_download_ico.png') no-repeat left 10px center;
                    padding: 6px 12px 6px 28px;
                    font-size: 12px;
                }

.page_video #main .postscript_box .postscript_box_text {
                line-height: 2.25;
                letter-spacing: 0.05em;
                font-size: 16px;
            }

.page_video #side {
        max-width: 300px;
        min-width: 275px;
        width: 28%;

    }

.page_video #side .information_box {
            padding: 31px 24px 11px;
            border: 1px solid #adadad;
            margin-bottom: 31px;

        }

.page_video #side .information_box #video_title {
                font-size: 20px;
                font-weight: bold;
                margin-bottom: 15px;
                letter-spacing: 0.05em;
            }

.page_video #side .information_box .tag_list {
                margin-bottom: 5px;

            }

.page_video #side .information_box .tag_list .tag_category {
                    font-size: 12px;
                    background: #90897c;
                    color: #fff;
                    display: block;
                    line-height: 1;
                    margin-bottom: 20px;
                    padding: 6px 13px;
                    border-radius: 3px;
                    text-align: center;
                    margin: 0 10px 10px 0;
                    letter-spacing: 0.01em;
                }

.page_video #side .information_box .box {
                border-top: 1px solid #e5e5e5;
                padding: 25px 0 20px;

            }

.page_video #side .information_box .box .information_box_title {
                    font-size: 16px;
                    width: 40%;
                    letter-spacing: 0.05em;

                }

.page_video #side .information_box .box .information_box_title +.text_emphasis01 {
                        font-weight: bold;
                    }

.page_video #side .information_box .box #viewing_deadline .information_box_title {
                        font-weight: bold;
                    }

.page_video #side .information_box .box p {
                    width: 60%;
                    letter-spacing: 0.05em;
                }

.page_video #side .mypage_link .link_block {
                border-radius: 3px;
                display: inline-block;
                font-size: 16px;
                letter-spacing: 1px;
                margin: 0 0 20px;
                padding: 24px;
                display: block;
                background: url('/doctorsstudy/img/user/top/top_con1_tag_ico.png') no-repeat right 22px center #90897c;
                color: #fff;
                width: 100%;
                line-height: 1;
            }

.page_video #side .review_box {
            padding: 28px 18px;
            border: 2px solid #a7823e;
            margin-bottom: 38px;

        }

.page_video #side .review_box .review_box_title {
                font-size: 17px;
                letter-spacing: 0.025em;
                margin-bottom: 15px;
                display: block;
                font-weight: bold;
            }

.page_video #side .review_box #after_review {
                padding-top: 10px;
            }

.page_video #side .review_box .review_area {
                width: 100%;
                max-width: 230px;
                margin: 0 auto;

            }

.page_video #side .review_box .review_area .average_big {
                    width: 170px;
                    margin: 0 auto 27px;

                }

.page_video #side .review_box .review_area .average_big:after {
                        top: inherit;
                        right: unset;
                        left: 70px;
                    }

.page_video #side .review_box .review_area .average_big .num {
                        font-size: 36px;
                        line-height: 1;
                        margin-right: 0;
                        width: 70px;
                    }

.page_video #side .review_box .review_area .review_detail {
                    margin-bottom: 38px;
                }

.page_video #side .review_box .review_area .button_area {
                    text-align: center;

                }

.page_video #side .review_box .review_area .button_area .btn_return {
                        padding: 18px 30px;
                        line-height: 1;
                    }

.page_video #side .review_box .review_area .button_area .btn_edit {
                        padding: 18px 30px;
                        line-height: 1;
                        border-radius: 3px;
                    }

.page_video #side .review_box .news_link_area {
                display: block;
                margin-top: 20px;
                text-align: center;
            }

.page_video #side .review_box #before_review {
                cursor: pointer;

            }

.page_video #side .review_box #before_review .review_box_title {
                    margin-bottom: 0;
                }

.page_video #side .review_box #before_review .average_big {
                    margin-bottom: 0;
                }

.page_video #side .review_box #before_review .average_big .num {
                        margin-right: 100px;
                    }

.page_video #side .watch_box .watch_box_title {
                font-size: 17px;
                letter-spacing: 0.025em;
                margin-bottom: 15px;
            }

.page_video #side .watch_box .box {
                padding: 16px 0;
                border-top: 1px solid #e5e5e5;

            }

.page_video #side .watch_box .box .box_thumbnail {
                    max-width: 105px;
                    margin-right: 18px;
                }

.page_video #side .watch_box .box .box_content {
                    font-size: 16px;
                    line-height: 1.5;
                    font-weight: bold;

                }

.page_video #side .watch_box .box .box_content .box_category {
                        font-size: 14px;
                        margin-bottom: 5px;
                    }

.page_video #side .watch_box .box .box_content .box_title {
                        font-size: 20px;
                        margin-bottom: 5px;
                    }

.page_video #side .watch_box .box .box_content .box_last_seen {
                        font-size: 16px;
                    }

.page_video #side .watch_box:last-child {
                border-bottom: 1px solid #e5e5e5;
            }

@media (min-width: 1101px) {

        .page_video .inner {
            max-width: 1800px;
        }

        .page_video #main {
            max-width: 1500px;
            width: 83%;
        }

}

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
            .review_popup.ui-dialog .review_area {
                max-width: inherit;

            }

            .review_popup.ui-dialog .review_content {
                max-width: inherit;
                transform: scale(0.84);
                font-size: 16px;
            }

        .page_video .inner {
            display: block;
        }

        .page_video #main {
            max-width: inherit;
            width: 100%;
            margin-right: inherit;

        }

            .page_video #main .video_box {
                margin-bottom: 10px;

            }

                .page_video #main .video_box .video_area {
                    margin-bottom: 5px;
                }

                .page_video #main .video_box #video_shortcut {
                    font-size: 11px;
                    background: url('/doctorsstudy/img/user/sp/video/movie_question_ico_sp.png') no-repeat left center/13px;
                    padding-left: 18px;
                }
                .page_video #main .video_box.expired {
                    background: #333;
                }
                    .page_video #main .video_box.expired .video_area {
                        font-size: 15px;
                        text-align: center;
                        color: #fff;
                        position: relative;
                    }
                        .page_video #main .video_box.expired .video_area p {
                            margin: auto;
                            position:absolute;
                            top: 45%;
                            left: 20%;
                        }

            .page_video #main .download_box {
                margin-bottom: 20px;

            }

                .page_video #main .download_box .title_line {
                    font-size: 16px;
                    margin-bottom: 10px;
                    padding-left: 6px;
                }

                .page_video #main .download_box .download_content {
                    margin-left: 0;

                }

                    .page_video #main .download_box .download_content .download_content_file {
                        font-size: 14px;
                        margin: 0 0 10px 0;
                        background: url('/doctorsstudy/img/user/sp/video/movie_pdf_ico_sp.png') no-repeat left center/14px;
                        padding-left: 23px;

                    }

                        .page_video #main .download_box .download_content .download_content_file .btn_generic {
                            background: url('/doctorsstudy/img/user/sp/video/movie_download_ico_sp.png') no-repeat left 8px center/10px;
                            padding: 5px 7px 5px 25px;
                            font-size: 11px;
                            line-height: 1;
                        }

                    .page_video #main .download_box .download_content .download_content_remaining {
                        font-size: 12px;
                        margin: 15px 0 0;

                    }

            .page_video #main .lesson_box {
                margin-bottom: 25px;

            }

                    .page_video #main .lesson_box .lesson_list .lesson_info_box {
                        padding: 20px 12px 20px 56px;

                    }

                        .page_video #main .lesson_box .lesson_list .lesson_info_box .video_title {
                            font-size: 15px;
                            margin-right: 2%;
                        }

                        .page_video #main .lesson_box .lesson_list .lesson_info_box .lesson_info {
                            font-size: 11px;
                        }

                        .page_video #main .lesson_box .lesson_list .lesson_info_box::before {
                            width: 35px;
                        }

                        .page_video #main .lesson_box .lesson_list .lesson_info_box::after {
                            width: 6px;
                            height: 6px;
                            border-top: #494949 1px solid;
                            border-right: #494949 1px solid;
                            top: 49%;
                            left: 20px;
                        }
                            .page_video #main .lesson_box .lesson_list .lesson_info_box.close::after {
                                width: 6px;
                                height: 6px;
                                border-top: #494949 1px solid;
                                border-right: #494949 1px solid;
                                top: 40%;
                                left: 16px;
                            }

                    .page_video #main .lesson_box .lesson_list .lesson_detail {
                        padding: 15px 13px 10px 15px;

                    }

                        .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info {
                            margin-bottom: 10px;
                            padding-left: 0;
                            display: block;

                        }

                            .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title {
                                margin-right: 0%;
                                font-size: 13px;
                                background: url('/doctorsstudy/img/user/sp/video/movie_li_ico_sp.png') no-repeat left center/12px;
                                padding-left: 18px;
                                margin-bottom: 5px;

                            }


                                .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title.current_video {
                                    font-weight: bold;
                                }

                                .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_detail_title a {
                                    border-bottom: 1px solid #afafaf;
                                }

                            .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_info {
                                font-size: 10px;
                                text-align: right;

                            }

                                .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_info span {
                                    font-weight: bold;
                                    position: relative;
                                }

                                    .page_video #main .lesson_box .lesson_list .lesson_detail .lesson_detail_info .lesson_info span::before {
                                        width: 8px;
                                        height: 8px;
                                        top: 58%;
                                        left: -12px;
                                    }

            .page_video #main .banner_box {
                margin: 20px 0;
                text-align: center;
            }
                .page_video #main .banner_box img {
                    max-width: inherit;
                }
            .page_video #main .postscript_box {
                margin-bottom: 28px;

            }

                .page_video #main .postscript_box .title_line {
                    font-size: 16px;
                    margin-bottom: 10px;
                    padding-left: 6px;
                }

                    .page_video #main .postscript_box .title_line::after {
                        width: 6px;
                        height: 6px;
                        border-top: #494949 1px solid;
                        border-right: #494949 1px solid;
                        top: 40%;
                        right: 16px;
                    }
                        .page_video #main .postscript_box .title_line.close::after {
                            width: 6px;
                            height: 6px;
                            border-top: #494949 1px solid;
                            border-right: #494949 1px solid;
                            top: 10%;
                            right: 20px;
                        }

                .page_video #main .postscript_box .postscript_box_file {
                    font-size: 14px;
                    margin: 0 0 10px 0;
                    background: url('/doctorsstudy/img/user/sp/video/movie_pdf_ico_sp.png') no-repeat left center/14px;
                    padding-left: 23px;

                }

                    .page_video #main .postscript_box .postscript_box_file .btn_generic {
                        background: url('/doctorsstudy/img/user/sp/video/movie_download_ico_sp.png') no-repeat left 8px center/10px;
                        padding: 5px 7px 5px 25px;
                        font-size: 11px;
                        line-height: 1;
                    }

                .page_video #main .postscript_box .postscript_box_text {
                    font-size: 15px;
                    line-height: 1.6;
                }

        .page_video #video_title {
            font-size: 18px;
            margin-bottom: 10px;
        }
            .page_video .tag_list .tag_category {
                font-size: 11px;
                margin-bottom: 10px;
                padding: 4px 6px;
                margin-right: 5px;
            }

        .page_video .information_box_title {
            font-size: 12px;
            width: 25%;
        }

        .page_video #viewing_deadline {
            margin-bottom: 20px;

        }

            .page_video #viewing_deadline .text_emphasis01 {
                font-size: 14px;
                font-weight: bold;
            }

        .page_video #instructor_name {
            padding: 5px 0;
            border-top: 1px solid #e5e5e5;
        }

        .page_video #lesson_hours {
            padding: 5px 0;
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
            margin-bottom: 25px;
        }

        .page_video #side {
            max-width: inherit;
            width: 100%;
            margin-bottom: 30px;
            min-width: inherit;

        }

                .page_video #side .information_box .box {
                    border-top: 1px solid #e5e5e5;
                    padding: 25px 0 20px;

                }

                    .page_video #side .information_box .box .information_box_title {
                        font-size: 16px;
                        width: 40%;
                        letter-spacing: 0.05em;

                    }

                        .page_video #side .information_box .box .information_box_title +.text_emphasis01 {
                            font-weight: bold;
                        }

                    .page_video #side .information_box .box p {
                        width: 60%;
                        letter-spacing: 0.05em;
                    }
                .page_video #side .mypage_link .link_block {
                    padding: 20px 24px;
                }

            .page_video #side .review_box {
                padding: 15px 20px;
                border: 2.5px solid #a7823e;
                margin-bottom: 25px;

            }

                .page_video #side .review_box .review_box_title {
                    margin-bottom: 10px;
                }
                        .page_video #side .review_box #after_review .average_big .star {
                            background-size: 20px 20px;
                            height: 20px;
                        }

                        .page_video #side .review_box #after_review .average_big::after {
                            background-size: 20px 20px;
                            width: 100px;
                        }

                    .page_video #side .review_box .review_area .average_big {
                        margin-bottom: 15px;
                    }

                        .page_video #side .review_box .review_area .average_big .num {
                            font-size: 35px;
                        }

                    .page_video #side .review_box .review_area .review_detail {
                        margin-bottom: 15px;
                    }

                    .page_video #side .review_box .review_area .button_area {
                        text-align: center;

                    }

                        .page_video #side .review_box .review_area .button_area .btn_return {
                            padding: 18px 30px;
                            line-height: 1;
                        }

                        .page_video #side .review_box .review_area .button_area .btn_edit {
                            padding: 18px 30px;
                            line-height: 1;
                            border-radius: 3px;
                        }

                .page_video #side .review_box .news_link_area {
                    margin-top: 10px;
                }

                    .page_video #side .review_box #before_review .review_box_title {
                        margin-bottom: 0;
                    }

                    .page_video #side .review_box #before_review .average_big {
                        margin-bottom: 0;
                    }

                        .page_video #side .review_box #before_review .average_big:after {
                            background-size: 20px 20px;
                            top: inherit;
                            right: unset;
                            left: 70px;
                            width: 100px;
                        }

                .page_video #side .watch_box .watch_box_title {
                    font-size: 16px;
                    margin-bottom: 10px;
                }

                    .page_video #side .watch_box .box .box_thumbnail {
                        max-width: 105px;
                        margin-right: 18px;
                    }

                    .page_video #side .watch_box .box .box_content {
                        font-size: 16px;
                        line-height: 1.5;
                        font-weight: bold;

                    }

                        .page_video #side .watch_box .box .box_content .box_category {
                            font-size: 12px;
                        }

                        .page_video #side .watch_box .box .box_content .box_title {
                            font-size: 16px;
                        }

                        .page_video #side .watch_box .box .box_content .box_last_seen {
                            font-size: 11px;
                        }

                .page_video #side .watch_box:last-child {
                    border-bottom: 1px solid #e5e5e5;
                }
}

@charset "UTF-8";

/* ----------------------------------------------------
アカウント移行 .page_ouen
---------------------------------------------------- */
.page_ouen .title_txt {
        background: url('/doctorsstudy/img/user/ouen/account_migration.png') no-repeat right bottom 20px;
        padding-right: 250px;
    }
.page_ouen .content_box {
        padding: 9% 6% 10%;

    }
.page_ouen .content_box .alert_danger {
            max-width: 440px;
            width: 100%;
            margin: -30px auto 30px;
        }
.page_ouen .content_box form {
            width: 100%;
            margin: 0 auto;

        }
.page_ouen .content_box form .form_title {
                display: block;
                font-size: 16px;
                letter-spacing: 0.025em;
                font-weight: bold;
                margin: 0 auto 25px;
                padding-bottom: 25px;
                max-width: 600px;

            }
.page_ouen .content_box form .ouen_input_box {
                margin-bottom: 40px;
            }
.page_ouen .content_box form .arrow {
                display: block;
                margin-bottom: 40px;
            }
.page_ouen .content_box form .arrow img {
                    transform: rotate(90deg);
                }
.page_ouen .content_box form .userid_box {
                max-width: 440px;
                margin: 0 auto 30px;
            }
.page_ouen .content_box form .password_box {
                max-width: 440px;
                margin: 0 auto 30px;
            }
.page_ouen .content_box form .input_label {
                display: block;
                font-size: 14px;
                letter-spacing: 0.025em;
                font-weight: bold;
                margin-bottom: 5px;

            }
.page_ouen .content_box form .docstu_input_box .userid_box input {
                        margin-bottom: 5px;
                    }
.page_ouen .content_box form input {
                width: 100%;
            }
.page_ouen .content_box form .button_area {
                margin: 36px auto 21px;
                max-width: 440px;
            }
.page_ouen .content_box form .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_ouen .content {
            margin-top: 5px;
        }


        .page_ouen .title_txt {
            background: url('/doctorsstudy/img/user/ouen/account_migration.png')no-repeat right bottom 10px;
            background-size: 110px;
            padding-right: 116px;
        }

        .page_ouen .content_box {
            padding: 15px 16px 24px;

        }

            .page_ouen .content_box .alert_danger {
                max-width: inherit;
                margin: 0 auto 15px;
            }

                .page_ouen .content_box form .form_title {
                    font-size: 14px;
                    margin: 0 auto 15px;
                    padding-bottom: 15px;
                    max-width: inherit;

                }

                .page_ouen .content_box form .ouen_input_box {
                    margin-bottom: 20px;
                }

                .page_ouen .content_box form .arrow {
                    margin-bottom: 20px;

                }

                    .page_ouen .content_box form .arrow img {
                        width: 58x;
                    }

                .page_ouen .content_box form .userid_box {
                    margin-bottom: 15px;
                }

                    .page_ouen .content_box form .userid_box input {
                        padding: 6px 18px;
                    }

                .page_ouen .content_box form .password_box {
                    margin-bottom: 15px;
                }

                    .page_ouen .content_box form .password_box input {
                        padding: 6px 18px;
                    }

                .page_ouen .content_box form .input_label {
                    font-size: 11px;
                }
                        .page_ouen .content_box form .docstu_input_box .userid_box .notes {
                            font-size: 12px;
                            text-align: left;
                        }

                .page_ouen .content_box form .button_area {
                    margin: 0 0 20px;
                }

                    .page_ouen .content_box form .button_area .btn_main {
                        font-size: 16px;
                        font-weight: normal;
                    }
}


/* ----------------------------------------------------
アカウント移行確認 .page_ouen_confirm
---------------------------------------------------- */
.page_ouen_confirm .title_txt {
        background: url('/doctorsstudy/img/user/ouen/account_migration.png') no-repeat right bottom 20px;
        padding-right: 240px;
    }
.page_ouen_confirm .content_box {
        padding: 10% 6%;

    }
.page_ouen_confirm .content_box .description_box {
            margin-bottom: 30px;
        }
.page_ouen_confirm .content_box .description_box .description_box_midashi {
                font-size: 16px;
                letter-spacing: 0.025em;
                margin-bottom: 15px;
            }
.page_ouen_confirm .content_box .description_box .description_box_content {
                font-size: 14px;
                letter-spacing: 0.025em;
            }
.page_ouen_confirm .content_box .alert_danger {
            max-width: 440px;
            width: 100%;
            margin: -30px auto 30px;
        }
.page_ouen_confirm .content_box form {
            max-width: 440px;
            width: 100%;
            margin: 0 auto;

        }
.page_ouen_confirm .content_box form .email_box {
                margin-bottom: 21px;
            }
.page_ouen_confirm .content_box form .authentication_code_box {
                margin-bottom: 21px;
            }
.page_ouen_confirm .content_box form label {
                display: block;
                font-size: 16px;
                letter-spacing: 0.025em;
                font-weight: bold;
            }
.page_ouen_confirm .content_box form input {
                width: 100%;
            }
.page_ouen_confirm .content_box form .button_area {
                margin: 36px auto 21px;
            }
.page_ouen_confirm .content_box form .button_area .btn_main {
                    padding: 11px;
                    width: 100%;
                }
.page_ouen_confirm .alert_danger {
        font-size: 16px;

    }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {

        .page_ouen_confirm .content {
            margin-top: 5px;
        }

        .page_ouen_confirm .title_txt {
            background: url('/doctorsstudy/img/user/ouen/account_migration.png') no-repeat right bottom 10px;
            background-size: 110px;
            padding-right: 116px;
        }



        .page_ouen_confirm .content_box {
            padding: 15px 16px 24px;


        }

            .page_ouen_confirm .content_box .alert_danger {
                max-width: inherit;
                margin: 0 auto 15px;
            }

            .page_ouen_confirm .content_box .description_box {
                margin-bottom: 20px;

            }

                .page_ouen_confirm .content_box .description_box .description_box_midashi {
                    text-align: left;
                    font-size: 14px;
                }

                .page_ouen_confirm .content_box .description_box .description_box_content {
                    font-size: 12px;
                }



            .page_ouen_confirm .content_box form {
                max-width: inherit;

            }

                .page_ouen_confirm .content_box form .email_box {
                    margin-bottom: 20px;
                }

                    .page_ouen_confirm .content_box form .email_box input {
                        padding: 6px 18px;
                    }

                .page_ouen_confirm .content_box form .authentication_code_box {
                    margin-bottom: 20px;
                }

                    .page_ouen_confirm .content_box form .authentication_code_box input {
                        padding: 6px 18px;
                    }

                .page_ouen_confirm .content_box form label {
                    font-size: 11px;

                }

                .page_ouen_confirm .content_box form input {
                    width: 100%;

                }

                .page_ouen_confirm .content_box form .button_area {
                    margin: 0 0 20px;
                }

                    .page_ouen_confirm .content_box form .button_area .btn_main {
                        font-size: 16px;
                    }

        .page_ouen_confirm .alert_danger {
            font-size: 14px;
        }
}


/* ----------------------------------------------------
 アカウント移行完了 .page_ouen_complete
---------------------------------------------------- */
.page_ouen_complete .title_txt {
        background: url('/doctorsstudy/img/user/signup/completed_ttl.png') no-repeat right bottom 20px;
        padding-right: 156px;
    }
.page_ouen_complete .content_box {
        padding: 6%;

    }
.page_ouen_complete .content_box p {
            font-size: 16px;
            letter-spacing: 0.05em;
        }
.page_ouen_complete .content_box .content_title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: 0.025em;
        }
.page_ouen_complete .content_box .button_area {
            margin: 46px 0 20px;

        }
.page_ouen_complete .content_box .button_area .btn_main {
                padding: 11px;
                width: 40%;
            }

/* SPサイト用記述 */
@media screen and (max-width: 767px) {
    .content {
        margin-top: 17px;
    }

        .page_ouen_complete .title_txt {
            background: url('/doctorsstudy/img/user/sp/signup/completed_ttl_sp.png') no-repeat right bottom 10px;
            background-size: 80px;
            padding-right: 85px;
        }

        .page_ouen_complete .content_box {
            padding: 12px 18px;

        }

            .page_ouen_complete .content_box p {
                font-size: 11px;
                text-align: left;
            }

            .page_ouen_complete .content_box .button_area {
                margin: 20px 0 0;

            }

                .page_ouen_complete .content_box .button_area .btn_main {
                    font-size: 16px;
                    width: 100%;
                }

}

/* リセット */

/* 共通 */

/* プラグイン*/

/* 各ページ */

