@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #212121;
}

body{
  background-color: #E0E1E7;
}

/*******************

font

********************/

h2 {
    font-size: 26px;
}

h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 12px;
}

a {
    font-size: 14px;
    text-decoration: none;
    line-height: 24px;
}

span {
    font-size: 14px;
}

li {
    font-size: 14px;
}

ul,
li {
    list-style: none;
}

#container {
    display: grid;
    grid-template-columns: 300px 1fr;
}

#sidebar {
    background-color: #efefef;
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

#header {
    background-color: #E0E1E7;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

#content {
    background-color: #E0E1E7;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    padding: 20px;
}

@media only screen and (max-width: 812px){
  
}

/*******************

input

********************/

.common-input {
    padding: 4px 8px;
    border: none;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.common-input:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}


/*******************

select

********************/

.common-select {
    position: relative;
    width: 100%;
}

.common-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    border-radius: 5px;
    background: #ffffff;
    display: inline-block;
    cursor: pointer;
    padding: 10px 8px;
    outline: 0;
    margin-top: 8px;
    width: 100%;
}

.common-select select:disabled {
    color: #bdbdbd;
}

.common-select-arrow {
    position: absolute;
    top: 22px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #212121;
}

.common-select-small {
    width: 30%;
}
/*******************

header

********************/

header {
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    right: 0;
    margin: 0 20px;
}

.header {
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px 12px 20px;
}

.header-icon {
    align-items: center;
    display: flex;
}

.header-icon svg {
    margin-left: 16px;
}


/*******************

navigation

********************/

nav {
    display: flex;
    justify-content: space-between;
}

.navigation-icon {
    display: flex;
}

.navigation-icon-box {
    align-items: center;
    display: flex;
    padding: 20px;
}

.navigation-icon-line {
    background-color: #e0e0e0;
    height: 100%;
    width: 1px;
}

ul.navigation-list {
    align-items: center;
    display: flex;
    padding-right: 20px;
}

ul.navigation-list li {
    border-left: 1px solid #e0e0e0;
    padding: 0 10px;
}

ul.navigation-list li:last-child {
    border-right: 1px solid #e0e0e0;
}

ul.navigation-list li a {
    color: #777777;
}

ul.navigation-list li a.navigation-active {
    color: #333333;
}
/*******************

list

*********************/

.content-list-box {
    align-items: center;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    padding: 12px;
    justify-content: space-between;
    margin-bottom: 8px;
}

.content-list-name p {
    line-height: 14px;
}

.content-list-name p span {
    color: #777777;
    font-size: 12px;
}

.content-list-detail {
    display: flex;
}

.content-list-label {
    align-items: center;
    display: flex;
}

.content-list-label span.gold {
    color: #C39800;
    font-weight: bold;
}

.content-list-label span.silver {
    color: #9A9A9A;
    font-weight: bold;
}

.content-list-label span.bronze {
    color: #945308;
    font-weight: bold;
}

.content-list-status {
    border-left: 1px solid #e0e0e0;
    padding-left: 12px;
    margin-left: 12px;
    width: 80px;
}

.content-list-status p span {
    font-size: 10px;
}

.content-list-skill {
    border-left: 1px solid #e0e0e0;
    display: flex;
    padding-left: 12px;
    margin-left: 12px;
}

.content-list-skill-box {
    margin-right: 8px;
}

.content-list-skill-box p span {
    border-radius: 2px;
    font-size: 12px;
    padding: 0 2px;
}

.content-list-skill-box p span.designer {
    background-color: #dde7f4;
    color: #2F80ED;
}

.content-list-skill-box p span.enginner {
    background-color: #f7dcdc;
    color: #EB5757;
}

.content-list-skill-box p span.director {
    background-color: #e0f7ea;
    color: #27AE60;
}

.content-list-progress {
    display: flex;
}

.content-list-progress-box {
    margin-left: 4px;
}

.content-list-progress-box a {
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    justify-content: center;
    width: 64px;
    height: 64px;
}


/*******************

list

*********************/

.content-box {
    display: flex;
    justify-content: space-evenly;
}

.content-grid-list {
    display: flex;
    flex-direction: column;
}

.content-grid-box {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 24px;
    width: 270px;
}

.content-grid-name {
    padding-left: 16px;
}

.content-grid-name p span.gold {
    color: #C39800;
    font-weight: bold;
}

.content-grid-name p span.silver {
    color: #9A9A9A;
    font-weight: bold;
}

.content-grid-name p span.bronze {
    color: #945308;
    font-weight: bold;
}

.content-grid-name p span.name {
    color: #777777;
    font-size: 12px;
}

.content-grid-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.content-grid-title {
    display: flex;
    justify-content: space-between;
    padding: 16px;
}

.content-grid-img {
    height: 70px;
    width: 70px;
}

.avaterImg {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.content-grid-status {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    padding: 10px 0;
    margin: 0 10px;
}

.content-status-box {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content-status-line {
    background-color: #e0e0e0;
    width: 1px;
}

.content-status-box p {
    font-weight: 100;
    font-size: 10px;
}

.content-grid-skill {
    padding: 8px 20px;
}

.content-skill-name {
    align-items: center;
    display: flex;
}

.content-skill-name p span {
    font-size: 12px;
    padding: 0 4px;
    margin-left: 8px;
}

.content-skill-name p span.designer {
    background-color: #dde7f4;
    color: #2F80ED;
}

.content-skill-name p span.enginner {
    background-color: #f7dcdc;
    color: #EB5757;
}

.content-skill-name p span.director {
    background-color: #e0f7ea;
    color: #27AE60;
}

ul.content-skill-tag {
    display: flex;
    flex-wrap: wrap;
}

ul.content-skill-tag li {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 10px;
    margin-bottom: 8px;
    margin-right: 8px;
}

.content-bar {
    background-color: #e0e0e0;
    height: 1px;
    width: 100%;
}

.content-progress {
    display: flex;
}

.content-progress-box {
    align-items: center;
    display: flex;
    padding: 8px 0;
    justify-content: center;
    justify-items: center;
    width: calc(100%/3);
}

.content-progress-box a {
    align-items: center;
    display: flex;
    font-size: 12px;
}

.content-progress-box a.non-active {
    color: #BDBDBD;
}

.content-progress-box a svg {
    margin-right: 2px;
}

.content-progress-line {
    background-color: #e0e0e0;
    width: 1px;
}


/***************************

progressbar

***************************/

.progress-bar {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.progress-bar li {
    flex: 2;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.progress-bar li.designer {
    color: #2F80ED;
}

.progress-bar li.enginner {
    color: #EB5757;
}

.progress-bar li.director {
    color: #27AE60;
}

.progress-bar li:first-child,
.progress-bar li:last-child {
    flex: 1;
}

.progress-bar li:last-child {
    text-align: right;
}

.progress-bar li:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    left: calc(50% - 6px);
    bottom: -4px;
}

.progress-bar li:first-child:before {
    left: 0;
}

.progress-bar li:last-child:before {
    right: 0;
    left: auto;
}

.progress-bar .is-complete:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: -50%;
    z-index: 2;
}

.progress-bar .is-complete-designer:not(:first-child):after {
    border-bottom: 1px solid #2F80ED;
}

.progress-bar .is-complete-enginner:not(:first-child):after {
    border-bottom: 1px solid #EB5757;
}

.progress-bar .is-complete-director:not(:first-child):after {
    border-bottom: 1px solid #27AE60;
}

.progress-bar li:last-child span {
    width: 200%;
    display: inline-block;
    position: absolute;
    left: -100%;
}

.progress-bar .is-complete-designer:before {
    background-color: #2F80ED;
}

.progress-bar .is-complete-enginner:before {
    background-color: #EB5757;
}

.progress-bar .is-complete-director:before {
    background-color: #27AE60;
}

.is_hate{
  opacity: 0.1;
}
.no_exp{
  opacity: 0.3;
}

.content-detail {
    display: grid;
    grid-template-columns: 1fr 240px;
    grid-gap: 20px;
}

.content-detail-left {
    grid-column: 1 / 2;
    margin: 0 0 0 50px;
    width: 80%;
}

.content-detail-right {
    grid-column: 2 / 3;
}


/*******************

list-detail

*********************/

.content-detail-name-box {
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    padding: 20px;
}

a.editBtn {
    align-items: center;
    background-color: #e0e0e0;
    display: flex;
    font-size: 10px;
    font-weight: 600;
    margin-top: 8px;
    justify-content: center;
    width: 140px;
    border-radius: 4px;
}

a.editBtn svg {
    margin-right: 4px;
}

.content-detail-name {
    width: calc(100%/4);
}

.content-detail-img {
    border-radius: 5px;
    height: 140px;
    width: 140px;
}

.avaterImg {
    height: 100%;
    width: 100%;
}

.content-detail-status {
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    width: calc(100%/2);
}

.content-detail-status-name p {
    align-items: center;
    display: flex;
    margin-bottom: 8px;
}

.content-detail-status-name p span.gold,
.content-detail-partnor-status span.gold {
    color: #C39800;
    font-weight: bold;
}

.content-detail-status-name p span.silver,
.content-detail-partnor-status span.silver {
    color: #9A9A9A;
    font-weight: bold;
}

.content-detail-status-name p span.bronze,
.content-detail-partnor-status span.bronze {
    color: #945308;
    font-weight: bold;
}

.content-detail-url {
    border-left: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    padding-left: 8px;
    justify-content: space-evenly;
    width: calc(100%/2);
}

.content-detail-url-box {
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 8px;
}

.content-detail-url-box:last-child {
    border-bottom: none;
}

.content-detail-url-box p {
    font-size: 12px;
}

.content-detail-url-box p a {
    font-weight: bold;
}


/*******************

list-price

*********************/

.content-detail-price {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.content-detail-price-box {
    align-items: center;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-right: 8px;
    width: calc(100%/4);
}

.content-detail-price-box:last-child {
    margin-right: 0;
}

.content-detail-price-box p {
    margin-bottom: 4px;
}

.content-detail-price-box p span {
    font-weight: 300;
    font-size: 12px;
}

.content-detail-price-box h4 {
    text-align: center;
}


/*******************

list-txt

*********************/

.content-detail-txt {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    margin-top: 8px;
}

.content-detail-txt h5 {
    color: #777777;
    margin-bottom: 16px;
}

.content-detail-txt-box p {
    font-size: 14px;
    margin-bottom: 8px;
}

.content-detail-skill-box {
    margin-bottom: 44px;
}

.content-detail-skill-box:last-child {
    margin-bottom: 0;
}

.content-grid-skill {
    padding: 8px 20px;
}

.content-skill-name {
    align-items: center;
    display: flex;
}

.content-skill-name p span {
    border-radius: 2px;
    font-size: 12px;
    padding: 0 4px;
    margin-left: 8px;
}

.content-skill-name p span.designer {
    background-color: #dde7f4;
    color: #2F80ED;
}

.content-skill-name p span.enginner {
    background-color: #f7dcdc;
    color: #EB5757;
}

.content-skill-name p span.director {
    background-color: #e0f7ea;
    color: #27AE60;
}

ul.content-skill-tag {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
}

ul.content-skill-tag li {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 10px;
    margin-right: 8px;
}

.content-detail-box {
    border-top: 1px solid #e0e0e0;
    margin-top: 32px;
    padding-top: 32px;
}

ul.content-detail-other-skill {
    display: flex;
    margin-top: 24px;
}

ul.content-detail-other-skill li {
    align-items: center;
    display: flex;
    margin-right: 16px;
    flex-wrap: wrap;
}

ul.content-detail-other-skill li:last-child {
    margin-right: 0;
}

ul.content-detail-other-skill li svg {
    margin-right: 4px;
}

.content-detail-history input {
    margin-right: 8px;
}

.common-select-history-arrow {
    position: absolute;
    top: 28px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #212121;
}

.content-detail-history .history-input-long {
    border: 1px solid #e0e0e0;
    margin-top: 8px;
    height: 32px;
    width: 280px;
}

.content-detail-history .history-input-small {
    border: 1px solid #e0e0e0;
    margin-top: 8px;
    height: 32px;
    width: 120px;
}

.common-select-history {
    height: 32px;
    width: 120px;
}

.common-select-history select {
    border: 1px solid #e0e0e0;
    padding: 14px 8px;
}

ul.content-detail-history li {
    display: flex;
    flex-wrap: wrap;
}





/*******************

partnor

*********************/

.content-detail-partnor {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 16px;
}

.content-detail-partnor-box {
    display: flex;
    margin-top: 16px;
}

.content-detail-partnor-img {
    height: 70px;
    width: 70px;
}

.content-detail-partnor-txt {
    margin-left: 4px;
}

.content-detail-partnor-status p {
    align-items: center;
    display: flex;
}

.content-detail-partnor-status p span {
    font-size: 12px;
}

.content-detail-partnor-txt p {
    font-size: 10px;
    margin-top: 4px;
}

/*

auth

*/

.auth-wrapper {
    align-items: center;
    display: flex;
    background-color: #E0E1E7;
    justify-items: center;
    min-height: 100vh;
    width: 100%;
}

.auth {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.auth h1 {
    margin-bottom: 40px;
}

.auth-fb-btn {
    background-color: #1778F2;
    border-radius: 30px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 250px;
}

.auth-mail-btn {
    background-color: #212121;
    border-radius: 30px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    margin-top: 16px;
    height: 40px;
    width: 250px;
}



.partners-wrapper {
    align-items: flex-start;
    display: flex;
    padding: 48px;
    /*
    background-color: #E0E1E7;
    justify-items: center;
    min-height: 100vh;
    */
}

.partners-progress{
  min-width: 152px;
}

.partners-progress ul {
    margin-top: 32px;
}

.partners-progress ul li {
    display: flex;
    margin-bottom: 24px;
}

.partners-progress ul li.partners-progress-point span {
    background-color: #FFB800;
    border-radius: 50%;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-right: 12px;
    text-align: center;
    height: 32px;
    width: 32px;
}

.partners-progress ul li.partners-progress-next span {
    background-color: #ffffff;
    border-radius: 50%;
    color: #9A9A9A;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-right: 12px;
    text-align: center;
    height: 32px;
    width: 32px;
}

.partners-progress ul li.partners-progress-next h3 {
    color: #9A9A9A;
    font-weight: 400;
}

.partners-progress ul li.partners-progress-done span {
    background-color: #ffffff;
    border-radius: 50%;
    color: #9A9A9A;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-right: 12px;
    text-align: center;
    height: 32px;
    width: 32px;
}

.partners-progress ul li.partners-progress-done h3 {
    color: #9A9A9A;
    font-weight: 400;
}

.partners-content {
    background-color: #ffffff;
    border-radius: 8px;
    margin-left: 120px;
    padding: 40px;
    width: 640px;
}

.partners-content-border-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #ffffff;
    margin-left: 120px;
    padding: 40px;
    width: 640px;
}

.partners-content-border-none {
    background-color: #ffffff;
    margin-left: 120px;
    padding: 20px 40px;
    width: 640px;
}

.partners-content-border-bottom {
    background-color: #ffffff;
    margin-left: 120px;
    padding: 40px;
    width: 640px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.partners-btn {
    background-color: #FFB800;
    border-radius: 20px;
    display: block;
    font-weight: 600;
    text-align: center;
    line-height: 40px;
    margin: 40px auto 0 auto;
    height: 40px;
    width: 200px;
}

.partners-content-welcome {
    margin: 40px 0;
}

.partners-content-welcome p {
    margin-top: 24px;
}

.partners-content-profile {
    display: flex;
    margin-top: 24px;
}

.partners-content-profile-img {
    width: calc(100%/3);
}

.partners-content-input {
    width: 100%;
}

.partners-next-btn {
    align-items: center;
    display: flex;
}

a.back-link {
    margin: 40px 0 0 0;
    color: #9A9A9A;
}

a.back-link:hover {
    text-decoration: underline;
}


.login-wrapper {
    align-items: center;
    display: flex;
    background-color: #E0E1E7;
    justify-items: center;
    min-height: 100vh;
    width: 100%;
}

.login {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.login h1 {
    margin-bottom: 40px;
}

.login p {
    text-align: center;
}

.login .login-txt {
    margin-bottom: 32px;
    width: 100%;
}

.login .login-txt p a {
    color: #777777;
}

.login .login-txt p a:hover {
    text-decoration: underline;
}

.login-input {
    margin-bottom: 16px;
    height: 32px;
    width: 250px;
}

.login ::placeholder {
    color: #bdbdbd;
}

.login-btn {
    background-color: #212121;
    border-radius: 5px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 150px;
}


.partners-content-checkbox {
    margin-top: 24px;
}

.form__check-list {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.form__check-list .form__check-item {
    align-items: center;
    display: flex;
    position: relative;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 8px;
    width: 45%;
}

.check_box {
    align-items: center;
    border-radius: 24px;
    background: #ffffff;
    display: flex;
    cursor: pointer;
    margin-left: 8px;
    width: 100%;
}

.check_box_input {
    margin: 0;
    width: 0;
    opacity: 0;
}

.check_box_input:checked+.check_box_input_dummy {
    background: #FFC700;
    border: solid 1px #FFC700;
}

.check_box_input:checked+.check_box_input_dummy-designer {
    background: #2F80ED;
    border: solid 1px #2F80ED;
}

.check_box_input:checked+.check_box_input_dummy-enginner {
    background: #EB5757;
    border: solid 1px #EB5757;
}

.check_box_input:checked+.check_box_input_dummy-director {
    background: #27AE60;
    border: solid 1px #27AE60;
}

.check_box_input:checked+.check_box_input_dummy::before {
    content: "";
    display: block;
    position: absolute;
    top: 30%;
    left: 55%;
    width: 35%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}

.check_box_input:checked+.check_box_input_dummy::after {
    content: "";
    display: block;
    position: absolute;
    top: 30%;
    left: 63%;
    width: 60%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}

.check_box_input_dummy {
    position: relative;
    top: 2px;
    left: 0;
    display: block;
    width: 22px;
    height: 20px;
    background-color: #F9F9F9;
    border: 1px solid #F9F9F9;
    border-radius: 20px;
}

.check_box_input_dummy::after {
    content: "";
    display: block;
    position: absolute;
    top: 30%;
    left: 63%;
    width: 60%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #9A9A9A;
}

.check_box_input_dummy::before {
    content: "";
    display: block;
    position: absolute;
    top: 30%;
    left: 55%;
    width: 35%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #9A9A9A;
}

span.checkbox-txt {
    display: block;
    font-weight: 500;
}


/*****************************

square-checkbox

******************************/

.partners-content-checkbox-list {
    margin-top: 80px;
}

.partners-content-checkbox-list h4 {
    color: #777777;
    margin-bottom: 16px;
}

.partners-content-square-checkbox {
    margin-bottom: 16px;
}

.partners-content-square-checkbox label {
    margin-left: 4px;
}


.partners-content-input-box {
    margin-top: 72px;
}

.partners-content-profile-img {
    margin-right: 24px;
}

.partners-content-input dl {
    margin-bottom: 32px;
}

.partners-content-input dl:last-child {
    margin-bottom: 0;
}

.partners-content-input dl dt {
    align-items: center;
    display: flex;
}

.partners-content-input dl dt {
    font-size: 14px;
}

.partners-content-input dl dt p {
    margin-right: 8px;
}

span.red {
    background-color: #EB5757;
    border-radius: 4px;
    color: #ffffff;
    font-size: 8px;
    padding: 2px 4px;
    margin-left: 12px;
}

span.gray {
    background-color: #949494;
    border-radius: 4px;
    color: #ffffff;
    font-size: 8px;
    padding: 2px 4px;
    margin-left: 12px;
}

.partners-content-input dl dd {
    position: relative;
    margin-top: 12px;
}

.partners-content-input dl dd input[type='text'],.partners-content-input dl dd input[type='email'],.partners-content-input dl dd input[type='password'] {
    box-sizing: border-box;
    width: 100%;
    padding: 0.3em;
    transition: 0.3s;
    letter-spacing: 1px;
    color: #FFB800;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
}

.content-input-label input[type='text']:focus {
    border-bottom: 1px solid #212121;
    outline: none;
}

::placeholder {
  color: #ddd;
}

/************************

textarea

*************************/

.partners-content-textarea {
    margin: 72px 0 40px 0;
}

.partners-content-textarea textarea {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    padding: 24px;
    width: 80%;
    color: #FFB800;
    font-weight: 500;
}

textarea {
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    padding: 24px;
    width: 80%;
    color: #FFB800;
    font-weight: 500;
}


.partners-content-select-list {
    margin-top: 32px;
}

.partners-content-select {
    position: relative;
    width: 60%;
}

.partners-content-select-box {
    padding-top: 40px;
}

.partners-content-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
    border-bottom: 1px solid #9a9a9a;
    background: #ffffff;
    display: inline-block;
    cursor: pointer;
    padding: 10px 8px;
    outline: 0;
    margin-top: 8px;
    width: 100%;
}

.partners-content-select select:disabled {
    color: #bdbdbd;
}

.partners-content-select-arrow {
    position: absolute;
    top: 22px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #212121;
}

.partners-content-select-small {
    margin: 0 8px;
    width: 25%;
}

.partners-content-select-small:first-child {
    margin: 0 8px 0 0;
    width: 25%;
}

.partners-content-select-small-box {
    align-items: center;
    display: flex;
}


.partners-tag-content {
    margin-bottom: 40px;
}

.partners-tag-content:last-child {
    margin-bottom: 0;
}

.partners-tag-content p.gray {
    color: #ababab;
    margin-top: 16px;
}


.skill-tag-content {
    margin-bottom: 10px;
}

.skill-tag-content:last-child {
    margin-bottom: 0;
}

.skill-tag-content-progress {
    margin: 0 15px 10px;
    width: 30%;
    float:left;
}

.partners-tag {
    margin-bottom: 40px;
}

.partners-tag:last-child {
    margin-bottom: 0;
}

.partners-tag-title {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 40px;
    padding-bottom: 16px;
}

.partners-tag-title h4 {
    display: flex;
}

.partners-tag-title_skill {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
    margin-top: 80px;
    padding-bottom: 16px;
}
.partners-tag-title_skill:first-child {
    margin-top: 20px;
}

.partners-tag-title_skill h4 {
    display: flex;
}


.skill-tag-title_skill {
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 5px;
    margin-top: 20px;
    padding-bottom: 5px;
    clear: both;
}
.skill-tag-title_skill:first-child {
    margin-top: 20px;
}

.skill-tag-title_skill h4 {
    display: flex;
}

.tag-icon {
    border-radius: 25px;
    display: block;
    margin-right: 4px;
    position: relative;
    height: 20px;
    width: 20px;
}

.tag-icon-designer {
    background-color: #b6cbea;
}

.tag-icon-enginner {
    background-color: #f4c7c7;
}

.tag-icon-director {
    background-color: #e0f2e4;
}

.tag-icon::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 20px;
    top: 3px;
    left: 3px;
    height: 14px;
    width: 14px;
}

.tag-icon-designer::after {
    background-color: #2F80ED;
}

.tag-icon-enginner::after {
    background-color: #EB5757;
}

.tag-icon-director::after {
    background-color: #29ac46;
}

ul.partners-tag-detail {
    display: flex;
    /* flex-wrap: wrap; */
    margin-top: 4px;
    /* margin: 0 0 0 auto; */
    float: right;
    border: 0;
}

ul.skill-tag-detail {
    display: flex;
}



ul.skill-tag-detail li {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 9px;
    padding: 2px 10px;
    margin-bottom: 8px;
    margin-right: 8px;
}


ul.skill-tag-detail li.skill-level0{
  border-color: #eee;
  color: #eee;
}
ul.skill-tag-detail li.skill-level100{
  border-color: #999;
  color: #999;
}
ul.skill-tag-detail li.skill-level300{
  border-color: #666;
  color: #666;
}
ul.skill-tag-detail li.skill-level500{
  background-color: #ff9b9b;
  border-color: #EB5757;
  color: #333;
}
ul.skill-tag-detail li.skill-level700{
  background-color: #EB5757;
  color: #ffffff;
  font-weight: 900;
}

span.mark {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 10px;
    margin: 0 8px 8px;
}

span.mark-enginner {
    background-color: #EB5757;
    color: #ffffff;
    align-items: center;
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 10px;
    margin: 0 8px 8px;
}

span.mark-designer {
    background-color: #2F80ED;
    color: #ffffff;
    align-items: center;
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 10px;
    margin: 0 8px 8px;
}

ul.partners-tag-detail li {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 10px;
    margin-bottom: 8px;
    margin-right: 8px;
}

ul.partners-tag-detail li.check-designer {
    background-color: #2F80ED;
    color: #ffffff;
    display: flex;
    align-items: center;
}

ul.partners-tag-detail li.checked-designer {
    background-color: #2F80ED;
    position: relative;
    color: #ffffff;
}

ul.partners-tag-detail li.check-enginner {
    background-color: #EB5757;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
}

ul.partners-tag-detail li.checked-enginner {
    background-color: #EB5757;
    position: relative;
    color: #ffffff;
}

ul.partners-tag-detail li.check-director {
    background-color: #29ac46;
    color: #ffffff;
    display: flex;
    align-items: center;
}

ul.partners-tag-detail li.checked-director {
    background-color: #29ac46;
    position: relative;
    color: #ffffff;
}

ul.partners-tag-detail li span.checked-designer {
    border-radius: 20px;
    background-color: #ffffff;
    display: block;
    margin-left: 8px;
    position: relative;
    height: 15px;
    width: 15px;
}

ul.partners-tag-detail li span.checked-designer::before {
    content: "";
    display: block;
    position: absolute;
    top: 7%;
    left: 100%;
    width: 64%;
    height: 1px;
    border-radius: 1px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #2F80ED;
}

ul.partners-tag-detail li span.checked-designer::after {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    left: 70%;
    width: 62%;
    height: 1px;
    border-radius: 1px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #2F80ED;
}

ul.partners-tag-detail li span.checked-enginner {
    border-radius: 20px;
    background-color: #ffffff;
    display: block;
    margin-left: 8px;
    position: relative;
    height: 15px;
    width: 15px;
}

ul.partners-tag-detail li span.checked-enginner::before {
    content: "";
    display: block;
    position: absolute;
    top: 7%;
    left: 100%;
    width: 64%;
    height: 1px;
    border-radius: 1px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #EB5757;
}

ul.partners-tag-detail li span.checked-enginner::after {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    left: 70%;
    width: 62%;
    height: 1px;
    border-radius: 1px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #EB5757;
}

ul.partners-tag-detail li span.checked-director {
    border-radius: 20px;
    background-color: #ffffff;
    display: block;
    margin-left: 8px;
    position: relative;
    height: 15px;
    width: 15px;
}

ul.partners-tag-detail li span.checked-director::before {
    content: "";
    display: block;
    position: absolute;
    top: 7%;
    left: 100%;
    width: 64%;
    height: 1px;
    border-radius: 1px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #29ac46;
}

ul.partners-tag-detail li span.checked-director::after {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    left: 70%;
    width: 62%;
    height: 1px;
    border-radius: 1px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #29ac46;
}
ul.partners-tag-detail li.separator {
  border: 0;
}

/*******************

side-bar

********************/

.sidebar {
    min-height: 100vh;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #ffffff;
}

a.sidebarBtn {
    background-color: #ffffff;
    border-radius: 14px;
    font-weight: 700;
    font-size: 10px;
    line-height: 28px;
    text-align: center;
    height: 28px;
    width: 100px;
}

.sidebar-content {
    padding: 16px 20px;
}

.sidebar-content-box {
    margin-bottom: 24px;
}

.sidebar-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-top: 8px;
}

.sidebar-checkbox-input {
    margin: 0;
    width: 0;
    opacity: 0;
}

.sidebar-checkbox-input:hover {
    background: rgba(0, 0, 0, .05) !important;
}

.sidebar-checkbox-input:focus+.sidebar-checkbox-dummyInput {
    border: solid 1px rgb(33, 150, 243);
}

.sidebar-checkbox-input:checked+.sidebar-checkbox-dummyInput {
    background: #212121;
}

.sidebar-checkbox-input:checked+.sidebar-checkbox-dummyInput::before {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    left: 65%;
    width: 40%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}

.sidebar-checkbox-input:checked+.sidebar-checkbox-dummyInput::after {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    left: 75%;
    width: 60%;
    height: 3px;
    border-radius: 2px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}

.sidebar-checkbox-dummyInput {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    border: solid 1px #e0e0e0;
    background: #ffffff;
    border-radius: 4px;
}

.sidebar-checkbox-labelText {
    margin-left: 8px;
    display: block;
}

ul.sidebar-content-botton {
    border-bottom: 1px dashed #bdbdbd;
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

ul.sidebar-content-botton li {
    margin-bottom: 8px;
    margin-right: 8px;
}

.sidebar-content-botton a.sidebarTag {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 2px 10px;
}

.sidebar-select-list {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.sidebar-search {
    position: relative;
}

.sidebar-search-icon {
    right: 15px;
    position: absolute;
    top: 16px;
}

a.sidebarTagActive {
    background: #212121;
    border: 1px solid #212121;
    color: #ffffff;
}

.sidebar-input {
    margin-top: 8px;
    height: 32px;
    width: 92%;
}

ul.sidebar-content-txt li a {
    color: #777777;
    font-size: 12px;
}

.sidebar-content-box p span {
    color: #777777;
    font-size: 12px;
}

.display_none{
  display: none;
}

span.logout{
  font-size: 14px;
  padding: 5px;
  border: 3px solid #ccc;
  background-color: #eee;
  display: block;
  text-align: center;
  border-radius: 20px;
}

span.note{
  font-size: 9px;
}

.openHelp{
    cursor: help;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.closeHelp{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
}

#userImage{
  width: 213px;
  height: 140px;
  overflow:hidden;
}

#userImage img{
  max-width: 140px;
  max-height: 140px;
}

input#fileInput{
    display: none;
}
.is_sp{
  display: none;
}

@media only screen and (max-width: 812px){
  .is_pc{
    display: none;
  }
  .is_sp{
    display: block;
  }
  .content-detail-left{
    margin: 0 10%;
  }
  .partners-wrapper {
    display: block;
    padding: 0;
  }
  .partners-progress {
    padding: 40px;
  }
  .partners-progress ul li {
      margin-bottom: 8px;
  }
  .partners-progress ul li.partners-progress-next,
  .partners-progress ul li.partners-progress-done{
    display: none;
  }
  .partners-content,
  .partners-content-border-top{ 
    padding: 5%;
    width: 80%;
    margin: 5%;
  }
  .partners-content-profile {
      display: block;
  }
  .partners-next-btn {
      text-align: center;
      display: block;
      margin: 20px 0;
  }
  .partners-btn{
    margin: 20px auto;
  }
  .partners-tag-title_skill{
    clear: both;
    padding-bottom: 0;
  }
  .partners-tag-title_skill h4{
    padding-top: 40px;
    display: block;
  }
  .partners-progress ul li.partners-progress-point span {
   /*   display: inline; */
  }
  .content-detail-name-box{
    display: block;
    padding: 10%;
  }
  
  .content-detail-price{
    display: block;
    padding: 0;
  }
  .content-detail-price-box{
    width: 90%;
    padding: 5%;
    margin: 10px 0;
  }
  .content-detail-name,
  .content-detail-img,
  .content-detail-status,
  .content-detail-status-name{
    width:100%;
  }
  .content-detail-url{
    width:100%;
    border: 0;
  }
  .content-detail-price{
    
  }
  ul.skill-tag-detail {
      display: block;
  }
  .skill-tag-content-progress {
      margin: 0 0 10px;
      width: 100%;
      float: block;
  }
  .skill-tag-title_skill h4{
    padding-top: 20px;
  }
  a.menu_open{
    display: inline;
    background-color: #FFB800;
    border-radius: 50%;
  }
  .partners-tag-detail{
    flex-wrap: wrap;
  }
  .mark{
    float: right;
    margin-top: 5px;
  }
}