@charset "UTF-8";

/* --------------------------------------------------------
-----------------------------------------------------------
body
-----------------------------------------------------------
----------------------------------------------------------- */
body {
    font-family: "Noto Sans JP", Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-feature-settings: "palt";
}

/* --------------------------------------------------------
-----------------------------------------------------------
header
-----------------------------------------------------------
----------------------------------------------------------- */
.header {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header .header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.header .logo-wrap {
    margin-left: 10px;
}

.header .logo-wrap img {
    width: 200px;
}

.header .header-btn-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.header .header-btn-wrap .next-btn {
    background-color: #ff398d;
    border-color: #ff398d;
    font-weight: bold;
    color: #fff;
    font-size: 17px;
    border-radius: 0;
    padding: 6px 10px 6px 10px;
    height: 100%;
    width: 125px;
}

.header .header-btn-wrap .next-btn span {
    background-image: url(/pd/img/icon_next.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 17px;
    background-size: 13px auto;
}

/* --------------------------------------------------------
-----------------------------------------------------------
Content
-----------------------------------------------------------
----------------------------------------------------------- */
.Content {
    margin-top: 30px;
    padding-bottom: 50px;
}

/*
---------------------------------------------------------
content-inner
--------------------------------------------------------- */
.Content .content-inner {
    max-width: 450px;
    margin: 0 auto;
}

/*
---------------------------------------------------------
step-block
--------------------------------------------------------- */
.Content .step-block {
    margin-bottom: 20px;
}

.Content .step-block .step-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.Content .step-block .step-wrap:before {
    content: "";
    width: calc(100% - 20px);
    height: 1px;
    background: #ff398d;
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: -1;
}

.Content .step-block .step-wrap .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.Content .step-block .step-wrap .step .num {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    font-weight: bold;
    color: #ff398d;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ff398d;
    border-radius: 40px;
}

.Content .step-block .step-wrap .step.done .num {
    color: #fff;
    background: #ff398d;
}

.Content .step-block .step-wrap .text {
    font-size: 12px;
    font-weight: 500;
    color: #444;
}

/*
---------------------------------------------------------
editor-block
--------------------------------------------------------- */
.Content .editor-block {
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.Content .editor-block .editor {
    width: 100%;
    aspect-ratio: 1;
    background-image: url(/img/bg.png);
    background-repeat: repeat;
    background-size: 10px auto;
    position: relative;
}

.Content .editor-block .editor .btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.Content .editor-block .editor .btn-wrap button {
    width: 220px;
    height: 45px;
    background: #aaa;
    border-radius: 45px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.Content .editor-block .editor .secondary-btn-wrap {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
}

.Content .editor-block .editor .secondary-btn-wrap button.upload-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff398d;
    color: #fff;
    border-radius: 50px;
    font-size: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
}

.Content .editor-block .editor .secondary-btn-wrap button.upload-btn:before {
    content: "";
    background: url(/img/icon_secondary.svg);
    background-size: 30px auto;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 7px;
    left: 11px;
}

.Content .editor-block .text-menu-btn-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .4s;
}

.Content .editor-block .text-menu-btn-wrap.close {
    right: -25px;
}

.Content .editor-block .text-menu-btn-wrap .inner-wrap {
    overflow: hidden;
}

.Content .editor-block .text-menu-btn-wrap .text-menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 130px;
    background: #ff398d;
    color: #fff;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    border: 1px solid #ff398d;
}

.Content .editor-block .text-menu-btn-wrap.close .text-menu-btn {
    pointer-events: none;
}

.Content .editor-block .text-menu-btn-wrap.close .close-btn {
    display: none;
}

.Content .editor-block .text-menu-btn-wrap .close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -8px;
    left: -8px;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    color: #ff398d;
    border: 1px solid #ff398d;
    cursor: pointer;
    line-height: 0;
    letter-spacing: -1px;
}

.Content .editor-block .text-menu-btn-wrap .close-btn:hover {
    opacity: .8;
}

.Content .editor-block .text-menu-btn-wrap .open-btn {
    display: none;
}

.Content .editor-block .text-menu-btn-wrap.close .open-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    width: 9px;
    height: 100%;
    border-radius: 24px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

/*
---------------------------------------------------------
editor-bottom-block
--------------------------------------------------------- */
.Content .editor-bottom-block {
    margin-bottom: 20px;
}

.Content .editor-bottom-block .editor-bottom-inner {
    background: #f2f2f2;
    padding: 20px 15px;
}

.Content .editor-bottom-block .editor-bottom-inner p {
    color: #444;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
}

/* cutout
--------------------------------------------------------- */
.Content .editor-bottom-block .editor-bottom-inner .cutout .btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.Content .editor-bottom-block .editor-bottom-inner .cutout .btn-wrap button {
    width: 160px;
    height: 28px;
    border: 1px solid;
    border-radius: 28px;
    font-size: 14px;
    font-weight: bold;
}

.Content .editor-bottom-block .editor-bottom-inner .cutout .btn-wrap button.yes-btn {
    background: #ff398d;
    border-color: #ff398d;
    color: #fff;
}

.Content .editor-bottom-block .editor-bottom-inner .cutout .btn-wrap button.no-btn {
    background: #fff;
    border-color: #ff398d;
    color: #ff398d;
}

/* select-tab
--------------------------------------------------------- */
.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list {
    margin-top: 15px;
    padding-bottom: 10px;
    overflow-x: auto;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list::-webkit-scrollbar {
    height: 6px;
    background: transparent;
    padding: 0;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff398d, #ff398d);
    border-radius: 6px;
    border: none;
    margin: 0;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 6px;
    margin: 0;
    background-clip: content-box;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list .tab-list-inner {
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 10px;
    overflow-x: hidden;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list .tab-list-inner .tab {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list .tab-list-inner .tab button {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list .tab-list-inner .tab button.active {
    border-color: #ff398d;
}

.Content .editor-bottom-block .editor-bottom-inner .select-tab .tab-list .tab-list-inner .tab button img {
    width: 100%;
    height: 100%;
}

/* check-pedestal
--------------------------------------------------------- */
.Content .editor-bottom-block .editor-bottom-inner .check-pedestal .btn-wrap {
    text-align: center;
    margin-top: 15px;
}

.Content .editor-bottom-block .editor-bottom-inner .check-pedestal .btn-wrap button {
    width: 200px;
    height: 35px;
    border: 1px solid;
    border-radius: 35px;
    font-size: 14px;
    font-weight: bold;
    background: #fff;
    border-color: #ff398d;
    color: #ff398d;
}

/* select-pedestal
--------------------------------------------------------- */
.Content .editor-bottom-block .editor-bottom-inner .select-pedestal .btn-wrap {
    text-align: center;
    margin-top: 15px;
}

.Content .editor-bottom-block .editor-bottom-inner .select-pedestal .btn-wrap button {
    width: 200px;
    height: 35px;
    border: 1px solid;
    border-radius: 35px;
    font-size: 14px;
    font-weight: bold;
    background: #fff;
    border-color: #ff398d;
    color: #ff398d;
}

/*
---------------------------------------------------------
btn-block
--------------------------------------------------------- */
.Content .btn-block .btn-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.preview-area-content .btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.preview-area-content button,
.Content .btn-block button {
    width: calc((100% - 15px) / 2);
    height: 45px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 45px;
    border: 1px solid;
}

.preview-area-content button.check-pedestal-btn,
.Content .btn-block button.next-btn {
    background: #ff398d;
    border-color: #ff398d;
    color: #fff;
}

.Content .btn-block button.back-btn {
    background: #fff;
    border-color: #ccc;
    color: #444;
}

.design-edit-area.text-area {
    position: absolute;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    height: 500px;
    top: 100px;
    left: 3%;
}

.design-edit-area.text-area .design-edit-title {
    cursor: move;
}

.design-edit-area .design-edit-body.text-font-wrap,
.design-edit-area .design-edit-body.text-size-wrap {
    padding-top: 15px;
}

.design-edit-area .Flex-block.text-color-framecolor-block {
    padding: 25px 0 5px;
}

.design-edit-area.item-area {
    position: absolute;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    height: 240px;
    top: 100px;
    left: 100px;
}

.design-edit-area.item-area .item-section.section01 .design-edit-title-inner,
.design-edit-area.item-area .item-section.section02 {
    display: none !important;
}

.design-edit-area.item-area .design-edit-title {
    cursor: move;
}

/* プレビュー画面：デザインと白版の横並び表示用 */
[data-pd-role="acrylicThumbWrap"].is-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

[data-pd-role="acrylicThumbWrap"] img {
    max-width: 100% !important;
    height: auto !important;
    border: 1px solid #ccc;
    /*
    background-image: url(/img/bg.png);
    background-repeat: repeat;
    background-size: 10px auto;
    */
}