@charset "UTF-8";
 
/* ═══════════════════════════════════════════════
   Beauty salon siesta — toriaez Base CSS Override
   デザイントークン・全体スタイル刷新版
═══════════════════════════════════════════════ */
 
/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Josefin+Sans:wght@300;400&family=Noto+Sans+JP:wght@200;300;400&family=Noto+Serif+JP:wght@300;400&display=swap');
 
/* ── デザイントークン ── */
:root {
    --base-color:   #faf7f3;   /* クリーム */
    --warm:         #f5f0e8;
    --parchment:    #ede8df;
    --white:        #ffffff;
    --text-color:   #3a3632;   /* チャコール */
    --ink:          #1e1c1a;
    --mid:          #5a554f;
    --muted:        #8a847c;
    --stone:        #b8b0a4;
    --blush:        #e8c9bc;
    --blush2:       #d4a899;
    --gold:         #c8a86a;
    --gold-l:       #e4cfa0;
    --border:       rgba(139,120,100,.15);
    --link-color:   #c8a86a;   /* ゴールド */
 
    --font-gothic:  'Noto Sans JP', "Helvetica Neue", Helvetica, Arial,
                    YuGothic, "Yu Gothic", メイリオ, Meiryo, sans-serif;
    --font-mincho:  'Noto Serif JP', "游明朝", "YuMincho",
                    "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-label:   'Josefin Sans', sans-serif;
    --font-marugothic: "ヒラギノ丸ゴ Pro W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
}
 
/* ══════════════════════════
   BASE RESET
══════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
html {
    scroll-behavior: smooth;
}
 
html > body {
    color: var(--text-color);
    font-family: var(--font-gothic);
    letter-spacing: 0.05em;
    font-size: 15px;
    line-height: 1.9;
    background: var(--base-color);
    font-weight: 300;
    overflow-x: hidden;
}
 
/* ── clearfix ── */
.clearfix::after,
.clearfix::before {
    content: "";
    display: block;
    clear: both;
}
.clearfix { display: block; }
 
/* ── 基本要素 ── */
table, iframe { max-width: 100%; }
 
a {
    color: var(--gold);
    text-decoration: none;
    transition: color .25s, opacity .25s;
}
a:hover {
    color: var(--gold-l);
    text-decoration: none;
    opacity: .85;
}
 
img {
    max-width: 100%;
    height: auto;
    display: block;
}
 
h1, h2, h3, h4, h5, h6, strong, b, th {
    font-weight: 400;
}
 
/* ── テーブル ── */
table {
    margin: 1.5em 0;
    border-collapse: collapse;
    width: 100%;
}
table, th, td, hr {
    border: 1px solid var(--border);
}
th, td {
    padding: .9rem 1.1rem;
    font-size: .88rem;
    line-height: 1.8;
    vertical-align: top;
}
th {
    text-align: left;
    background: var(--parchment);
    color: var(--ink);
    font-family: var(--font-mincho);
    font-size: .82rem;
    letter-spacing: .08em;
}
tr:nth-child(even) td {
    background: var(--warm);
}
 
/* ── 見出し ── */
.extraTtl {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: .9em;
    color: var(--ink);
    letter-spacing: .08em;
    line-height: 1.5;
}
 
/* ── ボタン ── */
.moreBtn {
    text-align: center;
    margin-top: 16px;
}
.moreBtn button,
.moreBtn a {
    display: inline-block;
    padding: .75em 2.2em;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .2em;
    border: 1px solid var(--gold);
    color: var(--ink);
    background: transparent;
    text-decoration: none;
    transition: background .3s, color .3s, border-color .3s;
    cursor: pointer;
    font-family: var(--font-gothic);
}
.moreBtn a {
    display: inline-block;
    margin: .5em auto;
}
.moreBtn button:hover,
.moreBtn a:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    opacity: 1;
}
 
/* ══════════════════════════
   LAYOUT
══════════════════════════ */
body > .wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
 
#mainArea {
    width: 100%;
    max-width: 860px;
    margin: 40px auto 0;
    padding: 0 20px;
}
 
#subArea {
    width: 100%;
    max-width: 860px;
    margin: 80px auto 0;
    padding: 0 20px;
}
 
/* ══════════════════════════
   HEADER
══════════════════════════ */
header {
    padding: 0;
    background: rgba(250,247,243,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
 
h1#siteTtl a,
p#siteTtl a {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: .18em;
    display: block;
    padding: 1.2rem 2rem;
}
h1#siteTtl a:hover,
p#siteTtl a:hover {
    opacity: .8;
    color: var(--ink);
}
 
h1#siteTtl,
p#siteTtl {
    margin-bottom: 0;
}
p#siteTtl {
    font-size: 1rem;
    line-height: 1.2;
}
 
/* ── ページタイトル ── */
h1#pageTtl {
    text-align: center;
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 2rem;
    padding: 3rem 1rem 2.5rem;
    border-top: none;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    letter-spacing: .1em;
    line-height: 1.5;
    position: relative;
}
h1#pageTtl::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--blush2);
    margin: 1rem auto 0;
}
 
/* ══════════════════════════
   GLOBAL NAV
══════════════════════════ */
#globalNav {
    padding: 0 2rem;
}
#globalNav ul,
#headNav ul {
    padding: 0;
}
#globalNav li,
#headNav li {
    list-style: none;
}
#globalNav li a,
#headNav li a {
    text-decoration: none;
    color: var(--mid);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .18em;
    line-height: 1.5;
    display: inline-block;
    transition: color .25s;
}
#globalNav li a:hover,
#headNav li a:hover {
    color: var(--ink);
    opacity: 1;
}
#globalNav ul.parent > li {
    display: inline;
    margin: 0 1.8em 0 0;
    position: relative;
}
#globalNav ul.child {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: .8em 0;
    z-index: 200;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(58,54,50,.08);
    min-width: 200px;
}
#globalNav ul.parent > li:hover ul.child {
    display: block;
}
#globalNav ul.child > li a {
    display: block;
    width: auto;
    font-size: .72rem;
    padding: .55rem 1.2rem;
    color: var(--mid);
    white-space: nowrap;
}
#globalNav ul.child > li a:hover {
    background: var(--warm);
    color: var(--ink);
}
 
#headNav {
    position: absolute;
    top: 1rem;
    right: 2rem;
}
#headNav li {
    display: inline;
    margin: 0 1.5em 0 0;
}
#headNav li a {
    font-size: .7rem;
}
#headNav li:last-child { margin: 0; }
 
/* ══════════════════════════
   TOP SLIDER
══════════════════════════ */
#topSlider ul { padding: 0; }
#topSlider li { list-style: none; }
#topSlider img { width: 100%; position: absolute; }
 
#noSlide {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 3rem;
    align-items: center;
}
#noSlide #noSlideImg {
    flex-shrink: 0;
}
#noSlide #noSlideImg img {
    max-width: 360px;
}
 
#topSlider {
    width: 100%;
    margin: 0 auto 1.5rem;
    min-width: auto;
    height: auto;
    overflow: hidden;
    position: relative;
}
#topSlider #mainSlideIn {
    width: 1200px;
    position: static;
    transform: none;
    margin: auto;
}
#topSlider #mainSlideIn .bx-wrapper { margin-bottom: 0; }
#topSlider #mainSlide li {
    position: relative;
    overflow: hidden;
    background-size: cover;
    height: 520px;
}
 
/* bxslider pager */
.bx-wrapper .bx-pager {
    position: inherit !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: var(--stone);
    text-indent: -9999px;
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    outline: 0;
    border-radius: 50%;
    transition: background .3s;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: var(--gold);
    opacity: 1;
}
 
/* ══════════════════════════
   SECTION BOX
══════════════════════════ */
.sectionBox {
    margin: 0 0 5rem;
}
.sectionBox h2.sectionBoxTtl {
    font-family: var(--font-mincho);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.2em;
    color: var(--ink);
    letter-spacing: .08em;
    padding-bottom: .6em;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.sectionBox h2.sectionBoxTtl::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--gold);
}
 
.sectionBoxDiv { margin: 0 0 2.5rem; }
 
.sectionBoxImg {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}
.sectionBoxImg img { width: 100%; }
.sectionBoxImg figure { margin: 0 0 1.5rem; }
.sectionBoxImg figure figcaption {
    text-align: center;
    margin: .6em 0 0;
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .08em;
}
.sectionBoxImg figure a:hover { opacity: .75; }
.sectionBoxDiv img {
    margin: 0 auto;
    display: block;
}
 
/* ══════════════════════════
   NEWS TOPICS / BLOG
══════════════════════════ */
#newsTopics,
#blog {
    margin: 3rem 0 5rem;
}
#newsTopics dt,
#blog dt {
    float: left;
    font-family: var(--font-label);
    font-size: .65rem;
    letter-spacing: .2em;
    color: var(--blush2);
    margin-right: 1rem;
}
#newsTopics dd,
#blog dd {
    margin: 0 0 .5em 115px;
    line-height: 1.7;
}
#newsTopics ul,
#blog ul {
    padding-left: inherit;
}
#newsTopics li,
#blog li {
    list-style: none;
    display: flex;
    margin: 0 0 .6em;
    line-height: 1.7;
    padding: .7rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
    align-items: baseline;
}
#newsTopics li time,
#blog li time {
    margin-right: 0;
    font-weight: 400;
    font-family: var(--font-label);
    font-size: .65rem;
    letter-spacing: .15em;
    color: var(--stone);
    flex-shrink: 0;
}
 
.is-hidden {
    visibility: hidden;
    height: 0;
}
 
/* ══════════════════════════
   SNS LINKS
══════════════════════════ */
ul#snsLink,
ul.snsLink {
    padding: 0;
    margin: 0 0 1.5rem;
}
ul#snsLink li,
ul.snsLink li {
    list-style: none;
    display: inline;
    margin: 0 12px 0 0;
    position: relative;
}
ul#snsLink li:last-child,
ul.snsLink li:last-child { margin: 0; }
ul#snsLink li a,
ul.snsLink li a {
    display: inline-block;
    width: 46px;
    height: 46px;
    position: relative;
    transition: opacity .25s;
    border-radius: 50%;
}
ul#snsLink li a img,
ul.snsLink li a img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    margin: auto;
    display: block;
}
ul#snsLink li a:hover,
ul.snsLink li a:hover { opacity: .72; }
ul#snsLink li.fb a,
ul.snsLink li.fb a { border: 1px solid #4065b4; }
ul#snsLink li.fb img,
ul.snsLink li.fb img { width: 12px; height: auto; }
ul#snsLink li.tw a,
ul.snsLink li.tw a { border: 1px solid #222; }
ul#snsLink li.tw img,
ul.snsLink li.tw img { width: 20px; height: auto; }
ul#snsLink li.ig a,
ul.snsLink li.ig a { border: 1px solid var(--blush2); }
ul#snsLink li.ig img,
ul.snsLink li.ig img { width: 22px; height: auto; }
ul#snsLink li.yt a,
ul.snsLink li.yt a { border: 1px solid #ff0000; }
ul#snsLink li.yt img,
ul.snsLink li.yt img { width: 26px; height: auto; }
 
aside.sp { display: none; }
 
/* ══════════════════════════
   BREADCRUMB
══════════════════════════ */
ul#breadcrumb {
    padding: .5rem 0;
    text-align: right;
    margin: 0 0 3rem;
}
ul#breadcrumb li {
    list-style: none;
    display: inline;
    font-size: .65rem;
    letter-spacing: .1em;
    color: var(--muted);
}
ul#breadcrumb li::after {
    content: "/";
    padding: 0 .5em;
    color: var(--border);
}
ul#breadcrumb li:last-child::after { content: ""; }
ul#breadcrumb li a {
    color: var(--muted);
    text-decoration: none;
    transition: color .25s;
}
ul#breadcrumb li a:hover { color: var(--gold); }
 
/* ══════════════════════════
   FOOTER
══════════════════════════ */
footer {
    text-align: center;
    margin: 0;
    padding: 3rem 2rem 2.5rem;
    background: var(--ink);
    color: rgba(255,255,255,.35);
    font-size: .65rem;
    letter-spacing: .12em;
    border-top: none;
}
footer a {
    color: var(--gold-l);
    text-decoration: none;
    transition: color .25s;
}
footer a:hover {
    color: var(--white);
    opacity: 1;
}
 
/* ══════════════════════════
   PAGE TOP BUTTON
══════════════════════════ */
#pagetop {
    position: fixed;
    bottom: 40px;
    right: 28px;
    display: none;
    z-index: 500;
}
#pagetop a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--ink);
    border: 1px solid rgba(200,168,106,.4);
    border-radius: 50%;
    transition: background .3s, border-color .3s;
}
#pagetop a:hover {
    background: var(--charcoal, #3a3632);
    border-color: var(--gold);
    opacity: 1;
}
#pagetop a span {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 12px 7px;
    border-color: transparent transparent var(--gold-l) transparent;
}
 
/* ══════════════════════════
   QR CODE
══════════════════════════ */
#qrcode, .qrcode { padding: 0 0 1.5rem; }
 
/* ══════════════════════════
   CONTACT / PROFILE / ACCESS
══════════════════════════ */
#contact #mainArea dl,
#profile #mainArea dl,
#access #mainArea dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
}
#contact #mainArea dt,
#profile #mainArea dt,
#access #mainArea dt {
    width: 28%;
    padding: 1.2rem 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid var(--border);
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--mid);
    font-weight: 400;
}
#contact #mainArea dd,
#profile #mainArea dd,
#access #mainArea dd {
    width: 72%;
    padding: 1.2rem 1rem;
    margin: 0;
    border-top: 1px solid var(--border);
    font-size: .84rem;
    line-height: 1.9;
}
 
#access #frame {
    height: 460px;
    margin-bottom: 3rem;
}
#access #frame iframe { width: 100%; height: 100%; }
 
/* ══════════════════════════
   FORM
══════════════════════════ */
button, input, select, textarea {
    background-color: transparent;
    border-style: none;
    font-family: var(--font-gothic);
}
input[type="text"], textarea {
    outline: none;
    padding: 10px 14px;
    width: 100%;
}
#contact .inputArea {
    background: var(--warm);
    line-height: 1;
    padding: 10px 14px;
    border-radius: 2px;
    width: 100%;
    border: 1px solid var(--border);
    transition: border-color .25s;
}
#contact .inputArea:focus-within {
    border-color: var(--gold);
}
#contact .inputArea textarea {
    width: 100%;
    height: 180px;
    padding: 10px 0;
    line-height: 1.7;
}
#contact .inputArea.short {
    width: 220px;
    display: inline-block;
}
#contact #submit input.submitBtn {
    background: var(--ink);
    border: 1px solid var(--ink);
    color: var(--white);
    transition: background .3s;
}
#contact #submit input.submitBtn:hover {
    background: var(--gold);
    border-color: var(--gold);
    opacity: 1;
}
#contact #submit input {
    display: inline-block;
    width: 240px;
    text-align: center;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
    padding: 1.1rem 0;
    cursor: pointer;
    margin: 0 8px;
    font-size: 1rem;
    letter-spacing: .18em;
    transition: all .3s;
    border-radius: 0;
}
#contact #submit input:hover { opacity: .85; }
#contact #submit input.resetBtn {
    color: var(--mid);
    border: 1px solid var(--border);
    background: transparent;
}
#contact #submit { text-align: center; margin-top: 2rem; }
#contact .captcha {
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
}
#contact .captcha input { padding: 0; }
 
/* ══════════════════════════
   RESPONSIVE — SP (≤768px)
══════════════════════════ */
@media screen and (max-width: 768px) {
    html > body {
        width: 100%;
        min-width: auto;
        font-size: 14px;
    }
    html > body.open {
        overflow: auto;
        height: 100%;
    }
    body > .wrapper {
        width: 100%;
        margin: 0 auto;
    }
 
    /* ─ ハンバーガー ─ */
    #humBtn {
        display: inline-block;
        position: fixed;
        top: 22px;
        right: 18px;
        width: 36px;
        height: 22px;
        z-index: 9999;
    }
    #humBtn span {
        display: inline-block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--ink);
        transition: all .35s;
    }
    #humBtn span:nth-of-type(1) { top: 0; }
    #humBtn span:nth-of-type(2) { top: 10px; }
    #humBtn span:nth-of-type(3) { bottom: 0; }
    #humBtn.active span:nth-of-type(1) { transform: translateY(10px) rotate(-45deg); }
    #humBtn.active span:nth-of-type(2) { opacity: 0; }
    #humBtn.active span:nth-of-type(3) { transform: translateY(-10px) rotate(45deg); }
 
    /* ─ ヘッダー ─ */
    header { min-width: auto; padding: 0; }
    #siteTtl {
        width: 100%;
        padding: 16px 60px 16px 18px;
        text-align: left;
    }
    #siteTtl a { font-size: 1rem; }
 
    /* ─ ナビ ─ */
    #globalNav { min-width: auto; padding: 0; }
    #globalNav ul.parent > li {
        display: block;
        margin: 0 0 8px;
    }
    #globalNav ul.child {
        display: block;
        position: static;
        height: 100%;
        padding: 0 0 0 14px;
        box-shadow: none;
        border: none;
        background: transparent;
    }
 
    /* ─ ドロワー ─ */
    #headWrapper {
        width: 100%;
        position: relative;
        margin: 0 auto;
        min-width: auto;
        top: 0;
        z-index: 2;
    }
    #headWrapper.active::before {
        content: "";
        width: 100%;
        height: 100vh;
        background: rgba(30,28,26,.6);
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        z-index: 9997;
    }
    #headWrapper .navWrapper {
        width: 82%;
        max-width: 320px;
        right: -100%;
        background: var(--white);
        padding: 80px 24px 120px;
        position: fixed;
        top: 0;
        height: 100vh;
        transition: right .3s ease;
        z-index: 9998;
        overflow-y: auto;
    }
    #headWrapper.active .navWrapper { right: 0; }
 
    /* ─ SP aside ─ */
    aside.sp {
        display: block;
        text-align: center;
    }
    ul.snsLink {
        padding: 0;
        margin: 28px 0 0;
    }
    ul.snsLink li {
        list-style: none;
        display: inline;
        margin: 0 12px 0 0;
    }
    ul.snsLink li:last-child { margin: 0; }
    ul.snsLink li a {
        display: inline-block;
        width: 44px;
        height: 44px;
        position: relative;
        border-radius: 50%;
    }
    ul.snsLink li a img {
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        margin: auto;
    }
    ul.snsLink li a:hover { opacity: .72; }
    ul.snsLink li.fb a { border: 1px solid #4065b4; }
    ul.snsLink li.fb img { width: 12px; height: auto; }
    ul.snsLink li.tw a { border: 1px solid #222; }
    ul.snsLink li.tw img { width: 20px; height: auto; }
    ul.snsLink li.ig a { border: 1px solid var(--blush2); }
    ul.snsLink li.ig img { width: 22px; height: auto; }
    ul.snsLink li.yt a { border: 1px solid #ff0000; }
    ul.snsLink li.yt img { width: 26px; height: auto; }
 
    /* ─ headNav SP ─ */
    #headNav {
        position: static;
        width: 100%;
        margin-top: 16px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    #headNav ul { margin: 16px 0; }
    #headWrapper #headNav li {
        display: block;
        text-align: left;
        word-break: break-all;
        vertical-align: top;
    }
    #headWrapper #headNav li a {
        display: block;
        font-size: 1.1rem;
        height: 38px;
        line-height: 38px;
    }
 
    /* ─ メインエリア ─ */
    #mainArea, #subArea { padding: 0 18px; }
    #mainArea {
        width: 100%;
        margin: 0 auto;
        float: none;
    }
    #siteDescription { margin: 0 0 2.5rem; }
 
    #noSlide {
        margin: 0;
        padding: 0 18px;
        border: none;
        display: block;
    }
    #noSlide #noSlideImg {
        width: 100%;
        padding: 0 0 1.5rem;
        margin: inherit;
    }
    #noSlide #noSlideImg img {
        display: block;
        max-width: 100%;
        width: 100%;
    }
    #topSlider #mainSlideIn { width: 100%; }
    #topSlider #mainSlide li { height: 50vw; }
 
    #subArea {
        width: 100%;
        margin: 4rem auto 0;
    }
 
    /* ─ セクション ─ */
    .sectionBox h2.sectionBoxTtl { font-size: 1.3rem; }
    .sectionBoxImg, .sectionBoxImg img { width: 100%; }
    .sectionBoxImg figure figcaption { text-align: left; }
    .sectionBoxDiv img { max-width: 100%; }
    .extraTtl { font-size: 1.3rem; }
 
    /* ─ ニュース・ブログ ─ */
    #newsTopics dt, #blog dt { float: none; }
    #newsTopics dd, #blog dd { margin: 0 0 .5em; }
    #newsTopics li, #blog li {
        display: block;
        margin: 0 0 .5em;
        gap: 0;
    }
    #newsTopics li time, #blog li time { display: block; }
 
    .moreBtn a { margin-top: 1.5em; }
    .moreBtn { margin-top: 0; }
 
    /* ─ ページタイトル ─ */
    h1#pageTtl {
        font-size: 1.3rem;
        margin: 0 18px 1.5rem;
        padding: 2rem 0 1.8rem;
    }
    ul#breadcrumb { padding: 0 18px; }
 
    /* ─ フォーム ─ */
    #contact #mainArea dt,
    #profile #mainArea dt,
    #access #mainArea dt {
        padding: inherit;
        width: 20%;
    }
    #contact #mainArea dd,
    #profile #mainArea dd,
    #access #mainArea dd { width: 80%; }
    #access #frame { height: 280px; }
    #access #frame iframe { width: 100%; }
    #contact #mainArea dl { display: block; }
    #contact #mainArea dt {
        display: block;
        width: 100%;
        padding: 14px 0 6px;
    }
    #contact #mainArea dd {
        width: 100%;
        border: none;
        padding: 0 0 14px;
    }
    #contact .inputArea { padding: 4px; }
    #contact #submit input {
        display: block;
        padding: 1rem 0;
        margin: 0 auto 12px;
        font-size: 1rem;
    }
    #contact .captcha input { padding: 8px 14px; }
 
    /* ─ フッター ─ */
    footer {
        margin: 0;
        padding: 2.5rem 18px 2rem;
    }
    #qrcode, .qrcode { display: none; }
}