: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;
}

/* data-ksu-tone-unify: 川越スピリチュアル占い館 深緑・金・和紙調トーン統一 */
:root {
  --text-colorMain: #093629 !important;
  --link-color: #8f6322 !important;
  --text-colorCorp: #8f6322 !important;
  --bgColor-sub: #efe7d8 !important;
  --ksu-deep-green: #093629;
  --ksu-ink-green: #12261f;
  --ksu-gold: #c4933e;
  --ksu-soft-gold: #f1d98f;
  --ksu-paper: #f9f4ef;
}

body {
  background-color: #f9f4ef !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2147483646;
  background: radial-gradient(circle at 18% 12%, rgba(196,147,62,.10), transparent 34%), radial-gradient(circle at 84% 18%, rgba(9,54,41,.08), transparent 34%), linear-gradient(120deg, rgba(255,255,255,.13), rgba(196,147,62,.04));
  mix-blend-mode: multiply;
}

h1, h2, h3,
#contents h1, #contents h2, #contents h3,
#main h1, #main h2, #main h3,
.heading, .title, .page-title, .contents-title,
.siteTitle, .site-title, .logo, .logo a,
#header a, header a,
#globalNav a, #global-nav a, .gnav a, nav a {
  color: #093629 !important;
  border-color: rgba(196,147,62,.42) !important;
  text-shadow: 0 1px 0 rgba(255,248,222,.78);
}

a, a:link, a:visited {
  color: #8f6322;
}

a:hover, a:focus {
  color: #093629 !important;
}

#contents h2, #contents h3, #main h2, #main h3 {
  background-image: linear-gradient(90deg, rgba(196,147,62,.24), rgba(9,54,41,.08), transparent) !important;
  background-color: transparent !important;
}

img {
  filter: sepia(.14) saturate(.82) hue-rotate(332deg) contrast(.94) brightness(.94);
}

#mainImage img, #mainvisual img, .mainImage img, .mainvisual img, .slide img, .slick-slide img, .bx-viewport img,
#contents figure img, #main figure img {
  border: 1px solid rgba(196,147,62,.35);
  box-shadow: 0 18px 36px rgba(9,54,41,.18);
}

input[type="submit"], input[type="button"], button, .btn, .button,
#contents a[style*="linear-gradient"], #main a[style*="linear-gradient"] {
  border-color: rgba(255,240,190,.62) !important;
}

/* data-ksu-image-depurple: メイン画像の紫・青・ピンク印象を深緑・金系へ補正 */
#mainImg, #mainImage, #mainvisual, #mainVisual, .mainImg, .mainImage, .mainvisual, .mainVisual,
.bx-wrapper, .bx-viewport, .slide, .slider, .kv, .hero {
  position: relative !important;
  overflow: hidden !important;
  background: #093629 !important;
}

#mainImg::after, #mainImage::after, #mainvisual::after, #mainVisual::after,
.mainImg::after, .mainImage::after, .mainvisual::after, .mainVisual::after,
.bx-viewport::after, .slide::after, .slider::after, .kv::after, .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(115deg, rgba(9,54,41,.44), rgba(196,147,62,.20) 42%, rgba(9,54,41,.36)),
    radial-gradient(circle at 72% 26%, rgba(255,248,222,.16), transparent 34%);
  mix-blend-mode: multiply;
}

#mainImg img, #mainImage img, #mainvisual img, #mainVisual img,
.mainImg img, .mainImage img, .mainvisual img, .mainVisual img,
.bx-wrapper img, .bx-viewport img, .slide img, .slider img, .kv img, .hero img {
  filter: sepia(.56) saturate(.36) hue-rotate(332deg) contrast(.86) brightness(.78) !important;
}

#mainImg *, #mainImage *, #mainvisual *, #mainVisual *,
.mainImg *, .mainImage *, .mainvisual *, .mainVisual *, .bx-wrapper *, .bx-viewport *, .slide *, .slider *, .kv *, .hero * {
  color: #fff8de !important;
}

/* data-ksu-photo-final-harmonize: 写真全体のピンク・紫・青系を低彩度化し、和紙調の深緑・金へ統一 */
#mainImg img, #mainImage img, #mainvisual img, #mainVisual img,
.mainImg img, .mainImage img, .mainvisual img, .mainVisual img,
.bx-wrapper img, .bx-viewport img, .slide img, .slider img, .kv img, .hero img {
  filter: grayscale(.86) sepia(.52) saturate(.72) hue-rotate(44deg) contrast(.82) brightness(.82) !important;
  opacity: .86 !important;
}

#top img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
#contents img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
.contents img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
.mainCont img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
.entryBody img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]) {
  filter: grayscale(.55) sepia(.38) saturate(.72) hue-rotate(26deg) contrast(.90) brightness(.91) !important;
}

#top figure, #contents figure, .contents figure, .mainCont figure, .entryBody figure {
  background: linear-gradient(135deg, rgba(9,54,41,.12), rgba(196,147,62,.10)) !important;
  border-radius: 2px !important;
}

/* data-ksu-dark-panel-heading-fix: 暗い深緑背景上の大見出しを金系に戻し、和紙調の可読性を確保 */
#top.ksu-tp-hero h1,
.ksu-tp-hero h1,
#top .ksu-tp-hero h1,
.ksu-tp .ksu-grid h1 {
  color: #d8b56f !important;
  text-shadow: 0 1px 0 rgba(255,248,231,.22), 0 18px 38px rgba(0,0,0,.30) !important;
}

#top.ksu-tp-hero .ksu-kicker,
.ksu-tp-hero .ksu-kicker,
#top.ksu-tp-hero .ksu-eyebrow,
.ksu-tp-hero .ksu-eyebrow {
  color: #f1d98f !important;
}

/* data-ksu-photo-restore-readable-text: 写真色味を自然寄りへ戻し、画像上の縦長大見出しを読みやすい金系塗り文字へ変更 */
#mainImg img, #mainImage img, #mainvisual img, #mainVisual img,
.mainImg img, .mainImage img, .mainvisual img, .mainVisual img,
.bx-wrapper img, .bx-viewport img, .slide img, .slider img, .kv img, .hero img,
#top img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
#contents img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
.contents img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
.mainCont img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]),
.entryBody img:not([src*="qrcode"]):not([src*="qr"]):not([src*="QR"]) {
  filter: sepia(.10) saturate(.98) hue-rotate(0deg) contrast(.99) brightness(1) !important;
  opacity: 1 !important;
}

#top.ksu-tp-hero h1,
.ksu-tp-hero h1,
#top .ksu-tp-hero h1,
.ksu-tp .ksu-grid h1 {
  color: #f3d88a !important;
  -webkit-text-fill-color: #f3d88a !important;
  -webkit-text-stroke: 0 transparent !important;
  font-weight: 700 !important;
  letter-spacing: .055em !important;
  text-shadow: 0 2px 0 rgba(6,34,27,.92), 0 7px 20px rgba(0,0,0,.42), 0 0 18px rgba(243,216,138,.18) !important;
  filter: none !important;
}

#top.ksu-tp-hero h1 *,
.ksu-tp-hero h1 *,
.ksu-tp .ksu-grid h1 * {
  color: #f3d88a !important;
  -webkit-text-fill-color: #f3d88a !important;
  -webkit-text-stroke: 0 transparent !important;
  text-shadow: inherit !important;
}

/* ksu readability final 2026-05-06 */
/* 写真の色味は自然な状態に戻し、画像上の文字だけを高コントラスト化 */
.imgContTop img,
.ksu-tp-hero img,
.ksu-visual img,
.ksu-hero-visual img,
.secBox figure img,
.secBox .article_img img {
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

.ksu-tp-hero h1,
.ksu-tp-hero .ksu-tp-card h2,
.ksu-tp-card h2,
.imgContTop .ksu-tp-card h2 {
  color: #f3d88a !important;
  -webkit-text-fill-color: #f3d88a !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 2px 2px rgba(0,0,0,.88), 0 8px 22px rgba(0,0,0,.62) !important;
  font-weight: 700 !important;
  letter-spacing: .045em !important;
}

.ksu-tp-hero .ksu-tp-card,
.imgContTop .ksu-tp-card {
  background: linear-gradient(135deg, rgba(4,34,25,.86), rgba(9,54,41,.74)) !important;
  border: 1px solid rgba(217,183,110,.72) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,248,231,.16) !important;
}

.ksu-tp-hero .ksu-tp-card p,
.ksu-tp-hero .ksu-tp-card li,
.imgContTop .ksu-tp-card p,
.imgContTop .ksu-tp-card li,
.ksu-tp-card .ksu-small,
.ksu-tp-card .ksu-label {
  color: #fff8e7 !important;
  -webkit-text-fill-color: #fff8e7 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.72) !important;
}

.ksu-tp-section h2 {
  color: #093629 !important;
  -webkit-text-fill-color: #093629 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 1px 0 rgba(255,248,222,.78) !important;
}

/* ksu-readable-message-heading-20260506: ユーザー指摘対応。写真の自然な色味は維持し、暗い画像・深緑面上の文字だけを読みやすい金系の塗り文字にする。 */
#top .ksu-tp-section h2,
#top .ksu-tp-section .ksu-tp-section-title,
#top .ksu-tp-section [class*="title"] {
  color: #f3d88a !important;
  -webkit-text-fill-color: #f3d88a !important;
  -webkit-text-stroke: 0 transparent !important;
  font-weight: 800 !important;
  letter-spacing: .035em !important;
  text-shadow:
    0 2px 0 rgba(4, 28, 21, .95),
    0 7px 20px rgba(0, 0, 0, .54),
    0 0 18px rgba(243, 216, 138, .18) !important;
}
#top .ksu-tp-section .ksu-eyebrow,
#top .ksu-tp-section p,
#top .ksu-tp-section li {
  color: #fff8e7 !important;
  -webkit-text-fill-color: #fff8e7 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.66) !important;
}
#top .ksu-tp-section .ksu-copy,
#top .ksu-tp-section .ksu-message,
#top .ksu-tp-section .ksu-lead {
  background: rgba(4, 28, 21, .22) !important;
  border-color: rgba(216, 181, 111, .42) !important;
}

/* 2026-05-06 追加補正：輪郭風で読みにくい画像内文字を、深緑・金系の塗り文字へ統一 */
figure:has(img[src*="WMoYgO5CwB-1.jpg"]),
figure:has(img[src*="WMoYgO5CwB"]){
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 720px !important;
  aspect-ratio: 5 / 3 !important;
  margin-inline: auto !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  background-image: linear-gradient(180deg, rgba(4, 39, 28, .10), rgba(4, 39, 28, .24)), url("https://d2xsxph8kpxj0f.cloudfront.net/310519663555756348/iUqd66kyxVmRgt4jdih8XR/kawagoe_method_readable_panel-C9d5XEDt5ZVnPx2bUrWH4i.webp") !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 18px 45px rgba(3, 27, 20, .22) !important;
}
figure:has(img[src*="WMoYgO5CwB-1.jpg"]) img,
figure:has(img[src*="WMoYgO5CwB"]) img{
  opacity: 0 !important;
  visibility: hidden !important;
}
figure:has(img[src*="WMoYgO5CwB-1.jpg"])::before,
figure:has(img[src*="WMoYgO5CwB"])::before{
  content: "占い方法" !important;
  position: absolute !important;
  left: 50% !important;
  top: 17% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  color: #F4DA93 !important;
  -webkit-text-fill-color: #F4DA93 !important;
  -webkit-text-stroke: 0 transparent !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif !important;
  font-size: clamp(34px, 7vw, 72px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: .14em !important;
  text-shadow: 0 3px 0 rgba(18, 34, 25, .86), 0 10px 24px rgba(0,0,0,.55) !important;
  white-space: nowrap !important;
}
figure:has(img[src*="WMoYgO5CwB-1.jpg"])::after,
figure:has(img[src*="WMoYgO5CwB"])::after{
  content: "霊感・霊視系\A タロット・手相・数秘術\A お悩みに合わせてご案内" !important;
  position: absolute !important;
  left: 8% !important;
  right: 8% !important;
  bottom: 10% !important;
  z-index: 2 !important;
  padding: clamp(14px, 2.8vw, 26px) clamp(18px, 3.4vw, 36px) !important;
  border: 1.5px solid rgba(244, 218, 147, .72) !important;
  border-radius: 8px !important;
  background: rgba(5, 48, 34, .72) !important;
  color: #FFF4C8 !important;
  -webkit-text-fill-color: #FFF4C8 !important;
  -webkit-text-stroke: 0 transparent !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif !important;
  font-size: clamp(20px, 4.5vw, 38px) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  letter-spacing: .08em !important;
  text-align: center !important;
  white-space: pre-line !important;
  text-shadow: 0 2px 0 rgba(9, 30, 22, .92), 0 8px 22px rgba(0,0,0,.50) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 12px 28px rgba(0,0,0,.22) !important;
}
#content [style*="text-stroke"],
#content [style*="-webkit-text-stroke"],
#content [style*="text-fill-color: transparent"],
#content [style*="-webkit-text-fill-color: transparent"]{
  color: #F4DA93 !important;
  -webkit-text-fill-color: #F4DA93 !important;
  -webkit-text-stroke: 0 transparent !important;
  text-shadow: 0 2px 0 rgba(12, 34, 24, .88), 0 8px 20px rgba(0,0,0,.42) !important;
}
@media (max-width: 640px){
  figure:has(img[src*="WMoYgO5CwB-1.jpg"]),
  figure:has(img[src*="WMoYgO5CwB"]){ aspect-ratio: 4 / 3 !important; }
  figure:has(img[src*="WMoYgO5CwB-1.jpg"])::before,
  figure:has(img[src*="WMoYgO5CwB"])::before{ top: 12% !important; font-size: clamp(30px, 11vw, 54px) !important; }
  figure:has(img[src*="WMoYgO5CwB-1.jpg"])::after,
  figure:has(img[src*="WMoYgO5CwB"])::after{ left: 6% !important; right: 6% !important; bottom: 7% !important; font-size: clamp(18px, 6vw, 30px) !important; }
}

/* 2026-05-06 追加補正：占い方法差し替え画像のレイアウト高さを正常化 */
figure:has(img[src*="WMoYgO5CwB-1.jpg"]),
figure:has(img[src*="WMoYgO5CwB"]){
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  contain: layout paint !important;
}
figure:has(img[src*="WMoYgO5CwB-1.jpg"]) img,
figure:has(img[src*="WMoYgO5CwB"]) img{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  pointer-events: none !important;
}

/* 2026-05-06 追加補正：占い方法カードの明示高さ固定 */
figure:has(img[src*="WMoYgO5CwB-1.jpg"]),
figure:has(img[src*="WMoYgO5CwB"]){
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  width: min(420px, 100%) !important;
  max-width: min(420px, 100%) !important;
  height: clamp(420px, 58vw, 560px) !important;
  min-height: clamp(420px, 58vw, 560px) !important;
  max-height: clamp(420px, 58vw, 560px) !important;
  aspect-ratio: auto !important;
  flex: 0 0 auto !important;
}
figure:has(img[src*="WMoYgO5CwB-1.jpg"]) img,
figure:has(img[src*="WMoYgO5CwB"]) img{
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
@media (max-width: 640px){
  figure:has(img[src*="WMoYgO5CwB-1.jpg"]),
  figure:has(img[src*="WMoYgO5CwB"]){
    width: 100% !important;
    max-width: 100% !important;
    height: clamp(380px, 120vw, 520px) !important;
    min-height: clamp(380px, 120vw, 520px) !important;
    max-height: clamp(380px, 120vw, 520px) !important;
  }
}

/* KSU 20260506 readable price-flow layout fix */
.imgContTop:has(#ksu-price-flow) {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 30px !important;
}
.imgContTop:has(#ksu-price-flow) > figure:has(img[src*="WMoYgO5CwB"]) {
  order: 1 !important;
  margin: 0 auto 8px !important;
  flex: 0 0 auto !important;
}
.imgContTop:has(#ksu-price-flow) > .secBoxText.editorText {
  order: 2 !important;
  width: 100% !important;
  max-width: 780px !important;
  flex: 0 0 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}
#ksu-price-flow,
#ksu-price-flow .ksu-sub-inner,
#ksu-price-flow .ksu-sub-hero,
#ksu-price-flow .ksu-sub-section,
#ksu-price-flow .ksu-grid,
#ksu-price-flow .ksu-panel,
#ksu-price-flow .ksu-steps,
#ksu-price-flow .ksu-steps li,
#ksu-price-flow .ksu-cta-row,
#ksu-price-flow .ksu-note {
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  writing-mode: horizontal-tb !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}
#ksu-price-flow {
  width: 100% !important;
  padding: 46px !important;
  color: #f7f1df !important;
}
#ksu-price-flow .ksu-sub-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px) !important;
  gap: 28px !important;
  align-items: end !important;
}
#ksu-price-flow .ksu-sub-hero > div,
#ksu-price-flow .ksu-sub-hero > .ksu-sub-side {
  width: auto !important;
  min-width: 0 !important;
}
#ksu-price-flow .ksu-sub-title,
#ksu-price-flow .ksu-section-title,
#ksu-price-flow h2,
#ksu-price-flow h3 {
  color: #f4da93 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .36) !important;
  -webkit-text-fill-color: #f4da93 !important;
  -webkit-text-stroke: 0 !important;
}
#ksu-price-flow .ksu-sub-title {
  font-size: clamp(34px, 6vw, 58px) !important;
  line-height: 1.16 !important;
  letter-spacing: .04em !important;
}
#ksu-price-flow .ksu-section-title {
  font-size: clamp(30px, 4.6vw, 48px) !important;
  line-height: 1.2 !important;
}
#ksu-price-flow .ksu-sub-lead,
#ksu-price-flow p,
#ksu-price-flow li,
#ksu-price-flow span:not(.ksu-button) {
  color: rgba(247, 241, 223, .92) !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  text-shadow: none !important;
  -webkit-text-fill-color: currentColor !important;
  -webkit-text-stroke: 0 !important;
}
#ksu-price-flow .ksu-sub-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
#ksu-price-flow .ksu-sub-badges li {
  width: auto !important;
  margin: 0 !important;
  padding: 7px 13px !important;
  line-height: 1.5 !important;
  color: #f4e6bd !important;
  white-space: normal !important;
}
#ksu-price-flow .ksu-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
#ksu-price-flow .ksu-panel {
  padding: 28px !important;
}
#ksu-price-flow .ksu-button {
  width: auto !important;
  min-height: 0 !important;
  line-height: 1.55 !important;
  white-space: normal !important;
  text-align: center !important;
}
@media (max-width: 720px) {
  .imgContTop:has(#ksu-price-flow) {
    gap: 22px !important;
  }
  #ksu-price-flow {
    padding: 28px 22px !important;
  }
  #ksu-price-flow .ksu-sub-hero,
  #ksu-price-flow .ksu-grid {
    grid-template-columns: 1fr !important;
  }
}
/* /KSU 20260506 readable price-flow layout fix */

/* KSU top-page full-width readability fix 2026-05-06 */
.imgContTop:has(.ksu-tp) {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}
.imgContTop:has(.ksu-tp) > .secBoxText.editorText,
.imgContTop:has(.ksu-tp) > .secBoxImg,
.imgContTop:has(.ksu-tp) > figure {
  display: block !important;
  width: 100% !important;
  max-width: 780px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  clear: both !important;
}
.imgContTop:has(.ksu-tp) > figure,
.imgContTop:has(.ksu-tp) > .secBoxImg {
  margin-top: 22px !important;
}
.imgContTop:has(.ksu-tp) > figure img,
.imgContTop:has(.ksu-tp) > .secBoxImg img {
  max-width: min(100%, 420px) !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}
.ksu-tp,
.ksu-tp * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}
.ksu-tp {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 780px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.ksu-tp .ksu-grid,
.ksu-tp .ksu-room,
.ksu-tp .ksu-price-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
  max-width: 100% !important;
  gap: clamp(18px, 3vw, 34px) !important;
}
.ksu-tp .ksu-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr) !important;
}
.ksu-tp .ksu-room,
.ksu-tp .ksu-price-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
.ksu-tp .ksu-panel,
.ksu-tp .ksu-tp-card,
.ksu-tp .ksu-price-card,
.ksu-tp .ksu-photo,
.ksu-tp .ksu-check {
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
}
.ksu-tp .ksu-copy,
.ksu-tp .ksu-tp-lead,
.ksu-tp .ksu-note,
.ksu-tp .ksu-eyebrow,
.ksu-tp .ksu-proof,
.ksu-tp .ksu-price,
.ksu-tp h2,
.ksu-tp h3,
.ksu-tp p,
.ksu-tp li,
.ksu-tp span {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  line-height: 1.75 !important;
  white-space: normal !important;
  text-align: inherit !important;
}
.ksu-tp .ksu-eyebrow {
  letter-spacing: .18em !important;
  line-height: 1.55 !important;
}
.ksu-tp .ksu-copy,
.ksu-tp .ksu-tp-lead,
.ksu-tp .ksu-note {
  color: rgba(255, 248, 231, .92) !important;
  background: rgba(4, 28, 21, .16) !important;
}
.ksu-tp .ksu-cta {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}
.ksu-tp .ksu-btn,
.ksu-tp a.ksu-btn,
.ksu-tp span.ksu-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 180px !important;
  max-width: 100% !important;
  min-height: 48px !important;
  height: auto !important;
  padding: 13px 22px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  white-space: normal !important;
}
.ksu-tp .ksu-check {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}
@media (max-width: 900px) {
  .ksu-tp .ksu-grid,
  .ksu-tp .ksu-room,
  .ksu-tp .ksu-price-grid,
  .ksu-tp .ksu-check {
    grid-template-columns: 1fr !important;
  }
  .ksu-tp .ksu-cta {
    align-items: stretch !important;
  }
  .ksu-tp .ksu-btn,
  .ksu-tp a.ksu-btn,
  .ksu-tp span.ksu-btn {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* KSU sub-page full-width readability fix 2026-05-06 */
/* サブページ（プロフィール、初めての方、FAQ、占い説明など）で、CMS標準の左右分割により本文カードが細く潰れる問題を統一補正 */
.imgContTop:has(.ksu-sub) {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}
.imgContTop:has(.ksu-sub) > .secBoxText.editorText,
.imgContTop:has(.ksu-sub) > .secBoxImg,
.imgContTop:has(.ksu-sub) > figure {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 860px !important;
  min-width: 0 !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.imgContTop:has(.ksu-sub) > .secBoxImg,
.imgContTop:has(.ksu-sub) > figure {
  margin-top: 28px !important;
  text-align: center !important;
}
.imgContTop:has(.ksu-sub) > .secBoxImg img,
.imgContTop:has(.ksu-sub) > figure img {
  display: block !important;
  width: auto !important;
  max-width: min(100%, 460px) !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}
.ksu-sub,
.ksu-sub * {
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}
.ksu-sub {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 860px !important;
  min-width: 0 !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.ksu-sub-inner {
  width: 100% !important;
  max-width: 760px !important;
  min-width: 0 !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.ksu-sub-hero,
.ksu-sub-section,
.ksu-grid,
.ksu-grid.three,
.ksu-faq,
.ksu-steps,
.ksu-list {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
}
.ksu-sub-hero {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .82fr) !important;
  gap: clamp(22px, 4vw, 42px) !important;
  align-items: start !important;
}
.ksu-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(18px, 3vw, 28px) !important;
}
.ksu-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.ksu-sub .ksu-panel,
.ksu-sub .ksu-sub-side,
.ksu-sub .ksu-note,
.ksu-sub .ksu-price,
.ksu-sub .ksu-faq-item,
.ksu-sub .ksu-steps > *,
.ksu-sub .ksu-list > * {
  width: auto !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
}
.ksu-sub-kicker,
.ksu-sub-title,
.ksu-sub-lead,
.ksu-section-title,
.ksu-sub p,
.ksu-sub li,
.ksu-sub h1,
.ksu-sub h2,
.ksu-sub h3,
.ksu-sub span {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  white-space: normal !important;
  line-height: 1.72 !important;
  letter-spacing: normal !important;
  text-align: inherit !important;
}
.ksu-sub-title,
.ksu-section-title {
  color: #fff3cf !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.28) !important;
  line-height: 1.42 !important;
}
.ksu-sub-lead,
.ksu-sub p,
.ksu-sub li {
  color: rgba(255, 248, 231, .92) !important;
}
.ksu-sub .ksu-button,
.ksu-sub a.ksu-button,
.ksu-sub span.ksu-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 180px !important;
  max-width: 100% !important;
  min-height: 48px !important;
  height: auto !important;
  padding: 13px 22px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  white-space: normal !important;
}
.ksu-sub .ksu-cta-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}
@media (max-width: 900px) {
  .ksu-sub-hero,
  .ksu-grid,
  .ksu-grid.three {
    grid-template-columns: 1fr !important;
  }
  .ksu-sub .ksu-cta-row {
    align-items: stretch !important;
  }
  .ksu-sub .ksu-button,
  .ksu-sub a.ksu-button,
  .ksu-sub span.ksu-button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* KSU final dark-card text contrast unification 2026-05-07
   暗い深緑カード上に残っていた深緑見出しを、既存本文と同じ可読性の高い金〜生成り文字へ統一。 */
.ksu-sub .ksu-panel,
#ksu-price-flow .ksu-panel,
.ksu-tp .ksu-panel,
.ksu-price-card,
.ksu-tp-card {
  color: #fff8e7 !important;
  -webkit-text-fill-color: #fff8e7 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

.ksu-sub .ksu-panel h3,
.ksu-sub .ksu-panel h4,
.ksu-sub .ksu-grid h3,
#ksu-price-flow .ksu-panel h3,
#ksu-price-flow .ksu-grid h3,
.ksu-tp .ksu-panel h3,
.ksu-price-card h3,
.ksu-tp-card h3 {
  color: #fff3cf !important;
  -webkit-text-fill-color: #fff3cf !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.38) !important;
  opacity: 1 !important;
}

.ksu-sub .ksu-panel p,
.ksu-sub .ksu-panel li,
.ksu-sub .ksu-grid p,
#ksu-price-flow .ksu-panel p,
#ksu-price-flow .ksu-grid p,
.ksu-tp .ksu-panel p,
.ksu-price-card p,
.ksu-tp-card p {
  color: rgba(255, 248, 231, 0.94) !important;
  -webkit-text-fill-color: rgba(255, 248, 231, 0.94) !important;
  -webkit-text-stroke: 0 !important;
  opacity: 1 !important;
}

/* 2026-05-07 店舗情報ページ：白背景セルの文字可読性補正 */
#ksu-shop .ksu-panel table td,
#ksu-shop .ksu-panel table td *,
#ksu-shop .ksu-panel tbody td,
#ksu-shop .ksu-panel tbody td * {
  color: #12261f !important;
  -webkit-text-fill-color: #12261f !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

#ksu-shop .ksu-panel table td {
  background: rgba(255, 252, 241, 0.98) !important;
  border-color: rgba(175, 152, 55, 0.28) !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
}

#ksu-shop .ksu-panel table th {
  color: #fff8e7 !important;
  -webkit-text-fill-color: #fff8e7 !important;
  background: linear-gradient(135deg, #a8892e, #c7aa53) !important;
  text-shadow: 0 1px 2px rgba(18, 38, 31, 0.22) !important;
}

@media (max-width: 640px) {
  #ksu-shop .ksu-panel table,
  #ksu-shop .ksu-panel tbody,
  #ksu-shop .ksu-panel tr,
  #ksu-shop .ksu-panel th,
  #ksu-shop .ksu-panel td {
    width: 100% !important;
  }
  #ksu-shop .ksu-panel table th,
  #ksu-shop .ksu-panel table td {
    display: block !important;
    box-sizing: border-box !important;
    min-height: auto !important;
    padding: 14px 16px !important;
  }
}

/* 2026-05-07 追加: 料金ページの『占い方法』画像カードを削除表示にする */
body.page-240566 #mainArea section#d5oq .imgContTop > figure:has(img[src*="WMoYgO5CwB-1.jpg"]),
body.page-240566 #mainArea section#d5oq .imgContTop > figure:has(img[src*="/WMoYgO5CwB-1.jpg"]) {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* 2026-05-06 深緑カード型コピー統一CSS（下層ページ対応版）
   対象: 添付画像と同種の深緑パネル内コピー、下層ページの .ksu-sub 内ヒーロー見出し・同種セクション見出しのみ。
   除外: ヘッダーのサイトタイトル、通常のページ見出し（#pageTtl）、本文中の一般見出し、料金カード内の小見出し。 */
body#top .ksu-grid > div > .ksu-eyebrow,
.ksu-tp-section > .ksu-eyebrow,
#room .ksu-eyebrow,
.ksu-sub .ksu-sub-hero .ksu-sub-kicker {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 clamp(18px, 3.2vw, 34px) !important;
  padding: 0 !important;
  color: #f7e9b4 !important;
  -webkit-text-fill-color: #f7e9b4 !important;
  font-family: var(--font-gothic), "Helvetica Neue", Arial, sans-serif !important;
  font-size: clamp(14px, 2.2vw, 30px) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.28em !important;
  text-align: left !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34) !important;
  background: transparent !important;
  border: 0 !important;
}

body#top .ksu-grid > div > h1:not(.siteTtl),
.ksu-tp-section > h2,
#room h2,
.ksu-sub .ksu-sub-hero .ksu-sub-title {
  display: block !important;
  max-width: 920px !important;
  margin: 0 !important;
  color: #efd678 !important;
  -webkit-text-fill-color: #efd678 !important;
  -webkit-text-stroke: 0 !important;
  font-family: var(--font-mincho), "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif !important;
  font-size: clamp(36px, 7.2vw, 86px) !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.045em !important;
  text-align: left !important;
  text-decoration: none !important;
  text-shadow: 0 4px 0 rgba(4, 32, 23, 0.64), 0 13px 24px rgba(0, 0, 0, 0.26) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body#top .ksu-grid > div > h1:not(.siteTtl) span,
.ksu-tp-section > h2 span,
#room h2 span,
.ksu-sub .ksu-sub-hero .ksu-sub-title span {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-shadow: inherit !important;
}

.ksu-tp-section > h2,
#room h2 {
  position: relative !important;
  padding-left: clamp(26px, 4.2vw, 58px) !important;
}

.ksu-tp-section > h2::before,
#room h2::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.16em !important;
  width: clamp(8px, 1.3vw, 15px) !important;
  height: calc(100% - 0.28em) !important;
  min-height: 70px !important;
  background: linear-gradient(180deg, #f4d976 0%, #d7a640 100%) !important;
  border-radius: 1px !important;
  box-shadow: 0 0 18px rgba(239, 214, 120, 0.22) !important;
}

/* 下層ページの独自ヒーローを、添付画像型コピーと近い金色・明朝・大きさへ統一 */
.ksu-sub .ksu-sub-hero .ksu-sub-title {
  font-size: clamp(34px, 6.2vw, 72px) !important;
  line-height: 1.48 !important;
}

.ksu-sub .ksu-sub-hero .ksu-sub-kicker {
  font-size: clamp(13px, 2vw, 24px) !important;
}

/* 下層ページ内の同じ深緑パネル系セクション見出しだけを統一。#pageTtl や通常見出しは対象外。 */
.ksu-sub .ksu-section-title {
  color: #efd678 !important;
  -webkit-text-fill-color: #efd678 !important;
  font-family: var(--font-mincho), "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif !important;
  font-size: clamp(34px, 5.2vw, 50px) !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  letter-spacing: 0.045em !important;
  text-align: left !important;
  text-shadow: 0 3px 0 rgba(4, 32, 23, 0.58), 0 10px 20px rgba(0, 0, 0, 0.22) !important;
}

@media (max-width: 640px) {
  body#top .ksu-grid > div > .ksu-eyebrow,
  .ksu-tp-section > .ksu-eyebrow,
  #room .ksu-eyebrow,
  .ksu-sub .ksu-sub-hero .ksu-sub-kicker {
    font-size: clamp(12px, 3.6vw, 16px) !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 16px !important;
  }

  body#top .ksu-grid > div > h1:not(.siteTtl),
  .ksu-tp-section > h2,
  #room h2,
  .ksu-sub .ksu-sub-hero .ksu-sub-title {
    max-width: 100% !important;
    font-size: clamp(31px, 9.4vw, 46px) !important;
    line-height: 1.52 !important;
    letter-spacing: 0.02em !important;
    overflow-wrap: anywhere !important;
    word-break: keep-all !important;
  }

  .ksu-sub .ksu-section-title {
    font-size: clamp(28px, 8.4vw, 40px) !important;
    line-height: 1.45 !important;
  }

  .ksu-tp-section > h2,
  #room h2 {
    padding-left: 23px !important;
  }

  .ksu-tp-section > h2::before,
  #room h2::before {
    width: 8px !important;
    min-height: 52px !important;
  }
}