@charset "utf-8";
/* CSS Document */
/*--
プロダクション管理画面用の共通スタイルを記述
--*/
/* サイト内共通Style */
html {
    width: 100%;
    height: 100%;
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    color: #333333;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
}
a {
    color: inherit;
    text-decoration: none;
}
input, select, textarea {
    font-size: inherit;
    font-family: inherit;
    box-shadow: none;
    -webkit-appearance: none;
    border-radius: 0;
}
input::placeholder, select::placeholder, textarea::placeholder {
    color: #A2A4A5;
}
select, textarea {
    font-size: inherit;
    font-family: inherit;
    -webkit-appearance: none;
    background: inherit;
}
img {
    max-width: 100%;
}
strong {
    font-weight: bold;
}
button {
    border: none;
}
select::-ms-expand {
    display: none;
}

/* 文字色 */
.c_red{
    color: #FF7B7B;
}

.page_wrap {
    width: 100%;
    /*
    min-width: 86.8rem;
    */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.page_wrap .content {
    width: 100%;
    min-width: 78rem;
    height: 100%;
    background: #f2f2f2;
    overflow: hidden;
    overflow-y: scroll;
}
.page_wrap .content::-webkit-scrollbar {
	width: 1rem;
}
.page_wrap .content::-webkit-scrollbar-track {
	border-radius: 1rem;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}
.page_wrap .content::-webkit-scrollbar-thumb {
	background-color: rgba(187, 200, 207, 0.5);
	border-radius: 1rem;
	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
.page_wrap .content .inner {
    width: 100%;
    max-width: 134rem;
    min-height: -webkit-calc(100% - 5rem);
    min-height: calc(100% - 5rem);
    margin: 0 auto;
    padding: 4rem;
    box-sizing: border-box;
}
.page_wrap .layout {
    display: flex;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    overflow: hidden;
}
.page_wrap .layout .content .inner {
    max-width: none;
}

/* loader parts */
.c-loader-box{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}
.c-loader-box .c-loader-spinner{
    display: inline-block;
    overflow: hidden;
    width: 1em;
    height: 1em;
    margin: 1.5em;
    border-radius: 50%;
    box-shadow: rgba(4, 162, 204, 0.25) 1.5em 0 0 0, rgba(4, 162, 204, 0.3) 1.1em 1.1em 0 0, rgba(4, 162, 204, 0.35) 0 1.5em 0 0, rgba(4, 162, 204, 0.4) -1.1em 1.1em 0 0, rgba(4, 162, 204, 0.45) -1.5em 0 0 0, rgba(4, 162, 204, 0.5) -1.1em -1.1em 0 0, rgba(4, 162, 204, 0.55) 0 -1.5em 0 0, rgba(4, 162, 204, 0.6) 1.1em -1.1em 0 0;
    text-indent: 100%;
    font-size: 30px;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: spinnerLoader 1s infinite linear both;
    animation: spinnerLoader 1s infinite linear both;
}


/* button parts */
.button {
    display: block;
    text-align: center;
    border-radius: 0.4rem;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.button:hover {
    opacity: 0.6;
}
.button.size_s {
    padding: 0 1rem;
    height: 2.0em;
    line-height: 2.0em;
}
.button.size_m {
    padding: 0 2rem;
    height: 2.5em;
    line-height: 2.5em;
}
.button .fa{
    margin:0 0.4rem;
}

/* ページネーション */
.pagenation,
.pagenation .pager{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagenation .pager{
    overflow: hidden;
    border: solid 1px #bbbbbb;
    border-radius: 0.6rem;
}
.pagenation button{
    font-size: 1.4rem;
    width: 2.5em;
    height: 2.5em;
    outline: none;
    background: #eee;
    cursor: pointer;
}
.pagenation button.active{
    background: #fff;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    pointer-events: none;
}
.pagenation button + button{
    border-left: solid 1px #bbbbbb;
}

/* text align */
.text-right{
    text-align: right;
}

/* update parts */
.update .success{
    font-size: 1.4rem;
    font-weight: bold;
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    margin: 0 0rem 2rem;
    padding: 1.5rem;
    border-radius: 1rem;
}

/* validation parts */
.validation .message_list{
    color: #FF7B7B;
    border: solid 2px #FF7B7B;
    border-radius: 1rem;
    margin-bottom: 2rem;
    padding: 1.6rem 2rem;
}
.validation .message_list .list-item {
    display: flex;
    font-size: 1.4rem;
}
.validation .message_list .list-item + .list-item{
    margin-top: 0.4rem;
}
.validation .message_list .list-item::before {
    content: "・";
}
.validation .alert-success {
    color: #55C5B9;
    border: solid 2px #55C5B9;
    border-radius: 1rem;
    margin-bottom: 2rem;
    padding: 1.6rem 2rem;
}
/* サイト内パンクズ */
.breadcrumb{
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.breadcrumb .breadcrumb-item{
	color:#BDBDBD;
	font-size:1.2rem;
}
.breadcrumb .breadcrumb-item a{
    color: #42BFC0;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before{
	content: ">";
	margin:0 1.4rem;
}
.breadcrumb .breadcrumb-list .list-item a{
	color:#42bfc0;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.breadcrumb .breadcrumb-list .list-item a:hover{
	text-decoration: underline;
	opacity: 0.8;
}

/* サイト内共通ヘッダー */
.site_header {
    width: 100%;
    height: 5rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #3C3C3C;
    box-sizing: border-box;
}
.site_header .left{
    display: flex;
    align-items: center;
}
.site_header .left .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-right: 1rem;
    flex-shrink: 0;
}
.site_header .left .brand img {
    display: block;
}
.site_header .left .purpose {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    padding-top: 0.4rem;
}
.site_header .right{
    display: flex;
    align-items: center;
}
.site_header .right .menu{
    display: flex;
    align-items: center;
}
.site_header .right .menu .button{
    color: #fff;
    background-color: #627680;
    display: block;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-left: 1rem;
    padding: 0 1em;
    border: solid 1px rgba(194, 194, 194, 0.31);
    text-align: center;
}
.site_header .right .menu .button .fa{
    margin-right: 0.4rem;
}

/* サイト内共通フッター */
.site_footer {
    color: #fff;
    background: #BBBBBB;
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}
.site_footer .brand {
    margin-right: 2rem;
}
.site_footer .brand img {
    display: block;
}
.site_footer .copyright {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    padding-top: 0.4rem;
}
.site_footer .go-top{
    font-size: 2rem;
    position: absolute;
    right: 2rem;
    top: 50%;
    margin-top: -1rem;
    color: #2A3542;
    background: rgba(255, 255, 255, 0.5);
    width: 1em;
    height: 1em;
    line-height: 1em;
    border-radius: 50%;
    text-align: center;
}

/* サイト内サイドバー */
.modSidebar {
    font-size: 1.2rem;
    width: 25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.modSidebar.sidebar-close{
    margin-left: -21rem;
    margin-right: -4rem;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
.modSidebar.sidebar-close .modSidebar-header {
    border-radius: 0 0 5px;
}
.modSidebar.sidebar-close .modSidebar-header:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}
.modSidebar.sidebar-close .modSidebar-nav {
    -webkit-transform: translate(-250px, 0);
    -ms-transform: translate(-250px, 0);
    transform: translate(-250px, 0);
}
.modSidebar .modSidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    background-color: #549ec1;
    flex-shrink: 0;
}
.modSidebar .modSidebar-header .profSet {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 0 0 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modSidebar .modSidebar-header .profSet .user-icon {
    font-size: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
    line-height: 2.4rem;
    border-radius: 50%;
    color: #666;
    background-color: #ddd;
    text-align: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.modSidebar .modSidebar-header .profSet .user-name {
    font-size: 1.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modSidebar .modSidebar-header .modSidebar-toggle {
    display: block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
}
.modSidebar .modSidebar-header .modSidebar-toggle:hover {
    color: #f7f7f7;
    background-color: #3c84a6;
}
.modSidebar .modSidebar-header .modSidebar-toggle .modSidebar-toggle-icon {
    font-size: 1.6rem;
}
.modSidebar .modSidebar-nav {
    color: #ddd;
    background-color: #192125;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    box-sizing: border-box;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all 0.25s ease;
    overflow-y: scroll;
}
.modSidebar .modSidebar-nav::-webkit-scrollbar {
	width: 0.4rem;
}
.modSidebar .modSidebar-nav::-webkit-scrollbar-track {
	border-radius: 1rem;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}
.modSidebar .modSidebar-nav::-webkit-scrollbar-thumb {
	background-color: rgba(187, 200, 207, 0.5);
	border-radius: 1rem;
	box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
.modSidebar .modSidebar-nav a {
    color: #ddd;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree {}
.modSidebar .modSidebar-nav ul.navMenu-rootTree.currentTabList {}
.modSidebar .modSidebar-nav ul.navMenu-rootTree ul {}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li {
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li i.fa,
.modSidebar .modSidebar-nav ul.navMenu-rootTree li i.dcjq-icon {
    display: inline-block;
    width: 2rem;
    margin-right: 0.4rem;
    text-align: center;
    opacity: 0.8;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-topLabel {
    position: relative;
    display: block;
    padding: 1rem 1.5rem 1rem 1rem;
    border-bottom: solid 1px #383D41;
    white-space: nowrap;
    transition: all 0.25s ease 0;
    cursor: pointer;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-topLabel:hover {
    background-color: #0f1316;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li.active .navMenu-topLabel {
    color: #52c3dd;
    background-color: #040607;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .nav-toggle:after {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    margin-top: -0.7rem;
    display: inline-block;
    content: "\f053";
    font: normal normal normal 1.4rem/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li.open .nav-toggle:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu {
    height: 0;
    background-color: #2c3b41;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.25s linear;
    box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.4);
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu .current_page{
    background: #549EC1;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu .navMenu-subLabel {
    display: block;
    padding: 1rem 1rem 1rem 2rem;
    cursor: pointer;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu .navMenu-subLabel:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu a {
    display: block;
    padding: 1rem 1rem 1rem 2rem;
    transition: all 0.25s;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu > li {
    border-bottom: solid 1px #474D51;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu > li:last-child {
    border-bottom: none;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu li.active > a {
    color: #52c3dd;
    background-color: #414D52;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu li li > a {
    padding-left: 3rem;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu li li > .navMenu-subLabel {
    padding-left: 3rem;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu li li li > a {
    padding-left: 5rem;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu .navMenu-subMenu-2 {
    height: 0;
    overflow: hidden;
    background-color: #383e3f;
    box-shadow: inset 0 2px 1px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.25s linear;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li .navMenu-subMenu .navMenu-subMenu-2.open {
    height: auto;
}
.modSidebar .modSidebar-nav ul.navMenu-rootTree li.open .navMenu-subMenu {
    height: auto;
}

/* .l-layer--modal
----------------------------------------------------------------- */
.l-layer--modal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    padding: 7rem;
    visibility: hidden;
    transition: visibility 0s linear 1s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
}
.l-layer--modal:after {
    content: '';
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    visibility: hidden;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in 0s, visibility 0s linear 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.l-layer--modal.is-bg-show {
    visibility: visible;
    transition: visibility 0s linear 0s;
}
.l-layer--modal.is-bg-show:after {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.3s ease-in 0.1s;
}
.l-layer--modal:before {
    content: '';
    position: fixed;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    font-size: 40px;
    width: 40px;
    height: 40px;
    margin: auto auto;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease-in 0s, visibility 0s linear 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.l-layer--modal.is-loader-show {
    visibility: visible;
    transition: visibility 0s linear 0s;
}
.l-layer--modal.is-loader-show:before {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.3s ease-in 0.1s;
}
.is-modal-open {
    position: fixed;
    overflow-y: scroll;
    min-width: 100%;
}


/*-----------------------------------------------------------------------
/ Project - modal
----------------------------------------------------------------------- */
/* .p-modal
----------------------------------------------------------------- */
.p-modal {
    max-width: 100%;
    max-height: 100%;
    overflow-y: scroll;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    position: relative;
    z-index: 500;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}
.p-modal::-webkit-scrollbar {
    width: 10px;
}
.p-modal::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .1);
}
.p-modal::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 50, .5);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}

.p-modal.is-pos-pageIn {
    -webkit-animation: modalPageIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
    animation: modalPageIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@-webkit-keyframes modalPageIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -200px, 0);
        transform: translate3d(0, -200px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes modalPageIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -200px, 0);
        transform: translate3d(0, -200px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.p-modal.is-pos-pageOut {
    -webkit-animation: modalPageOut 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
    animation: modalPageOut 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@-webkit-keyframes modalPageOut {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -200px, 0);
        transform: translate3d(0, -200px, 0);
    }
}
@keyframes modalPageOut {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -200px, 0);
        transform: translate3d(0, -200px, 0);
    }
}
.p-modal.is-pos-pageOut-left {
    -webkit-animation: modalPageOutLeft 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
    animation: modalPageOutLeft 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@-webkit-keyframes modalPageOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-500px, 0, 0);
        transform: translate3d(-500px, 0, 0);
    }
}
@keyframes modalPageOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-500px, 0, 0);
        transform: translate3d(-500px, 0, 0);
    }
}
.p-modal.is-pos-pageOut-right {
    -webkit-animation: modalPageOutRight 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
    animation: modalPageOutRight 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@-webkit-keyframes modalPageOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-500px, 0, 0);
        transform: translate3d(-500px, 0, 0);
    }
}
@keyframes modalPageOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-500px, 0, 0);
        transform: translate3d(-500px, 0, 0);
    }
}
.p-modal__closeBtn {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 20px;
    color: #9aabaf;
    font-size: 18px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 1;
}
.is-gallery-manager .p-modal__closeBtn {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 20px;
    color: #9aabaf;
    font-size: 24px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.is-gallery-manager .p-delete__button {
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 20px;
    color: #55c5b9;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.p-modal__bodyTitle {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #21282a;
    text-align: center;
}
.p-modal__body {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 50px;
    padding: 50px 60px;
    border-radius: 10px;
    /*---snsログイン追加---*/
    width: 740px;
    box-sizing: border-box;
}
.p-modal__body.is-hide {
    display: none;
}
.p-modal__inPage {
    position: relative;
    display: block;
    overflow: hidden;
}
.p-modal__inPage.is-hide {
    display: none;
}
.p-modal__headerTab {
    border-bottom: solid 4px #f2f4f5;
    text-align: center;
}
.p-modal__headerTab .headerTab__item {
    position: relative;
    display: inline-block;
    padding: 16px 20px;
    margin: 7px 0 -4px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    color: #9aabaf;
    cursor: pointer;
}
.p-modal__headerTab .headerTab__item + .headerTab__item {
    margin-left: 20px;
}
.p-modal__headerTab .headerTab__item.is-current {
    color: #00a0c8;
    border-bottom: solid 4px #00a0c8;
}
.p-modal__headerTab .headerTab__item.is-current a:link, .p-modal__headerTab .headerTab__item.is-current a:visited, .p-modal__headerTab .headerTab__item.is-current a:hover, .p-modal__headerTab .headerTab__item.is-current a:active {
    color: #00a0c8;
}

/* .p-modal--crop
----------------------------------------------------------------- */
.p-modal--crop {
    min-width: 730px;
}
.p-modal--crop__att {
    text-align: center;
    margin-bottom: 50px;
}
.p-modal--crop__body {
    position: relative;
    margin: 16px 0;
}
.p-modal--crop__imgWrap {
    max-width: 500px;
    max-height: 500px;
    margin: 0 auto;
}
.p-modal--crop__imgWrap img {
    max-width: 500px;
    max-height: 500px;
}
.p-modal--crop__imgWrap .jcrop-keymgr {
    opacity: 0;
}
.p-modal--crop__btnWrap {
    margin-top: 50px;
}

/*-----------------------------------------------------------------------
/ Component - jcrop
----------------------------------------------------------------------- */
.jcrop-holder {
    direction: ltr;
    text-align: left;
    /* IE10 touch compatibility */
    -ms-touch-action: none;
    margin: 0 auto;
}
/* Selection Border */
.jcrop-vline, .jcrop-hline {
    background-color: #333;
    font-size: 0;
    position: absolute;
}
.jcrop-vline {
    height: 100%;
    width: 1px !important;
}
.jcrop-vline.right {
    right: 0;
}
.jcrop-hline {
    height: 1px !important;
    width: 100%;
}
.jcrop-hline.bottom {
    bottom: 0;
}
/* Invisible click targets */
.jcrop-tracker {
    height: 100%;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}
.is-cropStyle--circle .jcrop-holder div .jcrop-tracker {
/*    border-radius: 50%;*/
    border: solid 1px rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 0 500px rgba(255, 255, 255, 0.23);
}
/* Selection Handles */
.jcrop-handle {
    background-color: #fff;
    border: 1px #333 solid;
    width: 7px;
    height: 7px;
    font-size: 1px;
}
.jcrop-handle.ord-n {
    left: 50%;
    margin-left: -4px;
    margin-top: -4px;
    top: 0;
}
.jcrop-handle.ord-s {
    bottom: 0;
    left: 50%;
    margin-bottom: -4px;
    margin-left: -4px;
}
.jcrop-handle.ord-e {
    margin-right: -4px;
    margin-top: -4px;
    right: 0;
    top: 50%;
}
.jcrop-handle.ord-w {
    left: 0;
    margin-left: -4px;
    margin-top: -4px;
    top: 50%;
}
.jcrop-handle.ord-nw {
    left: 0;
    margin-left: -4px;
    margin-top: -4px;
    top: 0;
}
.jcrop-handle.ord-ne {
    margin-right: -4px;
    margin-top: -4px;
    right: 0;
    top: 0;
}
.jcrop-handle.ord-se {
    bottom: 0;
    margin-bottom: -4px;
    margin-right: -4px;
    right: 0;
}
.jcrop-handle.ord-sw {
    bottom: 0;
    left: 0;
    margin-bottom: -4px;
    margin-left: -4px;
}
/* Dragbars */
.jcrop-dragbar.ord-n, .jcrop-dragbar.ord-s {
    height: 7px;
    width: 100%;
}
.jcrop-dragbar.ord-e, .jcrop-dragbar.ord-w {
    height: 100%;
    width: 7px;
}
.jcrop-dragbar.ord-n {
    margin-top: -4px;
}
.jcrop-dragbar.ord-s {
    bottom: 0;
    margin-bottom: -4px;
}
.jcrop-dragbar.ord-e {
    margin-right: -4px;
    right: 0;
}
.jcrop-dragbar.ord-w {
    margin-left: -4px;
}
/* The "jcrop-light" class/extension */
.jcrop-light .jcrop-vline, .jcrop-light .jcrop-hline {
    background: #ffffff;
    filter: alpha(opacity=70) !important;
    opacity: 0.7 !important;
}
.jcrop-light .jcrop-handle {
    background-color: #000000;
    border-color: #ffffff;
    border-radius: 3px;
}
/* The "jcrop-dark" class/extension */
.jcrop-dark .jcrop-vline, .jcrop-dark .jcrop-hline {
    background: #000000;
    filter: alpha(opacity=70) !important;
    opacity: 0.7 !important;
}
.jcrop-dark .jcrop-handle {
    background-color: #ffffff;
    border-color: #000000;
    border-radius: 3px;
}
/* Simple macro to turn off the antlines */
.solid-line .jcrop-vline, .solid-line .jcrop-hline {
    background: #ffffff;
}
/* Fix for twitter bootstrap et al. */
.jcrop-holder img, img.jcrop-preview {
    max-width: none;
}

.image_parent_tag .file_delete {
border-radius: 4px !important;
border: 1px solid #aaa;
font-size: 1.2rem;
}
