html {}

body {
    background: #f3e7df;
    background-image: url(../images/bk_bottom.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 500px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #272828;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

@media screen and (min-width:480px) {
    body {
        min-width: 1100px;
    }
}

@media screen and (max-width:480px) {
    body {
        background-size: 190px;
        background-position: left bottom;
    }
}

a {
    text-decoration: none;
    color: #FFF;
}

a:hover {
    opacity: 0.7;
}

img {
    padding: 0;
    margin: 0;
}

span.bold {
    font-weight: bold;
}

span.right {
    color: #f34e0d;
}

span.tab {
    background-color: #e3e0e0;
    padding: 6px;
    border-radius: 5px;
    line-height: 2;
}

h1 {
    color: #5a0a0f;
    font-size: 24px;
    text-align: center;
    margin: 50px 0 10px 0;
    padding: 0;
}

@media screen and (max-width:480px) {
    h1 {
        font-size: 20px;
        margin: 30px 0 10px 0;
    }
}

p {
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
}

pre {
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
/**************************************************************/

/************************グローバルメニュー***********************/

.top-menu {
    background-image: url(../images/bk_flower.png);
    background-size: contain;
    background-color: #5a0a0f;
    /*background-color: rgba(0,0,0,1.0);*/
    width: 100%;
    padding: 0px;
    margin: 0;
    /*
      position: fixed;
      z-index: 100;
      */
    top: 0;
}

.top-menu-container {
    width: 1100px;
    height: 80px;
    padding: 14px 0;
    margin: 0 auto;
    vertical-align: center;
}

@media screen and (max-width:480px) {
    .top-menu-container {
        width: 100%;
    }
}

.menu-logo {
    text-align: center;
    vertical-align: center;
}

.menu-logo img {
    width: 180px;
}

hr.menu-line {
    border: 0.5px solid #b6b6b6;
}

.top-menu-list-container {
    width: 100%;
    padding: 14px 0;
    margin: 0 auto;
    vertical-align: center;
    background-color: #131313;
}

@media screen and (max-width:480px) {
    .top-menu-list-container {
        display: none;
    }
}

ul.menu-list {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.menu-list li {
    display: inline-block;
    padding: 0 20px;
    text-align: center;
    vertical-align: middle;
}

/**************************************************************/

/************************ハンバーガーメニュー***********************/

#nav-drawer {
    position: relative;
    left: 10px;
    top: 24px;
    /* display: none; */
}

/* @media screen and (min-width:480px) {
  #nav-drawer {
    opacity: 1;
  }
} */

/*チェックボックス等は非表示に*/

.nav-unshown {
    display: none;
}

/*アイコンのスペース*/

#nav-open {
    display: inline-block;
    width: 30px;
    height: 42px;
    vertical-align: middle;
}

@media screen and (min-width:480px) {
    #nav-open {
        display: none;
    }
}

/*ハンバーガーの形をCSSで表現*/

#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 30px;
    /*長さ*/
    border-radius: 3px;
    background: #FFF;
    display: block;
    content: '';
    cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒箇所*/

#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*メニューの中身*/

#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 80%;
    max-width: 330px;
    /*最大幅（お好みで調整を）*/
    height: 100%;
    background: #5a0a0f;
    transition: .3s ease-in-out;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
}

/*チェックがついたら表示させる*/

#nav-input:checked~#nav-close {
    display: block;
    opacity: .5;
}

#nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

.header-logo-menu {
    display: flex;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: -ms-flex;
    flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
}

/*ロゴやサイトタイトルをセンタリング*/

.logo-area {
    text-align: center;
    margin: auto;
}

.logo-area img {
    width: 180px;
    margin: 20px 0 10px 0;
}

@media screen and (max-width:480px) {
    .logo-area img {
        width: 100px;
        margin: 10px 0 6px 0;
        margin-left: -20px;
    }
}

/*SPメニュー*/

.sp-menu-title {
    background-color: #000;
    color: #FFF;
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
}

ul.sp-menu-list {
    list-style: none;
    padding: 20px 0 0 30px;
    margin: 0;
}

ul.sp-menu-list li {
    color: #000;
    padding: 12px 0;
}

/**************************************************************/

/************************キービジュアル***********************/

.kv img {
    width: 100%;
    vertical-align: bottom;
}

/**************************************************************/

/************************メイン***********************/

#main_container {
    margin: 0 auto;
    width: 800px;
}

@media screen and (max-width:480px) {
    #main_container {
        width: 100%;
    }
}

.txt_container {
    background-color: #FFF;
    margin: 0 auto;
    padding: 30px;
    line-height:2;
}

/**************************************************************/

/************************会員登録・ログイン***********************/

ul.btn {
    text-align: center;
    margin: 20px 0;
    padding: 0;
}

ul.btn li {
    display: inline-block;
    margin: 0 6px;
}

@media screen and (max-width:480px) {
    ul.btn li {
        display: normal;
        margin: 6px 0;
    }
}

ul.btn li a {
    font-size: 20px;
    display: block;
    text-align: center;
    width: 200px;
    padding: 10px 0;
    background-color: #5a0a0f;
    border-radius: 6px;
    background-image: url(../images/bk_flower.png);
    background-size: contain;
}

/**************************************************************/

/************************新着情報*******************************/

span.day {
    font-size: 14px;
    color: #6f6f6f;
}

/**************************************************************/

/************************フッター部分*******************************/

@media screen and (max-width:480px) {
    .foot-menu {
        display: none;
    }
}

footer {
    margin-top: 90px;
    padding: 30px;
    color: #FFF;
    text-align: center;
    background-color: #5a0a0f;
}

/************************input error*******************************/

ul.parsley-errors-list {
    font-size: 13px;
    list-style: none;
    color: #E74C3C;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

input.parsley-error,
textarea.parsley-error,
select.parsley-error {
    background: #FAEDEC;
    border: 1px solid #E85445;
}

/************************form*******************************/

.form-group {
    box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    min-height: 1px;
    float: left;
    padding-right: 10px;
    padding-left: 10px;
}

.form-group-code {
    box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    min-height: 1px;
    float: left;
    padding-right: 10px;
    padding-left: 10px;
    display: flex;
}

.code-div {
    width: 100%;
}

.form-control {
    box-sizing: border-box;
    border-radius: 0;
    display: block;
    width: 100%;
    /*   height: calc(1.5em + .75rem + 2px);*/
    min-height: 36px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea.form-control {
    height: auto;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
    outline: none;
}

.has-feedback-left {
    padding-left: 45px;
}

.has-feedback-right {
    padding-right: 45px;
}

.form-control-feedback {
    position: absolute;
    margin-top: 8px;
    height: 23px;
    color: #bbb;
    line-height: 24px !important;
    font-size: 15px !important;
    top: 0px;
    width: 34px;
    text-align: center;
}

.form-control-feedback {
    border-right: 1px solid #ccc;
}

.left {
    float: left;
    left: 13px;
}

.input-right {
    float: right;
    font-size: 14px !important;
    color: #000;
    right: 13px;
    border-right: 0 !important;
}

.edit-input-right {
    top: 20px;
}

/************************form*******************************/

.btn-success {
    font-size: 20px;
    display: block;
    text-align: center;
    padding: 10px 15px;
    margin: 20px auto;
    border-radius: 6px;
    color: #fff;
    background-color: #5a0a0f;
    background-image: url(../images/bk_flower.png);
    background-size: contain;
    outline: none;
}

div.submit input:hover {
    opacity: 0.7;
}

.btn-success-small {
    font-size: 20px;
    display: block;
    text-align: center;
    padding: 5px 10px;
    margin: 20px auto;
    border-radius: 6px;
    color: #fff;
    background-color: #5a0a0f;
    background-image: url(../images/bk_flower.png);
    background-size: contain;
}

.btn-success-code {
    font-size: 20px;
    display: block;
    text-align: center;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 6px;
    color: #fff;
    background-color: #5a0a0f;
    background-image: url(../images/bk_flower.png);
    background-size: contain;
}

/************************身份证image *******************************/

.file_img {
    box-sizing: border-box;
    padding: 0 10px;
    display: block;
    max-width: 600px;
    max-height: 300px;
}

@media screen and (max-width:480px) {
    .file_img {
        max-width: 300px;
        max-height: 150px;
    }
}

/************************上传身份证按钮 *******************************/

.file_button {
    font-size: 12px;
    width: 100px;
    height: 40px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    background-color: #5a0a0f;
    background-image: url(../images/bk_flower.png);
    background-size: contain;
    outline: none;
}

.file_button:hover {
    opacity: 0.7;
}

.file_ok_button {
    font-size: 12px;
    width: 100px;
    height: 40px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    background-color: #ccc;
    background-size: contain;
    outline: none;
}

.no_img {
    font-size: 12px;
    width: 100px;
    height: 30px;
    margin-left: 100px;
    text-align: center;
    border-radius: 6px;
    color: #fff;
    background-color: #00c;
    background-size: contain;
    display: block;
}

/**キャストTOP begin**/

.cast-vedio-div {
    height: 520px;
    text-align: center;
    padding-top: 20px;
}

.cast-vedio {
    height: 100%;
    object-fit: contain;
}

.no-float {
    float: none;
}

.cast-vedio-thumb {
    width: 48%;
    cursor: pointer;
    margin: 0 0.5%;
}

.cast-vedio-div {
    height: 520px;
    text-align: center;
    padding-top: 20px;
}

.cast-vedio {
    height: 100%;
    object-fit: contain;
}

.no-float {
    float: none;
}

.cast-vedio-div {
    height: 500px;
    margin-top: 20px;
}

.cast-vedio {
    height: 100%;
    object-fit: contain
}

ul.pad5 {
    padding: 5px;
    margin: 0px;
}

ul.pad5 li {
    padding: 5px;
    margin: 0;
    list-style-type: none;
    float: left;
    width: 50%;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

ul.pad5 li img {
    width: 100%;
}

.clear_left {
    clear: left;
}

.hiddendialog {
    position: absolute;
    visibility: hidden;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 1px;
}

.video-1 {
    margin: 0 auto;
    position: fixed;
    background: #000000;
    z-index: 99;
    width: 100%;
    height: 100%;
    text-align: center;
}

.video-2 {
    margin: 0 auto;
    position: fixed;
    background: #000000;
    width: 80%;
    height: 80%;
    text-align: center;
    margin-left: 10%;
    margin-top: 5%;
}

.closeImg {
    float: right;
    width: 15px;
    margin-top: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
    cursor: pointer;
}

#my-video {
    width: 100%;
    height: 93%;
}

/* おすすめ */

.div_theee_cast {
    margin: 0 auto;
    width: 800px;
}

@media screen and (max-width:480px) {
    .div_theee_cast {
        width: 100%;
    }
}

ul.ul_three_cast {
    margin: 0 5px;
    padding: 0;
    overflow: auto;
}

ul.ul_three_cast li {
    padding: 5px;
    margin: 0;
    float: left;
    width: 33.3%;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

ul.ul_three_cast li img {
    width: 100%;
}

/**キャストTOP end**/

/************************member top begin*******************************/

#member_top #main_container {
    width: 800px;
    height: auto;
}

#member_top #main_container h1 {
    text-align: center;
}

#member_top .action_top_box {
    width: 100%;
    height: 80px;
    margin: auto
}

#member_top #main_container .action_top_box button:first-child {
    float: left;
}

#member_top #main_container .action_top_box button:last-child {
    float: right;
}

#member_top .action_box {
    width: 100%;
    height: auto;
    margin: auto;
    clear: both;
}

#member_top h3 {
    margin-left: 20px;
}

.cast_box {
    width: 240px;
    margin-left: 20px;
    margin-top: 20px;
    display: inline-block;
}

.cast_box p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.img_box {
    width: 240px;
    height: 240px;
    display: inline-block;
    border: 1px solid #6e7986;
    position: relative;
}

.img_box a img {
    max-width: 240px;
    max-height: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cast_box p {
    margin: 0;
}

/*#member_top .search_box {
    width: 100%;
    margin: auto;
    display: none;
}
*/

#member_top .age_min {
    width: 49%;
    display: inline;
    float: left;
}

#member_top .age_max {
    width: 49%;
    display: inline;
    float: right;
}

#member_top .checkbox_div {
    display: inline-block;
    margin-top: 10px;
}

@media screen and (max-width:480px) {
    #member_top #main_container {
        width: 100%;
    }

    #member_top .action_top_box {
        width: 90%;
    }

    #member_top .action_box {
        width: 100%;
        height: auto;
        margin: auto;
    }

    #member_top h3 {
        margin-left: 3%;
    }

    .cast_box {
        width: 45%;
        margin-left: 3%;
    }

    .cast_box p {
        font-size: 12px;
    }

    .img_box {
        width: 100%;
        height: 220px;
    }

    .img_box a img {
        max-width: 100%;
        max-height: 100%;
    }

    #member_top .age_min {
        width: 47%;
        display: inline;
        float: left;
    }

    #member_top .age_max {
        width: 47%;
        display: inline;
        float: right;
    }
}

.zzsc {
    margin: 0 auto;
    width: 100%;
    height: 80px;
    text-align: center
}

.page {
    list-style: none;
    display: inline-block;
}

.page>li {
    float: left;
    padding: 5px 10px;
    cursor: pointer;
}

.page .pageItem {
    border: solid thin #000000;
    margin: 5px;
    width: 32px;
}

.page .pageItemActive {
    border: solid thin #0099FF;
    margin: 5px;
    background-color: #0099FF;
    color: white;
    width: 32px;
}

.page .pageItem:hover {
    border: solid thin #0099FF;
    background-color: #0099FF;
    color: white;
}

.page .pageItemDisable {
    border: solid thin #DDDDDD;
    margin: 5px;
    background-color: #DDDDDD;
}

@media screen and (max-width: 480px) {
    .zzsc {
        margin: 0 auto;
        width: 100%;
        height: 80px;
        text-align: center
    }

    .page {
        padding-left: 0px;
        list-style: none;
        display: inline-block;
    }

    .page>li {
        float: left;
        padding: 2px 0px;
        cursor: pointer;
    }

    .page .pageItem {
        width: 32px;
        border: solid thin #000000;
        margin: 5px 2px;
    }

    .page .pageItems {
        width: 50px;
        border: solid thin #000000;
        margin: 5px 2px;
    }

    .page .pageItemActive {
        border: solid thin #0099FF;
        margin: 5px 2px;
        width: 32px;
        background-color: #0099FF;
        color: white;
    }

    .page .pageItemDisable {
        border: solid thin #DDDDDD;
        margin: 5px 2px;
        width: 50px;
        background-color: #DDDDDD;
    }

}

/************************member top end*******************************/

/************************user cast_regist style*******************************/
.cast_top_men {
    background-color: #053e58;
}

.cast_body {
    background: #dce0f4;
    background-image: url(../images/cast_bk_bottom.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 500px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #272828;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

.cast_footer {
    margin-top: 90px;
    padding: 30px;
    color: #FFF;
    text-align: center;
    background-color: #053e58;
}

.min_input {
    width: 100px;
}

.cast_measurements input {
    display: inline-block;
}

.img_show img {
    width: 100%;
}

.golf_number {
    display: none;
}

/************************user cast_regist style end*******************************/

/************************system style*******************************/

ol.system {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}
 
ol.system li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
ol.system li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #5a0a0f;
  color: #fff;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
}
/************************system style end*******************************/

/************************female style*******************************/
.female{
text-align:center;
}
.female img{
width:100%;
}
h4{
font-size:18px;
margin:0 0 10px 0;
padding:0;
}
/************************female style end*******************************/

/************************sample style*******************************/
.box17{
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px #5a0a0f;
    border-bottom: solid 2px #5a0a0f;
}
.box17:before, .box17:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #5a0a0f;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
    margin: 0; 
    padding: 0;
}