body{
    background: url(https://codeviksolutions.com/main_pic_1.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position-x: unset;
    background-position-y: center;
    background-position: 100% 100%;
}
@media screen and (min-width: 1px) {
    body {
        font-size: 1.3rem;
        line-height: 1.7;
        /* background: #ffeff3; */
    }
}

/* body padding */
@media screen and (max-width: 1023px) {
    body {
        padding: 0 !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
    body {
        padding: 0 5% !important;
    }
}

@media screen and (min-width: 1200px) {
    body {
        padding: 0 12.5% !important;
    }
}

.p-rm{
    padding: 0px !important;
}
.p-right-rm{
    padding-right: 0px !important;
}
/* wrapper */

#wrapper {
    position: relative;
    overflow: hidden;
    margin: auto;
    max-width: 418px;
    box-shadow:
        0px 8px 16px -2px rgb(10 10 10 / 10%),
        0px 0px 22px 2px rgb(10 10 10 / 20%);
}

@media screen and (min-width: 1px) {
    #wrapper {
        width: 100%;
        background: #fff;
    }
}

@media screen and (max-width: 1023px) {
    #wrapper {
        margin: 0 auto;
    }
}

.kirari-news-list{
    width:100%;
    max-width:600px;
    margin:0 auto;
    padding: 0px 20px;
}

.kirari-news-item{
    display:flex;
    align-items:center;
    gap:20px;

    padding:12px 0;

    color:#333;
    text-decoration:none;

    border-bottom:1px solid #e5e5e5;
}

.news-date{
    flex-shrink:0;
    font-size:14px;
    font-weight:500;
    color:#444;
    min-width:95px;
    font-family: 'Noto Sans JP';
}

.news-title{
    font-size:14px;
    font-weight:500;
    color:#444;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-family: 'Noto Sans JP';
}

.news-view-all{
    text-align:center;
    margin-top:25px;
}

.news-view-all a{
    display:inline-block;

    background:#ea527f;
    color:#fff;

    padding:12px 35px;

    border-radius:30px;

    text-decoration:none;
    font-size:14px;
    font-weight:700;

    transition:.2s;
}

.news-view-all a:hover{
    opacity:.85;
}
/* ==========================
   NEWS PAGE
========================== */

#news-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.news-item {
    width: 100%;
}

.news-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-thumb {
    margin-bottom: 20px;
}

.news-thumb img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.news-meta {
    margin-bottom: 12px;
    font-size: 14px;
    color: #777;
}

.news-date-m {
    margin-right: 8px;
    color: #000;
}

.news-category {
    color: #d68b63;
}

.news-title-m {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: #000;
}

.news-link:hover .news-title {
    color: #d68b63;
}

.pagination {
    margin-top: 80px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    text-decoration: none;
    border: 1px solid #ddd;
}

.pagination .current {
    background: #d68b63;
    color: #fff;
    border-color: #d68b63;
}
.single-blog{
    max-width: 96%;
    margin: 0 2%;
    position: relative;
}
.single-box{
    font-size: 16px;
}
.back-btn a{
    background-color: #ea527f;
}
.blog-box{
    padding: 50px 0;
}
#blog_banner{
    background: url(./img/blog-banner.png) no-repeat center center;
    background-size: cover;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#blog_banner h1{
    font-family: "Noto Serif JP", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #ea527f;
}
/* ==========================
   HEADER
========================== */

.site-header{
    background:#F6C6D2;
}

.header-inner{
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 25px;
}

.logo img{
    height:45px;
    width:auto;
    display:block;
}

/* ==========================
   MENU BUTTON
========================== */

.menu-toggle{
    width:60px;
    height:60px;
    border:none;
    background:none;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap: 7px;
    position: relative;
    z-index: 10001;
    left: 25px;
}

.menu-toggle span{
    width:36px;
    height:4px;
    background:#000;
    transition:.4s;
}

.menu-toggle small{
    display:none;
   
}

/* OPEN STATE */
.menu-toggle.active{
    gap: 5px;  
    background:#fff; 
}
.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}

/* ==========================
   DRAWER
========================== */

.drawer-menu{
    position:fixed;
    top:0;
    left:revert;
    width:100%;
    height:100vh;
    max-width: 420px;
    background:#ffb1c4;
    transform:translateY(-100%);
    opacity:0;
    transition:
        transform .7s cubic-bezier(.77,0,.18,1),
        opacity .5s ease;
    z-index:10000;
}

.drawer-menu.active{
    transform:translateY(0);
    opacity:1;
}

.drawer-menu ul{
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
    padding-top: 70px;
}
.drawer-menu a::after {
    content: ">";
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}
.drawer-menu li{
    border-top: 1px solid rgba(255, 255, 255, .8);
    text-align: left;
    padding: 10px 20px;

}

.drawer-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    line-height:1.4;
    transition:.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-menu a:hover{
    opacity:.7;
}
.lineup .block {
    max-width: 96%;
    margin: 0 2%;
    position: relative;
}
.single-item .lineup .flex .slide, .single-item .lineup .flex div.detail{
    width: 100%;
}
#blog_banner.reason-h h1{
    font-size: 34px;
}
.reason .tl{
    color: #ea527f;
}
.reason .block {
    max-width: 96%;
    margin: 0 2%;
    position: relative;
}
.contact .tel_area{
    border: double 4px #EA527F;
    margin: 5px;
}
.contact .tel_area dl dt{
    color: #EA527F;
}
.box.line.bk{
    background: #ffeff3ba;
}
.contact-text{
    font-size: 17px;
}
#mw_wp_form_mw-wp-form-40 .btn input{
    background: #ea527f;
}