/* variables */

/**
* foundation
* ================================= */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

html,
body {
  width: 100%;
  color: #444;
  background-color: #f6f5f5;
  line-height: 150%;
}

p,
a {
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 150%;
}

a {
  color: #444;
  text-decoration: none;
}

a:hover {
  transition: 0.3s;
}

img {
  width: 100%;
  height: auto;
}

/**
* layout
* ================================= */

.l-header {
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #5654a2;
  color: #fff;
  position: fixed;
  z-index: 2;
}

@media screen and (max-width: 599px) {
  .l-header {
    height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-header__logo {
  height: 100%;
  width: 100px;
  text-align: center;
  font-size: 30px;
  line-height: 64px;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 599px) {
  .l-header__logo {
    font-size: 24px;
  }
}

.l-header__logo--link {
  color: #fff;
}

.l-header__nav {
  height: 100%;
  width: 300px;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .l-header__nav {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    padding-top: 50px;
    transition: 0.5s;
  }

  .l-header__nav.active {
    transition: 0.5s;
    transform: translateX(-100%);
    z-index: 2;
    opacity: 0.9;
    background-color: #4052A2;
  }
}

.l-header__nav ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .l-header__nav ul {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.l-header__menu {
  margin-right: 10px;
}

@media screen and (max-width: 599px) {
  .l-header__menu {
    margin-right: initial;
  }
}

.l-header__menu--link {
  display: block;
  color: #f6f5f5;
}

@media screen and (max-width: 599px) {
  .l-header__menu--link {
    color: #fff;
    font-size: 24px;
    margin-top: 30px;
  }
}

.l-header__menuTrigger {
  display: none;
  transition: all 0.4s;
  box-sizing: border-box;
  position: relative;
  width: 40px;
  height: 32px;
  z-index: 3;
}

@media screen and (max-width: 599px) {
  .l-header__menuTrigger {
    display: inline-block;
  }
}

.l-header__menuTrigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}

.l-header__menuTrigger span:nth-of-type(1) {
  top: 0;
}

.l-header__menuTrigger span:nth-of-type(2) {
  top: 14px;
}

.l-header__menuTrigger span:nth-of-type(3) {
  bottom: 0;
}

.l-header__menuTrigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}

.l-header__menuTrigger.active span:nth-of-type(2) {
  opacity: 0;
}

.l-header__menuTrigger.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}

.l-main {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.l-footer {
  height: 64px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  background-color: #5654a2;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .l-footer {
    height: 60px;
  }
}

@media screen and (max-width: 320px) {
  .l-footer {
    font-size: 12px;
  }
}

.l-sidebar {
  width: 300px;
  height: 75%;
  margin-right: 40px;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .l-sidebar {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
    margin-right: 0;
  }
}

@media screen and (max-width: 599px) {
  .l-sidebar {
    width: 100%;
    height: 100%;
    margin-top: 40px;
    margin-right: 0;
  }
}

@media screen and (max-width: 599px) {
  .l-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* object
 * ================================= */

/* component ---------- */

.c-btn {
  width: 120px;
  height: 40px;
  border-radius: 3px;
  border: none;
  box-shadow: 3px 3px 3px #b8b8b8;
  text-align: center;
  cursor: pointer;
}

.c-errMsg {
  color: #d7003a;
}

@media screen and (max-width: 599px) {
  .c-errMsg {
    font-size: 14px;
  }
}

.c-sidebar__menublock {
  margin-bottom: 40px;
  width: 100%;
}

@media screen and (max-width: 280px) {
  .c-sidebar__menublock {
    font-size: 14px;
  }
}

.c-sidebar__menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-top: solid 1px #f6f5f5;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  height: 60px;
  background-color: #5654a2;
}

@media screen and (max-width: 599px) {
  .c-sidebar__menu {
    width: 100%;
  }
}

.c-sidebar__menu--short {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-bottom: 20px;
  border-bottom: solid 1px #fff;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  height: 60px;
  background-color: #5654a2;
}

@media screen and (max-width: 599px) {
  .c-sidebar__menu--short {
    width: 100%;
  }
}

.c-sidebar__menu--mid {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-bottom: solid 1px #fff;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  height: 60px;
  background-color: #5654a2;
}

@media screen and (max-width: 599px) {
  .c-sidebar__menu--mid {
    width: 100%;
  }
}

.c-sidebar__menu--title {
  font-size: 18px;
  color: #2F2725;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 5px;
}

@media screen and (max-width: 280px) {
  .c-sidebar__menu--title {
    font-size: 14px;
  }
}

.c-sidebar__menu--link {
  color: #f6f5f5;
}

.c-sidebar__menu--link:hover {
  text-decoration: underline;
}

.c-flashMsgContainer {
  width: 100%;
  height: 64px;
  background-color: #BBBCDE;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  position: fixed;
  top: 9%;
  z-index: 3;
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .c-pagination {
    margin-top: 10px;
  }
}

.c-pagination__item.active {
  padding: 5px;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4052A2;
  margin: 5px;
  font-size: 14px;
}

.c-pagination__item.active .c-pagination__item--link {
  color: #fff;
}

.c-pagination__item.disabled {
  color: #333;
}

.c-pagination__item {
  padding: 5px;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CED1D3;
  color: #444;
  margin: 5px;
  font-size: 14px;
}

.c-img {
  width: 200px;
  height: 150px;
}

.c-countarea--changecolor {
  color: #d7003a;
}

/* project ---------- */

.p-top {
  background-color: #fff;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .p-top {
    display: flex;
    flex-direction: column;
  }
}

.p-top__sentence {
  width: 100%;
  text-align: left;
  font-size: 30px;
  color: #4052A2;
  line-height: 2;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .p-top__sentence {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .p-top__sentence {
    font-size: 24px;
  }
}

@media screen and (max-width: 599px) {
  .p-top__sentence {
    width: 100%;
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-top__sentence {
    font-size: 12px;
  }
}

.p-top__imgContainer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 40px;
  box-sizing: border-box;
}

.p-top__imgContainer--img {
  width: 45%;
}

@media screen and (max-width: 599px) {
  .p-top__imgContainer--img {
    width: 100%;
  }
}

@media screen and (max-width: 1280px) {
  .p-top__imgContainer {
    width: 100%;
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .p-top__imgContainer {
    width: 100%;
    height: 650px;
  }
}

@media screen and (max-width: 768px) {
  .p-top__imgContainer {
    width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 599px) {
  .p-top__imgContainer {
    width: 100%;
    height: 30%;
    flex-direction: column;
  }
}

@media screen and (max-width: 320px) {
  .p-top__imgContainer {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 280px) {
  .p-top__imgContainer {
    width: 90%;
    padding: 30px;
  }
}

.p-top__content {
  background-color: #BBBCDE;
  display: flex;
  flex-direction: column;
  padding: 60px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .p-top__content {
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-top__content {
    height: 40%;
    padding: 30px;
  }
}

.p-top__content--feature {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 60px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .p-top__content--feature {
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-top__content--feature {
    height: 40%;
    padding: 30px;
  }
}

.p-top__title {
  font-size: 24px;
  color: #51318F;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 280px) {
  .p-top__title {
    font-size: 18px;
  }
}

.p-top__title--notpost {
  font-size: 24px;
  color: #51318F;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 599px) {
  .p-top__title--notpost {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-top__title--notpost {
    font-size: 14px;
  }
}

.p-top__contentBody {
  margin-top: 30px;
}

.p-top__contentSentence {
  line-height: 300%;
  font-size: 18px;
  text-align: justify;
  letter-spacing: 0.05em;
}

.p-top__panelContent {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .p-top__panelContent {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-top__panelContent {
    flex-direction: column;
  }
}

.p-top__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #BBBCDE;
  width: 370px;
  height: 350px;
  padding: 15px;
  border-radius: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .p-top__panel {
    width: 80%;
    height: 80%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-top__panel {
    width: 80%;
    height: 80%;
  }
}

@media screen and (max-width: 599px) {
  .p-top__panel {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }
}

.p-top__panel--title {
  text-align: center;
  font-size: 24px;
  color: #2F2725;
}

@media screen and (max-width: 1024px) {
  .p-top__panel--title {
    font-size: 14px;
    font-weight: bold;
  }
}

@media screen and (max-width: 280px) {
  .p-top__panel--title {
    font-size: 12px;
    font-weight: bold;
  }
}

.p-top__panel--img {
  width: 40%;
  height: 35%;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 280px) {
  .p-top__panel--sentence {
    font-size: 12px;
  }
}

.p-top__itemContent {
  background-color: #BBBCDE;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-top__itemContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
  width: 100%;
}

.p-top__itemContainer::after {
  display: block;
  content: "";
  width: 26%;
}

@media screen and (max-width: 1024px) {
  .p-top__itemContainer {
    justify-content: space-around;
  }
}

@media screen and (max-width: 768px) {
  .p-top__itemContainer::after {
    width: 320px;
  }
}

@media screen and (max-width: 280px) {
  .p-top__itemContainer {
    width: 100%;
  }
}

.p-top__item {
  width: 26%;
  border: 2px solid #51318F;
  border-radius: 5px;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
  background-color: #fff;
}

.p-top__item--footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-top__item {
    width: 320px;
  }
}

@media screen and (max-width: 280px) {
  .p-top__item {
    width: 100%;
  }
}

.p-top__label {
  color: #51318F;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.p-top__btn {
  background-color: #51318F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

@media screen and (max-width: 320px) {
  .p-top__btn {
    width: 100px;
  }
}

.p-top__btn:hover {
  opacity: 1;
}

.p-register {
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-register__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  margin-top: 100px;
  box-sizing: border-box;
}

@media screen and (max-width: 1280px) {
  .p-register__content {
    width: 60%;
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .p-register__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-register__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-register__content {
    width: 90%;
    height: 80%;
    padding: 30px;
  }
}

@media screen and (max-width: 320px) {
  .p-register__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 280px) {
  .p-register__content {
    width: 90%;
    padding: 30px;
  }
}

.p-register__form {
  width: 100%;
}

.p-register__title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #2F2725;
  margin-bottom: 40px;
}

.p-register__part {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.p-register__part--name {
  display: none;
}

.p-register__label {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #2F2725;
}

@media screen and (max-width: 320px) {
  .p-register__label {
    width: 170px;
    font-size: 12px;
  }
}

.p-register__require {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px;
  background-color: #d7003a;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 320px) {
  .p-register__require {
    width: 30px;
    height: 15px;
    font-size: 12px;
  }
}

.p-register__errMsg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
  .p-register__errMsg {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
  .p-register__errMsg {
    font-size: 10px;
  }
}

@media screen and (max-width: 280px) {
  .p-register__errMsg {
    font-size: 10px;
  }
}

.p-register__input {
  width: 100%;
  height: 30px;
}

.p-register__button {
  float: right;
}

.p-register__btn {
  background-color: #5654a2;
  color: #f6f5f5;
}

.p-register__btn:hover {
  cursor: pointer;
  opacity: 0.9;
}

.p-login {
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-login__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 1280px) {
  .p-login__content {
    width: 60%;
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .p-login__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-login__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-login__content {
    width: 90%;
    height: 70%;
    padding: 30px;
  }
}

@media screen and (max-width: 320px) {
  .p-login__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 280px) {
  .p-login__content {
    width: 90%;
    padding: 30px;
  }
}

.p-login__form {
  margin-top: 30px;
  width: 100%;
}

.p-login__title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #2F2725;
  margin-bottom: 40px;
}

.p-login__part {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

@media screen and (max-width: 280px) {
  .p-login__part {
    width: 100%;
  }
}

.p-login__label {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #2F2725;
}

@media screen and (max-width: 320px) {
  .p-login__label {
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-login__label {
    font-size: 12px;
  }
}

.p-login__errMsg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
  .p-login__errMsg {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
  .p-login__errMsg {
    font-size: 10px;
  }
}

@media screen and (max-width: 280px) {
  .p-login__errMsg {
    font-size: 10px;
  }
}

.p-login__input {
  width: 100%;
  height: 30px;
}

@media screen and (max-width: 320px) {
  .p-login__input {
    height: 20px;
  }
}

@media screen and (max-width: 280px) {
  .p-login__input {
    height: 20px;
  }
}

.p-login__button {
  float: right;
}

.p-login__btn {
  background-color: #5654a2;
  color: #fff;
}

.p-login__btn:hover {
  cursor: pointer;
  opacity: 0.9;
}

.p-login__link {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
  color: #5654a2;
}

@media screen and (max-width: 320px) {
  .p-login__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-login__link {
    font-size: 12px;
  }
}

.p-login__link:hover {
  text-decoration: underline;
}

.p-passReset {
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-passReset__content {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 1280px) {
  .p-passReset__content {
    width: 60%;
    height: 60%;
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .p-passReset__content {
    width: 80%;
    height: 70%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-passReset__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-passReset__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 320px) {
  .p-passReset__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 280px) {
  .p-passReset__content {
    width: 90%;
    padding: 30px;
  }
}

.p-passReset__title {
  font-size: 30px;
  text-align: center;
  color: #2F2725;
}

@media screen and (max-width: 599px) {
  .p-passReset__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-passReset__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-passReset__title {
    font-size: 14px;
  }
}

.p-passReset__sentence {
  margin-top: 40px;
}

@media screen and (max-width: 599px) {
  .p-passReset__sentence {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
  .p-passReset__sentence {
    font-size: 12px;
  }
}

@media screen and (max-width: 280px) {
  .p-passReset__sentence {
    font-size: 12px;
  }
}

.p-passReset__form {
  margin-top: 15px;
}

.p-passReset__input {
  height: 30px;
  width: 100%;
  margin-top: 10px;
  padding: 0;
}

.p-passReset__button {
  text-align: right;
}

.p-passReset__btn {
  margin-top: 20px;
  color: #fff;
  background-color: #5654a2;
}

@media screen and (max-width: 599px) {
  .p-passReset__btn {
    width: 80px;
    height: 30px;
  }
}

.p-passReset__btn:hover {
  opacity: 0.8;
}

.p-passReset__link {
  display: flex;
  justify-content: flex-end;
  color: #5654a2;
  margin-top: 20px;
}

.p-passReset__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 280px) {
  .p-passReset__link {
    margin-top: 15px;
  }
}

.p-postIdea {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-postIdea {
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdea {
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.p-postIdea__title {
  text-align: center;
  font-size: 30px;
  color: #2F2725;
  margin-bottom: 40px;
}

@media screen and (max-width: 320px) {
  .p-postIdea__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdea__title {
    font-size: 24px;
  }
}

.p-postIdea__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-postIdea__content {
    width: 95%;
    margin-top: 120px;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdea__content {
    width: 95%;
    margin-top: 120px;
  }
}

.p-postIdea__form {
  margin-top: 30px;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .p-postIdea__form {
    display: flex;
    flex-direction: column;
  }
}

.p-postIdea__part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .p-postIdea__part {
    font-size: 12px;
  }
}

.p-postIdea__label {
  width: 240px;
  margin-bottom: 10px;
  display: flex;
  color: #2F2725;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .p-postIdea__label {
    font-size: 16px;
  }
}

.p-postIdea__require {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px;
  background-color: #d7003a;
  color: #fff;
  font-size: 14px;
}

.p-postIdea__errMsg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
  .p-postIdea__errMsg {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 320px) {
  .p-postIdea__errMsg {
    font-size: 12px;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdea__errMsg {
    font-size: 10px;
  }
}

.p-postIdea__select {
  width: 100%;
  height: 36px;
}

.p-postIdea__input {
  width: 100%;
  height: 30px;
}

.p-postIdea__pricecontainer {
  display: flex;
  align-items: flex-end;
}

.p-postIdea__pricetag {
  margin-left: 10px;
}

.p-postIdea__countarea {
  text-align: right;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .p-postIdea__countarea {
    font-size: 12px;
    margin-top: 5px;
  }
}

.p-postIdea__countarea--comment {
  text-align: right;
  margin-top: 10px;
}

.p-postIdea__countarea--content {
  text-align: right;
  margin-top: 10px;
}

.p-postIdea__textarea {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 599px) {
  .p-postIdea__textarea {
    height: 330px;
  }
}

.p-postIdea__button {
  float: right;
}

@media screen and (max-width: 599px) {
  .p-postIdea__button {
    margin-bottom: 20px;
    text-align: right;
  }
}

.p-postIdea__btn {
  background-color: #5654a2;
  color: #fff;
  opacity: 0.9;
}

.p-postIdea__btn:hover {
  opacity: 1;
}

.p-postIdeaEdit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-postIdeaEdit {
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit {
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.p-postIdeaEdit__modal {
  display: none;
  width: 400px;
  height: 200px;
  background-color: #fff;
  padding: 15px;
  box-sizing: border-box;
  position: fixed;
  top: 20%;
  z-index: 1;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__modal {
    width: 90%;
  }
}

.p-postIdeaEdit__modal--cover {
  background-color: #b8b8b8;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.p-postIdeaEdit__sentence {
  margin-top: 20px;
}

.p-postIdeaEdit__title {
  text-align: center;
  font-size: 30px;
  color: #2F2725;
  margin-bottom: 40px;
}

@media screen and (max-width: 320px) {
  .p-postIdeaEdit__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdeaEdit__title {
    font-size: 24px;
  }
}

.p-postIdeaEdit__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-postIdeaEdit__content {
    width: 95%;
    margin-top: 120px;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__content {
    width: 95%;
    margin-top: 120px;
  }
}

.p-postIdeaEdit__form {
  margin-top: 30px;
  width: 100%;
}

.p-postIdeaEdit__form--modal {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__form {
    display: flex;
    flex-direction: column;
  }
}

.p-postIdeaEdit__part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__part {
    font-size: 12px;
  }
}

.p-postIdeaEdit__label {
  width: 240px;
  margin-bottom: 10px;
  display: flex;
  color: #2F2725;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__label {
    font-size: 16px;
  }
}

.p-postIdeaEdit__require {
  width: 40px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
  padding: 3px;
  background-color: #d7003a;
  color: #fff;
  font-size: 14px;
}

.p-postIdeaEdit__errMsg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__errMsg {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 320px) {
  .p-postIdeaEdit__errMsg {
    font-size: 12px;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdeaEdit__errMsg {
    font-size: 10px;
  }
}

.p-postIdeaEdit__select {
  width: 100%;
  height: 36px;
}

.p-postIdeaEdit__input {
  width: 100%;
  height: 30px;
}

.p-postIdeaEdit__pricecontainer {
  display: flex;
  align-items: flex-end;
}

.p-postIdeaEdit__pricetag {
  margin-left: 10px;
}

.p-postIdeaEdit__countarea {
  text-align: right;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__countarea {
    font-size: 12px;
    margin-top: 5px;
  }
}

.p-postIdeaEdit__countarea--comment {
  text-align: right;
  margin-top: 10px;
}

.p-postIdeaEdit__countarea--content {
  text-align: right;
  margin-top: 10px;
}

.p-postIdeaEdit__countarea--changecolor {
  color: #d7003a;
}

.p-postIdeaEdit__textarea {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__textarea {
    height: 330px;
  }
}

.p-postIdeaEdit__button {
  float: right;
  display: flex;
}

@media screen and (max-width: 599px) {
  .p-postIdeaEdit__button {
    margin-bottom: 20px;
    text-align: right;
  }
}

.p-postIdeaEdit__button--modal {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.p-postIdeaEdit__btn {
  background-color: #5654a2;
  color: #fff;
  margin-right: 15px;
  width: 80px;
  opacity: 0.9;
}

.p-postIdeaEdit__btn--delete {
  background-color: #d7003a;
  color: #fff;
  width: 80px;
  opacity: 0.9;
}

.p-postIdeaEdit__btn--delete:hover {
  opacity: 1;
}

.p-postIdeaEdit__btn:hover {
  opacity: 1;
}

.p-postIdeaList {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-postIdeaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-postIdeaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdeaList {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-postIdeaList__Container {
  width: 100%;
}

.p-postIdeaList__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  display: flex;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-postIdeaList__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-postIdeaList__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdeaList__title {
    width: 200px;
  }
}

.p-postIdeaList__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-postIdeaList__partContainer {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .p-postIdeaList__partContainer {
    flex-direction: column;
    align-items: center;
  }
}

.p-postIdeaList__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-postIdeaList__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-postIdeaList__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdeaList__content {
    width: 90%;
    align-items: center;
  }
}

.p-postIdeaList__part {
  color: #2F2725;
  border-top: 1px solid #BBBCDE;
}

@media screen and (max-width: 599px) {
  .p-postIdeaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .p-postIdeaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdeaList__part {
    width: 100%;
  }
}

.p-postIdeaList__item {
  display: flex;
  align-items: flex-start;
  padding: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .p-postIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-postIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-postIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-postIdeaList__item--part {
  padding: 5px;
  margin-left: 0;
}

.p-postIdeaList__item--link {
  display: flex;
  padding: 15px;
}

.p-postIdeaList__label {
  color: #51318F;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-postIdeaList__btn {
  display: block;
  width: 100px;
  background-color: #51318F;
  color: #fff;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 20px;
}

.p-postIdeaList__btn:hover {
  background-color: #fff;
  color: #51318F;
}

@media screen and (max-width: 320px) {
  .p-postIdeaList__btn {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-postIdeaList__btn {
    width: 120px;
    font-size: 12px;
  }
}

.p-postIdeaList__pagination {
  display: flex;
  justify-content: center;
  border-top: 1px solid #BBBCDE;
  padding: 20px;
}

.p-mypage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-mypage {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-mypage {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-mypage__Container {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .p-mypage__Container {
    width: 90%;
  }
}

.p-mypage__title {
  font-size: 24px;
  font-weight: bold;
  color: #2F2725;
  padding: 20px;
}

@media screen and (max-width: 599px) {
  .p-mypage__title {
    font-size: 16px;
  }
}

@media screen and (max-width: 320px) {
  .p-mypage__title {
    font-size: 14px;
    padding: 10px;
  }
}

@media screen and (max-width: 280px) {
  .p-mypage__title {
    width: 200px;
    font-size: 14px;
    padding: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .p-mypage__sidebarContainer {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage__sidebarContainer {
    width: 100%;
  }
}

.p-mypage__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-mypage__content {
  width: 700px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .p-mypage__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-mypage__content {
    width: 100%;
    align-items: center;
  }
}

.p-mypage__itemContainer {
  background-color: #fff;
  margin-top: 30px;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .p-mypage__itemContainer {
    margin-bottom: 30px;
    margin-top: 0px;
  }
}

.p-mypage__itemContainer--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-mypage__link {
  padding: 20px;
  color: #51318F;
}

@media screen and (max-width: 320px) {
  .p-mypage__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-mypage__link {
    font-size: 14px;
    padding: 10px;
    width: 70px;
  }
}

.p-mypage__link:hover {
  text-decoration: underline;
}

.p-mypage__item {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  border-top: 1px solid #BBBCDE;
}

@media screen and (max-width: 1024px) {
  .p-mypage__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-mypage__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-mypage__item--review {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  box-sizing: border-box;
  border-top: 1px solid #BBBCDE;
}

.p-mypage__item--part {
  padding: 5px;
}

.p-mypage__item--link {
  display: block;
  margin-left: 40px;
  background-color: #51318F;
  color: #fff;
  line-height: 40px;
}

.p-mypage__item--link:hover {
  background-color: #fff;
  color: #51318F;
  border: 2px solid #51318F;
}

@media screen and (max-width: 1024px) {
  .p-mypage__item--link {
    margin-left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage__item--link {
    margin-left: 0px;
  }
}

@media screen and (max-width: 599px) {
  .p-mypage__item--link {
    margin-left: 0px;
  }
}

@media screen and (max-width: 320px) {
  .p-mypage__item--link {
    width: 100px;
  }
}

.p-mypage__label {
  color: #51318F;
  font-weight: bold;
  font-size: 18px;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-mypage__postUserInfo {
  display: flex;
  align-items: center;
}

.p-mypage__img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 20px;
}

.p-mypage__star {
  color: #FABF13;
  font-size: 24px;
  padding: 5px;
  box-sizing: border-box;
}

.p-mypage__btn {
  background-color: #51318F;
  color: #fff;
  display: block;
  color: #fff;
  width: 220px;
  margin-left: 20px;
  border-radius: 30px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

.p-mypage__btn:hover {
  background-color: #fff;
  color: #51318F;
  border: 2px solid #51318F;
}

.p-mypage__btn--prof {
  background-color: #51318F;
  color: #fff;
  display: block;
  color: #fff;
  width: 220px;
  margin-left: 20px;
  border-radius: 30px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
}

@media screen and (max-width: 320px) {
  .p-mypage__btn--prof {
    height: 40px;
  }
}

.p-mypage__btn--prof:hover {
  background-color: #fff;
  color: #51318F;
  border: 2px solid #51318F;
}

.p-profile {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-profile {
    flex-direction: column-reverse;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-profile {
    flex-direction: column-reverse;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.p-profile__title {
  text-align: center;
  font-size: 30px;
  color: #2F2725;
  margin-bottom: 40px;
}

@media screen and (max-width: 320px) {
  .p-profile__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 280px) {
  .p-profile__title {
    font-size: 18px;
  }
}

.p-profile__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-profile__content {
    width: 95%;
    margin-top: 120px;
  }
}

@media screen and (max-width: 599px) {
  .p-profile__content {
    width: 100%;
    margin-top: 120px;
  }
}

@media screen and (max-width: 280px) {
  .p-profile__content {
    width: 100%;
    margin-top: 120px;
    padding: 20px;
  }
}

.p-profile__form {
  margin-top: 30px;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .p-profile__form {
    display: flex;
    flex-direction: column;
  }
}

.p-profile__part {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .p-profile__part {
    font-size: 12px;
  }
}

.p-profile__part--name {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.p-profile__part--img {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .p-profile__part--img {
    align-items: center;
  }
}

.p-profile__label {
  width: 240px;
  margin-bottom: 10px;
  color: #2F2725;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .p-profile__label {
    font-size: 16px;
  }
}

.p-profile__label--img {
  width: 240px;
  margin-bottom: 10px;
  color: #2F2725;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .p-profile__label--img {
    text-align: center;
    font-size: 16px;
  }
}

.p-profile__img {
  margin-right: 20px;
  height: 200px;
}

@media screen and (max-width: 599px) {
  .p-profile__img {
    margin-right: 0;
  }
}

.p-profile__imgContainer {
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 599px) {
  .p-profile__imgContainer {
    flex-direction: column;
  }
}

.p-profile__errMsg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 5px;
}

.p-profile__input {
  width: 100%;
  height: 30px;
}

.p-profile__input--img {
  display: none;
}

@media screen and (max-width: 599px) {
  .p-profile__input--img {
    font-size: 12px;
    margin-top: 15px;
  }
}

.p-profile__link {
  display: block;
  color: #51318F;
  margin-top: 10px;
}

.p-profile__link:hover {
  text-decoration: underline;
}

.p-profile__inputarea {
  background-color: #5654a2;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  opacity: 0.9;
}

@media screen and (max-width: 599px) {
  .p-profile__inputarea {
    margin-top: 15px;
  }
}

@media screen and (max-width: 280px) {
  .p-profile__inputarea {
    width: 100%;
  }
}

.p-profile__inputarea:hover {
  cursor: pointer;
  opacity: 1;
}

.p-profile__countarea {
  text-align: right;
  margin-top: 10px;
}

@media screen and (max-width: 599px) {
  .p-profile__countarea {
    font-size: 12px;
    margin-top: 5px;
  }
}

.p-profile__textarea {
  width: 100%;
  height: 200px;
}

@media screen and (max-width: 599px) {
  .p-profile__textarea {
    height: 330px;
  }
}

.p-profile__button {
  float: right;
}

@media screen and (max-width: 599px) {
  .p-profile__button {
    margin-bottom: 20px;
    text-align: right;
  }
}

.p-profile__btn {
  background-color: #5654a2;
  color: #fff;
  opacity: 0.9;
}

.p-profile__btn:hover {
  cursor: pointer;
  opacity: 1;
}

.p-deleteconfirm {
  width: 600px;
  height: 300px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .p-deleteconfirm {
    width: 90%;
  }
}

.p-deleteconfirm__modal {
  display: none;
  width: 400px;
  height: 200px;
  background-color: #fff;
  padding: 15px;
  box-sizing: border-box;
  position: fixed;
  top: 20%;
  z-index: 1;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .p-deleteconfirm__modal {
    width: 90%;
  }
}

.p-deleteconfirm__modal--cover {
  background-color: #b8b8b8;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.p-deleteconfirm__sentence {
  margin-top: 20px;
}

.p-deleteconfirm__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-deleteconfirm__content--sentence {
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .p-deleteconfirm__content--sentence {
    text-align: left;
  }
}

.p-deleteconfirm__form {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.p-deleteconfirm__title {
  text-align: center;
  font-size: 30px;
  color: #4e4449;
  margin-bottom: 40px;
  color: #2F2725;
}

@media screen and (max-width: 280px) {
  .p-deleteconfirm__title {
    margin-bottom: 20px;
  }
}

.p-deleteconfirm__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.p-deleteconfirm__button--modal {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.p-deleteconfirm__btn {
  background-color: #d7003a;
  color: #fff;
  width: 300px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
}

.p-deleteconfirm__btn:hover {
  background-color: #fff;
  color: #d7003a;
  border: 2px solid #d7003a;
}

.p-deleteconfirm__modalBtn {
  background-color: #5654a2;
  color: #fff;
}

.p-deleteconfirm__modalBtn:hover {
  opacity: 0.9;
}

@media screen and (max-width: 320px) {
  .p-deleteconfirm__modalBtn {
    width: 80px;
  }
}

@media screen and (max-width: 280px) {
  .p-deleteconfirm__modalBtn {
    width: 80px;
  }
}

.p-deleteconfirm__modalBtn--delete {
  background-color: #d7003a;
  color: #fff;
}

.p-deleteconfirm__modalBtn--delete:hover {
  opacity: 0.9;
}

@media screen and (max-width: 320px) {
  .p-deleteconfirm__modalBtn--delete {
    width: 80px;
  }
}

@media screen and (max-width: 280px) {
  .p-deleteconfirm__modalBtn--delete {
    width: 80px;
  }
}

.p-deleteconfirm__link {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  color: #5654a2;
}

.p-deleteconfirm__link:hover {
  text-decoration: underline;
}

.p-passEdit {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-passEdit {
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  .p-passEdit {
    flex-direction: column-reverse;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 100px;
    margin-bottom: 0;
  }
}

.p-passEdit__content {
  width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 1280px) {
  .p-passEdit__content {
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .p-passEdit__content {
    width: 95%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-passEdit__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-passEdit__content {
    width: 100%;
    padding: 30px;
  }
}

@media screen and (max-width: 320px) {
  .p-passEdit__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 280px) {
  .p-passEdit__content {
    width: 100%;
    padding: 30px;
  }
}

.p-passEdit__title {
  font-size: 30px;
  text-align: center;
  color: #2F2725;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .p-passEdit__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-passEdit__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-passEdit__title {
    font-size: 24px;
  }
}

.p-passEdit__form {
  margin-top: 20px;
}

.p-passEdit__part {
  margin-bottom: 40px;
}

.p-passEdit__label {
  font-size: 18px;
  color: #2F2725;
}

@media screen and (max-width: 599px) {
  .p-passEdit__label {
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  .p-passEdit__label {
    font-size: 14px;
  }
}

.p-passEdit__errMsg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
  .p-passEdit__errMsg {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
  .p-passEdit__errMsg {
    font-size: 10px;
  }
}

@media screen and (max-width: 280px) {
  .p-passEdit__errMsg {
    font-size: 10px;
  }
}

.p-passEdit__input {
  width: 100%;
  height: 30px;
  margin-top: 5px;
}

.p-passEdit__button {
  text-align: right;
}

.p-passEdit__btn {
  margin-top: 10px;
  color: #fff;
  background-color: #5654a2;
}

@media screen and (max-width: 599px) {
  .p-passEdit__btn {
    width: 80px;
    height: 30px;
  }
}

.p-passEdit__btn:hover {
  opacity: 0.9;
}

.p-passEdit__returnMsg {
  display: block;
  margin-top: 20px;
  text-align: right;
  color: #4052A2;
}

@media screen and (max-width: 280px) {
  .p-passEdit__returnMsg {
    font-size: 12px;
  }
}

.p-passEdit__returnMsg:hover {
  text-decoration: underline;
}

.p-passChange {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-passChange {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-passChange {
    flex-direction: column-reverse;
    padding: 20px;
    box-sizing: border-box;
  }
}

.p-passChange__content {
  width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 1280px) {
  .p-passChange__content {
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .p-passChange__content {
    width: 65%;
    padding: 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-passChange__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 599px) {
  .p-passChange__content {
    width: 100%;
    padding: 30px;
  }
}

@media screen and (max-width: 320px) {
  .p-passChange__content {
    width: 90%;
    padding: 30px;
  }
}

@media screen and (max-width: 280px) {
  .p-passChange__content {
    width: 100%;
    padding: 30px;
  }
}

.p-passChange__title {
  font-size: 30px;
  text-align: center;
  color: #2F2725;
  margin-bottom: 40px;
}

@media screen and (max-width: 599px) {
  .p-passChange__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-passChange__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-passChange__title {
    font-size: 24px;
  }
}

.p-passChange__form {
  margin-top: 20px;
}

.p-passChange__part {
  margin-bottom: 40px;
}

.p-passChange__label {
  font-size: 18px;
  color: #2F2725;
}

@media screen and (max-width: 599px) {
  .p-passChange__label {
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  .p-passChange__label {
    font-size: 14px;
  }
}

.p-passChange__errMsg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
}

@media screen and (max-width: 599px) {
  .p-passChange__errMsg {
    font-size: 12px;
  }
}

@media screen and (max-width: 320px) {
  .p-passChange__errMsg {
    font-size: 10px;
  }
}

@media screen and (max-width: 280px) {
  .p-passChange__errMsg {
    font-size: 10px;
  }
}

.p-passChange__input {
  width: 100%;
  height: 30px;
  margin-top: 5px;
}

.p-passChange__button {
  text-align: right;
}

.p-passChange__btn {
  margin-top: 10px;
  color: #fff;
  background-color: #5654a2;
}

@media screen and (max-width: 599px) {
  .p-passChange__btn {
    width: 80px;
    height: 30px;
  }
}

.p-passChange__btn:hover {
  opacity: 0.9;
}

.p-passChange__returnMsg {
  display: block;
  margin-top: 20px;
  text-align: right;
  color: #4052A2;
}

@media screen and (max-width: 280px) {
  .p-passChange__returnMsg {
    font-size: 12px;
  }
}

.p-passChange__returnMsg:hover {
  text-decoration: underline;
}

.p-ideaDetail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-ideaDetail {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-ideaDetail {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaDetail {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-ideaDetail__modal {
  display: none;
  width: 400px;
  height: 200px;
  background-color: #fff;
  padding: 15px;
  box-sizing: border-box;
  position: fixed;
  top: 20%;
  left: 5%;
  z-index: 1;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .p-ideaDetail__modal {
    left: 0%;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__modal {
    width: 90%;
    left: 0%;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaDetail__modal {
    width: 90%;
  }
}

.p-ideaDetail__modal--cover {
  background-color: #b8b8b8;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.p-ideaDetail__Container {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 280px) {
  .p-ideaDetail__Container {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__Container {
    padding: 0;
  }
}

.p-ideaDetail__title {
  text-align: center;
  font-size: 30px;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__title {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 320px) {
  .p-ideaDetail__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaDetail__title {
    width: 200px;
  }
}

.p-ideaDetail__title--review {
  font-size: 30px;
  color: #2F2725;
  margin-bottom: 10px;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__title--review {
    font-size: 24px;
  }
}

.p-ideaDetail__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-ideaDetail__sentence--modal {
  margin-top: 20px;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__partContainer {
    flex-direction: column;
    align-items: center;
  }
}

.p-ideaDetail__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-ideaDetail__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-ideaDetail__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__content {
    width: 90%;
    align-items: center;
  }
}

.p-ideaDetail__part {
  margin-top: 30px;
  color: #2F2725;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 5px;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__part {
    width: 95%;
  }
}

@media screen and (max-width: 320px) {
  .p-ideaDetail__part {
    width: 90%;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaDetail__part {
    width: 95%;
  }
}

.p-ideaDetail__item {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  align-items: flex-start;
  padding: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .p-ideaDetail__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-ideaDetail__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-ideaDetail__item--part {
  padding: 5px;
  margin-left: 0;
}

.p-ideaDetail__label {
  color: #51318F;
  font-weight: bold;
  font-size: 18px;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-ideaDetail__postUserInfo {
  display: flex;
  align-items: center;
  padding: 5px;
}

.p-ideaDetail__postUserInfo--name {
  font-size: 18px;
}

.p-ideaDetail__postUserInfo--review {
  display: flex;
  align-items: center;
  padding: 5px;
  margin-bottom: 15px;
}

.p-ideaDetail__img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 20px;
}

.p-ideaDetail__button {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__button {
    margin-left: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-ideaDetail__button--share {
  width: 130px;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 5px;
  background-color: #2F2725;
  text-align: center;
  margin-right: 15px;
  color: #fff;
  opacity: 0.9;
}

.p-ideaDetail__button--share:hover {
  opacity: 1;
}

.p-ideaDetail__button--review {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.p-ideaDetail__button--disabled {
  display: flex;
  justify-content: center;
}

.p-ideaDetail__button--modal {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.p-ideaDetail__heart {
  font-size: 20px;
  position: absolute;
  right: 10%;
  margin-top: 3px;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__heart {
    right: 15%;
    margin-top: 12px;
  }
}

.p-ideaDetail__likeContainer {
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__likeContainer {
    margin-top: 15px;
  }
}

.p-ideaDetail__btn {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #51318F;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 30px;
  color: #fff;
}

.p-ideaDetail__btn--like {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #767676;
  padding: 5px;
  box-sizing: border-box;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__btn--like {
    margin-top: 10px;
  }
}

.p-ideaDetail__btn--unlike {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #767676;
  padding: 5px;
  box-sizing: border-box;
  color: #fff;
}

.p-ideaDetail__btn--disabled {
  width: 400px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b8b8b8;
  padding: 5px;
  margin-top: 10px;
  box-sizing: border-box;
  border-radius: 30px;
  color: #2F2725;
  font-weight: bold;
  font-size: 18px;
  pointer-events: none;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__btn--disabled {
    width: 300px;
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  .p-ideaDetail__btn--disabled {
    width: 270px;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaDetail__btn--disabled {
    width: 230px;
  }
}

.p-ideaDetail__btn--review {
  background-color: #51318F;
  color: #fff;
  float: right;
  opacity: 0.9;
}

.p-ideaDetail__btn--review:hover {
  opacity: 1;
}

.p-ideaDetail__btn:hover {
  background-color: #fff;
  color: #51318F;
}

.p-ideaDetail__btn--buy {
  background-color: #5654a2;
  color: #fff;
  width: 80px;
  opacity: 0.9;
}

.p-ideaDetail__btn--buy:hover {
  opacity: 1;
}

.p-ideaDetail__btn:hover {
  opacity: 1;
}

.p-ideaDetail__btn--cancel {
  background-color: #5654a2;
  color: #fff;
  width: 80px;
  opacity: 0.9;
}

.p-ideaDetail__btn--cancel:hover {
  opacity: 1;
}

.p-ideaDetail__btn:hover {
  opacity: 1;
}

.p-ideaDetail__btn--link {
  display: block;
  width: 100px;
  background-color: #51318F;
  color: #fff;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 20px;
}

.p-ideaDetail__btn--link:hover {
  background-color: #fff;
  color: #51318F;
}

@media screen and (max-width: 320px) {
  .p-ideaDetail__btn--link {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaDetail__btn--link {
    width: 120px;
    font-size: 12px;
  }
}

.p-ideaDetail .likeheart {
  font-size: 20px;
  position: relative;
  right: 10%;
  color: #F29C9F;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail .likeheart {
    right: 10%;
    margin-top: 11px;
  }
}

.p-ideaDetail .likebtn {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #BBBCDE;
  color: #51318F;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail .likebtn {
    margin-top: 10px;
  }
}

.p-ideaDetail__formContainer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__formContainer {
    width: 100%;
  }
}

.p-ideaDetail__formContainer--review {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__formContainer--review {
    width: 100%;
  }
}

.p-ideaDetail__form {
  justify-content: center;
}

.p-ideaDetail__form--review {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.p-ideaDetail__form--modal {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.p-ideaDetail__starContainer {
  display: flex;
  flex-direction: column;
  padding: 5px;
  box-sizing: border-box;
}

.p-ideaDetail__starContainer--title {
  color: #51318F;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.p-ideaDetail__starContainer--part {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.p-ideaDetail__starContainer--part label {
  position: relative;
  color: #b8b8b8;
  cursor: pointer;
  font-size: 18px;
}

.p-ideaDetail__starContainer--part label:hover {
  color: #FABF13;
  cursor: pointer;
}

.p-ideaDetail__starContainer--part label:hover ~ label {
  color: #FABF13;
}

.p-ideaDetail__starContainer--part input[type=radio]:checked ~ label {
  color: #FABF13;
}

.p-ideaDetail__radio {
  opacity: 0;
  z-index: 1;
  position: relative;
  right: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.p-ideaDetail__reviewStar {
  color: #FABF13;
  font-size: 24px;
}

.p-ideaDetail__countarea {
  text-align: right;
  margin-top: 10px;
}

.p-ideaDetail__textarea {
  height: 200px;
}

.p-ideaDetail__review {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .p-ideaDetail__review {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaDetail__review {
    width: 100%;
  }
}

.p-ideaDetail__reviewContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
  border-top: 1px solid #BBBCDE;
}

.p-ideaDetail__reviewContainer--user {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}

.p-ideaDetail__reviewContainer--part {
  padding: 5px;
  margin-left: 0;
}

.p-ideaDetail__reviewContainer--comment {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
}

.p-ideaDetail__star {
  font-size: 24px;
}

.p-ideaList {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-ideaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-ideaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaList {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-ideaList__Container {
  width: 100%;
}

.p-ideaList__searchBox {
  display: flex;
  align-items: center;
  padding: 10px;
}

.p-ideaList__searchContainer {
  width: 200px;
  display: flex;
  position: relative;
  border-radius: 5px;
}

@media screen and (max-width: 280px) {
  .p-ideaList__searchContainer {
    margin-bottom: 30px;
  }
}

.p-ideaList__category {
  height: 36px;
  width: 110px;
  border-top: 2px solid #51318F;
  border-left: 2px solid #51318F;
  border-bottom: 2px solid #51318F;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: absolute;
  z-index: 1;
  -webkit-appearance: none;
}

@media screen and (max-width: 280px) {
  .p-ideaList__category {
    width: 88px;
  }
}

.p-ideaList__search {
  width: 250px;
  height: 30px;
  border: 2px solid #51318F;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
  left: 107px;
  -webkit-appearance: none;
}

@media screen and (max-width: 280px) {
  .p-ideaList__search {
    font-size: 10px;
    width: 145px;
    position: absolute;
    left: 86px;
  }
}

.p-ideaList__searchIcon {
  position: absolute;
  left: 285px;
  top: 7px;
}

@media screen and (max-width: 1024px) {
  .p-ideaList__searchIcon {
    right: 3%;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaList__searchIcon {
    left: 285px;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaList__searchIcon {
    left: 220px;
  }
}

.p-ideaList__sortContainer {
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

.p-ideaList__sortContainer--part {
  margin-bottom: 10px;
}

.p-ideaList__sort {
  background-color: #BBBCDE;
  margin-right: 10px;
  padding: 5px;
  box-sizing: border-box;
  width: 130px;
  border-radius: 5px;
  border: none;
  color: #4052A2;
}

.p-ideaList__sort:hover {
  cursor: pointer;
}

@media screen and (max-width: 280px) {
  .p-ideaList__sort {
    margin-bottom: 10px;
  }
}

.p-ideaList__sortIcon {
  margin-left: 5px;
  color: #4052A2;
}

.p-ideaList__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  display: flex;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-ideaList__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-ideaList__title {
    font-size: 18px;
  }
}

.p-ideaList__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-ideaList__partContainer {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .p-ideaList__partContainer {
    align-items: center;
  }
}

.p-ideaList__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-ideaList__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-ideaList__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaList__content {
    width: 90%;
    align-items: center;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaList__content {
    width: 90%;
  }
}

.p-ideaList__part {
  margin-top: 20px;
  border-top: 1px solid #BBBCDE;
  color: #2F2725;
  padding: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .p-ideaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .p-ideaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaList__part {
    width: 100%;
  }
}

.p-ideaList__itemContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.p-ideaList__item {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .p-ideaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-ideaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-ideaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-ideaList__item--part {
  padding: 5px;
  margin-left: 0;
}

.p-ideaList__item--link {
  display: flex;
}

.p-ideaList__label {
  color: #51318F;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-ideaList__btn {
  display: block;
  background-color: #51318F;
  color: #fff;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 20px;
}

.p-ideaList__btn:hover {
  background-color: #fff;
  color: #51318F;
}

@media screen and (max-width: 320px) {
  .p-ideaList__btn {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-ideaList__btn {
    width: 120px;
    font-size: 12px;
  }
}

.p-ideaList__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid #BBBCDE;
}

.p-boughtIdeaList {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-boughtIdeaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-boughtIdeaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-boughtIdeaList {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-boughtIdeaList__Container {
  width: 100%;
}

.p-boughtIdeaList__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  display: flex;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-boughtIdeaList__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-boughtIdeaList__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-boughtIdeaList__title {
    width: 200px;
  }
}

.p-boughtIdeaList__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-boughtIdeaList__partContainer {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .p-boughtIdeaList__partContainer {
    align-items: center;
  }
}

.p-boughtIdeaList__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-boughtIdeaList__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-boughtIdeaList__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-boughtIdeaList__content {
    width: 90%;
    align-items: center;
  }
}

@media screen and (max-width: 280px) {
  .p-boughtIdeaList__content {
    width: 90%;
  }
}

.p-boughtIdeaList__part {
  margin-top: 20px;
  border-top: 1px solid #BBBCDE;
  color: #2F2725;
  padding: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .p-boughtIdeaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .p-boughtIdeaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 280px) {
  .p-boughtIdeaList__part {
    width: 100%;
  }
}

.p-boughtIdeaList__itemContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.p-boughtIdeaList__itemContainer--review {
  display: flex;
}

.p-boughtIdeaList__item {
  display: flex;
  margin-bottom: 15px;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .p-boughtIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-boughtIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-boughtIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-boughtIdeaList__item--part {
  padding: 5px;
  margin-left: 0;
}

.p-boughtIdeaList__item--link {
  display: flex;
}

.p-boughtIdeaList__label {
  color: #51318F;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-boughtIdeaList__btn {
  display: block;
  background-color: #51318F;
  color: #fff;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 20px;
}

.p-boughtIdeaList__btn:hover {
  background-color: #fff;
  color: #51318F;
}

@media screen and (max-width: 320px) {
  .p-boughtIdeaList__btn {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-boughtIdeaList__btn {
    width: 120px;
    font-size: 12px;
  }
}

.p-boughtIdeaList__pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid #BBBCDE;
}

.p-likeIdeaList {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-likeIdeaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-likeIdeaList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-likeIdeaList__Container {
  width: 100%;
}

.p-likeIdeaList__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  display: flex;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-likeIdeaList__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-likeIdeaList__title {
    width: 200px;
  }
}

.p-likeIdeaList__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-likeIdeaList__partContainer {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__partContainer {
    flex-direction: column;
    align-items: center;
  }
}

.p-likeIdeaList__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-likeIdeaList__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-likeIdeaList__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__content {
    width: 90%;
    align-items: center;
  }
}

.p-likeIdeaList__part {
  color: #2F2725;
  border-top: 1px solid #BBBCDE;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .p-likeIdeaList__part {
    width: 100%;
  }
}

@media screen and (max-width: 280px) {
  .p-likeIdeaList__part {
    width: 100%;
  }
}

.p-likeIdeaList__item {
  display: flex;
  align-items: flex-start;
  padding: 5px;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .p-likeIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-likeIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-likeIdeaList__item--part {
  padding: 5px;
  margin-left: 0;
}

.p-likeIdeaList__item--link {
  display: flex;
  padding: 15px;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__item--link {
    display: flex;
    flex-direction: column;
  }
}

.p-likeIdeaList__label {
  color: #51318F;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-likeIdeaList__btn {
  display: block;
  width: 100px;
  background-color: #51318F;
  color: #fff;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__btn {
    width: 130px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 320px) {
  .p-likeIdeaList__btn {
    width: 100px;
    font-size: 14px;
  }
}

.p-likeIdeaList__btn--like {
  width: 220px;
  background-color: #51318F;
  color: #fff;
  background-color: #767676;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.9;
}

.p-likeIdeaList__btn--like:hover {
  opacity: 1;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__btn--like {
    margin-top: 10px;
  }
}

.p-likeIdeaList__btn:hover {
  background-color: #fff;
  color: #51318F;
}

.p-likeIdeaList__heart {
  font-size: 20px;
  margin-left: 15px;
  margin-top: 3px;
  color: #fff;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .p-likeIdeaList__heart {
    margin-left: 20px;
  }
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList__heart {
    margin-left: 20px;
  }
}

.p-likeIdeaList .likeheart {
  font-size: 20px;
  position: relative;
  right: 3%;
  color: #F29C9F;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList .likeheart {
    margin-top: 6px;
  }
}

.p-likeIdeaList .likebtn {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #BBBCDE;
  color: #51318F;
}

@media screen and (max-width: 599px) {
  .p-likeIdeaList .likebtn {
    margin-top: 10px;
  }
}

.p-likeIdeaList__pagination {
  display: flex;
  justify-content: center;
  border-top: 1px solid #BBBCDE;
  padding: 20px;
}

.p-reviewList {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-reviewList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-reviewList {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-reviewList {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-reviewList__Container {
  width: 100%;
}

.p-reviewList__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  display: flex;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-reviewList__title {
    font-size: 24px;
  }
}

@media screen and (max-width: 320px) {
  .p-reviewList__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-reviewList__title {
    width: 200px;
  }
}

.p-reviewList__sentence {
  border-top: 1px solid #BBBCDE;
  padding: 15px;
}

.p-reviewList__partContainer {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 599px) {
  .p-reviewList__partContainer {
    flex-direction: column;
    align-items: center;
  }
}

.p-reviewList__content {
  width: 700px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-reviewList__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-reviewList__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-reviewList__content {
    width: 90%;
    align-items: center;
  }
}

.p-reviewList__part {
  border-top: 1px solid #BBBCDE;
  color: #2F2725;
  padding: 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .p-reviewList__part {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  .p-reviewList__part {
    width: 100%;
  }
}

@media screen and (max-width: 280px) {
  .p-reviewList__part {
    width: 100%;
  }
}

.p-reviewList__itemContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.p-reviewList__item {
  display: flex;
  margin-bottom: 5px;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .p-reviewList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .p-reviewList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 599px) {
  .p-reviewList__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-reviewList__item--part {
  padding: 5px;
  margin-left: 0;
}

.p-reviewList__item--link {
  display: flex;
}

.p-reviewList__item--user {
  display: flex;
  margin-bottom: 5px;
}

.p-reviewList__label {
  color: #51318F;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
}

.p-reviewList__btn {
  display: block;
  background-color: #51318F;
  color: #fff;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 20px;
}

.p-reviewList__btn:hover {
  background-color: #fff;
  color: #51318F;
}

@media screen and (max-width: 320px) {
  .p-reviewList__btn {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 280px) {
  .p-reviewList__btn {
    width: 120px;
    font-size: 12px;
  }
}

.p-reviewList__img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.p-reviewList__star {
  color: #FABF13;
  font-size: 18px;
}

.p-reviewEdit {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 150px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1024px) {
  .p-reviewEdit {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .p-reviewEdit {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 599px) {
  .p-reviewEdit {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

.p-reviewEdit__title {
  text-align: center;
  font-size: 30px;
  color: #2F2725;
  margin-bottom: 10px;
}

@media screen and (max-width: 599px) {
  .p-reviewEdit__title {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 320px) {
  .p-reviewEdit__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 280px) {
  .p-reviewEdit__title {
    width: 200px;
  }
}

.p-reviewEdit__content {
  width: 700px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-reviewEdit__content {
    width: 97%;
  }
}

@media screen and (max-width: 768px) {
  .p-reviewEdit__content {
    width: 95%;
  }
}

@media screen and (max-width: 599px) {
  .p-reviewEdit__content {
    width: 90%;
    align-items: center;
  }
}

.p-reviewEdit__item {
  color: #51318F;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.p-reviewEdit__item--part {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.p-reviewEdit__button {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 599px) {
  .p-reviewEdit__button {
    margin-left: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-reviewEdit__button--review {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.p-reviewEdit__btn {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #51318F;
  border: 2px solid #51318F;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 30px;
  color: #fff;
}

.p-reviewEdit__btn--review {
  background-color: #51318F;
  color: #fff;
  float: right;
  opacity: 0.9;
}

.p-reviewEdit__btn--review:hover {
  opacity: 1;
}

.p-reviewEdit__btn:hover {
  background-color: #fff;
  color: #51318F;
}

.p-reviewEdit__formContainer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
}

@media screen and (max-width: 599px) {
  .p-reviewEdit__formContainer {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .p-reviewEdit__formContainer--review {
    width: 100%;
  }
}

.p-reviewEdit__form {
  justify-content: center;
}

.p-reviewEdit__form--review {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.p-reviewEdit__starContainer {
  display: flex;
  flex-direction: column;
}

.p-reviewEdit__starContainer--title {
  color: #51318F;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.p-reviewEdit__starContainer--part {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.p-reviewEdit__starContainer--part label {
  position: relative;
  color: #b8b8b8;
  cursor: pointer;
  font-size: 18px;
}

.p-reviewEdit__starContainer--part label:hover {
  color: #FABF13;
  cursor: pointer;
}

.p-reviewEdit__starContainer--part label:hover ~ label {
  color: #FABF13;
}

.p-reviewEdit__starContainer--part input[type=radio]:checked ~ label {
  color: #FABF13;
}

.p-reviewEdit__radio {
  opacity: 0;
  z-index: 1;
  position: relative;
  right: 30px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.p-reviewEdit__reviewStar {
  color: #FABF13;
  font-size: 24px;
}

.p-reviewEdit__countarea {
  text-align: right;
  margin-top: 10px;
}

.p-reviewEdit__textarea {
  height: 200px;
}

.p-reviewEdit__star {
  font-size: 24px;
}

