@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  font-family: "Noto Sans JP", sans-serif;
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.5rem;
}

.wrapper {
  max-width: 1020px;
  margin: 0 auto;
  flex: 1;
  /* コンテンツがスペースを埋めるようにする */
  padding: 0 20px;
}

.wrapper-s {
  max-width: 720px;
  margin: 0 auto;
  flex: 1;
  /* コンテンツがスペースを埋めるようにする */
  padding: 0 20px;
}

form {
  display: flex;
  flex-direction: column;
}
form .flex {
  display: flex;
  align-items: center;
}
@media (max-width: 430px) {
  form .flex {
    flex-flow: column;
  }
}
form .flex h4:first-child {
  width: 25%;
  font-weight: bold;
}
@media (max-width: 430px) {
  form .flex h4:first-child {
    width: 100%;
  }
}
form .flex input {
  margin: 0 5px 0 20px;
}
@media (max-width: 430px) {
  form .flex input {
    margin: 0.5rem 0 0 0;
  }
}
form .membership-type {
  display: flex;
  align-items: center;
}
@media (max-width: 430px) {
  form .membership-type {
    display: inline;
  }
}
form .membership-type h4:first-child {
  width: 25%;
  font-weight: bold;
}
form .membership-type input {
  margin: 0 5px 0 20px;
}
@media (max-width: 430px) {
  form .membership-type input {
    margin: 0.5rem 0 0 0;
  }
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  flex: 1;
  background: #fff;
  height: 5rem;
}

button {
  background-color: #0071bc;
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 30px auto;
}

button:hover {
  background-color: #0056b3;
}

a.button,
.add-credit {
  background-color: #0071bc;
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 auto 30px auto;
  display: inline-block;
}

a.button:hover {
  background-color: #0056b3;
}

hr {
  margin: 2.5rem 0;
}

h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.5rem;
  text-align: left;
}

.error {
  font-size: 1.5rem;
  color: #f34336;
}

.modal {
  display: none;
  position: fixed;
  z-index: 15;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 50px 20px 20px 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  position: relative;
  text-align: center;
  border-radius: 10px;
}
.modal .modal-content p {
  text-align: center;
  line-height: 2rem;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.modal .modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.modal .modal-content .close:hover,
.modal .modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
}

.gHeader {
  border-bottom: 1px solid;
  padding: 15px 0;
}
.gHeader .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gHeader .wrapper h1 {
  width: 70px;
}
.gHeader .wrapper .gNav {
  font-size: 1.2rem;
}
.gHeader .wrapper .gNav ul {
  display: flex;
}
.gHeader .wrapper .gNav ul li {
  border-left: 1px solid #aaa;
  padding: 0 2rem;
}
.gHeader .wrapper .gNav ul li:last-child {
  border-right: 1px solid #aaa;
}

/* バーガーメニューボタンのスタイル */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 25px;
  /* 高さを調整 */
  z-index: 1001;
  /* メニューが開いたときに前面に表示するため */
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

.menu-icon span:nth-child(1) {
  transform-origin: top left;
}

.menu-icon span:nth-child(2) {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.menu-icon span:nth-child(3) {
  transform-origin: bottom left;
}

.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .gNav {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 0;
    /* Adjust based on your design */
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .gNav ul {
    display: flex;
    flex-flow: column !important;
    font-size: 1.6rem;
  }
  .gNav ul li {
    border-left: none !important;
    padding: 0 2rem;
  }
  .gNav ul li:last-child {
    border-right: none !important;
  }
  .gNav.active {
    display: flex;
  }
  .gNav a {
    width: 100% !important;
    padding: 2rem 0;
    text-align: center;
    display: block;
  }
}
main {
  flex: 1;
  /* メインコンテンツがスペースを埋めるようにする */
  background-color: #f5f5f5;
  padding: 100px 0;
}
@media (max-width: 430px) {
  main {
    padding: 50px 0;
  }
}
main .top-logo {
  display: flex;
  justify-content: center;
}
main .top-logo img {
  width: 145px;
  margin: 0 0 9.5rem 0;
}
@media (max-width: 430px) {
  main .top-logo img {
    margin: 0 0 50px 0;
  }
}
main h2.top-head {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
  margin: 2.3rem 0 4.5rem 0;
}
main h4.top-attention {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 4.5rem 0;
  color: red;
}
main h2 {
  font-size: 2.8rem;
  text-align: left;
  font-weight: bold;
  margin: 2.3rem 0 5rem 0;
}
main h3 {
  font-size: 1.8rem;
  text-align: center;
}
main ul.new-or-login {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
main ul.new-or-login .lock_login_and_new {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 3vmin;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(2px) brightness(0.5);
          backdrop-filter: blur(2px) brightness(0.5);
  color: white;
}
main ul.new-or-login .lock_login_and_new i {
  margin: 0 10px 0;
}
@media (max-width: 430px) {
  main ul.new-or-login {
    flex-flow: row wrap;
    justify-content: center;
  }
}
main ul.new-or-login li {
  display: block;
  width: 45%;
  font-size: 1.8rem;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 10rem;
}
@media (max-width: 430px) {
  main ul.new-or-login li {
    width: 90%;
    margin-bottom: 1rem;
  }
}
main ul.new-or-login li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3rem 0;
}
main p {
  text-align: center;
}
@media (max-width: 430px) {
  main p {
    text-align: justify;
  }
}
main p a {
  color: #0071bc;
}
main p.guidelines {
  font-size: 1.8rem;
  margin: 1rem 0;
}
main p.guidelines a {
  color: #0071bc;
}
main .entry-archives,
main .credit-container {
  position: relative;
  background-color: #fff;
  padding: 50px;
  border-radius: 25px;
  margin: 0 0 30px 0;
}
@media (max-width: 430px) {
  main .entry-archives,
main .credit-container {
    padding: 50px 20px 20px 20px;
  }
}
main .entry-archives .if_setting,
main .credit-container .if_setting {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
main .entry-archives .if_setting .search_filter_div,
main .credit-container .if_setting .search_filter_div {
  position: relative;
}
main .entry-archives .if_setting .search_filter_div select,
main .credit-container .if_setting .search_filter_div select {
  position: absolute;
  top: 0;
  right: 100%;
  background: white;
}
main .entry-archives .if_setting .front_show,
main .credit-container .if_setting .front_show {
  text-align: center;
}
main .entry-archives .if_setting .search_div,
main .credit-container .if_setting .search_div {
  width: 30%;
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
main .entry-archives .if_setting .search_div #search_content,
main .credit-container .if_setting .search_div #search_content {
  position: absolute;
  background: white;
  border: black 1px solid;
  padding: 2rem;
  top: 0;
  left: 0;
}
main .entry-archives .if_setting .search_div #search_content input,
main .credit-container .if_setting .search_div #search_content input {
  margin-bottom: 10px;
}
main .entry-archives .if_setting .search_div #search_content .button_div,
main .credit-container .if_setting .search_div #search_content .button_div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
main .entry-archives .if_setting .search_div #search_content .button_div button,
main .credit-container .if_setting .search_div #search_content .button_div button {
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0px 10px 10px;
  width: 75%;
  text-align: center;
}
main .entry-archives .if_setting .search_div #search_content .button_div #delete_button,
main .credit-container .if_setting .search_div #search_content .button_div #delete_button {
  background-color: #a8a8a8;
}
main .entry-archives .if_setting .search_div #search_content .button_div #search_button,
main .credit-container .if_setting .search_div #search_content .button_div #search_button {
  background-color: #0071bc;
}
main .entry-archives .left_margin_ig,
main .credit-container .left_margin_ig {
  margin-left: 20px;
}
main .entry-archives .left_margin_large,
main .credit-container .left_margin_large {
  margin-left: 50px;
}
main .entry-archives .entry_title,
main .credit-container .entry_title {
  display: flex;
  justify-content: space-between;
}
main .entry-archives .entry_title span,
main .credit-container .entry_title span {
  font-weight: 300;
  font-size: 0.66em;
  color: #5a5a5a;
}
main .entry-archives a.addwork,
main .credit-container a.addwork {
  padding: 10px 30px;
  background-color: #0071bc;
  border-radius: 5px;
  color: #fff;
}
main .entry-archives hr,
main .credit-container hr {
  margin: 50px 0;
  border-color: #ccc;
}
main .entry-archives p.description,
main .credit-container p.description {
  text-align: left;
  font-size: 1.5rem;
  color: #f34336;
}
main .entry-archives .go_document_info_of_bug,
main .credit-container .go_document_info_of_bug {
  margin-top: 10px;
  color: blue;
  border-bottom: blueviolet solid 2px;
}
main .entry-archives .entry-summary,
main .credit-container .entry-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary,
main .credit-container .entry-summary {
    flex-flow: column;
    align-items: flex-start;
  }
}
main .entry-archives .entry-summary > div.title,
main .credit-container .entry-summary > div.title {
  display: flex;
  align-items: center;
}
main .entry-archives .entry-summary > div.title h4,
main .credit-container .entry-summary > div.title h4 {
  margin-bottom: 0;
}
main .entry-archives .entry-summary > div.title h3,
main .credit-container .entry-summary > div.title h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-right: 1rem;
  border: #bcbcbc solid;
  padding: 10% 1.5rem;
  border-width: 0 1px 0 0;
}
main .entry-archives .entry-summary div.control-container,
main .credit-container .entry-summary div.control-container {
  display: flex;
  align-items: center;
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container,
main .credit-container .entry-summary div.control-container {
    flex-flow: column;
  }
}
main .entry-archives .entry-summary div.control-container div.control-button,
main .credit-container .entry-summary div.control-container div.control-button {
  display: flex;
  flex-flow: column;
  align-items: stretch;
}
main .entry-archives .entry-summary div.control-container div.control-button ul,
main .credit-container .entry-summary div.control-container div.control-button ul {
  display: flex;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  justify-content: space-around;
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container div.control-button ul,
main .credit-container .entry-summary div.control-container div.control-button ul {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
main .entry-archives .entry-summary div.control-container div.control-button ul li,
main .credit-container .entry-summary div.control-container div.control-button ul li {
  margin-left: 1rem;
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container div.control-button ul li,
main .credit-container .entry-summary div.control-container div.control-button ul li {
    margin: 0.8rem 0;
    width: 30%;
    text-align: center;
  }
}
main .entry-archives .entry-summary div.control-container div.control-button ul li span,
main .credit-container .entry-summary div.control-container div.control-button ul li span {
  cursor: pointer;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #ddd;
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container div.control-button ul li span,
main .credit-container .entry-summary div.control-container div.control-button ul li span {
    width: 100%;
    padding: 10px 10px;
  }
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container div.control-button ul li:first-child,
main .credit-container .entry-summary div.control-container div.control-button ul li:first-child {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container div.control-button ul li:first-child span,
main .credit-container .entry-summary div.control-container div.control-button ul li:first-child span {
    width: 100%;
  }
}
main .entry-archives .entry-summary div.control-container div.control-button p,
main .credit-container .entry-summary div.control-container div.control-button p {
  text-align: right;
}
main .entry-archives .entry-summary div.control-container ul.order-button,
main .credit-container .entry-summary div.control-container ul.order-button {
  margin-left: 1rem;
  font-size: 1.8rem;
  display: flex;
  flex-flow: column;
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container ul.order-button,
main .credit-container .entry-summary div.control-container ul.order-button {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 1rem 0 0 0;
  }
}
@media (max-width: 430px) {
  main .entry-archives .entry-summary div.control-container ul.order-button li,
main .credit-container .entry-summary div.control-container ul.order-button li {
    margin: 0 0.5rem;
  }
}
main .entry-archives select,
main .credit-container select {
  border: 1px solid #ccc;
  padding: 5px;
}

.gFooter {
  padding: 1rem 0;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
}

table.new-account tr th {
  display: block;
  width: 100%;
}
table.new-account tr td {
  display: block;
  width: 100%;
  padding: 10px 0 30px 0;
}

.name-container {
  display: grid;
  grid-template-columns: 25%;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 20px 20px;
  grid-auto-flow: row;
  grid-template-areas: "title area1 area2" "title area3 area4" "title area5 area6";
}
@media (max-width: 430px) {
  .name-container {
    display: flex;
    flex-flow: column;
  }
}
.name-container p {
  text-align: justify;
}
.name-container label {
  font-size: 1.6rem;
  font-weight: bold;
}
.name-container .title {
  grid-area: title;
}
.name-container .area1 {
  grid-area: area1;
}
.name-container .area2 {
  grid-area: area2;
}
.name-container .area3 {
  grid-area: area3;
}
.name-container .area4 {
  grid-area: area4;
}
.name-container .area5 {
  grid-area: area5;
}
.name-container .area6 {
  grid-area: area6;
}

.add-container {
  display: grid;
  grid-template-columns: 25%;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 30px 20px;
  grid-template-areas: "title add-name" "title postal-code" "title add1" "title add2" "title tel";
}
@media (max-width: 430px) {
  .add-container {
    display: flex;
    flex-flow: column;
  }
}
.add-container p {
  text-align: justify;
}
.add-container label {
  font-size: 1.6rem;
  font-weight: bold;
}
.add-container .title {
  grid-area: title;
}
.add-container .add-name {
  grid-area: add-name;
}
.add-container .postal-code {
  grid-area: postal-code;
}
.add-container .add1 {
  grid-area: add1;
}
.add-container .add2 {
  grid-area: add2;
}
.add-container .tel {
  grid-area: tel;
}

.title-ad-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
  grid-auto-flow: row;
  grid-template-areas: "head-title title title" "head-credit head-credit head-credit";
  margin-bottom: 20px;
}
@media (max-width: 430px) {
  .title-ad-container {
    display: flex;
    flex-flow: column;
    gap: 0;
  }
}

.head-title {
  grid-area: head-title;
}
.head-title p {
  text-align: left;
}

.title {
  grid-area: title;
}
@media (max-width: 430px) {
  .title {
    margin: 0.5rem 0 2rem 0;
  }
}

.head-credit {
  grid-area: head-credit;
}
.head-credit p {
  text-align: left;
}

.head-ad {
  grid-area: head-ad;
  font-weight: bold;
}

.ad-lastname-jp {
  grid-area: ad-lastname-jp;
  font-weight: bold;
}

.ad-firstname-jp {
  grid-area: ad-firstname-jp;
  font-weight: bold;
}

.ad-lastname-en {
  grid-area: ad-lastname-en;
  font-weight: bold;
}

.ad-firstname-en {
  grid-area: ad-firstname-en;
  font-weight: bold;
}

.credit-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px 20px;
  grid-auto-flow: row;
  grid-template-areas: "credit-select credit-lastname-jp credit-firstname-jp" "credit-select credit-firstname-en credit-lastname-en";
}
@media (max-width: 430px) {
  .credit-grid-container {
    display: flex;
    flex-flow: column;
    gap: 0;
  }
}

.credit-select {
  grid-area: credit-select;
}
@media (max-width: 430px) {
  .credit-select {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .credit-select #profession {
    width: 100%;
  }
}

.credit-lastname-jp {
  grid-area: credit-lastname-jp;
}
@media (max-width: 430px) {
  .credit-lastname-jp {
    margin: 1.5rem 0 0.5rem 0;
  }
}

.credit-firstname-jp {
  grid-area: credit-firstname-jp;
}
@media (max-width: 430px) {
  .credit-firstname-jp {
    margin: 1.5rem 0 0.5rem 0;
  }
}

.credit-lastname-en {
  grid-area: credit-lastname-en;
}
@media (max-width: 430px) {
  .credit-lastname-en {
    margin: 1.5rem 0 0.5rem 0;
  }
}

.credit-firstname-en {
  grid-area: credit-firstname-en;
}
@media (max-width: 430px) {
  .credit-firstname-en {
    margin: 1.5rem 0 0.5rem 0;
  }
}

.credit-del-container {
  position: absolute;
  top: 15px;
  right: 15px;
}
.credit-del-container .del-button {
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 !important;
  font-weight: bold;
}

.add-credit-container {
  text-align: center;
}
.add-credit-container li {
  line-height: 2rem;
}

table.category-select,
table#category_detail {
  margin: 10px 0;
}
table.category-select .Select_B_num,
table#category_detail .Select_B_num {
  width: 100px;
}
table.category-select .Select_B_num select,
table#category_detail .Select_B_num select {
  padding: 7px;
}
table.category-select th,
table.category-select td,
table#category_detail th,
table#category_detail td {
  padding: 10px 0;
  vertical-align: middle;
}
@media (max-width: 430px) {
  table.category-select th,
table.category-select td,
table#category_detail th,
table#category_detail td {
    display: block;
    width: 100%;
  }
}
table.category-select th#category-name,
table#category_detail th#category-name {
  width: 25%;
  vertical-align: top;
}
@media (max-width: 430px) {
  table.category-select th#category-name,
table#category_detail th#category-name {
    width: 100%;
  }
}
table.category-select td input,
table.category-select td select,
table#category_detail td input,
table#category_detail td select {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
@media (max-width: 430px) {
  table.category-select td input#poster_b2_num,
table.category-select td input#poster_num,
table#category_detail td input#poster_b2_num,
table#category_detail td input#poster_num {
    width: 30%;
  }
}
table.category-select td #url,
table#category_detail td #url {
  width: 40rem;
}
@media (max-width: 430px) {
  table.category-select table#category-A th,
table.category-select table#category-A td,
table#category_detail table#category-A th,
table#category_detail table#category-A td {
    display: inline;
  }
}
@media (max-width: 430px) {
  table.category-select table#category-A td:last-child,
table#category_detail table#category-A td:last-child {
    display: block;
  }
}
table.category-select table#category-A td:nth-child(3),
table#category_detail table#category-A td:nth-child(3) {
  width: 50px;
}
table.category-select #category-J .category_values td:nth-child(2),
table#category_detail #category-J .category_values td:nth-child(2) {
  width: 10%;
}
table.category-select #category-J .category_values td:nth-child(3) input,
table#category_detail #category-J .category_values td:nth-child(3) input {
  height: 100%;
}
table.category-select #category-J #url_pre,
table#category_detail #category-J #url_pre {
  width: 50%;
}
table.category-select #category-J #J_paper_type,
table#category_detail #category-J #J_paper_type {
  margin-right: 30px;
}
table.category-select #category-J .J_paper_td,
table#category_detail #category-J .J_paper_td {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
table.category-select #category-J .J_paper_td input,
table#category_detail #category-J .J_paper_td input {
  width: 1rem !important;
}
table.category-select #category-J .J_paper_plus_minus button,
table#category_detail #category-J .J_paper_plus_minus button {
  margin: 0;
  padding: 5px 25px;
  font-size: 2rem;
  font-weight: 600;
}
table.category-select #category-J #J_poster_type,
table#category_detail #category-J #J_poster_type {
  margin-right: 30px;
}
table.category-select #category-J .J_poster_td,
table#category_detail #category-J .J_poster_td {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
table.category-select #category-J .J_poster_td input,
table#category_detail #category-J .J_poster_td input {
  width: 1rem !important;
}
table.category-select #category-J .J_poster_td #J_poster_hor_vec,
table#category_detail #category-J .J_poster_td #J_poster_hor_vec {
  margin-left: 20px;
}
table.category-select #category-J .J_poster_plus_minus button,
table#category_detail #category-J .J_poster_plus_minus button {
  margin: 0;
  padding: 5px 25px;
  font-size: 2rem;
  font-weight: 600;
}
table.category-select #category-J .J_webs_num,
table#category_detail #category-J .J_webs_num {
  width: 280px;
}
@media (max-width: 430px) {
  table.category-select #category-J #url_pre,
table#category_detail #category-J #url_pre {
    width: auto;
  }
}
table.category-select #category-J .J_movie_num,
table#category_detail #category-J .J_movie_num {
  width: 280px;
}
table.category-select #category-J #J_movie_detail input,
table#category_detail #category-J #J_movie_detail input {
  width: 60px;
}
table.category-select #category-other td:nth-child(2),
table#category_detail #category-other td:nth-child(2) {
  width: 10%;
}
table.category-select #category-other td:nth-child(3) input,
table#category_detail #category-other td:nth-child(3) input {
  height: 100%;
}

#series_input:has(.readonly) {
  text-align: left;
  justify-content: flex-start !important;
}

.readonly::-webkit-inner-spin-button,
.readonly::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

/* Firefox */
.readonly {
  -moz-appearance: textfield !important;
  width: 1rem !important;
  padding: 0 !important;
  background: none !important;
}

table#category_detail table {
  width: 100%;
}

.cv_increase_decrease th {
  width: 25% !important;
}
.cv_increase_decrease button {
  padding: 5px 30px;
  font-size: 2.5rem;
  margin: 0 20px 0 0;
  width: 75px;
  display: inline-flex;
  align-content: center;
  align-items: center;
}

table#m-and-y,
table#client,
table#self-produced,
table#description,
table#return-product,
table#series,
table#category_detail table {
  margin: 10px 0;
}
table#m-and-y #movie_detail input,
table#client #movie_detail input,
table#self-produced #movie_detail input,
table#description #movie_detail input,
table#return-product #movie_detail input,
table#series #movie_detail input,
table#category_detail table #movie_detail input {
  width: 15%;
  padding: 10px 0 10px 10px;
}
table#m-and-y #series_input,
table#client #series_input,
table#self-produced #series_input,
table#description #series_input,
table#return-product #series_input,
table#series #series_input,
table#category_detail table #series_input {
  display: flex;
  justify-content: center;
  align-items: center;
}
table#m-and-y th,
table#m-and-y td,
table#client th,
table#client td,
table#self-produced th,
table#self-produced td,
table#description th,
table#description td,
table#return-product th,
table#return-product td,
table#series th,
table#series td,
table#category_detail table th,
table#category_detail table td {
  padding: 10px 0;
  vertical-align: middle;
}
@media (max-width: 430px) {
  table#m-and-y th,
table#m-and-y td,
table#client th,
table#client td,
table#self-produced th,
table#self-produced td,
table#description th,
table#description td,
table#return-product th,
table#return-product td,
table#series th,
table#series td,
table#category_detail table th,
table#category_detail table td {
    display: block;
    width: 100%;
  }
}
table#m-and-y th,
table#client th,
table#self-produced th,
table#description th,
table#return-product th,
table#series th,
table#category_detail table th {
  width: 25%;
}
@media (max-width: 430px) {
  table#m-and-y th,
table#client th,
table#self-produced th,
table#description th,
table#return-product th,
table#series th,
table#category_detail table th {
    display: block;
    width: 100%;
  }
}
table#m-and-y td input,
table#m-and-y td textarea,
table#client td input,
table#client td textarea,
table#self-produced td input,
table#self-produced td textarea,
table#description td input,
table#description td textarea,
table#return-product td input,
table#return-product td textarea,
table#series td input,
table#series td textarea,
table#category_detail table td input,
table#category_detail table td textarea {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
}
table#m-and-y td textarea,
table#client td textarea,
table#self-produced td textarea,
table#description td textarea,
table#return-product td textarea,
table#series td textarea,
table#category_detail table td textarea {
  width: 100%;
  height: 15rem;
}
table#m-and-y td label,
table#client td label,
table#self-produced td label,
table#description td label,
table#return-product td label,
table#series td label,
table#category_detail table td label {
  margin-right: 1rem;
}

table#fee {
  margin: 10px 0;
}
table#fee th {
  width: 25%;
  vertical-align: middle;
}
table#fee td {
  font-size: 2.5rem;
  font-weight: bold;
}

table#images {
  margin: 10px 0;
}
table#images th {
  width: 25%;
}
table#images label {
  display: block;
  background-color: #fff;
  border: 1px dashed #333;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
table#images label ul li {
  text-align: center;
  line-height: 2.5rem;
}
table#images label ul li.file-select {
  display: block;
  padding: 10px;
  background-color: #eee;
  margin: 10px auto 0 auto;
  width: 30%;
}

.work-entry {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 430px) {
  .work-entry {
    flex-flow: column-reverse;
  }
}
@media (max-width: 430px) {
  .work-entry li button {
    width: 100%;
    margin: 0 0 2rem 0;
    text-align: center;
  }
}
.work-entry li:first-child button {
  background-color: #dedede;
  color: #000;
}
.work-entry li:last-child {
  font-weight: bold;
  font-size: 1.8rem;
}

.mypage-or-reg {
  display: flex;
  justify-content: center;
}
@media (max-width: 430px) {
  .mypage-or-reg {
    flex-flow: column-reverse;
  }
}
.mypage-or-reg li {
  margin: 0 20px;
}
@media (max-width: 430px) {
  .mypage-or-reg li {
    margin: 0;
  }
}
.mypage-or-reg li button#return {
  background-color: #ddd;
  color: #000;
}
@media (max-width: 430px) {
  .mypage-or-reg li button {
    width: 100%;
    margin: 0 0 2rem 0;
    text-align: center;
  }
}

.dropping_label {
  transition: 0.5s;
  border-style: solid !important;
  background-color: #c8e3e2 !important;
}

.file_up_pre {
  position: relative;
}
.file_up_pre #file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
}

.message-screen {
  height: 100%;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
}
.message-screen .head-container {
  padding: 5rem;
  background-color: #efefef;
  margin-bottom: 50px;
  text-align: center;
  border-radius: 10px;
}
.message-screen .head-container h1 {
  font-size: 2.8rem;
}
.message-screen .head-container i {
  font-size: 5rem;
  margin-bottom: 3rem;
}
.message-screen .head-container form input {
  margin-top: 20px;
  font-size: 2rem;
}
.message-screen .head-container form .inp_submit {
  background-color: #0071bc;
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 20px auto 0 auto;
}
.message-screen .head-container form .inp_submit:hover {
  background-color: #0056b3;
}
.message-screen p {
  font-size: 1.6rem;
  line-height: 3rem;
  text-align: center;
  margin-bottom: 50px;
}
.message-screen p a {
  color: #0071bc;
}
.message-screen figure {
  height: 100px;
  width: 100px;
}
.message-screen figure img {
  width: 100%;
}

.images_preview {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.images_preview div {
  position: relative;
  margin: 5px;
  max-width: 20%;
  max-height: 20%;
}
.images_preview div .delete_img {
  margin: 0;
  position: absolute;
  top: 2px;
  right: 2px;
  border-radius: 100%;
  background-color: black;
  border-color: white;
  border-style: solid;
  border-width: 1px;
  color: white;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  text-align: center;
}
.images_preview div .expand_img {
  margin: 0;
  position: absolute;
  bottom: 2px;
  right: 2px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  color: white;
  width: 1.5em;
  height: 1.5em;
  padding: 0;
  text-align: center;
}
.images_preview div img {
  max-width: 100%;
  max-height: 100%;
}

.loading_screen {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 30;
}
.loading_screen .loader {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading_screen .percentage {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.loading_screen svg {
  transform: rotate(0deg);
  width: 100%;
  height: 100%;
}

.mailaddress_title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  width: 25%;
}
@media (max-width: 430px) {
  .mailaddress_title {
    width: 100%;
  }
}
.mailaddress_title h4 {
  width: 100% !important;
}
.mailaddress_title p {
  font-size: 0.75em;
  color: #6f6f6f;
}

.show_img_full_size {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.show_img_full_size img {
  max-width: 75%;
  max-height: 75%;
}

.A4body {
  height: auto;
}

.A4 {
  width: 1654px !important;
  height: 2339px !important;
  border: 1px solid #aaa;
  padding: 78px;
  font-size: 2rem;
}
.A4 .flex {
  display: flex;
}
.A4 span {
  font-weight: normal;
  font-size: 5rem;
  margin: 0 1rem;
}
.A4 small {
  font-weight: normal;
}
.A4 .head-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.A4 .head-flex h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.A4 .head-flex h2 {
  width: 100px;
  height: 100px;
}
.A4 .entry-sheet,
.A4 .entry-card {
  display: flex;
  justify-content: space-between;
}
.A4 .entry-sheet > div,
.A4 .entry-card > div {
  width: 48%;
}
.A4 .entry-sheet > div > div,
.A4 .entry-card > div > div {
  border-bottom: 1px solid #000;
  padding: 2rem 0;
  align-items: center;
}
.A4 .entry-sheet > div > div h3,
.A4 .entry-card > div > div h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5rem 0;
  width: 20%;
}
.A4 .entry-sheet > div > div p,
.A4 .entry-card > div > div p {
  font-size: 2rem;
  margin: 0.5rem 0;
}
.A4 .entry-sheet .tel-container h3,
.A4 .entry-sheet .tel-container p,
.A4 .entry-card .tel-container h3,
.A4 .entry-card .tel-container p {
  width: 25%;
}
.A4 .entry-sheet .credit,
.A4 .entry-card .credit {
  padding: 0;
}
.A4 .entry-sheet .credit > div,
.A4 .entry-card .credit > div {
  border-bottom: 1px solid #000;
  padding: 2rem 0;
}
.A4 .entry-sheet .credit > div h3,
.A4 .entry-card .credit > div h3 {
  width: 33%;
}
.A4 .entry-sheet .credit > div p,
.A4 .entry-card .credit > div p {
  width: 33%;
}
.A4 .entry-sheet .credit > div:last-child,
.A4 .entry-card .credit > div:last-child {
  border: none;
}
.A4 .w50 {
  width: 50% !important;
}
.A4 .w100 {
  width: 100% !important;
}
.A4 .entry-sheet {
  margin-bottom: 80px;
}
.A4 .receipt-category,
.A4 .receipt-number {
  border: 3px solid #000;
  height: 189px;
}
.A4 .receipt-category {
  width: 189px;
  border-right: none;
}
.A4 .receipt-number {
  width: 525px;
}
.A4 .receipt_mini {
  height: 160px;
}
.A4 .receipt_bbn_mini {
  padding: 2rem 0 0 0 !important;
}
.A4 .series_num {
  padding: 0 !important;
  text-align: center !important;
  font-size: 2rem !important;
}
.A4 .border_bottom_none {
  border-bottom: none !important;
}
.A4 .application_form_div {
  height: 297px;
  max-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start !important;
}
.A4 .poster table tr:not(:first-child) th {
  border-top: none;
}
.A4 .other table tr:not(:first-child) th {
  border-top: none;
}
.A4 .web table tr:not(:first-child) th {
  border-top: none;
}
.A4 .movie table tr:not(:first-child) th {
  border-top: none;
}
.A4 .esh_J table tr:not(:first-child) th {
  border-top: none;
}
.A4 .esh_J table .small_left {
  padding: 0 0 0 1rem !important;
  text-align: left !important;
  font-size: 2rem !important;
  justify-content: flex-start;
}
.A4 .aftpt_top {
  border-bottom: none;
}
.A4 .aft_poster_template {
  display: flex;
}
.A4 .aft_poster_template th:not(:last-child) {
  border-right: none;
}
.A4 .aft_poster_template th {
  width: 90px;
  height: 50px;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 400;
  padding: 0 4rem;
}
.A4 .px_446 {
  width: 446px !important;
}
.A4 .px_270 {
  width: 270px !important;
}
.A4 .kiritori {
  display: flex;
  justify-content: space-between;
}
.A4 .norishiro {
  text-align: center;
  font-size: 1.7rem;
  padding: 2.5rem;
  border-bottom: 1px solid #000;
}
.A4 .bbn {
  border-bottom: none !important;
  margin: 0 !important;
}
.A4 .checklist {
  display: flex;
}
.A4 .checklist p {
  border: 3px solid #000;
  width: 33%;
  height: 230px;
  padding: 1rem;
}
.A4 .checklist p:nth-child(2) {
  border-left: none;
  border-right: none;
}
.A4 .L-text {
  font-size: 3.5rem !important;
  margin: 1rem 0 !important;
}
.A4 .description-container > div {
  display: flex;
  position: relative;
}
.A4 .description-container > div > p {
  width: 75%;
  line-height: 3.5rem;
  letter-spacing: 0.25rem;
  text-align: justify;
  height: 270px;
  font-size: 2.3rem !important;
}
.A4 .description-container > div .no-container {
  margin-left: 20px;
  border: 3px solid #000;
  width: 20%;
  height: 150px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: absolute;
  right: 0;
  bottom: 0;
}
.A4 .description-container > div .no-container h3 {
  text-align: center;
  border-bottom: 3px solid #000;
  width: 100%;
  padding-bottom: 0.7rem;
}
.A4 .description-container > div .no-container p {
  font-size: 4rem;
  text-align: right;
  padding: 0 20px 10px 0;
}

.alert {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-content: center;
}
.alert .alert-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 50px 20px 20px 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 400px;
  position: relative;
  text-align: center;
  border-radius: 10px;
}
.alert .alert-content p {
  text-align: center;
  line-height: 2rem;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.alert .alert-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}
.alert .alert-content .close:hover,
.alert .alert-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.alert button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 16px;
}

#Download_canvas {
  transform: scale(0.25);
  transform-origin: left top;
  display: none;
}

#product_date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.management {
  background: white;
  border-radius: 20px;
  padding: 2rem 5rem;
  margin-bottom: 4rem;
}
.management hr {
  margin: 50px 0;
  border-color: #ccc;
}
.management h3 {
  font-size: 2rem;
  font-weight: bold;
}
.management div {
  display: flex;
  padding: 10px;
  border-radius: 5px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
.management .fake_button {
  background-color: #0071bc;
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 30px auto;
}
.management .fake_button:hover {
  background-color: #0056b3;
}

.flex_2_in_1 div {
  width: 100%;
  display: flex;
}
.flex_2_in_1 div h3 {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.test p {
  display: inline-block;
  transform: translate(100px, 100px);
}

.pre_keep_login {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.pre_keep_login * {
  margin: 0 5px;
}

.toggle {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.toggle .toggle-input {
  display: none;
}
.toggle .toggle-input:checked + .toggle-slider {
  background-color: #4fc3f7;
}
.toggle .toggle-input:checked + .toggle-slider::before {
  transform: translateX(30px);
}
.toggle .toggle-input:checked + .toggle-slider .off {
  opacity: 0;
}
.toggle .toggle-input:checked + .toggle-slider .on {
  opacity: 1;
}
.toggle .toggle-slider {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
  background-color: #b0bec5;
  border-radius: 28px;
  transition: background-color 0.3s ease;
  overflow: hidden;
  padding: 0 8px;
}
.toggle .toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.toggle .toggle-slider .toggle-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  text-shadow: #000 0px 0px 3px;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.toggle .toggle-slider .toggle-text.off {
  right: 12px;
  opacity: 1;
}
.toggle .toggle-slider .toggle-text.on {
  left: 12px;
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */