:root{
    --bgColor-main:#F8F5F0;
    --bgColor-base:#FFFFFF;
    --bgColor-sub:#F2EEE8;
    --bgColor-nav:#213534;
    --link-color:#B6954D;
    --text-colorMain:#1F3A3A;
    --text-colorBase:#3F3F3F;
    --text-colorSub:#FFFFFF;
    --text-colorCorp:#B6954D;
    --border-color:#E7DED1;
    --shadow:0 10px 30px rgba(0,0,0,.06);
    --shadow-soft:0 6px 18px rgba(0,0,0,.04);
    --font-gothic:"Noto Sans JP","Helvetica Neue",Arial,sans-serif;
    --font-mincho:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
}

*{
    box-sizing:border-box;
    word-break:normal;
    overflow-wrap:break-word;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--bgColor-main);
    color:var(--text-colorBase);
    font-size:16px;
    font-family:var(--font-gothic);
    line-height:1.9;
    letter-spacing:.02em;
    overflow-x:hidden;
}

body.active{
    overflow:hidden;
}

a{
    color:var(--text-colorMain);
    text-decoration:none;
    transition:all .3s ease;
}

a:hover{
    opacity:.85;
    cursor:pointer;
}

ul,li{
    list-style:none;
    margin:0;
    padding:0;
}

h1,h2,h3,h4,p,figure{
    margin:0;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.siteWidth{
    width:min(1100px, calc(100% - 40px));
    margin-left:auto;
    margin-right:auto;
}

.bgColor-base{
    background:var(--bgColor-base);
}

.bgColor-sub{
    background:var(--bgColor-sub);
}

/* --------------------------------
 Header
-------------------------------- */
#header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:30;
    background:rgba(248,245,240,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(182,149,77,.12);
    min-height:88px;
    padding:18px 110px 18px 32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:all .35s ease;
}

#header.active{
    z-index:40;
    margin-top:-100%;
}

#header.scroll{
    min-height:72px;
    padding:12px 110px 12px 32px;
    box-shadow:var(--shadow-soft);
}

#header .innerRight{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

#header .siteTtl{
    font-family:var(--font-mincho);
    font-size:30px;
    line-height:1.35;
    max-width:720px;
    margin-right:48px;
    font-weight:600;
    letter-spacing:.04em;
}

#header .siteTtl a{
    color:var(--text-colorMain);
}

#header .siteTtl a:hover{
    color:var(--text-colorCorp);
    opacity:1;
}

#header img{
    max-height:150px;
    transition:all .35s ease;
    line-height:0;
    max-width:100%;
}

#header.scroll img{
    max-height:120px;
}

#headNav{
    max-width:620px;
    min-width:300px;
}

#headNav ul{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:28px;
}

#headNav li{
    position:relative;
    margin-right:0;
}

#headNav li:last-child{
    margin-right:0;
}

#headNav li:before{
    display:none;
}

#headNav li a{
    color:var(--text-colorBase);
    font-size:14px;
    letter-spacing:.08em;
    position:relative;
    padding-bottom:4px;
}

#headNav li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:1px;
    background:var(--text-colorCorp);
    transition:width .3s ease;
}

#headNav li:hover a{
    color:var(--text-colorCorp);
}

#headNav li:hover a::after{
    width:100%;
}

/* --------------------------------
 Page Title
-------------------------------- */
#pageTtl{
    font-family:var(--font-mincho);
    font-size:42px;
    background:linear-gradient(180deg, #F4EEE6 0%, #EFE7DC 100%);
    color:var(--text-colorMain);
    text-align:center;
    padding:120px 40px 90px;
    box-sizing:border-box;
    line-height:1.4;
    letter-spacing:.06em;
}

/* --------------------------------
 Hamburger
-------------------------------- */
.humBtnWrap{
    position:absolute;
    right:28px;
}

#humBtn{
    font-size:13px;
    min-width:48px;
    height:32px;
    text-align:center;
    line-height:10px;
    position:relative;
    cursor:pointer;
}

#humBtn.active{
    position:fixed;
    top:22px;
    right:22px;
    z-index:60;
    width:42px;
    height:42px;
    min-width:42px;
}

#humBtn span{
    position:absolute;
}

#humBtn .line{
    width:100%;
    display:inline-block;
    background:var(--text-colorMain);
    height:2px;
    transition:all .35s ease;
    border-radius:2px;
}

#humBtn span:nth-of-type(1){
    top:2px;
    left:0;
}

#humBtn span:nth-of-type(2){
    top:15px;
    left:0;
}

#humBtn span:nth-of-type(3){
    top:28px;
    left:0;
}

#humBtn.active span{
    background:var(--text-colorSub);
    height:2px;
}

#humBtn.active span:nth-of-type(1){
    opacity:0;
}

#humBtn.active span:nth-of-type(2){
    transform:rotate(-45deg);
    top:20px;
}

#humBtn.active span:nth-of-type(3){
    transform:rotate(45deg);
    top:20px;
}

/* --------------------------------
 Overlay Nav
-------------------------------- */
#navArea{
    background:linear-gradient(180deg, #213534 0%, #192928 100%);
    width:100%;
    padding:0 30px;
    position:fixed;
    top:0;
    left:0;
    z-index:50;
    transition:all .35s ease;
    height:100vh;
    overflow-y:auto;
    transform:translateY(-100%);
}

#navArea.active{
    transform:translateY(0);
}

#navArea .inner{
    display:flex;
    justify-content:space-between;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
    padding:110px 0 50px;
    min-height:100%;
    gap:40px;
}

#navMenu{
    max-width:560px;
    width:100%;
    overflow-y:auto;
    margin-right:0;
}

#navMenu ul{
    padding-right:0;
}

#navMenu::-webkit-scrollbar,
.navLinkWrap::-webkit-scrollbar{
    width:10px;
}

#navMenu::-webkit-scrollbar-thumb,
.navLinkWrap::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.4);
    border-radius:10px;
}

#navMenu .parent{
    font-size:30px;
    margin-bottom:20px;
    font-weight:600;
    font-family:var(--font-mincho);
    letter-spacing:.05em;
}

#navMenu .parent > li{
    margin-bottom:28px;
    padding-bottom:20px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

#navMenu a{
    display:block;
    color:var(--text-colorSub);
}

#navMenu a:hover{
    opacity:.8;
    color:#F4D9A0;
}

#navMenu .child{
    font-size:15px;
    font-weight:400;
    margin-top:10px;
}

#navMenu .child li{
    margin-top:8px;
}

.navLinkWrap{
    max-width:320px;
    width:100%;
    overflow-y:auto;
}

.navLinkWrap ul{
    padding-right:0;
}

#navLink li{
    border:1px solid rgba(255,255,255,.3);
    margin-bottom:14px;
    cursor:pointer;
    width:100%;
    text-align:center;
    font-size:18px;
    border-radius:999px;
    overflow:hidden;
}

#navLink li:last-child{
    margin-bottom:40px;
}

#navLink li a{
    padding:14px 18px;
    color:var(--text-colorSub);
    display:block;
}

#navLink li a:hover{
    color:var(--bgColor-nav);
    background:var(--bgColor-base);
    opacity:1;
}

.navLinkWrap .snsBtn{
    margin-bottom:24px;
}

.navLinkWrap .snsBtn ul{
    display:flex;
    align-items:center;
    justify-content:center;
}

.navLinkWrap .snsBtn li{
    display:flex;
    justify-content:center;
    align-items:center;
    width:44px;
    height:44px;
    margin-right:16px;
    background-color:var(--text-colorSub);
    border-radius:50%;
}

.navLinkWrap .snsBtn li:last-child{
    margin-right:0;
}

.navLinkWrap .snsBtn li:hover{
    opacity:.8;
}

.navLinkWrap .snsBtn li a{
    display:block;
}

.qrCode{
    text-align:center;
}

/* --------------------------------
 Global Nav
-------------------------------- */
#globalNav{
    background:var(--bgColor-base);
    border-bottom:1px solid var(--border-color);
}

#globalNav ul{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    max-width:1400px;
    width:100%;
    padding:18px 40px;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
    gap:18px 24px;
}

#globalNav li{
    margin-right:0;
}

#globalNav a{
    color:var(--text-colorCorp);
    font-size:14px;
    letter-spacing:.06em;
}

#globalNav a:hover{
    opacity:.75;
}

#globalNav .current a{
    padding-bottom:5px;
    border-bottom:1px solid var(--text-colorCorp);
}

#globalNav .current a:hover{
    border-bottom:1px solid var(--text-colorCorp);
}

/* --------------------------------
 Slider
-------------------------------- */
#topSlide{
    width:100%;
    margin-bottom:70px;
}

.bx-wrapper .bx-viewport .bxslider li{
    overflow:hidden;
    height:calc(100vw * 0.42);
    min-height:420px;
    max-height:760px;
}

.bx-wrapper .bx-viewport img{
    position:absolute;
    left:0;
    width:100%;
    height:100%;
    top:0;
    object-fit:cover;
}

.bx-wrapper .bx-controls{
    position:relative;
}

.bx-wrapper .bx-pager{
    right:40px;
    bottom:20px;
    width:auto;
}

.bx-wrapper .bx-pager .bx-pager-link{
    display:block;
    text-indent:-9999px;
    width:38px;
    height:3px;
    background:rgba(255,255,255,.45);
    margin-left:8px;
    cursor:pointer;
    border-radius:3px;
}

.bx-wrapper .bx-pager .bx-pager-link.active{
    background:#fff;
}

/* --------------------------------
 Top Intro
-------------------------------- */
#topImg{
    background:var(--bgColor-base);
    margin-bottom:90px;
    box-shadow:var(--shadow-soft);
}

#topImg .inner{
    display:flex;
    align-items:center;
    max-width:1300px;
    width:100%;
    padding:50px 40px;
    margin-left:auto;
    margin-right:auto;
    box-sizing:border-box;
    gap:48px;
}

#topImg figure{
    margin-right:0;
    width:400px;
    text-align:center;
    flex-shrink:0;
    overflow:hidden;
    border-radius:10px;
}

#topImg figure img{
    max-width:100%;
}

#topImg #lead{
    padding-top:10px;
    padding-bottom:10px;
    width:calc(100% - 400px - 48px);
}

#topImg.noImg #lead{
    padding-top:60px;
    padding-bottom:60px;
    width:100%;
}

#topImg #lead h2,
#topImg #lead h1{
    font-family:var(--font-mincho);
    color:var(--text-colorMain);
    font-size:38px;
    line-height:1.45;
    margin-bottom:20px;
}

#topImg #lead p{
    font-size:16px;
    color:var(--text-colorBase);
}

/* --------------------------------
 Sections
-------------------------------- */
.secBox{
    margin-top:100px;
    margin-bottom:100px;
}

.secBox h2{
    margin-bottom:34px;
    font-size:42px;
    color:var(--text-colorMain);
    line-height:1.4;
    font-family:var(--font-mincho);
    letter-spacing:.05em;
    position:relative;
}

.secBox h2::after{
    content:"";
    display:block;
    width:70px;
    height:2px;
    background:var(--text-colorCorp);
    margin-top:16px;
}

.secBox img{
    max-width:100%;
}

.secBox figcaption{
    display:none;
}

.secBox .imgContTop{
    display:flex;
    flex-direction:row-reverse;
    align-items:flex-start;
    gap:38px;
}

.secBox .imgContTop figure{
    width:50%;
    margin-left:0;
    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.secBox .imgContTop figure img,
.secBoxImg img{
    width:100%;
}

.secBox .imgContTop .secBoxText{
    width:50%;
    background:var(--bgColor-base);
    padding:34px 30px;
    box-sizing:border-box;
    align-self:flex-start;
    margin-top:26px;
    z-index:1;
    box-shadow:var(--shadow);
    border-radius:12px;
}

.secBoxImg{
    margin-top:40px;
}

.secBoxImg ul{
    display:flex;
    gap:24px;
}

.secBoxImg li{
    max-width:calc((100% - 48px) / 3);
    margin-right:0;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
}

.secBoxImg li:last-child{
    margin-right:0;
}

.secBox table{
    border-collapse:collapse;
}

/* --------------------------------
 Editor
-------------------------------- */
.editorText{
    font-size:16px;
}

.editorText a{
    color:var(--text-colorCorp);
    text-decoration:underline;
    cursor:pointer;
}

.editorText a:hover{
    color:var(--text-colorMain);
    text-decoration:none;
}

.editorText hr{
    height:1px;
    color:var(--border-color);
    border:none;
    background:var(--border-color);
    margin:30px 0;
}

.editorText ol li{
    list-style-type:decimal;
}

.editorText ul li{
    list-style-type:disc;
    margin-left:1.5em;
}

.editorText ol li,
.editorText ul li{
    margin-bottom:8px;
}

.editorText em{
    font-style:italic;
}

.editorText table{
    width:100%;
    max-width:100%;
    border:1px solid var(--border-color);
}

.editorText table th,
.editorText table td{
    padding:16px 20px;
    border-bottom:1px solid var(--border-color);
}

.editorText table th{
    text-align:center;
    background:#B6954D;
    color:var(--text-colorSub);
    font-weight:500;
    width:200px;
}

.editorText table td{
    background:var(--text-colorSub);
}

.editorText img,
.editorText iframe{
    max-width:100%;
}

.editorText strong,
.editorText b{
    font-weight:700;
}

/* --------------------------------
 Blog / News
-------------------------------- */
#blog,
#news{
    padding-top:80px;
    padding-bottom:80px;
}

#blog .exTtl,
#news .exTtl{
    font-family:var(--font-mincho);
    font-size:30px;
    color:var(--text-colorCorp);
    margin-bottom:30px;
}

#blog dl,
#news ul{
    margin-bottom:42px;
}

#blog dt,
#news span{
    display:inline-block;
    width:15%;
    min-width:100px;
    vertical-align:top;
    margin-bottom:20px;
    margin-right:26px;
    font-weight:500;
    color:#6A6A6A;
}

#blog dd,
#news ul p{
    display:inline-block;
    width:calc((99% - 15%) - 26px);
    vertical-align:top;
    margin-bottom:20px;
    font-size:15px;
}

#blog dd a,
#news ul a{
    color:var(--text-colorBase);
    text-decoration:underline;
}

#blog dd a:hover,
#news ul a:hover{
    color:var(--link-color);
    text-decoration:none;
}

.moreBtn{
    background-color:transparent;
    width:auto;
    padding:0;
    box-sizing:border-box;
    margin-left:auto;
    margin-right:auto;
    cursor:pointer;
    text-align:center;
}

.moreBtn:hover{
    opacity:1;
}

.moreBtn a{
    font-family:var(--font-gothic);
    font-size:15px;
    border:1px solid var(--text-colorCorp);
    display:inline-block;
    color:var(--text-colorCorp);
    text-align:center;
    padding:14px 34px;
    border-radius:999px;
    background:#fff;
}

.moreBtn a:hover{
    background:var(--text-colorCorp);
    color:#fff;
    opacity:1;
}

.moreBtn a:not([href]){
    color:var(--text-colorCorp);
}

.moreBtn a:not([href]):hover{
    color:#fff;
}

#news li.is-hidden{
    display:none;
}

/* --------------------------------
 Footer
-------------------------------- */
#footer{
    padding-bottom:70px;
}

#freeArea{
    margin-top:80px;
    margin-bottom:70px;
}

#footer .snsBtn{
    margin-bottom:24px;
}

#footer .snsBtn ul{
    display:flex;
    align-items:center;
    justify-content:center;
}

#footer .snsBtn li{
    display:flex;
    justify-content:center;
    align-items:center;
    width:50px;
    height:50px;
    margin-right:16px;
    border-radius:50%;
    border:1px solid #BEB6AA;
    background:#fff;
}

#footer .snsBtn li:last-child{
    margin-right:0;
}

#footer .snsBtn li:hover{
    opacity:.8;
}

#footer .snsBtn li a{
    display:block;
}

#copyright{
    text-align:center;
    margin-top:24px;
    font-size:13px;
    color:#777;
}

/* --------------------------------
 Page Top
-------------------------------- */
#pageTop{
    position:fixed;
    bottom:24px;
    right:26px;
    font-size:16px;
    cursor:pointer;
    line-height:1.3;
    z-index:20;
}

#pageTop a{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    color:var(--text-colorMain);
    letter-spacing:1px;
    font-size:12px;
    position:relative;
}

#pageTop:hover a::before{
    top:130%;
}

#pageTop a::before{
    content:'';
    background-image:url(https://assets.toriaez.jp/thp2/pc/images/236/icon-arrow_001.png);
    background-repeat:no-repeat;
    width:20px;
    height:60px;
    display:block;
    transform:rotate(180deg);
    position:absolute;
    top:118%;
    right:-4px;
    transition:all .3s ease;
}

#pageTop img{
    display:none;
}

/* --------------------------------
 Breadcrumb
-------------------------------- */
#pnkz ul{
    font-size:13px;
    display:flex;
    padding:24px 40px 55px 40px;
    justify-content:flex-end;
    flex-wrap:wrap;
}

#pnkz li::after{
    content:'｜';
    padding:0 6px;
    color:#AAA;
}

#pnkz li:last-child::after{
    content:'';
    padding:0;
}

#pnkz a{
    text-decoration:underline;
    color:var(--text-colorBase);
}

#pnkz a:hover{
    text-decoration:none;
    color:var(--link-color);
}

/* --------------------------------
 Map / Info
-------------------------------- */
#map iframe{
    max-width:100%;
    height:500px;
    margin:0 auto;
    display:block;
    border-radius:12px;
}

.info{
    margin-top:80px;
}

.info dl{
    display:flex;
    border-bottom:1px solid var(--border-color);
    padding:20px 10px;
}

.info dl:first-of-type{
    border-top:1px solid var(--border-color);
}

.info dt{
    padding-right:30px;
    width:180px;
    min-width:70px;
    font-weight:600;
    color:var(--text-colorMain);
}

.info dd{
    width:70%;
}

/* --------------------------------
 Form
-------------------------------- */
#validation_form{
    margin-top:80px;
}

.validation_form{
    margin-bottom:60px;
}

.validation_form label{
    display:block;
}

.validation_form .label_inline{
    display:inline-block;
}

.form-inputText input,
.form-inputText textarea{
    padding:12px 15px;
    width:100%;
    box-sizing:border-box;
    background:#FAFAFA;
    border-radius:8px;
    border:1px solid #DDD7CC;
    min-height:55px;
    font-size:16px;
}

.form-inputNum input{
    width:40%;
    margin-right:10px;
    vertical-align:bottom;
}

.form-textarea,
.form-textarea textarea{
    height:300px;
}

.validation_span{
    color:#CE0000;
}

.btnCont{
    text-align:center;
    margin-top:60px;
    margin-bottom:60px;
}

.form-btn{
    display:inline-block;
    max-width:240px;
    width:100%;
    padding-top:16px;
    padding-bottom:16px;
    border-radius:999px;
    color:#fff;
    text-align:center;
    margin-right:10px;
    border:none;
    font-weight:700;
    font-size:16px;
    letter-spacing:.05em;
}

.btn-submit:hover,
.btn-reset:hover{
    opacity:.85;
}

.btn-submit{
    background:var(--text-colorCorp);
    margin-bottom:15px;
}

.btn-reset{
    background:#A8A8A8;
}

.form table tr{
    width:100%;
    display:inline-table;
}

.form table th{
    width:35%;
}

.form table th,
.form table td{
    border-top:1px solid var(--border-color);
    padding:30px;
}

.form table td{
    width:60%;
    padding-left:0;
}

/* --------------------------------
 Utility
-------------------------------- */
.required{
    margin-top:15px;
}

/* --------------------------------
 Responsive
-------------------------------- */
@media screen and (max-width:1024px){

    #header{
        padding:16px 92px 16px 20px;
    }

    #header.scroll{
        padding:12px 92px 12px 20px;
    }

    #header .siteTtl{
        font-size:24px;
        margin-right:20px;
    }

    #headNav ul{
        gap:18px;
    }

    .secBox .imgContTop{
        gap:24px;
    }

    .secBox h2{
        font-size:36px;
    }
}

@media screen and (max-width:768px){

    body{
        font-size:15px;
    }

    .siteWidth{
        width:100%;
        padding-left:15px;
        padding-right:15px;
        box-sizing:border-box;
    }

    #header{
        padding:16px 78px 16px 15px;
        min-height:72px;
        flex-wrap:inherit;
    }

    #header.scroll{
        padding:14px 78px 14px 15px;
        min-height:68px;
    }

    #header .siteTtl{
        font-size:18px;
        margin-right:inherit;
        max-width:80%;
    }

    #header img{
        max-height:56px;
    }

    #headNav{
        display:none;
    }

    .humBtnWrap{
        top:20px;
        right:15px;
    }

    #humBtn.active{
        min-width:inherit;
    }

    #navArea.active{
        width:100vw;
        height:100vh;
        overflow-y:scroll;
    }

    #navArea .inner{
        flex-wrap:wrap;
        width:100%;
        padding-top:78px;
        padding-bottom:60px;
        height:auto;
        gap:24px;
    }

    #navArea.active .inner{
        display:block;
    }

    .navLinkWrap ul{
        padding-right:0;
    }

    #navMenu,
    .navLinkWrap{
        overflow-y:inherit;
        padding-right:0;
        height:auto;
        max-width:100%;
    }

    #navMenu .parent{
        font-size:22px;
    }

    #navMenu .parent > li{
        margin-bottom:22px;
    }

    #navMenu .child li{
        margin-top:6px;
    }

    #topSlide{
        margin-bottom:44px;
    }

    .bx-wrapper{
        margin:0 auto 40px;
    }

    .bx-wrapper .bx-viewport .bxslider li{
        overflow:hidden;
        height:68vh !important;
        min-height:360px;
        width:100vw !important;
    }

    .bx-wrapper .bx-viewport .bxslider li img{
        height:100%;
        width:100%;
        object-fit:cover;
        position:initial;
    }

    .bx-wrapper .bx-pager{
        right:0;
        width:100%;
        margin-left:auto;
        margin-right:auto;
        text-align:center;
        bottom:14px;
    }

    #topImg{
        margin-bottom:0;
    }

    #topImg .inner{
        display:block;
        width:100%;
        max-width:100%;
        padding:0;
    }

    #topImg figure{
        width:100%;
        margin-right:inherit;
        border-radius:0;
    }

    #topImg #lead{
        width:100%;
        padding:28px 15px 32px;
    }

    #topImg #lead h2,
    #topImg #lead h1{
        font-size:28px;
    }

    #topImg.noImg #lead{
        padding-top:30px;
        padding-bottom:30px;
    }

    #globalNav{
        overflow-x:auto;
    }

    #globalNav ul{
        max-width:initial;
        flex-wrap:initial;
        width:max-content;
        padding:16px 15px;
        gap:0;
    }

    #globalNav li{
        margin-right:24px;
    }

    .secBox{
        margin-top:56px;
        margin-bottom:56px;
    }

    .secBox h2{
        font-size:28px;
        margin-bottom:20px;
    }

    .secBox .imgContTop{
        display:block;
    }

    .secBox .imgContTop figure{
        width:100%;
        max-width:100%;
        margin:0 auto 18px;
        text-align:center;
    }

    .secBox .imgContTop .secBoxText{
        width:100%;
        max-width:100%;
        padding:22px 18px;
        margin-left:auto;
        margin-right:auto;
        position:relative;
        top:0;
        margin-top:0;
    }

    .secBox figure{
        margin-bottom:0;
    }

    .secBox .secBoxImg{
        margin-top:0;
    }

    .secBox .secBoxImg ul{
        display:block;
    }

    .secBox .secBoxImg li{
        margin-left:auto;
        margin-right:auto;
        text-align:center;
        max-width:100%;
        margin-bottom:18px;
    }

    .secBox .secBoxImg figure{
        max-width:100%;
        margin-bottom:0;
    }

    .secBox table{
        font-size:14px;
    }

    .secBox table th,
    .secBox table td{
        padding:10px;
    }

    .secBox table th{
        width:102px;
    }

    #blog,
    #news{
        padding-top:36px;
        padding-bottom:36px;
    }

    #blog .exTtl,
    #news .exTtl{
        margin-bottom:20px;
        font-size:24px;
    }

    #blog ul,
    #news dl{
        margin-bottom:30px;
    }

    #blog dt,
    #news span{
        display:block;
        width:100%;
        margin-bottom:8px;
    }

    #blog dd,
    #news ul p{
        display:block;
        width:100%;
    }

    #footer{
        padding-bottom:36px;
    }

    #freeArea{
        margin-bottom:45px;
    }

    #copyright{
        margin-top:30px;
    }

    #pageTop{
        right:15px;
        bottom:18px;
    }

    #pageTop a{
        display:none;
    }

    #pageTop img{
        display:block;
    }

    #pageTtl{
        font-size:26px;
        padding:90px 15px 50px;
    }

    #pnkz ul{
        padding:20px 15px 32px 15px;
        justify-content:flex-start;
    }

    #map iframe{
        height:300px;
    }

    #mapInfo{
        margin-top:40px;
    }

    #validation_form{
        margin-top:40px;
    }

    .validation_form{
        margin-bottom:40px;
    }

    .form table th,
    .form table td{
        display:block;
        width:100%;
        border:none;
        padding:0;
    }

    .form table th{
        border-top:1px solid var(--border-color);
        padding-top:25px;
        padding-bottom:10px;
    }

    .form table td{
        padding-bottom:25px;
    }

    .form table tr:last-child td{
        padding-bottom:0;
    }

    .info dl{
        display:block;
        padding:18px 8px;
    }

    .info dt,
    .info dd{
        width:100%;
    }

    .info dt{
        padding-right:0;
        margin-bottom:8px;
    }
}