@charset "UTF-8";
a:hover img {
    opacity: 0.7;
}
#pagetop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#pagetop.is-show {
    opacity: 1;
    pointer-events: auto;
}
.fullwidth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
/* =========================================================
   Form Base
   ---------------------------------------------------------
   ・WP / CF7 / 静的HTML 共通
   ・最低保証のモダン見た目
   ・上書き前提（主張しない）
========================================================= */
/* -----------------------------------------
   Form elements base
----------------------------------------- */
input,
textarea,
select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: inherit;
    color: #111;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* -----------------------------------------
   Focus state
----------------------------------------- */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #111;
}
/* -----------------------------------------
   Textarea
----------------------------------------- */
textarea {
    min-height: 8rem;
    resize: vertical;
}
/* -----------------------------------------
   Select
----------------------------------------- */
select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #555 50%),
        linear-gradient(135deg, #555 50%, transparent 50%);
    background-position:
        calc(100% - 1rem) center,
        calc(100% - 0.75rem) center;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}
/* -----------------------------------------
   Checkbox / Radio
----------------------------------------- */
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    margin-right: 0.4rem;
}
/* -----------------------------------------
   Form layout helpers
----------------------------------------- */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
}
/* -----------------------------------------
   Submit / Button
----------------------------------------- */
input[type="submit"] {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    color: #fff;
    background-color: #111;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover {
    opacity: 0.8;
}
/* -----------------------------------------
   Disabled
----------------------------------------- */
input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
    background-color: #f2f2f2;
    color: #888;
    cursor: not-allowed;
}