@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap");


html,
body {
  color: #363543;
  height: 100%;
}

ul {
  list-style: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

h1,
h2 {
  font-family: "Noto Sans JP", sans-serif;
  padding: 1rem;
  margin-bottom: 0;
}

main {
  height: 100%;
}

.div-container {
  padding-left: 240px;  /*サイドバー横幅分*/
  width: 100vw;
  display: flex;
  justify-content: center;
}

.left-content {
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 1440px;
}
.left-content h2 {
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #363543;
}
.left-content h3 {
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #363543;
}
.left-content-header{
  display: flex;
  display: -ms-flexbox;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  height:78px;
  border-bottom: 1px solid #e7e7e7;
}

.btn-area {
  white-space:nowrap;
}

.btn-area button+button:not(.pc-none) { /*複数のボタンが並ぶエリア(旧：controle-btn)と、その間隔制御*/
  margin-left:30px;
}

.fixed-footer { /*追従フッター。主にbtn-areaを入れる。*/
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  height: 90px;
  border-top: 1px solid #E7E7E7;
  box-shadow: 0px -4px 10px rgba(210, 210, 210, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  border: none;
  background-color: transparent;
}

.btn-bg-blue {  /*汎用ボタン青*/
  width: 120px;
  background-color: #256be5;
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 2.5;
  padding: 0 2rem;
  white-space: nowrap;
  box-shadow: 0px 2px 2px rgba(142, 141, 141, 0.15);
}
.btn-bg-gray {  /*汎用ボタン灰*/
  width: 120px;
  background-color: #6c7481;
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 2.5;
  padding: 0 2rem;
  white-space: nowrap;
  box-shadow: 0px 2px 2px rgba(142, 141, 141, 0.15);
}
.btn-bg-csv {  /*CSVダウンロードボタン*/
  width: 120px;
  background-color: #84878C;
  color: #ffffff;
  border-radius: 20px;
  font-size: 12px;
  line-height: 2.5;
  padding: 0 2rem;
  white-space: nowrap;
  box-shadow: 0px 2px 2px rgba(142, 141, 141, 0.15);
}

.tooltip .tooltip-inner {
  text-align: left;
  border-radius: 6px;
  background-color: #256be5;
  opacity: 1 !important;
  padding: 17px 27px 16px 30px;
  max-width: 300px;
  font-size: 12px;
}
.tooltip-p {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 1rem;
  margin-bottom: 14px;
  border-bottom: 1px solid #fff;
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #256be5 !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #256be5 !important;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #256be5;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #256be5;
}


thead {
  background-color: #fafbfd;
}
th {
  border-bottom: none;
  white-space: nowrap;
}
.table td {
  padding: 1.1rem;
}

.tb-sp {
  display: none;
}

.tb-pc {
  display: block;
}

.tb-pc .txt-green {
  font-weight: 500;
}

.tb-pc tr {
  height: 60px;
  vertical-align: middle;
}

.tb-pc thead tr {
  height: 36px;
}

.tb-pc thead tr th {
  font-size: 12px;
  font-weight: 500;
  color: #6c7481;
}

.tb-pc tbody {
  font-size: 12px;
  font-weight: 400;
  color: #1b1b1b;
}

.th,
.td {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  white-space: nowrap;
}

.th-1,
.td-1 {
  background-color: #fafbfd;
}

.th-1,
.td-1 {
  grid-column-start: 1;
  padding: 1rem 0;
}

.th-2,
.td-2 {
  grid-column-start: 2;
  padding: 1rem 0;
}

.th-3,
.td-3 {
  grid-column-start: 3;
  padding: 1rem 0;
}

.th-4,
.td-4 {
  grid-column-start: 4;
  padding: 1rem 0;
}

.th-5,
.td-5 {
  grid-column-start: 5;
  padding: 1rem 0;
}

.th-6,
.td-6 {
  grid-column-start: 6;
}

.btn-edit {
  width: 5rem;
  white-space: nowrap;
}
.btn-edit button {
  white-space: nowrap;
  color: #929090;
  border: 1px solid #929090;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 12px;
  width:4rem;
}

/*pagination*/
#pagenation ul {
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
}

.pagination img {
  object-fit: contain;
  height: 20px;
}

.pagination .page-item:first-child img {
  border-right: 1px solid rgba(39, 41, 55, 0.12);
}

.pagination .page-item:last-child img {
  border-left: 1px solid rgba(39, 41, 55, 0.12);
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}

li a.page-link {
  padding: 5px;
  font-size:13px;
}

li:not(:first-child) a.page-link {
  border-left: none;
  line-height: 16px;
  border: none;
  box-sizing: border-box;
  margin: 3px 0;
}

.page-item:first-child .page-link {
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  border-right: none;
}

.page-item:last-child .page-link {
  border-radius: 0;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-left: none;
}

.page-item {
  width: 4rem;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  padding: 0 3px;
}

.page-item:first-child {
  border-bottom: none;
  border-top: none;
  padding-right: 0;
}

.page-item:last-child {
  border-top: none;
  border-bottom: none;
  padding-left: 0;
}

.page-item:last-child a.page-link {
  margin: 0;
  padding: 6px;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover,
.page-item:nth-last-child(3) .page-link:hover {
  background-color: transparent;
}

.page-link:hover {
  background-color: rgba(0, 102, 255, 0.1);
}

/* モーダルウィンドウ */
.modal {
  font-size: 12px;
}

.modal-content {
  border-radius: 6px;
}

.modal-header {
  justify-content: center;
  border-bottom: none;
}

.modal-body {
  padding: 2rem;
}

.modal-body form {
  max-width: 360px;
  margin: 0 auto;
}

.modal-body .mb-3 {
  margin-bottom: 3rem !important;
}

.modal-body input {
  font-size: 12px;
}

.modal-body label,
.modal-body p.modal-p {
  font-size: 12px;
  font-weight: 500;
  color:#1B1B1B;
}

.modal-footer {
  border-top: none;
  justify-content: center;
  border-top: 1px solid #dee2e6;
  padding: 2rem;
  height: 90px;
}

.modal-footer button {
  width: 100px;
  height: 36px;
  font-size: 12px;
  font-weight: 500;
}

.modal-dialog {
  max-width: 520px;
}

.form-control {
  font-size: 13px;
  color: #000000;
}

.border-bottom-gray {
  border-bottom: 1px solid #e7e7e7;
}

.border-top-gray {
  border-top: 1px solid #e7e7e7;
}

/* sp */
.pc-none {
  display: none;
}
.menu-icon {
  display: none;
}

/*===============================
  #login(index)
===============================*/
#login {
  display: flex;
  justify-content: center;
  position: relative;
}

#login main {
  position: absolute;
  top: 0;
  left: 0;
}

#login .div-container {
  justify-content: center;
  max-width: 1440px;
  padding: 0;
  padding-left: 500px;
}

#login p,
#login input,
#login button {
  width: 300px;
  margin: 0 auto;
}

#login .main-image {
  background-color: #173e84;
  width: 500px;
  min-height: 100%;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#login .main-image .common-box {
  width: 340px;
}

#login .common-box {
  margin-top: 100px;
  min-height: 400px;
}

#login .common-box h1 {
  padding-left: 0;
  font-size: 24px;
}

#login .common-box h2 {
  font-size: 20px;
}

#login label {
  color:#1B1B1B;
}


/*===============================
  #navigation
===============================*/
#navigation {
  height: 100vh;
  width: 240px;
  background-color: #f8f9fb;
  padding: 1.5rem;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
}

#navigation .navigation-title {
  height: 60px;
  display: flex;
  align-items: center;
  padding-top: 18px;
}
#navigation .navigation-title h1 {
  font-size: 20px;
  padding-bottom:0;
}

#navigation .navigation-sec {
  margin: 1rem 1.5rem;
}
#navigation .navigation-sec:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
  line-height: 2.5;
}

#navigation .navigation-sec h2 {
  font-size: 9px;
  margin-bottom: 1rem;
  color: #82808c;
  padding-bottom: 0;
}

#navigation .navigation-sec ul {
  font-size: 15px;
  color: #050b23;
  font-weight: 500;
}

#navigation .navigation-sec ul li:before{
  content:"";
  display: inline-block;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-left: 1rem;
  margin-right: 0.5rem;
  background-color: #363543;  /*アイコン色：平常時*/
}
#navigation .navigation-sec ul li.is-current{
  color: #2772e9;
  background-color: #ffffff;
  border-radius: 6px;
}
#navigation .navigation-sec ul li.is-current:before{
  background-color: #2772e9;  /*アイコン色：現在ページ*/
}

#navigation .navigation-sec ul .li-promana:before{
  margin-top:3.5px;
  margin-bottom:-3.5px;
  width: 14px;
  height: 19.1px;
  -webkit-mask-image: url(../images/data_base.png);
  mask-image: url(../images/data_base.png);
}
#navigation .navigation-sec ul .li-minfo:before {
  margin-top:0.5px;
  margin-bottom:-0.5px;
  width: 14px;
  height: 12px;
  -webkit-mask-image: url(../images/produce.png);
  mask-image: url(../images/produce.png);
}
#navigation .navigation-sec ul .li-user:before {
  margin-top:2px;
  margin-bottom:-2px;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../images/user.png);
  mask-image: url(../images/user.png);
}

#navigation .navigation-sec .p-username {
  padding:1rem 1rem 0;
  font-size:11px;
}
#navigation .navigation-sec .p-username span{
  font-size:12px;
  font-weight:bold;
  margin-right:0.2rem;
}

#navigation .navigation-sec .a-logout {
  margin-left:1.2rem;
  padding-left:2.2rem;
  background-image:url(../images/close.png);
  background-repeat:no-repeat;
  background-position:left center;
  font-size:15px;
  font-weight:500;
}

/*===============================
  一部ページの表調整用
===============================*/

#contentsDetailManage,
#userManage,
#masterContentsManage {
  display: flex;
  justify-content: space-between;
  max-width: 2000px;
}

/*===============================
  #contentsDetailManage
===============================*/

#contentsDetailManage #search {
  display:flex;
  flex-basis: auto;
  line-height: 2;
  position: relative;
  width: 100%;
  max-width: 580px;
}

#contentsDetailManage #search::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/search.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 100;
  margin-left: 12px;
}

#contentsDetailManage input[type="search"] {
  border-radius: 9px;
  border: 1px solid #e7e7e7;
  background-color: #fafbfd;
  padding-left: 4.5rem;
  padding-right: 1rem;
  font-size:13px;
}

#contentsDetailManage input[type="search"]:focus {
  outline:none;
}

#contentsDetailManage input[type="submit"] {
  width: 6rem;
  border: none;
  border-radius: 20px;
  background-color: #6c7481;
  color: #ffffff;
  font-size: 12px;
  font-weight:500;
  text-align: center;
  margin-left:0.5rem;
  margin-right:0.5rem;
  box-shadow: 0px 2px 2px rgba(142, 141, 141, 0.15);
}

#contentsDetailManage .btn-bg-blue::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.5rem;
  background: url(../images/personplus.png) no-repeat center;
  background-size: contain;
  margin-right: 1rem;
  vertical-align: middle;
}

#contentsDetailManage .btn-detail-edit {
  width: 63px;
  background-color: #f2f7fd;
  color: #256be5;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 30px;
  box-shadow: 0px 2px 2px rgba(142, 141, 141, 0.15);
  margin-left: 1rem;
}

#contentsDetailManage .more-b { /*ツールチップを出す所用の文字装飾*/
  font-weight: 500;
  font-size: 10px;
  color: #256be5;
}

#contentsDetailManage .img-icon { /*list外の項目のアイコン*/
  height: 1.5rem;
  object-fit: contain;
  margin-right: 0.5rem;
  vertical-align: middle;
}

#contentsDetailManage .f-head::before {
  content: "当主";
  display: inline-block;
  background-color: #256be5;
  color: #ffffff;
  font-size: 11px;
  border-radius: 20px;
  padding: 0 0.5rem;
  width: 4rem;
  text-align: center;
}

#contentsDetailManage .grid-area {
  display: grid;
  grid-template-columns: repeat(9, minmax(100px, auto));
  grid-template-rows: repeat(1, 65px), repeat(auto-fit, 100px);
  column-gap: 1rem;
  row-gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
  padding-right: 1rem;
}
#contentsDetailManage .grid-area h2 {
  font-size: 11px;
  font-weight: 500;
  color: #6c7481;
  line-height: normal;
  text-align: left;
  padding: 0;
  margin-bottom:0.7rem;
}
#contentsDetailManage .grid-area h3 {
  font-size: 12px;
  font-weight: 700;
  color: #6c7481;
  line-height: normal;
  margin-bottom:0.5rem;
}


#contentsDetailManage .grid-area li[class*="item"] {
  padding: 1rem;
}
#contentsDetailManage .grid-area li[class*="item"].is-nodata {
 color :#999999;
}
#contentsDetailManage .grid-area li[class*="item"] h2 img { /*list内の項目のアイコン*/
  height: 1.3rem;
  object-fit: contain;
  margin-right: 0.5rem;
}

#contentsDetailManage .grid-area li.item1 p,
#contentsDetailManage .grid-area li.item2 p,
#contentsDetailManage .grid-area li.item3 p,
#contentsDetailManage .grid-area li.item4 p,
#contentsDetailManage .grid-area li.item5 p {
  text-align: center;
}

#contentsDetailManage .item1 {  /*創設年*/
  grid-column: 1 / 2;
  grid-row: 1;
}
#contentsDetailManage .item2 {  /*年間生産量*/
  grid-column: 2 / 3;
  grid-row: 1;
}
#contentsDetailManage .item3 {  /*総面積*/
  grid-column: 3 / 4;
  grid-row: 1;
}
#contentsDetailManage .item4 {  /*全房除梗情報*/
  grid-column: 4 / 5;
  grid-row: 1;
}
#contentsDetailManage .item5 {  /*化学肥料*/
  grid-column: 5 / 7;
  grid-row: 1;
}

#contentsDetailManage .item6 {  /*醸造責任者*/
  grid-column: 1 / 4;
  grid-row: 2;
}
#contentsDetailManage .item7 {  /*醸造責任者就任年*/
  grid-column: 4 / 7;
  grid-row: 2;
}
#contentsDetailManage .item8 {  /*醸造責任者経歴*/
  grid-column: 7 / 10;
  grid-row: 2;
}
#contentsDetailManage .item9 {  /*歴代醸造責任者*/
  grid-column: 1 / 4;
  grid-row: 3;
}
#contentsDetailManage .item10 { /*新樽率*/
  grid-column: 4 / 7;
  grid-row: 3;
}
#contentsDetailManage .item11 { /*全房発酵or除梗*/
  grid-column: 7 / 10;
  grid-row: 3;
}
#contentsDetailManage .item12 { /*備考*/
  grid-column: 1 / 10;
  grid-row: 4;
}

/*===============================
  #ContentsDetailManageEdit
===============================*/
#contentsDetailManageEdit .left-content{
  padding-bottom:120px;
}

#contentsDetailManageEdit form {
  font-size: 12px;
  font-weight: 400;
  color: #1B1B1B;
}

#contentsDetailManageEdit form textarea {
  resize: none;
}

#contentsDetailManageEdit form input {
  height: 42px;
  border: 1px solid #E7E7E7;
}

#contentsDetailManageEdit form label.is-required:after {
  content:"※必須";
  color:#dc3545;
  margin-left:1rem;
}

#contentsDetailManageEdit h3 {
  margin-top: 50px;
}

#contentsDetailManageEdit .log-b {
  height: 42px;
  width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #E7E7E7;
  border-radius: 6px;
  color: #000000;
}

/*===============================
  #masterContentsManage
===============================*/
#masterContentsManage h3 {
  background-color: #fafbfd;
  padding: 1.5rem 1rem;
  font-weight: bold;
}

#masterContentsManage table tbody tr td:nth-last-of-type(2),
#masterContentsManage table tbody tr td:nth-last-of-type(3) {
  text-align: center;
}


/*==============================================================
    Media Query
==============================================================*/

@media (max-width: 768px) {

.div-container {
  display: block;
  max-width: 100%;
  height: 100%;
  padding: 0;
}

.left-content {
  padding: 0;
  height: 100%;
  padding-bottom: 3rem;
}

.left-content h2 {
  font-size: 18px;
}

.left-content-header{
  background-color: #f9f9f9;
  padding: 2rem 2rem 0;
  height: 95px;
}

.left-content-header.no-menu{
  justify-content:center;
}

.btn-bg-blue.pc-none {
  width: 61px;
  line-height: 30px;
  z-index:110;
  position:relative;
  margin-left:-30px;
}

/* table-sp-size show */
.tb-sp {
  display: block;
  line-height: 2;
}

.tb-pc {
  display: none;
}

.tb-sp .tr-1 {
  background-color: #fafbfd;
  font-weight: 700;
}

.tb-sp .th {
  margin-right: 2rem;
}

.tb-sp .th-2,
.tb-sp .th-3,
.tb-sp .th-4 {
  border-bottom: 1px solid transparent;
}

.tb-sp .td-2,
.tb-sp .td-3,
.tb-sp .td-4 {
  border-bottom: 1px solid #d2d2d2;
}

.th,
.td {
  display: block;
}

.tr {
  margin-bottom: 1rem;
  display: flex;
}

.tr .td {
  width: 100%;
}

.td-1 {
  display: flex;
  justify-content: space-between;
}

.tb-sp table {
  width: 100%;
}

.tb-sp table tr th {
  width: 90px;
  color: #6c7481;
  font-size: 12px;
  font-weight: 500;
  padding: 0 0 0 2rem;
}

.tb-sp table tr td {
  border-bottom: 1px solid #d2d2d2;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 400;
}

.tb-sp table tr:first-child td,
.tb-sp table tr:last-child td {
  border-bottom: none;
}

/* pagenation */
#pagenation {
  display: none;
}

/* contentsDetailManage */
/* masterContentsManage */
/* userManage */
#contentsDetailManage,
#masterContentsManage,
#userManage {
  display: block;
}

/* sp */
.menu-icon {
  display: inline-block !important;
  width: 18px;
  height: 12px;
  background: url(../images/menu-icon.png) no-repeat center;
  background-size: contain;
  z-index:110;
}

.sp-none {
  display: none;
}

.pc-none {
  display: block;
}

.batsu {/*SPナビのcloseボタンのデザイン*/
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}
.batsu::before,
.batsu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8px;
  /* 棒の幅（太さ） */
  height: 10px;
  /* 棒の高さ */
  background: #1b1b1b;
}
.batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*===============================
　#navigation
===============================*/
  #navigation {
    width: 240px;
    height: 100%;
    padding: 0;
    background-color: #ffffff;
    transform: translate(-100%);
    transition: transform 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.4s;
  }
  #navigation.is-slide {
    transform: translate(0);
    transition: transform 0.3s;
  }

  #navigation .navigation-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 88px;
    background-color: #f8f9fb;
    padding: 1rem;
  }
  #navigation .navigation-title h1 {
    padding: 0;
    padding-left:1.6rem;
  }

  #navigation .navigation-sec h2 {
    margin-bottom: 1rem;
  }
  #navigation .navigation-sec ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 36px;
  }

  #navigation .navigation-sec ul li::before {
    margin-right:10px;
  }
  #navigation .navigation-sec ul .li-promana:before{
    margin-top:0;
    margin-bottom:0;
  }
  #navigation .navigation-sec ul .li-minfo:before {
    margin-top:0;
    margin-bottom:0;
  }
  #navigation .navigation-sec ul .li-user:before {
    margin-top:0;
    margin-bottom:0;
  }

  #navigation .navigation-sec ul li::after {
    content: "";
    width: 6px;
    height: 5px;
    border: 0;
    border-top: solid 1.2px #6c7481;
    border-right: solid 1.2px #6c7481;
    transform: rotate(45deg);
    margin-right: 5px;
  }

  #navigation .navigation-sec ul li a{
    width:100%;
  }

  #navigation .navigation-sec .p-username {
    padding:1rem 1rem 0;
    font-size:11px;
    margin-bottom:1rem;
  }
  #navigation .navigation-sec .p-username span{
    font-size:12px;
    font-weight:bold;
    margin-right:0.2rem;
  }


/*===============================
　#login(index)
===============================*/
  #login main {
    width: 100%;
    padding-left: 0;
  }

  #login header {
    display: none;
  }

  #login form {
    width: 90%;
    margin: 0 auto;
  }

  #login input,
  #login button {
    width: 300px;
    display: block;
  }

  #login label {
    display: block;
    width: 300px;
    margin: 0 auto;
  }

  #login .div-container {
    max-width: 100%;
    min-width: 100%;
    padding-left: 0;
  }

  #login .common-box {
    margin-top: 0;
  }

  #login .common-box h2 {
    background-color: #f9f9f9;
    padding-top: 100px;
    padding: 100px 2rem 1rem;
  }

  #login .common-box .invalid-feedback {
    width: 300px;
    margin: 1rem auto 0;
  }

/*===============================
　#contentsDetailManage
===============================*/
  #contentsDetailManage p {
    margin-bottom: 0;
  }

  #contentsDetailManage .grid-header {
    background-color: #fafbfd;
    padding-top: 1.2rem;
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    padding:1.2rem 2rem;
  }

  #contentsDetailManage .grid-header .pc-none {
    font-weight: 500;
  }

  #contentsDetailManage .grid-content-pc-none {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(65px, auto));
    column-gap: 1rem;
    row-gap: 1rem;
    padding: 0 1.8rem;
    margin-top: 2rem;
  }

  #contentsDetailManage .grid-content-pc-none h2 {
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    color: #6c7481;
    line-height: normal;
    padding: 1.4rem 1.8rem 0;

  }

  #contentsDetailManage .grid-content-pc-none p {
    padding: 1rem 1.8rem;
    margin-bottom: 0;
  }

  #contentsDetailManage .item-pc-none-1 {
    grid-column: 1;
    grid-row: 1;
  }

  #contentsDetailManage .item-pc-none-2 {
    grid-column: 1;
    grid-row: 2;
  }

  #contentsDetailManage .grid-area {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, minmax(65px, auto));
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  #contentsDetailManage .grid-area h2 {
    margin-bottom:0;
  }

  #contentsDetailManage .grid-area li.item1 p,
  #contentsDetailManage .grid-area li.item2 p,
  #contentsDetailManage .grid-area li.item3 p,
  #contentsDetailManage .grid-area li.item4 p,
  #contentsDetailManage .grid-area li.item5 p {
    text-align: left;
    padding: 1rem 1.8rem;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
  }

  #contentsDetailManage .f-head {
    padding: 2rem;
    line-height: 25px;
    font-weight: 500;
  }

  #contentsDetailManage .f-head::before {
    display: block;
    margin-bottom: 8px;
  }

  #contentsDetailManage .grid-area h2 {
    text-align: left;
    padding: 1.4rem 1.8rem 0;
  }

  #contentsDetailManage .item1 {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  #contentsDetailManage .item2 {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  #contentsDetailManage .item3 {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  #contentsDetailManage .item4 {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  #contentsDetailManage .item5 {
    grid-column: 1 / 2;
    grid-row: 3;
  }

  #contentsDetailManage .item6 {
    grid-column: 1 / 3;
    grid-row: 4;
    border-top: none;
    border-radius: 0;
  }

  #contentsDetailManage .item7 {
    grid-column: 1 / 3;
    grid-row: 5;
    border-top: none;
    border-radius: 0;
  }

  #contentsDetailManage .item8 {
    grid-column: 1 / 3;
    grid-row: 6;
    border-top: none;
    border-radius: 0;
  }

  #contentsDetailManage .item9 {
    grid-column: 1 / 3;
    grid-row: 7;
    border-top: none;
    border-radius: 0;
  }

  #contentsDetailManage .item10 {
    grid-column: 1 / 3;
    grid-row: 8;
    border-top: none;
    border-radius: 0;
    padding-bottom: 2rem;
  }

  #contentsDetailManage .item11 {
    grid-column: 1 / 3;
    grid-row: 9;
    border-top: none;
    border-radius: 0;
  }

  #contentsDetailManage .item12 {
    grid-column: 1 / 3;
    grid-row: 10;
    border-top: none;
    border-radius: 0;
  }

  #contentsDetailManage .grid-area li.item1,
  #contentsDetailManage .grid-area li.item3,
  #contentsDetailManage .grid-area li.item5 {
    margin-left: 2rem;
  }

  #contentsDetailManage .grid-area li.item2,
  #contentsDetailManage .grid-area li.item4 {
    margin-right: 2rem;
  }

  #contentsDetailManage .grid-area li.item6,
  #contentsDetailManage .grid-area li.item7,
  #contentsDetailManage .grid-area li.item8,
  #contentsDetailManage .grid-area li.item9,
  #contentsDetailManage .grid-area li.item10,
  #contentsDetailManage .grid-area li.item11,
  #contentsDetailManage .grid-area li.item12 {
    padding: 2rem 3rem;
    line-height: 1.7;
  }

  #contentsDetailManage .grid-area li.item12 {
    border-bottom: none;
  }

  #contentsDetailManage .btn-bg-blue::before {
    display: none;
  }

  #contentsDetailManage .search-header {
    margin-bottom:60px;
  }

  #contentsDetailManage #search {
    position:absolute;
    max-width:100%;
    top:55px;
    left:1rem;
    height:30px;
    width:calc(100% - 2rem);
  }

  #contentsDetailManage #search::before {
    top:70px;
  }

  #contentsDetailManage #search input[type="search"] {
    width:calc(100% - 8rem);
  }

  #contentsDetailManage input[type="submit"] {
    position:absolute;
    top:55px;
    right:calc(1rem + 2px);
    width:5rem;
    height:30px;
    margin-right:0;
  }

/*===============================
  #ContentsDetailManageEdit
===============================*/
  #contentsDetailManageEdit .mb-3 {
    padding: 1rem 2.5rem;
    margin-bottom: 0 !important;
  }

  #contentsDetailManageEdit .mn-ed-h3 {
    height: 65px;
    background-color: #FAFBFD;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-top: 1px solid #e7e7e7;
  }

  #contentsDetailManageEdit #btnBack {
    margin-right: 26px;
  }

  #contentsDetailManageEdit form {
    margin-top: 0 !important;
  }
}
