@charset "utf-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
    all: unset;
    display: revert;
}
ul {
    list-style-type: none;
}
:root {
    --color:#2e586b;
    --border_color:#e6e6e6;
}
html {
    line-height: 1.8;
    /* 全体にかかわるCSS　文字の1.8倍（単位を付けると継承されない） */
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #4d4848;
    letter-spacing: 0.5px;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    background: #f5f5f5;
}
.inner {
    max-width: 500px;
    padding: 100px 20px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}
/*  */
::placeholder {
    color: #bbb;
}
input[type="text"],
textarea {
    border: 5px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}
select {
    padding: 5px 23px 5px 12px;
    border-radius: 5px;
    border: 5px solid #ddd;
    box-sizing: border-box;
    background: #fff;
    cursor: pointer;
}
.select {
    display: inline;
    position: relative;
}
.select::before {
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color);
    position: absolute;
    right: 13px;
    top: 50%;
    margin: -2px 0 0;
    width: 0;
    z-index: 100;
}
.btn {
    margin: 40px 0 0;
    display: block;
    background: var(--color);
    cursor: pointer;
    width: 100%;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    padding: 20px 0;
    font-weight: 900;
    transition: .3s;
}
.btn:hover {
    opacity: .8;
}
.none {
    background: #aaa;
}
.none:hover {
    opacity: 1;
}
/*  */
#header {
    border-bottom: 1px solid var(--border_color);
    padding: 0 0 40px;
}
#header h1 {
    font-weight: 900;
    font-size: 28px;    
}
#header span {
    font-size: 22px;
    color: var(--color);
    display:  block;
}
/*  */
ul#error {
    padding: 20px;
    color: #ed5061;
    font-weight: 700;
    background: #feedef;
    border-radius: 5px;
}
/*  */
#top h2 {
    font-weight: 900;
    font-size: 24px;
}
#top .body p {
    font-weight: 600;
}
#top footer {
    margin: 40px 0 0;
}
/*  */
#form form,
#form dl.form_list {
    display: grid;
    gap: 40px;
}
#form dl dt {
    font-weight: 900;
    font-size: 20px;
    margin: 0 0 5px;
}
#form dl dt.imp::after {
    content:'※必須';
    color: #ed5061;
    font-size: 14px;
}
button#get_order_btn {
    font-size: 22px;
    padding: 10px 0;
}
#hide_form {
    display: none;
}
dd.lens_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
dd.lens_box p {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}
ul.lens_data {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 5px 0 0 0;
    font-size: 13px;
    color: #999;
}
ul.lens_data li:not(:last-of-type):not(:empty)::after {
    content: ' / ';
}
/*  */
#confirm table {
    width: 100%;
    border-collapse: collapse;
}
#confirm th,
#confirm td {
    border: 1px solid var(--border_color);
    padding: 10px;
}
#confirm th {
    width: 30%;
    background: rgba(40,171,229,.1);
}
#confirm ul {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap:10px;
    margin: 40px 0 0;
}
#confirm li:nth-of-type(1) button.btn {
    background: #eee;
    color: inherit;
}
#form ul.form_actions {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 10px;
    margin: 40px 0 0;
}
#form ul.form_actions li:nth-of-type(1) a.btn {
    background: #eee;
    color: inherit;
}
#pickup_date_clear_btn.btn {
    margin: 0;
    width: auto;
    padding: 15px 18px;
    background: #eee;
    color: inherit;
    white-space: nowrap;
}
/*  */
#sent div {
    display: grid;
    gap: 40px;
}
#sent h1 {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.5;
    color: #333;
}