@charset "UTF-8";
* {
    outline: none;
}

html {
    height: 100dvh;
    scroll-behavior: smooth;
    overflow: hidden;
}

body {
    background-color: #EAEAEA;
    font-family: 'Noto Sans JP', sans-serif;
    height: 100%;
    text-align: left;
    overflow: hidden;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    text-decoration-skip-ink: none;
    font-size: 10px;
}

#nMainContentWrap {
    width: 32rem;
    margin: 0 auto;
    overflow-y: auto;
    font-size: 1.2rem;
    /*box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.5);*/
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
    height: 100%;
    background-color: #FFF;
}

#nMainContentWrap::-webkit-scrollbar {
    display: none;
}

#nHeadPreview {
    margin-left: auto;
}

#nHeadPreview .nDashIcons {
    margin-left: 0.5rem;
    font-size: 1.8rem;
    vertical-align: middle;
    font-weight: normal;
}

#nHeadPreview a {
    text-decoration: none;
    color: #2a64a6;
    font-size: 0.9rem;
    font-weight: 600;
}

/*
#nLoginPage main {
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
}
*/
#nLoginPage #nMainContentWrap {
    padding-top: 0;
}

#nMainContentWrap > section {
    padding: 1rem;
}

#nFormWrap {
    width: 100%;
    margin: 1rem auto;

}

#nLoginPage #nFormWrap {
    padding: 0.5rem;
    border: 1px solid #CCC;
    border-radius: 0.5rem;
}


h1 {
    text-align: center;
    font-size: 1.3rem;
    background-color: #bed9f5;
    border-radius: 0.2rem;
    padding: 0.5rem 1rem;
    margin: 0 0 1rem 0;
}

.nFormTable input[type=text],
.nFormTable input[type=number],
.nFormTable input[type=tel],
.nFormTable input[type=email],
.nFormTable input[type=password],
.nFormTable input[type=date],
.nFormTable input[type=time],
.nFormTable input[type=url],
.nFormTable textarea,
.nFormTable select {
    background-color: #F6F6F6;
    border: none;
    border-radius: 0.2rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.nFormTable input[type=number]::-webkit-outer-spin-button,
.nFormTable input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.nFormTable input[type=number] {
    -moz-appearance: textfield;
}

.nFormTable textarea {
    min-height: 8rem;
    display: block;
    height: 100%;
}

.nFormTable input[readonly],
.nFormTable textarea[readonly] {
    background-color: #DDDDDD;
}

.nFormTable input[type=file][readonly] {
    display: none;
}


.nFormTable input[type=submit],
.nFormTable input[type=button],
.nFormTable button {
    background-color: #5382f5;
    border-radius: 0.2rem;
    padding: 0.5rem 1.5rem;
    border: none;
    min-width: 8rem;
    font-size: 1rem;
    color: #FFFFFF;
}

.nFormTable input::placeholder,
.nFormTable textarea::placeholder {
    color: #BBB;
}

#nFormBack {
    background-color: #CCCCCC;
}

.nFormTable input[type=file] {
    width: 100%;
}

.nFormTable input[type=file]::file-selector-button {
    font-weight: bold;
    color: white;
    background: cornflowerblue;
    border: 0;
    border-radius: 0.5rem;
    padding: 0.4rem 1rem;
    text-align: center;
    display: block;
    margin-bottom: 0.5rem;
}

.nFormTable {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.nFormTable th {
    font-weight: normal;
    padding: 0.5rem;
    vertical-align: top;
    white-space: nowrap;
}

.nFormTable th b {
    display: block;
    text-align: center;
    background-color: #CCCCCC;
    padding: 0.2rem;
    margin-top: 1rem;
}

.nFormTable th i {
    font-style: normal;
    display: block;
    text-align: center;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
}

.nFormTable td {
    padding: 0.5rem;
    vertical-align: top;
    width: 100%;
}

.nFormTable td p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.nFormTable ul li {
    margin-top: 0.5rem;
}

.nFormTable ul li:first-of-type {
    margin-top: 0;
}

.nMainWrap {
    padding: 1rem;
}

.nFormConfirm {
    display: none;
}

.nFormButton {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
}

.nFormButton a,
.nFormButton button {
    background-color: #5382f5;
    border-radius: 0.2rem;
    padding: 0.5rem 1.5rem;
    border: none;
    min-width: 8rem;
    font-size: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
}
.nFormButton a[disabled],
.nFormButton button[disabled]{
    pointer-events: none;
    background-color: #CCCCCC !important;
}
.nImageUploader {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.nImageUploader > div {
    flex-grow: 1;
    position: relative;
}

.nImgPreview {
    width: 100%;
    height: 0;
    padding-top: 177.78%;
    position: relative;
    display: block;
    background: #EEEEEE no-repeat center /cover;
    box-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.2);
}

.nImgPreview img,
.nImgPreview video {
    z-index: 1;
}

.nImgPreview img {
    background-color: #EEEEEE;
}

.nImgUpload,
.nImgDel,
.nMovieUpload {
    display: none;
}

.nImgAddButton {
    display: flex;
    justify-content: space-between;
}

.nImgAddButton label[for^=delImg] {
    display: none;
}

.nImgButtonAdd {
    position: absolute;
    left: 50%;
    top: 50%;

    color: #CCCCCC;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 0;
}

.nImgButtonAdd.dashicons {
    font-size: 4rem;
    width: auto;
    height: auto;
}


.nImgButtonDell {
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 2;
    color: #FFF;
    text-shadow: 0.1rem 0.1rem 0.2rem #CCC;
}

.nImgButtonDell.dashicons {
    font-size: 2rem;
    width: auto;
    height: auto;

}

.nImgButtonDell[data-img=""] {
    display: none;
}

.dashicons-move.dashicons {
    position: absolute;
    font-size: 1.9rem;
    left: 0.2rem;
    bottom: 0.2rem;
    width: 2rem;
    height: 2rem;

    z-index: 2;
    color: #FFF;
    text-shadow: 0.1rem 0.1rem 0.2rem #CCC;
}

.nPartsSort {
    cursor: move;
}

#nShopMainImg {
    text-align: center;
    margin-bottom: 0.5rem;
}

#nShopTitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


#nShopRenewSelect {
    font-size: 1.2rem;
    padding: 0.4rem 1rem;
    width: 100%;

}

#nShopRenewList > article {
    /*display: none;*/
    border: 1px solid #CCC;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

#nShopRenewList article > h3 {
    margin: 0;
    font-size: 1rem;
    text-align: center;
    background-color: #DDDDDD;
    line-height: 1.8;
    border-radius: 0.2rem;
    position: relative;
}

#nShopRenewList article > h3 label:before {
    position: absolute;
    left: 0.5rem;
    font-family: dashicons;
    content: "\f159";
    transform: scale(1.5);
    color: #FFF;
}

#nShopRenewList article > h3 label {
    width: 100%;
    display: block;
}

#nShopRenewList input[type=date] {
    font-size: 0.8rem;
}

#nShopRenewType1 textarea {
    display: block;
    margin-top: 0.5rem;
}

#nShopRenewType2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#nShopRenewType2 ul li {
    border-top: 1px solid #CCC;
    padding: 0.5rem 0;
    display: flex;
    gap: 1rem;

}

#nShopRenewType2 ul li:first-of-type {
    border: none;
}

#nShopRenewType2 ul li input:nth-of-type(1) {
    width: 100%;
}

#nShopRenewType2 ul li input:nth-of-type(2) {
    width: 25%;
    flex-grow: 1;
    text-align: right;
}

#nShopRenewType2 ul li input:nth-of-type(3) {
    width: 25%;
    flex-grow: 1;
    text-align: right;
}

#nShopRenewType3 > div {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

#nShopRenewType3 > div > div {
    width: 50%;
    flex-grow: 1;
}

#nShopRenewType3 > div > div > textarea {
    height: 100%;
    display: block;
}

#nShopRenewType4 ul {
    margin: 0.5rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1rem;
}

#nShopRenewType4 ul li {
    width: 100%;
    flex-grow: 1;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    text-align: center;
}

#nShopRenewType5 > div {
    margin-top: 0.5rem;
}

.nNavButton {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2%;
}

.nNavButton li {
    width: 49%;
    padding: 0;
}

.nNavButton li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    border: 1px solid #CCC;
    line-height: 2;
    border-radius: 0.5rem;
}


.nGenreRegisterList {

}

.nGenreRegisterList ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nGenreRegisterList ul li {
    margin: 0.5rem 0;
}

.nGenreRegisterList ul ul {
    margin-left: 2rem;
}

.nGenreRegisterList label {
    border: 1px solid #CCC;
    padding: 0.3rem 1rem;
    display: block;
    border-radius: 0.5rem;
}

.nGenreRegisterList input[type=checkbox]:checked ~ label {
    background-color: #ffd3d3;
}

.nGenreCheck {
    display: none;
}

#nAdminHeader {
    position: sticky;
    width: 100%;
    background: #FFFFFF;
    top: 0;
    /*height: 0;*/
    padding: 0 1rem;
    z-index: 101;
}

#nAdminHeader > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

#nAdminBack {
    margin-right: 1rem;
}

#nAdminBack a {
    text-decoration: none;
    color: #000;
}

#nAdminBack a .dashicons {
    display: block;
    font-size: 2rem;
    width: auto;
    height: auto;
}


#nHeadMenu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: -1;
    transition: all 0.3s;
    font-size: 1.4rem;
}

#nHeadMenu > div {
    width: 32rem;
    margin: 3rem auto 0;
    padding: 0 1rem 3rem;
}

#nHeadMenu > div ul {
    margin: 0;
    padding: 1rem 1rem;
    list-style: none;
    border-top: 1px solid #000;
}

#nHeadMenu > div ul li {
    line-height: 2.4;
    padding: 0 2rem;
}

#nHeadMenu > div ul a {
    text-decoration: none;
    color: #000;
}

.nMenuFoot {
    margin-top: 1rem;
    padding-top: 1rem !important;
    display: flex;
    justify-content: center;
    gap: 2rem;

}

.nMenuFoot a {
    background-color: #bfd4f3;
    padding: 0.2rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    line-height: 2;
    text-decoration: none;
    color: #000;
}

#nMenuCheck {
    display: none;
}

#nMenuCheck:not(:checked) ~ #nHeadMenu {
    right: -100%;
    opacity: 0;
}

#nMenuButton {
    width: 2.6rem;
    height: 2.6rem;
    position: relative;
    z-index: 11;
    margin-left: auto;
}

#nMenuButton span,
#nMenuButton:before,
#nMenuButton:after {
    content: '';
    display: block;
    height: 2px;
    width: 80%;
    position: absolute;
    top: calc(50% - 1px);
    left: 10%;
    background-color: #000;
    transform-origin: center;
    transition: all 0.3s;
}

#nMenuButton:before {
    top: calc(25% - 1px);
}

#nMenuButton:after {
    top: calc(75% - 1px);
}

#nMenuCheck:checked ~ #nMenuButton span {
    transform: rotate(360deg);
    opacity: 0;
}

#nMenuCheck:checked ~ #nMenuButton:before {
    rotate: -220deg;
    top: calc(50% - 1px);
}

#nMenuCheck:checked ~ #nMenuButton:after {
    rotate: 220deg;
    top: calc(50% - 1px);
}

#nHeadData {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#nCopyRight {
    padding-top: 5rem;
    font-size: 0.8rem;
    line-height: 4;
    text-align: center;
}

/*
.nRenewRadio {
    display: none;
}

.nRenewRadio:checked + article {
    background-color: #ffcbc7;
}

.nRenewRadio:checked + article h3 {
    background-color: #E87E77 !important;
}

.nRenewRadio:checked + article h3 label:before {
    content: "\f12a" !important;
}
*/

/*
#nSearchForm {
    padding: 0.5rem;
    border: 1px solid #CCC;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.nRenewTable {
    width: 100%;
}

.nRenewTable tr th {
    width: 30%;
}

.nRenewTable tr td {
    width: 20%;
    text-align: center;
}

.nRecommendText {
    padding-top: 0.5rem;
}

.nRecommendText textarea {
    height: 6rem;
}

#nMenuRecommendImgAdd {

}

.nImgUploadWrap {
    position: relative;
}

#nShopMenuAddList {

}

#nShopMenuAddList > article {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nShopMenuAddImg {
    width: 32.15%;
    flex-shrink: 0;
}

.nShopMenuAddCont {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.nMenuDelete {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fb4242;
    color: #FFF;
    font-size: 0.9rem;
    padding: 0.2rem 0.8rem;
    border-radius: 0.5rem;
    display: none;
}

.nMenuListAdd {
    text-align: right;


}

.nMenuListAdd button {
    background-color: #e3d7ff;
    font-size: 0.9rem;
}

#nShopMenuAddListMod {
    display: none;
}

.nShopMenuListPrice {
    display: flex;
    gap: 0.5rem;
}

.nShopMenuListPrice input[type=number] {

}

.nShopMenuListPrice > div:first-of-type {
    width: 30%;
}

.nTaxRadio {
    display: none;
}

#nTaxSelector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

#nTaxSelector label {
    border: 1px solid #CCC;
    width: 8rem;
    line-height: 2.4rem;
    text-align: center;
    border-radius: 0.5rem;
    cursor: pointer;
}

#nTaxSelector .nTaxRadio:checked + label {
    background-color: #5382f5;
    color: #FFF;
    border-color: #5382f5;
}

#nTermsFooter {
    text-align: right;
}

#nTermsFooter p {
    display: inline-block;
    text-align: left;
}

#nPageContent {
    margin: 1rem 0;
    line-height: 1.8;
    word-break: auto-phrase;
}

#nPageContent dt {
    margin-bottom: 0.5rem;
}

#nPageContent dd {
    margin: 0 0 2rem;
}

#nPageContent ul,
#nPageContent ol {
    padding-left: 2rem;
}

#nPageContent ol li {
    margin-bottom: 0.5rem;
}

#nPageContent ol ol {
    list-style-type: none;

}

#nPageContent ol ol li {
    text-indent: -2rem;
    counter-increment: cnt;

}

#nPageContent ol ol li::before {
    display: marker;
    content: "(" counter(cnt) ") ";
}


*/


#nButtonList {

}

#nButtonList > article {
    border: 1px solid #CCC;
    border-radius: 0.5rem;
    margin: 0.5rem 0;
    padding: 0.5rem;
}

#nButtonList > article.nUnPublish {
    background-color: #DDD;
}

.nButtonListData1 {
    display: flex;
    justify-content: space-between;
}

.nButtonListData1 h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.nButtonListLink {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nButtonListLink a {
    text-decoration: none;
    background-color: #098e00;
    color: #FFF;
    border-radius: 0.3rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
}

.nButtonListLink a:last-of-type {
    background-color: #1281c4;
}

.nButtonListData {
    width: 100%;
}

.nButtonListData2 {
    display: flex;
    font-size: 0.9rem;
    gap: 1rem;
    padding-top: 0.5rem;
}

.nButtonListData2 span {
}

.nButtonListData2 > div {
    margin-left: auto;
}

.nButtonListData2 > div span {
    text-decoration: none;
    background-color: #8a8f97;
    color: #FFF;
    border-radius: 0.3rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.nButtonListData2 > div span.nPublish {
    background-color: #ff9ce1;
}

.nTableSelectButton {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1px;
}

.nTableSelectButtonAlt {
    flex-wrap: wrap;

}

.nTableSelectButtonAlt label {

}


.nTableSelectButton input[type=radio] {
    display: none;
}

.nTableSelectButton label {
    font-size: 1rem;
    padding: 0.5rem 0.3rem;
    background-color: #EEE;
    flex-grow: 1;
    text-align: center;
}

/*.nTableSelectButton label:first-of-type {
    border-radius: 0.5rem 0 0 0.5rem;

}

.nTableSelectButton label:last-of-type {
    border-radius: 0 0.5rem 0.5rem 0;
}*/

.nTableSelectButton input[type=radio]:checked + label {
    background-color: #5382f5;
    color: #FFF;
}

#trTopType0,
#trTopType1 {
    display: none;
}


.nSelectButton {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4%;
}

.nSelectButton label {
    border-radius: 0.5rem;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    padding: 1.2rem 0.5em;
    background-color: #EEE;
}

.nSelectButton input {
    display: none;
}

.nBtnType00 {
    width: 31%;
}

.nBtnType01 {
    width: 65%;
}

.nBtnType02 {
    width: 48%;
}

.nBtnType03 {
    width: 100%;
}

.nBtnType04 {
    width: 16%;
}

.nBtnType05 {
    width: 21.25%;
}

.nBtnDisable {
    position: relative;
}

.nBtnDisable:after {
    content: '';
    display: block;
    background-color: #EEE;
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 calc(100% - 2px), 100% 0, 100% 2px, 0 100%);
}

.nSelectButton > div {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    border: 1px solid #EEE;
}


.nSelectButton input[type=radio]:checked + label {
    background-color: #5382f5;
    color: #FFF;
}

.nButtonBig > * {
    min-height: 5.1rem;
}

[data-select-check] {
    display: none;
}


#nColorSampleWrap {

}

#nColorSampleWrap > div {
    padding: 1.2rem;
}

#nColorSampleWrap > div:first-of-type {

}

#nColorSampleWrap > div:nth-of-type(2) {
    background-color: #000;
}

#nColorSampleWrap > div:nth-of-type(3) {
    background-color: #0000af;
}

#nColorSampleWrap > div:nth-of-type(4) {
    background-color: #ca4c00;
}

#nColorSampleWrap.nSelectButton {
    gap: 0;
    border: 1px solid #EEE;
}

#nColorSampleWrap.nSelectButton > div {
    border-radius: 0;
    border: 0;
    width: 50%;
}

#nColorSampleWrap.nSelectButton label {
    background-position: center;
    background-size: cover;
}

#nMainContentWrap > section#nACFSection {
    padding: 0;
}

#nACFSection {
    font-size: 1rem;
}

#nACFSection .acf-button {
    font-size: 1rem;
    padding: 0.3rem 1rem;
    background-color: #5382f5;
    color: #FFF;
    text-decoration: none;
    flex-grow: 1;
    text-align: center;
    border-radius: 0.5rem;
    border: none;
    display: inline-block;
}

#nACFSection .acf-form-submit {
    text-align: center;
    padding-top: 2rem;
}

#nACFSection .acf-form-submit .acf-button {
    background-color: #5382f5;
    border-radius: 0.2rem;
    padding: 0.5rem 1.5rem;
    border: none;
    min-width: 8rem;
    font-size: 1rem;
    color: #FFFFFF;
}

.acf-field .acf-label label[for=acf-field_66fa30afa34d8] {
    display: none;
}

#message {
    margin: 0 1rem;
    background-color: #098e00;
    border: 1px solid #098e00;
    border-radius: 0.5rem;
    padding: 0 1rem;
    text-align: center;
    color: #FFF;
}


#nACFSection .acf-gallery-sort {
    display: none;
}

#nButtonList article {
    background-color: #FFF;
}

#nButtonList article:not([data-parent='0']) {
    margin-left: 1rem;
}

#nButtonList article h3 {
    margin: 0 auto 0 0.5rem;
    font-size: 1rem;
}


.nButtonDelete {
    background-color: #ff2a1a !important;
}

.nButtonHeader {
    display: block;
    text-align: center;
    background-color: #CCCCCC;
    padding: 0.2rem;
    margin-bottom: 1rem;
}

.nSlideImageList .nImageUploader {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem 2%;
}

.nSlideImageList article {
    width: 32%;
    flex-grow: unset;
}

#nACFSection input[type=file] {
    width: 100%;
    white-space: wrap;
}

#nACFSection ::-webkit-file-upload-button {
    background-color: #5382f5;
    border-radius: 0.2rem;
    padding: 0.2rem 0.3rem;
    border: none;
    min-width: 8rem;
    font-size: 0.8rem;
    display: block;
    color: #FFFFFF;
    margin-right: 0;
    margin-inline-end: 0;
    padding-inline: 0;
    white-space: wrap;
}

.nEditContent {
    border: 1px solid #EEE;
    padding: 0.5rem;
}

.nEditContent h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    background-color: #EEE;
    padding: 0.2rem 0.5rem;
    text-align: center;
}

.nEditContent .wp-editor-tools {
    display: none;
}

.nSlideImageList .nImageUploader {
    flex-wrap: wrap;
}

.nSlideImageList .nImageUploader > article {

}

.nEditContentAddButton {
    text-align: center;
}

.nEditContentAddButton > div {
    width: calc(50% - 0.5rem);
    background-color: #5382f5;
    border-radius: 0.2rem;
    padding: 0.2rem 0.3rem;
    border: none;
    min-width: 8rem;
    font-size: 1.1rem;
    display: inline-block;
    color: #FFFFFF;
    margin-right: 0;
    margin-inline-end: 0;
    padding-inline: 0;
    white-space: wrap;
    text-align: center;
    line-height: 2;
    cursor: pointer;
}

#nContentAddList {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 32rem;
}

#nContentAddList > div {
    width: calc(50% - 0.5rem);
    background-color: #5382f5;
    border-radius: 0.2rem;
    padding: 0.2rem 0.3rem;
    border: none;
    min-width: 8rem;
    font-size: 1rem;
    display: block;
    color: #FFFFFF;
    margin-right: 0;
    margin-inline-end: 0;
    padding-inline: 0;
    white-space: wrap;
    text-align: center;
    line-height: 2;
}

#nEditContentList {
    position: relative;
    margin-top: 2rem;
}

#nEditContentListWrap {
    padding: 1rem 0;
}

#nEditContentList > article {
    margin: 1rem 0;
    position: relative;
}

#nEditContentList > article .nPartsSort {
    position: absolute;
    left: 1rem;
    top: 0.7rem;
}

#nEditContentList > article .nPartsDel {
    position: absolute;
    right: 1rem;
    top: 0.7rem;
}

.nEditContentWrap,
#nEditContentAdd /*,
#nEditContentHtmlEditor*/
{
    display: none;
}

#nEditContentHtmlEditor {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    z-index: 20;
}

#nEditContentHtmlEditor > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/*
#nEditContentHtmlEditor > div {
    height: 100%;
}
*/

/*#nEditContentHtmlEditor iframe#post-content_ifr {
    height: 100%;
}*/

/*#wp-post-content-wrap {
    height: 100%;
}*/

/*#wp-post-content-editor-container {
    height: 100%;
}*/

/*.wp-editor-tools {
    display: none;
}*/

.nEditContentOpen {
    text-align: right;
    padding-top: 0.5rem;
}

.nEditContentOpen > div {
    background-color: #098e00;
    border-radius: 0.2rem;
    padding: 0.1rem 1rem;
    border: none;
    min-width: 8rem;
    font-size: 1rem;
    display: inline-block;
    color: #FFFFFF;
    text-align: center;
    line-height: 2;

}

/*
#wp-contentHtmlEditor-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#wp-contentHtmlEditor-editor-container {
    height: 100%;
}

#wp-contentHtmlEditor-wrap .mce-container {
    height: 100%;
}
#wp-contentHtmlEditor-wrap .mce-container-body {
    display: flex;
    flex-direction: column;
}

*/
#nEditContentHtmlEditor {
    display: none;
}

/*
.mce-floatpanel {
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
*/
.nEditContentEditor {
    padding: 0.5rem 0;
}

.nEditContentEditor .wp-editor-container {
    box-shadow: none !important;
}


#nLogoPreview img.nCoverImg {
    object-fit: contain;
}


[data-disabled-check] {
    pointer-events: none;
    opacity: 0.2;
}

.nEditContentEditor {
    /*position: relative;
    vertical-align: top;*/
    /*padding: 0 1rem;
    border: 1px solid #CCC;
    border-radius: 0.5rem;*/
}

.nEditContentEditor textarea {
    /*display: none;*/
}

.nEditContentEditor *[contentEditable="true"]:focus,
.nEditContentEditor *[contentEditable="true"]:hover {
    outline: 2px solid #1976D2;
}

.tox .tox-toolbar, .tox .tox-toolbar__overflow, .tox .tox-toolbar__primary {
    /*background-color: #8b8b8b !important;*/
}

.tox-statusbar__branding {
    display: none;
}

#nBackgroundCont {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#nBackgroundCont video,
#nBackgroundCont > img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: relative;
}

#nBackgroundContLeft {
    position: absolute;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    /*right: calc(50% + 16rem);*/
    width: calc(50%);
    text-align: right;
    overflow: hidden;
}

#nBackgroundContRight {
    position: absolute;
    height: 100%;
    z-index: 1;
    right: 0;
    top: 0;
    /*left: calc(50% + 16rem);*/
    width: calc(50%);
    overflow: hidden;
}

#nBackgroundContLeft img,
#nBackgroundContRight img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
}

#nBackgroundContLeft img {
    object-position: right;
}

#nBackgroundContRight img {
    object-position: left;
}

.nColorHEX {
    margin-left: 0.8rem;
    border: 1px solid #CCC;
    font-size: 1.1rem;
    text-transform: uppercase;
    width: 7rem !important;
    text-align: center;
    padding: 0.2rem !important;
}


.nFilterList {
    display: flex;
    gap: 1.6rem 5%;
    flex-wrap: wrap;
}

.nFilterList > article {
    /*border: 1px solid #CCC;*/
    border-radius: 0.5rem;
    color: #000;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    position: relative;
    min-height: 4rem;
    padding: 1.2rem 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    font-size: 1.1rem;
}

.nFilterList > *[data-bt-height="1"] {
    min-height: 5.1rem;
}

.nBtnType00 {
    width: 30%;
}

.nBtnType01 {
    width: 65%;
}

.nBtnType02 {
    width: 47.5%;
}

.nBtnType03 {
    width: 100%;
}

.nBtnType04 {
    width: 16%;
}

.nBtnType05 {
    width: 21.25%;
}

#nButtonSorter {
    padding: 1rem;
}

/*#nButtonSorter > div > div > span {
    display: block;
    font-size: 1.1rem;
}*/

/*#nButtonSorter .nFilterList a,
#nButtonSorter .nFilterList span,
#nButtonSubSorter .nFilterList a,
#nButtonSubSorter .nFilterList span {
    display: block;
    font-size: 1rem;
    text-decoration: none;
    color: inherit;
}*/

.nFilterList > article.nUnPublish {
    background-color: #DDD;
}


/*.nSortPublish .nDashIcons,
.nSortContents .nDashIcons,
.nSortEdit .nDashIcons {
    background-color: #FFF;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    border-style: solid;
}*/

.nSortHandle {
    position: absolute;
    top: 0;
    left: 0;
    cursor: move;
    padding: 0 0.2rem;
    font-size: 1rem;
}

.nSortPublish {


    cursor: pointer;
}


.nSortStatus {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 0.2rem;
    /* background-color: #777; */
    border-radius: 0.3rem;
    /*color: #777;*/
    justify-content: flex-end;
    padding: 0 0.2rem;
    width: 100%;
}

.nSortStatus span {
    font-size: 0.92rem !important;
}

.nSortTitle {
    font-size: 1.1rem;
}

.nSubSortWrap {
    width: 100%;
    border: 1px solid #CCC;
    padding: 0.5rem;
    border-radius: 0 !important;
    display: flex;
    gap: 0.8rem 5%;
    flex-wrap: wrap;
}

.nSubSortWrap > div {
    border: 1px solid #CCC;
    position: relative;
}

#nButtonSubSorter {
    padding: 1rem;
}

#nButtonSubSorter > div {
    border: 1px solid #CCC;
    padding: 0.5rem;
    margin: 1rem 0;
}

.nButtonSubSortTitle {
    text-align: center;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    mix-blend-mode: difference;
    color: #FFF;
    border-bottom: 1px solid #FFF;
}

.nButtonSortHeader {
    display: none;
    font-size: 1.2rem;
    width: 32rem;
    text-align: center;
    /*right: -0.6rem;
    padding: 0.1rem 0;
    top:0;
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;*/
}

/*.nButtonSortHeader > div > div {
    display: flex;
}*/

.nSortHeadWrap {
    display: inline-block;
    text-align: left;
}

.nSortHeadWrap > div {
    width: 100%;

}

.nSortHeadWrap > div > * {
    text-decoration: none;
    margin: 0.8rem 0;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: left;
    color: #FFF;
    display: block;
}


.nSortPublish .nPublish {
    background-color: #ff9ce1;
}

.nSortPublish .nUnPublish {
    background-color: #8a8f97;
}

.nSortContents a {
    background-color: #098e00;
    cursor: pointer;
}

.nSortEdit a {
    background-color: #1281c4;
    cursor: pointer;
}

.nSortHeadStatus {
    padding-top: 1rem;
}

.nSortHeadStatus > div {
    color: #555;
    margin: 0;
    padding: 0.2rem 1rem;
}

#nButtonSorterWrap {
    padding-top: 1rem;
    /*background-color: #000;*/
}


#nColorChanger {
    text-align: center;
    margin: 2rem 0;
}

#nAdminMenu {
    gap: 3rem;
}

#nAdminMenu > a {
    width: 40%;
    text-align: center;
}

#nAdminMenu > a[disabled] {
    pointer-events: none;
    background-color: #8a8f97;
}


#nHiddenButtonSorter {
    padding: 1rem 1rem 2rem;
}

#nHiddenButtonSorter > div {
    padding: 0.5rem;

    border: 1px dashed #ccc;
}

#nHiddenButtonSorter .nButtonSubSortTitle {
    border-bottom-style: dashed;
}

.nIcomoonFont {
    font-family: 'icomoon';
    transform: scale(2);
    display: inline-block
}

.nTableSelectButton label .nIcomoonFont {
    transform: none;
    font-size: 1.5rem;
}

/*
.tox .tox-dialog--width-lg {
    width: 32rem !important;
}
*/

#nSitePublishSwitch {
    display: none;
}

#nSitePublish {
    text-align: center;
    flex-shrink: 0;
}

#nSitePublish label {
    height: 2rem;
    display: flex;
    border: 1px solid #dd4a68;
    background-color: #dd4a68;
    width: 5rem;
    padding: 0.2rem;
    position: relative;
    border-radius: 2rem;
    gap: 0.4rem;
    font-size: 1rem;
    transition: all 0.2s ease-out;
}

#nSitePublish label span {
    width: 50%;
    white-space: nowrap;
}

#nSitePublish label:before {
    content: '非公開';
    position: absolute;
    right: 0;
    top: 0.3rem;
    color: #FFF;
    font-size: 0.75rem;
    text-align: center;
    width: 3.4rem;
}

#nSitePublish label:after {
    font-size: 0.8rem;
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(2rem - 6px);
    height: calc(2rem - 6px);
    background-color: #FFF;
    border-radius: 50%;
    box-shadow: 0 0.2rem 1rem -0.3rem rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-out;
}

#nSitePublishSwitch:not(:checked) ~ label {
    background-color: #5382f5;
    border-color: #5382f5;
}

#nSitePublishSwitch:not(:checked) ~ label:after {
    left: calc(100% - 2rem + 4px);
}

#nSitePublishSwitch:not(:checked) ~ label:before {
    content: '公開';
    right: unset;
    left: 0;
}

#nAdminPageHeader {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0.5rem;
}

#nMenuURL {
    text-align: center;
}
#nMenuURL span {
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 1rem;
}
#nMenuURL button {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 0 1rem;
}

#QRCode {
    width: 18rem;
    margin: 0 auto 1rem;
}

#QRCode canvas {
    width: 100%;
}

.nReviewCaution {
    border: 1px solid #CCC;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
}

.nReviewCaution .nFormButton {
    padding: 0;
    margin-top: 1rem;
}

.nReviewCaution .nFormButton [disabled] {
    background-color: #dd4a68;
    cursor: no-drop;
}

.nLineLoginButton {
    display: inline-block;
    background-color: #098e00;
    color: white;
    text-decoration: none;
    padding: 0.3rem 2rem;
    border-radius: 0.5rem;
}

#nLineDisabled {
    display: inline-block;
    background-color: #dd4a68;
    color: white;
    text-decoration: none;
    padding: 0.3rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.nTableCheckButton {

}

.nTableCheckButton label {
    font-size: 1rem;
    padding: 0.5rem 0.3rem;
    background-color: #1976D2;
    color: #FFFFFF;
    flex-grow: 1;
    text-align: center;
    border-radius: 0.5rem;
    cursor: pointer;
}

.nTableCheckButton input[type=checkbox] {
    display: none;
}

.nTableCheckButton input[type=checkbox]:checked ~ label {
    background-color: #EEE;
}

#nChildSiteList {
    border-collapse: collapse;
    /*border:1px solid #CCC*/
}

#nChildSiteList thead th {
    text-align: center;
    border: 1px solid #CCC
}

#nChildSiteList tbody th span {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 1; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis;
    white-space: normal;
}

#nChildSiteList tbody input[type=text] {
    /*width: 10rem;*/
}

#nChildSiteList tbody tr th {
    width: 60%;
    vertical-align: middle;
}

#nChildSiteList tbody tr td:nth-of-type(1) {
    width: 30%;
}

#nChildSiteList tbody tr td:nth-of-type(2) {
    width: 10%;
}


.nGroupLinkButton {
    display: inline-block;
    background-color: #1976D2;
    color: white;
    text-decoration: none;
    padding: 0.3rem 0;
    border-radius: 0.5rem;
    margin: 0;
    width: 100%;
    font-size: 0.9rem;
}

#nSiteAdd {
    width: 5rem;
}

#nSiteListAdd {
    font-size: 1rem;
    margin-left: 1rem;
    display: inline-block;
    background-color: #1976D2;
    color: white;
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    vertical-align: middle;
    cursor: pointer;
}


#nEditSlideList,
#nLpPageList {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2%;
}

#nEditSlideList > article,
#nLpPageList > article {
    width: 32%;
}


.nImgMIni {
    width: 50%;
}

#nBackgroundImgList {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2%;
}

#nBackgroundImgList > article {
    width: 49%;

}

#nBackgroundImgList > article > p {
    text-align: center;
}

#nBackgroundImgList > article > div {

}

.nImageUploaderFull .nImgPreview {
    padding-top: 56.25%;
}


.nImageUploader .nPageEditLink {
    position: absolute;
    font-size: 1.9rem;
    right: 0.2rem;
    bottom: 0.2rem;
    width: 2rem;
    height: 2rem;
    z-index: 2;
    color: #FFF;
    text-shadow: 0.1rem 0.1rem 0.2rem #CCC;
}

#nAdminPageSection > section,
#nAdminPageSection > article {
    margin-bottom: 3rem;
}


.nModalWrap {
    font-size: 1rem;
}






#nLpList {
}

#nLpList > article {
    border: 1px solid #CCC;
    display: flex;
    padding: 0.2rem 0.2rem 0.2rem 0.5rem;
    margin: 0.5rem 0;
    font-size: 1rem;
    justify-content: space-between;
    align-items: center;
    gap: 0.3rem
}

.nLpListTitle {
    color: #555555;
    margin-right: auto;
    text-decoration: none;
}

#nLpList > article span {
    font-size: 0.8rem;
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
    margin-left: auto;
}
.nLpListEdit {
    background-color: #098e00;
    color: #FFF;

    font-size: 0.8rem;
    border-radius: 0.5rem;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
    text-decoration: none;
}

.nListPublish {
    background-color: #c5ffa3;
}

.nListUnPublish {
    background-color: #cacaca;
}
