main {
    padding-bottom: 50px;
}
#qrcode {
    display: flex;
    background: #fff;
    justify-content: center;
    margin-top: 20px;
    padding: 5px 55px 0;
}
h2 {
    color: #fff;
    background-color: #4e6868;
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}
.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.error {
    color: red;
    margin-top: 10px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
}
input[type="range" i] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 80%;
    height: 5px;
    margin: 10px;
    border-radius: 9999px;
    background: #dddddd;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
input[type="range" i]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #4e6868;
    border-radius: 50%;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
input[type="range" i]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background-color: #333333;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
input[type="range" i]:hover {
    /* ホバー時のふわっとした拡大効果 */
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.5);
}
input[type="range" i]::-webkit-slider-thumb:hover {
    transform: scale(1.5);
    /* ふわっと大きく */
    box-shadow: 0px 0px 30px rgba(78, 104, 104, 10);
    /* 影も追加して立体感を演出 */
}
input[type="color"] {
    width: 100px;
    height: 30px;
    border: none;
    padding: 0;
    cursor: pointer;
    inline-size: 142px;
    background-color: transparent;
    border-radius: 20px;
}
input[type="text"] {
    border: 2px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    width: 90%;
    padding: 5px;
    margin: auto;
    display: block;
    height: 50px;
    font-size: 28px;
}
input[type="text"]:focus {
    outline: none;
    border-color: #4e6868;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}
/* 非表示のチェックボックス */
.custom-checkbox input[type="checkbox"] {
    display: none;
}
/* チェックボックス全体のスタイル */
.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}
/* カスタムチェックボックスの見た目 */
.custom-checkbox .checkmark {
    width: 30px;
    height: 30px;
    background-color: #ddd;
    border-radius: 50%;
    /* 丸い形状 */
    position: relative;
    transition: background-color 0.3s ease;
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* チェックマークのデザイン */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 11px;
    width: 8px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}
/* チェックボックスがチェックされた時のスタイル */
.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: #4e6868;
    /* チェック時の背景色 */
    background-image: url(https://kotoden.jp/wp-content/themes/jinr/include/customizer/img/preset_bg_10.png);
}
/* チェックが現れるアニメーション */
.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    opacity: 1;
}
.loadWrap {
    position: sticky;
    top: 0;
    z-index: 10;
}
.load {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    flex-wrap: wrap;
}
.options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.btn {
    font-weight: bold;
}
input[type="file"]::file-selector-button {
    border: none;
    border-radius: 5px;
    padding: 10px 10px;
    margin: 5px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #4e6868;
    background-image: url(https://kotoden.jp/wp-content/themes/jinr/include/customizer/img/preset_bg_10.png);
    width: 130px;
    font-weight: bold;
}
/*ファイル選択時のテキストのカスタマイズ */
input[type="file"]::file {
    display: none;
}
/* ファイル選択時に表示するテキスト */
.custom-file-upload {
    display: inline-block;
    padding: 10px 10px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* カスタムラジオボタンのラベル */
.custom-radio {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #4e6868;
    cursor: pointer;
    margin: 10px;
}
/* デフォルトのラジオボタンを非表示に */
.custom-radio input[type="radio"] {
    display: none;
}
/* カスタムのラジオマーク */
.custom-radio .radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #4e6868;
    /* ボーダー色 */
    border-radius: 50%;
    /* 丸い形 */
    position: relative;
    margin-right: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
/* チェックされたラジオボタンのスタイル */
.custom-radio input[type="radio"]:checked+.radio-mark {
    background-color: #4e6868;
    background-image: url(https://kotoden.jp/wp-content/themes/jinr/include/customizer/img/preset_bg_10.png);
    /* 内部の色 */
    border-color: #4e6868;
}
/* チェックされたラジオボタンの中央にチェックマークを追加 */
.custom-radio .radio-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    /* 最初は非表示 */
    transition: transform 0.3s ease;
}
/* チェックされたラジオボタンにアニメーションでチェックを表示 */
.custom-radio input[type="radio"]:checked+.radio-mark::after {
    transform: translate(-50%, -50%) scale(1);
    /* チェックが表示される */
}
h3 {
    margin: 6px 0px;
}
.gallery {}
.gallery-image {
    width: 50px;
    heitgh: 50px;
}
.accordion-container {
    width: 100%;
}
.accordion-button {
    transition: background-color 0.3s;
}
.accordion-button:hover {
    background-color: #45a049;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #f1f1f1;
    padding: 0 10px;
    font-size: 14px;
}
.accordion-content p {
    margin: 15px 0;
}
.qrmk {
    text-decoration: none;
    background: #ddd;
    padding: 7px;
    border-radius: 13px;
    border: solid;
    color: black;
    font-weight: bold;
}
.key-button {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background-color: #e0e0e0;
    border: 1px solid #b0b0b0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}
/* キー間の「+」記号のスタイル */
.plus-sign {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    margin: 0 4px;
    vertical-align: middle;
}
footer>section {
    background: #4e6868;
    padding: 10px 50px;
    width: 50%;
}
@media (max-width: 768px) {
    footer>section {
        width: 100%;
    }
}
/* スマートフォン用のスタイル（画面幅480px以下） */
@media (max-width: 480px) {}