/* ===================================
common
=================================== */
br.sp {
  display: none;
}

.l-inner.p-mypage {
  max-width: 1100px;
}
.l-inner.p-mypage .l-main {
  width: 100%;
}

.l-mypage_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.l-mypage_wrap .l-mypage_side {
  width: 220px;
}
.l-mypage_wrap .l-mypage_main {
  width: calc(100% - 260px);
}

@media screen and (max-width: 900px) {
  .l-mypage_wrap {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .l-mypage_wrap .l-mypage_main {
    width: 100%;
  }
  .l-mypage_wrap .l-mypage_side {
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 600px) {
  br.sp {
    display: inline-block;
  }
}
/* ===================================
no-header
=================================== */
.c-head_no {
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-head_no {
  border-top: 8px solid #57AAB2;
}
.l-head_no .c-logo {
  max-width: 481px;
  margin: 0 auto;
  padding-top: 30px;
}

.c-head_no .l-footer {
  margin-top: auto;
}

.c-head_no .l-footer .c-copy {
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-head_no .c-logo {
    padding: 30px 20px;
  }
}
/* ===================================
login
=================================== */
.p-login .l-main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.c-2col_box {
  display: flex;
  justify-content: center;
  margin: 20px auto 0;
}
.c-2col_box > div {
  border: 1px solid #CECECE;
  border-radius: 5px;
  width: calc((100% - 40px) / 2);
  padding: 20px;
}
.c-2col_box > div + div {
  margin-left: 40px;
}
.c-2col_box .c-ttl_color {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.c-2col_box .c-innner02 {
  padding-top: 20px;
}
.c-2col_box .c-innner02-2 {
  display: flex;
  align-items: center;
}
.c-2col_box .c-submit > *,
.c-2col_box .c-btn a.c-btn_or {
  font-size: 1.6rem;
  font-weight: bold;
  width: 200px;
  height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #F77954;
  transition: 0.5s;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 5px !important;
}
.c-2col_box .c-submit > *:hover,
.c-2col_box .c-btn a.c-btn_or:hover {
  opacity: 0.5;
}
.c-2col_box .c-cap_text {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #CECECE;
  font-size: 1.3rem;
}
.c-2col_box .c-cap_text a {
  text-decoration: underline;
  color: #57AAB2;
}

.c-login_list {
  padding: 30px 0 20px;
}
.c-login_list > div {
  display: flex;
}
.c-login_list > div + div {
  margin-top: 20px;
}
.c-login_list dt {
  width: 120px;
  font-weight: bold;
  padding-top: 10px;
}
.c-login_list dd {
  width: calc(100% - 120px);
}
.c-login_list dd input {
  background: #F3F3F3;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px;
  width: 100%;
}
.c-login_list dd input::-moz-placeholder {
  color: rgba(68, 68, 68, 0.4);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.c-login_list dd input::placeholder {
  color: rgba(68, 68, 68, 0.4);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.c-login_list dd input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F3F3F3 inset;
  -webkit-text-fill-color: #444;
}
.c-login_list dd .c-check {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 1.2rem;
}
.c-login_list dd .c-check input[type=checkbox] {
  width: auto;
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  margin: 0 5px 0 0px;
}

@media screen and (max-width: 1024px) {
  .c-login_list dd .c-check {
    align-items: flex-start;
  }
  .c-login_list dd .c-check input[type=checkbox] {
    margin-top: 3px;
  }
  .c-2col_box > div + div {
    margin-left: 20px;
  }
  .c-2col_box > div {
    width: calc((100% - 20px) / 2);
    padding: 20px 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-2col_box {
    display: block;
    padding-bottom: 50px;
  }
  .c-2col_box > div {
    width: 100%;
  }
  .c-2col_box > div + div {
    margin: 20px 0 0;
  }
  .c-2col_box .c-innner02-2 {
    padding: 20px 0;
  }
}
@media screen and (max-width: 600px) {
  .c-2col_box .c-ttl_color {
    font-size: 1.8rem;
  }
  .c-login_list > div {
    display: block;
  }
  .c-login_list dt {
    width: 100%;
    padding-bottom: 10px;
  }
  .c-login_list dd {
    width: 100%;
  }
}
/* ===================================
register
=================================== */
.p-register .l-main {
  width: 840px;
  margin: 0 auto;
  padding-top: 20px;
}
.p-register .l-main .c-ttl_color + .c-text {
  text-align: center;
  padding-top: 30px;
}
.p-register .l-main .c-red {
  font-size: 1.2rem;
  color: #F84343;
}

.c-ttl_color.p-center {
  text-align: center;
}

.c-form_area {
  margin-top: 50px;
}
.c-form_area .c-submit {
  margin: 30px 0 100px;
}
.c-form_area .c-submit.no-active input {
  background: #CECECE;
  pointer-events: none;
}
.c-form_area .c-submit.no-active input:hover {
  opacity: 1;
}
.c-form_area .c-submit input {
  font-size: 1.8rem;
  font-weight: bold;
  width: 240px;
  height: 66px;
  border-radius: 5px;
  margin: 0 auto;
  display: block;
  color: #fff;
  background: #F77954;
  transition: 0.5s;
}
.c-form_area .c-submit input:hover {
  opacity: 0.5;
}

.c-form_list > div {
  display: flex;
}
.c-form_list > div + div {
  margin-top: 30px;
}
.c-form_list dt {
  padding-top: 10px;
  font-weight: bold;
  width: 210px;
}
.c-form_list dd {
  width: calc(100% - 210px);
}
.c-form_list dd .c-wrap + .c-wrap {
  margin-top: 20px;
}
.c-form_list dd .c-wrap.p-2col {
  display: flex;
  justify-content: space-between;
}
.c-form_list dd .c-wrap.p-2col div {
  width: calc((100% - 20px) / 2);
}
.c-form_list dd .c-wrap.p-2col input {
  width: 100%;
}
.c-form_list .c-req {
  color: #F84343;
  padding-left: 3px;
}
.c-form_list .c-sub {
  margin: 12px 0 5px 15px;
}
.c-form_list input + .c-sub {
  margin: 5px 0 0 15px;
  font-size: 1.2rem;
}
.c-form_list input {
  background: #F3F3F3;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px 15px;
  width: 100%;
}
.c-form_list input::-moz-placeholder {
  color: rgba(68, 68, 68, 0.4);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.c-form_list input::placeholder {
  color: rgba(68, 68, 68, 0.4);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.c-form_list input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F3F3F3 inset;
  -webkit-text-fill-color: #444;
}
.c-form_list .c-select {
  position: relative;
  margin: 0 auto;
  width: 220px;
  height: 44px;
}
.c-form_list .c-select:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  position: absolute;
  top: calc(50% - 7px);
  right: 16px;
  transform: rotate(135deg);
}
.c-form_list .c-select select {
  width: 100%;
  height: 100%;
  border: none;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 5px;
  background: #F7F7F7;
  color: #444;
  line-height: 1;
}
.c-form_list .c-fille {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 30px);
}
.c-form_list .c-fille label {
  display: inline-block;
  position: relative;
  background: #444444;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
}
.c-form_list .c-fille label:hover {
  opacity: 0.5;
}
.c-form_list .c-fille label input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.c-form_list .c-fille .c-filename {
  margin: 5px 10px;
  display: inline-block;
}
.c-form_list .c-fille input[id*=js-clear] {
  background: no-repeat;
  width: auto;
  position: absolute;
  top: 9px;
  right: -25px;
  padding: 0;
}
.c-form_list .c-wrap.p-small {
  max-width: 220px;
}

.c-agree_area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #CECECE;
}
.c-agree_area .c-red_text {
  font-weight: bold;
  text-align: center;
  color: #F84343;
}
.c-agree_area .c-red_text a {
  text-decoration: underline;
}
.c-agree_area .c-red_text .js-kiyaku-pop {
  text-decoration: underline;
  transition: 0.5s;
  cursor: pointer;
}
.c-agree_area .c-red_text .js-kiyaku-pop:hover {
  opacity: 0.5;
}
.c-agree_area .c-check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-agree_area .c-check input[type=checkbox] {
  width: auto;
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  margin: 0 10px 0 0px;
  transform: scale(1.5);
}

@media screen and (max-width: 1024px) {
  .p-register .l-main {
    width: calc(100vw - 80px);
  }
}
@media screen and (max-width: 768px) {
  .p-register .l-main {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-register .l-main {
    padding-top: 0;
  }
  .c-form_list > div {
    display: block;
  }
  .c-form_list dt {
    width: 100%;
    padding-bottom: 10px;
  }
  .c-form_list dd {
    width: 100%;
  }
}
/* ===================================
mypage top
=================================== */
.l-mypage_top {
  margin-top: 30px;
}
.l-mypage_top .c-user {
  font-size: 1.2rem;
}
.l-mypage_top .c-btn_list {
  display: flex;
  margin-top: 20px;
}
.l-mypage_top .c-btn_list li {
  width: calc((100% - 40px) / 3);
  border: 1px solid #57AAB2;
  border-radius: 5px;
}
.l-mypage_top .c-btn_list li + li {
  margin-left: 20px;
}
.l-mypage_top .c-btn_list li a {
  position: relative;
  padding: 20px 35px 20px 20px;
  display: block;
}
.l-mypage_top .c-btn_list li a:before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #57AAB2;
  border-right: 2px solid #57AAB2;
  position: absolute;
  top: calc(50% - 4.5px);
  right: 25px;
  transform: rotate(45deg);
}
.l-mypage_top .c-btn_list li .c-ttl {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
.l-mypage_top .c-btn_list li .c-text {
  display: block;
}
.l-mypage_top .c-cancel {
  margin-top: 30px;
}
.l-mypage_top .c-cancel a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .l-mypage_top .c-btn_list {
    display: block;
    max-width: 500px;
  }
  .l-mypage_top .c-btn_list li {
    width: 100%;
  }
  .l-mypage_top .c-btn_list li + li {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .l-mypage_top .c-btn_list li .c-ttl {
    font-size: 1.8rem;
  }
  .l-mypage_top .c-btn_list li a {
    padding: 15px 30px 15px 15px;
  }
  .l-mypage_top .c-btn_list li a:before {
    right: 10px;
  }
}
/* ===================================
common side
=================================== */
.l-mypage_side .c-user {
  font-size: 1.2rem;
}
.l-mypage_side .c-cancel {
  margin-top: 20px;
}
.l-mypage_side .c-cancel a {
  text-decoration: underline;
}
.l-mypage_side .c-btn_list {
  margin-top: 20px;
}
.l-mypage_side .c-btn_list li {
  border: 1px solid #57AAB2;
  border-radius: 5px;
}
.l-mypage_side .c-btn_list li + li {
  margin-top: 10px;
}
.l-mypage_side .c-btn_list li a {
  position: relative;
  padding: 20px 35px 20px 20px;
  display: block;
}
.l-mypage_side .c-btn_list li a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #57AAB2;
  border-right: 2px solid #57AAB2;
  position: absolute;
  top: calc(50% - 4px);
  right: 22px;
  transform: rotate(45deg);
}
.l-mypage_side .c-btn_list li .c-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
}
.l-mypage_side .c-btn_list li .c-text {
  display: block;
}
.l-mypage_side .c-btn_list li.c-current a {
  background: #57AAB2;
  color: #fff;
}
.l-mypage_side .c-btn_list li.c-current a:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.l-mypage_main .c-ttl_color {
  font-size: 2rem;
}

@media screen and (max-width: 600px) {
  .l-mypage_main .c-ttl_color {
    font-size: 1.8rem;
  }
}
/* ===================================
favorite list
=================================== */
.c-group_list {
  display: flex;
  flex-wrap: wrap;
  margin: 10px -5px 0;
}
.c-group_list li {
  margin: 5px;
  width: calc((100% - 20px) / 2);
}
.c-group_list li a {
  display: flex;
  align-items: center;
  background: #F7F7F7;
  padding: 10px;
  border-radius: 5px;
}
.c-group_list .c-img {
  width: 80px;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.c-group_list .c-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-group_list .c-text {
  width: calc(100% - 120px);
  padding-left: 20px;
}
.c-group_list .c-text .c-name {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-group_list .c-text .c-num {
  display: block;
}
.c-group_list .c-ico {
  width: 34px;
  display: block;
  margin-right: 5px;
}
.c-group_list li.c-add a {
  min-height: 100px;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-group_list li.c-add a .c-add_iner {
  position: relative;
  padding-left: 50px;
}
.c-group_list li.c-add a .c-add_iner:before {
  content: "";
  width: 20px;
  height: 3px;
  background: #444444;
  position: absolute;
  top: 10px;
  left: 20px;
}
.c-group_list li.c-add a .c-add_iner:after {
  content: "";
  width: 3px;
  height: 20px;
  background: #444444;
  position: absolute;
  top: calc(50% - 10px);
  left: 28px;
}

@media screen and (max-width: 600px) {
  .c-group_list {
    margin: 20px 0 0;
  }
  .c-group_list li {
    width: 100%;
    margin: 0;
  }
  .c-group_list li + li {
    margin-top: 10px;
  }
  .c-group_list .c-text .c-name {
    font-size: 1.4rem;
  }
}
/* ===================================
favorite list / history
=================================== */
.c-select_area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  font-size: 1.6rem;
}
.c-select_area .c-select {
  position: relative;
  width: 140px;
  height: 40px;
  margin-right: 10px;
}
.c-select_area .c-select:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  position: absolute;
  top: calc(50% - 5px);
  right: 11px;
  transform: rotate(135deg);
}
.c-select_area .c-select select {
  width: 100%;
  height: 100%;
  border: none;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 5px;
  background: #fff;
  color: #444;
  line-height: 1;
  border: 1px solid #CECECE;
}

.c-date {
  font-size: 1.6rem;
  padding-top: 30px;
}

.c-data_list + .c-date {
  padding-top: 60px;
}

.c-text_group {
  margin: 5px 0 30px;
}

.c-data_list {
  margin-top: 20px;
  border-bottom: 1px solid #CECECE;
}
.c-data_list li {
  display: flex;
  align-items: center;
  border-top: 1px solid #CECECE;
  padding: 20px 0;
}
.c-data_list li > a {
  display: flex;
  align-items: center;
  width: calc(100% - 290px);
}
.c-data_list .c-img {
  width: 120px;
  border-radius: 5px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.c-data_list .c-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-data_list .c-num {
  padding-right: 50px;
}
.c-data_list .c-btn_area {
  width: 160px;
}
.c-data_list .c-btn_area a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  padding: 7px;
}
.c-data_list .c-btn_area a + a {
  margin-top: 5px;
}
.c-data_list .c-btn_area a.c-btn_or {
  border: 1px solid #F77954;
  background: #F77954;
  color: #fff;
}
.c-data_list .c-btn_area a.c-btn_wh {
  border: 1px solid #F77954;
  background: #fff;
  color: #F77954;
}
.c-data_list .c-text_area {
  padding-left: 20px;
  width: calc(100% - 120px);
}
.c-data_list .c-text_area .c-ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
.c-data_list .c-text_area .c-cat {
  color: #999999;
  margin-top: 5px;
}
.c-data_list .c-text_area .c-price {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
}
.c-data_list .c-text_area .c-price .c-yen {
  font-size: 1.6rem;
}
.c-data_list .c-text_area .c-price .c-tax {
  font-size: 1.2rem;
}
.c-data_list .c-text_area .c-detail {
  padding-top: 5px;
}
.c-data_list .c-select {
  position: relative;
  width: 80px;
  height: 40px;
}
.c-data_list .c-select:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  position: absolute;
  top: calc(50% - 5px);
  right: 11px;
  transform: rotate(135deg);
}
.c-data_list .c-select select {
  width: 100%;
  height: 100%;
  border: none;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 5px;
  background: #F7F7F7;
  color: #444;
  line-height: 1;
}
.c-data_list .c-select + a {
  text-decoration: underline;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
}

@media screen and (max-width: 767px) {
  .c-data_list li {
    flex-wrap: wrap;
  }
  .c-data_list .c-img {
    width: 80px;
    margin-bottom: 20px;
  }
  .c-data_list .c-text_area {
    width: calc(100% - 80px);
    margin-bottom: 20px;
  }
  .c-data_list .c-num {
    padding-right: 20px;
  }
  .c-data_list .c-btn_area {
    width: calc(100% - 100px);
    max-width: 300px;
  }
  .c-data_list li > a {
    width: 100%;
  }
}
/* ===================================
change
=================================== */
.l-mypage_main .c-form_area {
  margin-top: 30px;
}
.l-mypage_main .c-form_list dd .c-text {
  font-size: 1.6rem;
  padding: 10px 15px;
}
.l-mypage_main .c-form_area .c-submit input {
  width: 200px;
  height: 44px;
  font-size: 1.6rem;
}
.l-mypage_main .c-form_area .c-submit {
  margin-bottom: 0;
}

/* ===================================
contact
=================================== */
.l-main.p-contact {
  max-width: 840px;
  margin: 0 auto 0 40px;
}
.l-main.p-contact .c-ttl_color + .c-text {
  margin-top: 30px;
}
.l-main.p-contact .c-form_area {
  margin-top: 30px;
}
.l-main.p-contact .c-form_list > div + div {
  margin-top: 25px;
}
.l-main.p-contact .c-form_list textarea {
  resize: none;
  background: #F3F3F3;
  border: none;
  border-radius: 5px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px 15px;
  width: 100%;
  height: 200px;
}
.l-main.p-contact .c-form_area .c-submit {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .l-main.p-contact {
    max-width: none;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .l-main.p-contact .c-form_list textarea {
    height: 150px;
  }
  .l-main.p-contact .c-agree_area .c-red_text {
    font-size: 1.2rem;
  }
}
/* ===================================
entry
=================================== */
.error{
  color: red;
  display: inline;
}
.c-result{
  color: red;
  text-align: center;
}
.error-message {
  display: block;
  margin-top: 5px;
}
.l-content.p-entry {
  padding: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  min-height: calc(100vh - 68px);
}
.l-content.p-entry > main {
  width: 100%;
}

.l-entry_wrap {
  display: flex;
  height: 100%;
}
.l-entry_wrap .c-text_area {
  margin-right: 120px;
  width: 50%;
  background: url(../img/entry/bg_entry.png);
  background-size: cover;
}
.l-entry_wrap .c-text_area .c-in_wrap {
  width: 380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}
.l-entry_wrap .c-text_area .c-logo {
  max-width: 280px;
  margin: 0 auto 40px;
}
.l-entry_wrap .c-text_area .c-logo .p-sp {
  display: none;
}
.l-entry_wrap .c-text_area .c-text {
  text-align: center;
  line-height: 1.8;
}
.l-entry_wrap .c-text_area .c-text .p-red {
  display: block;
  font-size: 12px;
}
.l-entry_wrap > .c-form_area {
  width: calc(50% - 20px);
  padding: 40px 0;
}
.l-entry_wrap > .c-form_area form {
  max-width: 600px;
  padding-right: 20px;
}
.l-entry_wrap .c-form_list > div {
  display: block;
}
.l-entry_wrap .c-form_list > div + div {
  margin-top: 20px;
}
.l-entry_wrap .c-form_list dt {
  padding-top: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.l-entry_wrap .c-form_list dd {
  width: 100%;
}
.l-entry_wrap .c-agree_area {
  margin-top: 35px;
}

.l-entry_wrap .c-form_area {
  margin-top: 0;
}
.l-entry_wrap .c-form_area .c-submit {
  margin-bottom: 0;
}

.l-content.p-entry + .l-footer {
  margin-top: 0;
}

/* pop up */
.c-privacy_text {
  text-decoration: underline;
}
.c-privacy_text:hover {
  cursor:pointer;
}

.c-privacy_area {
  margin: 0 auto;
  position: fixed;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  width: 100%;
  max-width: 840px;
  z-index: 100;
  max-height: 85vh;
  overflow: auto;
}

.c-privacy_area_inner {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 40px 50px;
}
.c-privacy_area_inner .c-close {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 22px;
  font-weight: 100;
}
.c-privacy_area_inner .c-ttl {
  font-weight: bold;
  margin: 30px 0 10px;
}

@media screen and (max-width: 1400px) {
  .l-entry_wrap .c-text_area {
    margin-right: 5%;
    width: 45%;
  }
}
@media screen and (max-width: 1200px) {
  .l-entry_wrap .c-text_area {
    margin-right: 20px;
  }
  .l-entry_wrap > .c-form_area {
    width: calc(100% - 370px);
  }
  .l-entry_wrap .c-text_area .c-in_wrap {
    width: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .c-privacy_area {
    max-width: 90vw;
  }
}
@media screen and (max-width: 767px) {
  .l-entry_wrap {
    display: block;
  }
  .l-content.p-entry {
    padding: 0 20px;
  }
  .l-entry_wrap .c-text_area .c-text .p-red {
    color: #F84343;
  }
  .l-entry_wrap .c-text_area {
    margin: 0;
    padding: 20px 0 0;
    background: none;
    width: 100%;
  }
  .l-entry_wrap .c-text_area .c-in_wrap {
    width: 100%;
    display: block;
    color: #444444;
  }
  .l-entry_wrap .c-text_area .c-logo {
    margin-bottom: 20px;
  }
  .l-entry_wrap .c-text_area .c-logo .p-sp {
    display: block;
  }
  .l-entry_wrap .c-text_area .c-logo .p-pc {
    display: none;
  }
  .l-entry_wrap > .c-form_area {
    width: 100%;
  }
  .l-entry_wrap > .c-form_area form {
    max-width: none;
    padding: 0;
  }
}
