:root {
    --bgColor-main: #F9F4EF;
    --bgColor-base: #fff;
    --bgColor-sub: #ECF3F4;
    --bgColor-nav: #8B8682;
    --link-color: #AF9837;
    --text-colorMain: #18A2A2;
    --text-colorBase: #444;
    --text-clolorSub: #fff;
    --text-colorCorp: #AF9837;
}
:root {
    
    --font-gothic: "Helvetica Neue",Helvetica,Arial,YuGothic,"Yu Gothic",游ゴシック体,游ゴシック,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,"MS ゴシック","MS Gothic",sans-serif;
    
    --font-mincho: "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    
    --font-marugothic: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
 }
* {
    word-break: break-all;
    box-sizing: border-box;
}
body {
    background: var(--bgColor-main);
    color: var(--text-colorBase);
    font-size: 18px;
    font-family: var(--font-mincho);
    line-height: 1.8;
}
body.active {
    overflow: hidden;
}
a {
    text-decoration: none;
}
a:hover {
    cursor: pointer;
}
ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1,h2,h3,p,figure {
    margin: 0;
}
.siteWidth {
    width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.bgColor-base {
    background: var(--bgColor-base);
}
.bgColor-sub {
    background: var(--bgColor-sub);
}
#header {
    width: 100%;
    box-sizing: border-box;
    top: 0;
    z-index: 3;
    background-color: var(--bgColor-main);
    position: fixed;
    min-height: 100px;
    padding: 30px 140px 30px 40px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding .5s, min-height .5s, position 1s;
}
#header.active {
    z-index: 6;
    margin-top: -100%;
}
#header.scroll {
    padding: 15px 140px 15px 40px;
    min-height: 80px;
}
#header .innerRight {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .siteTtl {
    font-size: 30px;
    line-height: 1.3;
    max-width: 700px;
    margin-right: 60px;
}
#header .siteTtl a {
    color: var(--text-colorMain);
}
#header .siteTtl a:hover {
    opacity: .7;
}
#header img {
    max-height: 200px;
    transition: all .5s;
    line-height: 0;
    max-width: 100%;
}
#header.scroll img {
    max-height: 150px;
}
#headNav {
    max-width: 500px;
    min-width: 300px;
}
#headNav ul{
    display: flex;
    flex-wrap: wrap;
}
#headNav li {
    position: relative;
    margin-right: 54px;
}
#headNav li:last-child {
    margin-right: inherit;
}
#headNav li:before {
    content: '';
    background-image: url(https://assets.toriaez.jp/thp2/pc/images/236/nav-menu_001.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 12px;
    left: -20px;
}
#headNav li:hover::before {
    background-image: url(https://assets.toriaez.jp/thp2/pc/images/236/nav-menu_002.png);
    background-repeat: no-repeat;
}
#headNav li a {
    color: #000;
}
#headNav li:hover a {
    color: var(--text-colorCorp);
}
#pageTtl {
    font-size: 40px;
    background: var(--bgColor-sub);
    color: #C39142;
    text-align: center;
    padding: 100px 40px;
    box-sizing: border-box;
    line-height: 1.3;
}
.humBtnWrap {
    position: absolute;
    right: 40px;
}
#humBtn {
    font-size: 16px;
    min-width: 60px;
    height: 32px;
    text-align: center;
    line-height: 10px;
    position: relative;
    cursor: pointer;
}
#humBtn.active {
    position: fixed;
    top: 26px;
    right: 30px;
    z-index: 6;
    width: 45px;
    height: 45px;
    min-width: 45px;
}
#humBtn span {
    position: absolute;
}
#humBtn .line {
    width: 100%;
    display: inline-block;
    background: #000;
    height: 1px;
    transition: all .4s;
 }
#humBtn span:nth-of-type(1) {
    top: 0;
    left: 11%;
}
#humBtn span:nth-of-type(2) {
    top: 70%;
    left: 0;
}
#humBtn span:nth-of-type(3) {
    bottom: 0;
    left: 0;
}
#humBtn.active span {
    background: var(--text-clolorSub);
    height: 3px;
}
#humBtn.active span:nth-of-type(1) {
    display: none;
}
#humBtn.active span:nth-of-type(2) {
    transform: translateY(0px) rotate(-45deg);
    top: 50%;
}
#humBtn.active span:nth-of-type(3) {
    transform: translateY(0px) rotate(45deg);
    top: 50%;
}
#navArea {
    background: var(--bgColor-nav);
    width: 100vw;
    padding-right: 30px;
    padding-left: 30px;
    position: fixed;
    top: 0;
    z-index: 5;
    transition: all .4s;
    height: 100vh;
    overflow-y: scroll;
    transform: translateY(-100%);
}
#navArea.active {
    transform: translateY(0);
}
#navArea .inner {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 130px 0 50px;
    height: 100%;
}
#navMenu {
    max-width: 500px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    margin-right: 30px;
}
#navMenu ul {
    padding-right: 30px;
}
#navMenu::-webkit-scrollbar {
    width: 14px;
}
#navMenu::-webkit-scrollbar-thumb {
    background: var(--bgColor-base);
    border-radius: 9px;
}
#navMenu .parent {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: bold;
}
#navMenu .parent > li {
    margin-bottom: 35px;
}
#navMenu a {
    display: block;
    color: var(--text-clolorSub);
}
#navMenu a:hover {
    opacity: .7;
}
#navMenu .child {
    font-size: 16px;
    font-weight: normal;
}
#navMenu .child li {
    margin-top: 15px;
}
.navLinkWrap {
    max-width: 330px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.navLinkWrap::-webkit-scrollbar {
    width: 14px;
}
.navLinkWrap::-webkit-scrollbar-thumb {
    background: var(--bgColor-base);
    border-radius: 9px;
}
.navLinkWrap ul {
    padding-right: 30px;
}
#navLink li {
    border: 1px solid var(--text-clolorSub);
    margin-bottom: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-size: 20px;
}
#navLink li:last-child {
    margin-bottom: 60px;
}
#navLink li a {
    padding: 15px;
    color: var(--text-clolorSub);
    display: block;
}
#navLink li a:hover {
    color: var(--bgColor-nav);
    background: var(--bgColor-base);
}
.navLinkWrap .snsBtn {
    margin-bottom: 32px;
}
.navLinkWrap .snsBtn ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navLinkWrap .snsBtn li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin-right: 20px;
    background-color: var(--text-clolorSub);
    border-radius: 50%;
}
.navLinkWrap .snsBtn li:last-child {
    margin-right: 0;
}
.navLinkWrap .snsBtn li:hover {
    opacity: .7;
}
.navLinkWrap .snsBtn li a {
    display: block;
}
.qrCode {
    text-align: center;
}
#globalNav {
    background: var(--bgColor-base);
}
#globalNav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
    padding: 25px 40px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
#globalNav li {
    margin-right: 25px;
}
#globalNav li:last-child {
    margin-right: 0;
}
#globalNav a {
    color: #C39142;
}
#globalNav a:hover {
    opacity: .75;
}
#globalNav .current a{
    padding-bottom: 5px;
    border-bottom: 1px solid #C39142;
}
#globalNav .current a:hover {
    border-bottom: none;
}
#topSlide {
    width: 100%;
    margin-bottom: 60px;
}
.bx-wrapper .bx-viewport .bxslider li {
    overflow: hidden;
    height: calc(100vw * 0.4167);
}
.bx-wrapper .bx-viewport img {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    top: 0;
}
.bx-wrapper .bx-controls {
    position: relative;
}
.bx-wrapper .bx-pager {
    right: 40px;
    bottom: 0;
    width: auto;
}
.bx-wrapper .bx-pager .bx-pager-link {
    display: block;
    text-indent: -9999px;
    width: 40px;
    height: 2px;
    background: #000;
    margin-left: 8px;
    cursor: pointer;
}
.bx-wrapper .bx-pager .bx-pager-link.active {
    background: var(--text-clolorSub);
}
#topImg {
    background: var(--bgColor-base);
    margin-bottom: 80px;
}
#topImg .inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
#topImg figure {
    margin-right: 40px;
    width: 365px;
    text-align: center;
}
#topImg figure img {
    max-width: 100%;
}
#topImg #lead {
    padding-top: 30px;
    padding-bottom: 30px;
    width: calc(100% - 365px - 40px);
}
#topImg.noImg #lead {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 100%;
}
.secBox {
    margin-top: 100px;
    margin-bottom: 100px;
}
.secBox h2 {
    margin-bottom: 30px;
    font-size: 50px;
    color: var(--text-colorMain);
    line-height: 1.3;
}
.secBox img {
    max-width: 100%;
}
.secBox figcaption {
    display: none;
}
.secBox .imgContTop {
    display: flex;
    flex-direction: row-reverse;
}
.secBox .imgContTop figure {
    width: 460px;
    margin-left: -106px;
}
.secBox .imgContTop figure img,
.secBoxImg img {
    width: 100%;
}
.secBox .imgContTop .secBoxText {
    width: 446px;
    background: var(--bgColor-base);
    padding: 22px 16px;
    box-sizing: border-box;
    align-self: flex-start;
    margin-top: 40px;
    z-index: 1;
}
.secBoxImg {
    margin-top: 40px;
}
.secBoxImg ul {
    display: flex;
}
.secBoxImg li {
    max-width: 240px;
    margin-right: 30px;
}
.secBoxImg li:last-child {
    margin-right: inherit;
}
.secBox table {
    border-collapse: inherit;
}
.editorText a {
    color: var(--text-colorBase);
    text-decoration: underline;
    cursor: pointer;
}
.editorText a:hover {
    color: var(--link-color);
    text-decoration: none;
}
.editorText hr {
    height: 1px;
    color: var(--text-colorBase);
}
.editorText ol li{
    list-style-type: decimal;
}
.editorText ul li{
    list-style-type: disc;
    margin-left: 2em;
}
.editorText ol li,
.editorText ul li {
    margin-bottom: 5px;
}
.editorText em {
    font-style: italic;
}
.editorText table {
    width: 100%;
    max-width: 100%;
}
.editorText table th,
.editorText table td {
    padding: 15px 25px;
}
.editorText table th {
    text-align: center;
    background: #AF9837;
    color: var(--text-clolorSub);
    font-weight: normal;
    width: 200px;
}
.editorText table td {
    background: var(--text-clolorSub);
}
.editorText img {
    max-width: 100%;
}
.editorText iframe {
    max-width: 100%;
}
.editorText strong,
.editorText b {
    font-weight: bolder;
}
#blog,
#news {
    padding-top: 80px;
    padding-bottom: 80px;
}
#blog .exTtl,
#news .exTtl {
    font-family: "Times New Roman";
    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: normal;
}
#blog dd,
#news ul p {
    display: inline-block;
    width: calc( (99% - 15%) - 26px );
    vertical-align: top;
    margin-bottom: 20px;
    font-size: 16px;
} 
#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: var(--text-colorCorp);
    width: 170px;
    padding: 4px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}
.moreBtn:hover {
    opacity: .7;
}
.moreBtn a {
    font-family: "Times New Roman";
    font-size: 18px;
    border: 1px solid #fff;
    display: block;
    color: var(--text-clolorSub);
    text-align: center;
}
.moreBtn a:not([href]) {
    color: var(--text-clolorSub);
}
.moreBtn a:not([href]):hover {
    color: var(--text-clolorSub);
}
#news li.is-hidden {
    display: none;
}
#footer {
    padding-bottom: 100px;
}
#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: 20px;
    border-radius: 50%;
    border: 1px solid #666;
}
#footer .snsBtn li:last-child {
    margin-right: 0;
}
#footer .snsBtn li:hover {
    opacity: .7;
}
#footer .snsBtn li a {
    display: block;
}
#copyright {
    text-align: center;
    margin-top: 24px;
}
#pageTop {
    position: fixed;
    bottom: 30px;
    right: 40px;
    font-size: 16px;
    cursor: pointer;
    line-height: 1.3;
    z-index: 2;
}
#pageTop a {
    writing-mode: tb;
    transform: rotate(180deg);
    color: #000;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
}
#pageTop:hover a::before {
    top: 135%;
}
#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: 120%;
    right: -4px;
    transition: all .4s;
}
#pageTop img {
    display: none;
}
#pnkz ul {
    font-size: 14px;
    display: flex;
    padding: 25px 40px 65px 40px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
#pnkz li::after {
    content: '|';
    padding: 0 5px;
}
#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 iframe {
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    display: block;
}
.info {
    margin-top: 80px;
}
.info dl {
    display: flex;
    border-bottom: 1px solid var(--text-colorBase);
    padding: 20px;
}
.info dl:first-of-type {
    border-top: 1px solid var(--text-colorBase);
}
.info dt {
    padding-right: 30px;
    width: 180px;
    min-width: 70px;
}
.info dd {
    width: 70%;
}
#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: 8px 15px;
    width: 100%;
    box-sizing: border-box;
    background: #f1f1f1;
    border-radius: 2px;
    border: 1px solid #ddd;
    height: 55px;
}
.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: 18px;
    padding-bottom: 18px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    margin-right: 10px;
    border: none;
    font-weight: bold;
    font-size: 18px;
}
.btn-submit:hover,
.btn-reset:hover {
    opacity: .8;
}
.btn-submit {
    background: var(--text-colorCorp);
    margin-bottom: 15px;
}
.btn-reset {
    background: #ccc;
}
.form table tr {
    width: 100%;
    display: inline-table;
}
.form table th {
    width: 35%;
}
.form table th,
.form table td {
    border-top: 1px solid var(--text-colorBase);
    padding: 30px;
}
.form table td {
    width: 60%;
    padding-left: 0;
}
@media screen and (max-width:768px) {
    
    body {
        font-size: 16px;
    }
    
    .siteWidth {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    
    #header {
        position: fixed;
    }
    #header {
        padding: 20px 90px 20px 15px;
        flex-wrap: inherit;
        min-height: 80px;
    }
    #header.scroll {
        padding: 20px 90px 20px 15px;
        min-height: 80px;
    }
    #header .siteTtl {
        font-size: 20px;
        margin-right: inherit;
    }
    
    #headNav {
        display: none;
    }
    
    .humBtnWrap {
        top: 25px;
        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: 80px;
        padding-bottom: 80px;
        height: auto;
    }
    #navArea.active .inner {
        display: block;
    }
    .navLinkWrap ul {
        padding-right: 0px;
    }
    #navMenu,
    .navLinkWrap {
        overflow-y: inherit;
        padding-right: 0;
        height: auto;
    }
    #navMenu .parent {
        font-size: 20px;
    }
    #navMenu .parent > li {
        margin-bottom: 25px;
    }
    #navMenu .child li {
        margin-top: 5px;
    }
    
    #topSlide {
        margin-bottom: 50px;
    }
    .bx-wrapper {
        margin: 0 auto 40px;
    }
    .bx-wrapper .bx-viewport .bxslider li {
        overflow: hidden;
        height: 100vh !important;
        width: 100vw !important;
    }
    .bx-wrapper .bx-viewport .bxslider li img {
        height: 100vh;
        width: 100vw;
        object-fit: cover;
        position: initial;
    }
    .bx-wrapper .bx-pager {
        right: 0;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    #topImg {
        margin-bottom: 0;
    }
    #topImg .inner {
        display: block;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    #topImg figure {
        width: 100%;
        margin-right: inherit;
    }
    
    #topImg #lead {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    #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: 20px 15px;
    }
    #globalNav li {
        margin-right: 30px;
    }
    
    .secBox {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .secBox h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .secBox .imgContTop {
        display: block;
    }
    .secBox .imgContTop figure {
        max-width: 100%;
        width: inherit;
        margin: 0 auto;
        text-align: center;
    }
    .secBox .imgContTop .secBoxText {
        max-width: 90%;
        padding: 20px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        top: -35px;
        margin-top: 0;
    }
    .secBox figure {
        margin-bottom: 0;
    }
    
    .secBox .secBoxImg {
        margin-top: 0;
    }
    .secBox .secBoxImg ul {
        display: block;
    }
    .secBox .secBoxImg li {
        margin-right: 0;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 100%;
    }
    .secBox .secBoxImg figure {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .secBox .secBoxImg figure:last-child {
        margin-right: auto;
    }
    
    .secBox table {
        font-size: 14px;
    }
    .secBox table th,
    .secBox table td {
        padding: 10px;
    }
    .secBox table th {
        width: 102px;
    }
    
    #blog,
    #news {
        padding-top: 21px;
        padding-bottom: 31px;
    }
    #blog .exTtl,
    #news .exTtl {
        margin-bottom: 20px;
    }
    #blog ul,
    #news dl {
        margin-bottom: 30px;
    }
    #blog dt,
    #news span {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }
    
    #blog dd,
    #news ul p {
        display: block;
        width: 100%;
    }
    #footer {
        padding-bottom: 36px;
    }
    
    #freeArea {
        margin-bottom: 45px;
    }
    
    #copyright {
        margin-top: 30px;
    }
    
    #pageTop {
        right: 15px;
    }
    #pageTop a {
        display: none;
    }
    #pageTop img {
        display: block;
    }
    
    #pageTtl {
        font-size: 26px;
        padding: 60px 15px;
    }
    
    #pnkz ul {
        padding: 22px 15px 39px 15px;
    }
    
    #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(--text-colorBase);
        padding-top: 25px;
        padding-bottom: 10px;
    }
    .form table td {
        padding-bottom: 25px;
    }
    .form table tr:last-child td {
        padding-bottom: 0;
    }
}
.required {
    margin-top: 15px;
}