/* variable */
:root {
    
    accent-color: var(--clr-black-blue);
    /* color variable */
    --clr-black: #000000;
    --clr-lgt-black: #666666;
    --clr-main-black: #231815;
    --clr-red: #CF0014;
    --clr-black-blue: #0A234B;
    --clr-lgt-blue: #CDD7E1;
    --clr-lgt-grey: #C7D1DB;
    --clr-mid-grey: #ECEEF1;
    --clr-thicker-grey: #EBEBEB;
    --clr-grey: #C6C6C6;
    --clr-brown: #FF8200;
    --clr-yellow: #FFCD00;
    --clr-mid-yellow: #B38600;
    --clr-black-yellow:#B98C00;
    --clr-table-grey: #EBEBEB;
    --clr-similar-grey: #EEEEEE;
    
    /* font variable */
    --arial-font: 'Arial', 'sans-serif';
    --han-font : 'SourceHanSerif-Regular', 'sans-serif';
    --meiryo-font: 'Meiryo', 'sans-serif';
    --yumin-font: 'YuMincho-Demibold', 'sans-serif';
    --ryumin-font: 'RyuminPr6N-Light', 'sans-serif';
    --genshin-font: 'GenShinGothic-Medium', 'sans-serif';
    --ad-Song-font: 'AdobeSongStd-Light', 'sans-serif';
    --dnpshue-font:'DNPShueiMGoStd-L','sans-serif';
    --koz-font: 'KozGoPr6N-Regular', 'sans-serif';
    --noto-serif-font: 'Noto Serif JP', serif;
    /* border variable */
    --grey-border: 1px solid var(--clr-grey);
    /* shadow variable */

    --menu-shadow:
        0 4px 4px rgba(37, 29, 33, 0.3),
        4px 0 4px rgba(239, 89, 161, 0.3),
        0 -4px 4px rgba(239, 89, 161, 0.3),
        -4px 0 4px rgba(239, 89, 161, 0.3);
    /* border variable */
    --brd__nav-items: 1px solid var(--clr-nav-item);
    
}
/* hover css customize */
.hvr-
[class^='hvr-']:after, [class^='hvr-']:before {
    background: var(--clr-red) !important;
}
[class^='hvr-underline']:after, [class^='hvr-underline']:before {
    height: 2px !important;
    
}
/* .hvr-bounce-to-right:before {
    background: red;
} */
/* --------------------------------------------------  ESSENTIAL PROP --------------------------------------------------------- */




.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* font family prop */
.ff-yumin {
    font-family: var(--yumin-font);
}
.ff-han {
    font-family: var(--han-font);
}
.ff-meiryo {
    font-family: var(--meiryo-font);
}
.ff-rymin {
    font-family: var(--ryumin-font);
}
.ff-genshin {
    font-family: var(--genshin-font);
}
.ff-arial {
    font-family: var(--arial-font);
}
.ff-ad-song {
    font-family: var(--ad-Song-font);
}
.ff-koz {
    font-family: var(--koz-font);
}
/* font weight prop */
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900;
}

/* letter spacing prop */
.ltr__spacing--common {
    letter-spacing: 0.08em;
}
.ls-01{
    letter-spacing: 0.1em;
}
/* line-height prop */
.line-height-10 {
    line-height: 1.0 !important;
}

.line-height-12 {
    line-height: 1.2 !important;
}

.line-height-13 {
    line-height: 1.3 !important;
}

.line-height-14 {
    line-height: 1.4 !important;
}

.line-height-15 {
    line-height: 1.5 !important;
}

.line-height-16 {
    line-height: 1.6 !important;
}

.line-height-17 {
    line-height: 1.8 !important;
}


/* container */
.g-container {
    width: 100%;
    max-width: 130rem;
    margin: 0 auto;
    /* padding: 0 15px; */
}
.o-container {
    width: 100%;
    max-width: 98rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.outer-container {
    width: 100%;
    max-width: 110rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.inner-container {
    width: 100%;
    max-width: 90.2rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.mid-container {
    width: 100%;
    max-width: 92.6rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
/* text align center */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* vertical align center */
.vertical-align-center {
    vertical-align: middle;
}

/* overflow property */
.overflow-hidden {
    overflow: hidden;
}

/* type of feature */
.round {
    border-radius: 50%;
}

/* float property */
.float-wrapper {
    overflow: hidden;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

/* border property */
.border-clr-white {
    border: 2px solid #fff;
}

.border-none {
    border: none !important;
}



/* --border style */
.brd-none {
    border: none;
}

.brd-solid {
    border-style: solid;
}

.brd-bt-dashed {
    border-bottom-style: dashed;
}

.brd-bt-solid {
    border-bottom-style: solid;
}

/* --border-width */
.brd-1 {
    border-width: 1px;
}

.brd-2 {
    border-width: 2px;
}

.brd-3 {
    border-width: 3px;
}

.brd-4 {
    border-width: 4px;
}

.brd-5 {
    border-width: 5px;
}

.brd-6 {
    border-width: 6px;
}

.brd-top-btm-dashed {
    border-top: var(--brd__dashed--pink);
    border-bottom: var(--brd__dashed--pink);
}

.brd-top-dashed {
    border-top: var(--brd__dashed--pink);
}

/* ------------------------------------------  USER DEFINE ------------------------------------------------------------- */

/* display prop */
.block {
    display: block;
}

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

.no-display {
    display: none;
}

/* --flex prop */
.flex {
    display: flex;
}

.flex-x-y-center {
    justify-content: center;
    align-items: center;
}

.flex-x-center {
    justify-content: center;
}

.flex-x-left {
    justify-content: flex-start;
}

.flex-x-right {
    justify-content: flex-end;
}

.flex-y-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* position prop */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.pos-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    
}

/* width prop */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.full-size {
    width: 100%;
    height: 100%;
}
.w-part-half {
    width: 48%;
}
.w-half {
    width: 50%;
}
.w-fit-content {
    width: fit-content;
}

/* object prop */
.obj-fit-cover {
    object-fit: cover;
}

.obj-fit-contain {
    object-fit: contain;
}

.obj-pos-x-y-center {
    object-position: center center;
}

/* background image prop */
.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-x-y-center {
    background-position: center center;
}

/* background prop */
.back-clr-none {
    background: transparent;
}
.back-clr-black {
    background: var(--clr-black);
}
.back-clr-white {
    background: #fff;
}
.back-clr-red {
    background-color: var(--clr-red) !important;
}
.back-clr-red-grd {
    background-color: var(--clr-red);
    background-image: linear-gradient(to right, transparent, rgba(255,130,0, 1));
}
.back-clr-black-blue {
    background-color: var(--clr-black-blue) !important;
}
.back-clr-lgt-blue {
    background-color: var(--clr-lgt-blue);
}
.back-clr-lgt-grey {
    background-color: var(--clr-lgt-grey);
}
.back-clr-thicker-grey {
    background-color: var(--clr-thicker-grey);
}
.back-clr-table-grey {
    background-color: var(--clr-table-grey);
}
.back-clr-similar-grey {
    background-color: var(--clr-similar-grey);
}
.back-clr-yellow {
    background-color: var(--clr-yellow);
}
.back-clr-black-yellow {
    background-color: var(--clr-black-yellow);
}
.back-clr-yellow-grd {
    background-image: linear-gradient(to right, transparent, var(--clr-brown));
}
.back-clr-grey {
    background-color: var(--clr-grey);
}
.back-clr-lgt-black {
    background-color: var(--clr-lgt-black);
}
/* color property */
.clr-lgt-black {
    color: var(--clr-lgt-black);
}
.clr-red {
    color: var(--clr-red);
}
.clr-white {
    color: #fff !important;
}
.clr-black-blue {
    color: var(--clr-black-blue);
}
.clr-lgt-grey {
    color: var(--clr-lgt-grey);
}
.clr-table-grey {
    color: var(--clr-table-grey);
}
.clr-grey {
    color: var(--clr-grey);
}
.clr-thicker-grey {
    color: var(--clr-thicker-grey);
}
.clr-black-yellow {
    color: var(--clr-black-yellow);
}
.clr-mid-yellow {
    color: var(--clr-mid-yellow);
}
/* --border color */
.brd-clr-pink {
    border-color: var(--clr-pink);
}


/* text outline prop */
.text-shd-clr-pink {
    text-shadow: 2px 0 0 var(--clr-pink);
}


/* container */
.h-container {
    width: 100%;
    max-width: 135rem;
    margin: 0 auto;
    padding: 1.4rem 1.5rem 1.4rem;
}

.disc-list {
    list-style: disc;
}

/* hide and display */
.pc-hide {
    display: none;
}

.sp-hide {
    display: block;
}
.larger {
    font-size: 1.8em !important;
}
.smaller {
    font-size: 0.6em !important;
}
/* property item prop */
.prop-lists {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.8rem;
    row-gap: 3.8rem;
}
.prop-item {
    box-shadow: 0 0 5px var(--clr-main-black);
    
}
.prop-item > a {
	display: flex;
    height: 20rem;
    overflow: hidden;
    background-color: #fff;
}
.prop-item > a img {

    transition: 0.8s all ease-in-out;
}
.prop-item > a:hover img {
    scale: 1.2;
    
}

.prop-item .prop-item-content p:not(.range) {
    
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.prop-item .prop-item-content p.range {
    font-size: 1.2rem;
}
.prop-item .prop-item-content p.prop-title {
    font-size: 1.4rem;
    color: var(--clr-black-blue);   
}
.prop-item .prop-item-content {
    padding: 1.0rem 1.6rem;
    background-color: #fff;
}
.prop-item .prop-item-content a.absolute {
    right: 1.6rem;
    bottom: 1rem;
    width: fit-content;
    height: fit-content;
    font-size: 0.9rem;
}

/* visit link anchor prop */
.visit-link {
    margin: 0 auto;
    color: #8D8D8D;
    border: 1px solid #8D8D8D;
    padding: 1.8rem 0;
    text-align: center;
    /* font-family: var(--arial-font); */
    font-size: 1.6rem;
    margin-top: 4rem;
    width: 37rem;
    z-index: 12;
    position: relative;
    
}
.visit-link img {
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
    width: 3.3rem;
    height: auto;
    transition: 0.3s all ease-in-out;
}
.visit-link:hover img {
    right: -1rem;
}

/* sale link component */
.sale-visit {
    padding: 1.4rem 0;
    font-size: 3.2rem;
    border: 2px solid #fff;
    letter-spacing: 0.1em;
}

.scroll-to-top {
    position: fixed;
    right: 50px;
    bottom: 70px;
    z-index: 999;
    display: flex;
    padding: 0.8rem 1.6rem;
    color: #072244;
    background: rgb(7, 34, 68, 0.6);
}
.scroll-to-top a {
    
   
    filter: drop-shadow(1px 1px 4px rgba(7, 7, 7, 0.5));
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    padding: 1rem 2rem;
    text-align: center;

}
.scroll-to-top a:nth-child(1) {
    margin-right: 1.2rem;
}

.scroll-to-top a.scroll-qr-code {
    margin-right: 2.4rem;
    /* position: relative; */
    display: none;
}
.scroll-to-top a.scroll-qr-code .qr-code-wrapper *{
    width: 0;
    height: 0;
}
.scroll-to-top a.scroll-qr-code:hover .qr-code-wrapper *{
    width: 100%;
    height: 100%;
}
.scroll-to-top a.scroll-qr-code:hover .qr-code-wrapper {
    
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -115%);
    width: 9.7rem;
    height: 9.7rem;
    background: rgb(7, 34, 68, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;

}
.scroll-to-top a.scroll-qr-code:hover .qr-code-wrapper::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 16px;
    height: 8px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: rgb(7, 34, 68, 0.6);
}
.scroll-to-top a.scroll-qr-code img {
    width: 3.6rem;
}
.scroll-to-top a.to-top {
    display: flex;
    flex-direction: column;

}
.scroll-to-top a.to-top img {
    width: 1.5rem;
}
.breadcrumb {
    padding: 1rem 0;
}
.breadcrumb * {
    /* font-family: var(--genshin-font); */
    font-size: 1.2rem;
    color: var(--clr-grey);
}


#cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    background-color: var(--clr-black-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
  }
  
  #cursor-border {
    --size: 50px;
    position: fixed;
    top: calc(var(--size) / -2);
    left: calc(var(--size) / -2);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--clr-red);
    pointer-events: none;
    transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
      height 0.15s ease-out, background-color 0.15s ease-out;
    z-index: 999;
  }
  .filter-white {
    filter: invert(100%) brightness(1000%) ;
    
  }
  section#pgNotFound {
    height: calc(100vh - 7rem);
  }
  section#pgNotFound .pgNotFound-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30rem 0;
    column-gap: 3rem;

  }
  section#pgNotFound .pgNotFound-wrapper h3 {
    font-size: 5rem;
    font-weight: 900;
    text-align: center;

  }
  .essential {
    margin-left: 1rem;
  }
  .ellipse {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
  .text-limit {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
  
  .wp-pagenavi {
    padding: 4rem 0 10rem;
  }
  .wp-pagenavi > span.pages{
        display: none;
  }
  .wp-pagenavi a, .wp-pagenavi span{
    text-decoration: none;
    border: 1px solid #BFBFBF;
    padding: 0.4rem 1rem;
    margin: 2px;
    font-size: 1.6rem !important;

  }
/* ----------------------------------------       responsive prop       -------------------------------------------- */




@media screen and (max-width: 768px) {
    .visit-link {
        margin: 0 auto;
        color: #8D8D8D;
        border: 1px solid #8D8D8D;
        padding: 1.8rem 0;
        text-align: center;
        /* font-family: var(--arial-font); */
        font-size: 2.6rem;
        margin-top: 4rem;
        width: 55rem;
        z-index: 12;
        position: relative;
    }
    .scroll-to-top {
        right: 15px;
        bottom: 70px;
        z-index: 999;
    }
    .breadcrumb * {
     
        font-size: 2.1rem;
     
    }
    .outer-container {
        width: 100%;
        max-width: 60rem;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    .pc-hide {
        display: block;
    }
    .sp-hide {
        display: none;
    }
    .inner-container {
        width: 100%;
        max-width: 58rem;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    .larger {
        font-size: 1.5em !important;
    }
}


@media screen and (max-width: 768px) {
    .scroll-to-top {
        left: 0;
        bottom: 0;
        width: 100%;
        justify-content: center;
        padding: 1.8rem;
    }
    .scroll-to-top a:nth-child(1) {
        margin-right: 3.2rem;
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .scroll-to-top a.scroll-qr-code {
        margin-right: 2.8rem;
        /* position: relative; */
        padding: 3.2rem;
        display: none;
    }
    .scroll-to-top a.scroll-qr-code:hover .qr-code-wrapper {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -115%);
        width: 16.7rem;
        height: 16.7rem;
        background: rgb(7, 34, 68, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1rem;
    }
    .scroll-to-top a {
        filter: drop-shadow(1px 1px 4px rgba(7, 7, 7, 0.5));
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 3rem;
        padding: 1rem 2rem;
        text-align: center;
        padding: 1.4rem;
    }
}