.itemBox ul {
    margin-bottom: 4em;
}
.itemBox ul li a {
    color: #4c545c;
    text-decoration: none;
    background: rgba(255, 206, 218, 1);
    padding: .2em;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 1em;
}
    /* フォーム体裁 ----------*/
    textarea,
    input[type] {
        -webkit-appearance: none;
        padding: 0.2em 0.5em;
        background-color: #fff;
        border: thin solid #000;
        border-radius: 5px;
    }

    textarea {
        width: 200px;
        height: 100px;
    }

    input[type=text] {
        width: 100px;
    }

    input[type=submit] {
        width: auto;
    }

    /* フォーム体裁ここまで ----------*/

    ul {
        list-style-type: none;
    }

    em {
        font-style: normal;
    }

    .bodyInner {
        max-width: 420px;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        overflow-x: hidden;
        background: #fff;
    }

    .d-flex {
        display: flex;
        width: 100%;
    }

    header {
        position: relative;
        padding-bottom: 1em;
        margin-bottom: 1em;
    }

    header .d-flex .left_content {
        width: 85%;
    }

    header .d-flex .left_content .bt-line img {
        width: 100%;
        display: block;
        margin: 0 auto 0 0;
    }

    header .d-flex .left_content .bt-line {
        position: relative;
        margin-right: 1em;
    }

    header .d-flex .left_content .bt-line::after {
        content: '';
        display: block;
        bottom: 0;
        width: 100%;
        height: 1px;
        left: 0;
    }

    header .d-flex .left_content h1 {
        position: absolute;
        left: 5%;
        top: 3%;
        font-size: 3em;
        font-family: 'Meddon', 'Noto Sans JP', sans-serif;
        color: #000;
        line-height: 1;
    }

    header .d-flex .left_content h1::before {
        content: '';
        background: #000;
        display: block;
        position: absolute;
        width: 200%;
        height: 1px;
        top: 50%;
        left: 105%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    header a {
        color: #4c545c;
        text-decoration: none;
    }

    header .d-flex .left_content .bt-line::after {
        position: absolute;
        content: '';
        width: 100%;
        background: #000;
        height: 1px;
        left: 0;
        bottom: -5%;
    }

    header .d-flex .right_content {
        display: flex;
        align-items: end;
        justify-content: center;
        width: 15%;
    }

    header .d-flex .right_content nav {
        display: flex;
        align-items: end;
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
    }

    header .d-flex .right_content nav ul li {
        display: inline-block;
    }

    header .d-flex .right_content nav .menuBox .menuIn ul li a {
        display: inline-block;
        padding: 0.5em 1em;
    }

    header .d-flex .right_content nav .menuBox .menuIn ul li a:active,
    header .d-flex .right_content nav .menuBox .menuIn ul li a:focus {
        color: crimson;
    }

    main {
        width: 80%;
        margin: 5em auto;
    }

    main p {
        line-height: 1.5;
        margin-bottom: 4em;
    }

    main strong {
        color: crimson;
        font-weight: bold;
    }

    main .border-box {
        padding: 2em;
        border: solid 2px rgba(255, 206, 218, 1);
    }

    main .border-box span {
        display: inline-block;
        padding: 0 .5em;
        margin-right: 1em;
        background: #4c545c;
        color: #fff;
    }

    @media screen and (min-width: 1024px) {
        /*.bodyInner.top {
            transform: scale(200%);
            transform-origin: top center;
        }*/
    }