@charset "UTF-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    /*scroll-behavior: smooth;*/
}
body {
    margin: 0 auto;
    padding: 0;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

a {
    display: block;
    width: 100%;
    transition: 0.5s;
    text-decoration: none;
}
a:hover {
    opacity: 0.5;
}

li {
    list-style-type: none;
}

#wrapper {
    max-width: 100%;
    min-width: 100%;
    font-size: 1.6em;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Zen Kaku Gothic New', "ヒラギノ角ゴ Pro W3", "メイリオ", 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #575757;
    letter-spacing: 0.1rem;
}


/**共通**/
img {
    max-width: 100%;
}

p {
    font-size: 1.8rem;
    line-height: 2;
    text-align: justify;
}
span{
    display: block;
}

.yugo, p strong{
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
}

.mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.hiragino, p{
    font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.toppan, h3, h6, footer .area, .price .red, #top-nav a, #g-nav li a, #use h4{
    font-family: toppan-bunkyu-gothic-pr6n, serif;
    font-weight: 600;
}

.rltive{
    position: relative;
}



/**トップに戻るボタン**/
.topBtn {
    position:fixed;
    bottom:30px;
    right:15px;
    display:block;
    background-color:rgb(51, 51, 51);
    font-size:22px;
    width:44px;
    height:44px;
    text-align:center;
    border-radius: 4px;
    line-height: 44px;
    text-decoration: none;
    z-index: 9;
  }
  
  .topBtn:link, .topBtn:visited{
    color: #fff;
  }
  
  .topBtn:hover{
    color: rgb(204, 204, 204);
  }



/*----------------------------------------------------
.wrapper
----------------------------------------------------*/
/**header**/
header{
    overflow: hidden;
    position: relative;
}

h1{
    max-width: 15%;
    position: absolute;
    z-index: 9;
    left: 4rem;
    top: 4rem;
    z-index: 10;
}

h1 a{
    display: inline;
}

h1 img{
    filter: drop-shadow(0px 0px 1px #999);
}


#top-nav{
    background-color: rgba(113,103,105,1.0);
    padding-left: 4rem;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 9;
    width: 25vw;
    height: 100vh;
}
#top-nav ul{
    position: absolute;
    bottom: 0;
}

#top-nav a{
    color: #fff;
    font-size: 1.5rem;
    margin: 3rem auto;
}


/*** header ***/
#slider{
    overflow: hidden;
    position: relative;
    background-image: url(../img/webp/top_img01.webp);
    background-repeat: no-repeat;
    background-position: 40% center;
    background-size: cover;
    width: 75vw;
    right: -25vw;
    height: 100vh;

}
.top_img_fl{
    position: absolute;
    width: 520px;
    max-width: 50%;
    bottom: 2%;
    right: 3%;

}




/*========= ぼかしのためのCSS ===============*/
.mainblur{
	filter: blur(8px);
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: rgba(113,103,105,0.5);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}
#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
    background: rgba(112,112,112,0.3);
    border: 1px solid #fff;
    border-radius: 50%;
    display: none;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}


/**main**/

/*************** アイコン *****************/
   @font-face {
       font-family: 'icomoon';
       src:
         url('../fonts/icomoon.ttf?lu5w87') format('truetype'),
         url('../fonts/icomoon.woff?lu5w87') format('woff'),
         url('../fonts/icomoon.svg?lu5w87#icomoon') format('svg');
       font-weight: normal;
       font-style: normal;
       font-display: block;
     }
  .icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Enable Ligatures ================ */
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    font-feature-settings: "liga";
    -webkit-font-variant-ligatures: discretionary-ligatures;
    font-variant-ligatures: discretionary-ligatures;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .fa-instagram:before {
    content: "\e900";
    font-size: 1.8rem;
    padding-right: 5px;
  }



main {
    max-width: 100%;
    min-width: 100%;
    overflow: hidden;
    display: block;
    background-color: #fff;
    margin: auto;
}

section{
    position: relative;
    z-index: 1;
}

section .inner{
    width: 1400px;
    max-width: 95%;
    margin: auto;
    padding: 7.5rem 0 10rem;
    position: relative;
}

.bg{
    max-width: 60%;
    position: absolute;
    opacity: 0.1;
    z-index: -99999;
    top: 6rem;
    left: 50%;
    transform: translateX(-50%);
}
.num{
    top: 4rem;
    left: auto;
    right: -5%;
    max-width: 20%;
    transform: translate(0%, -100%);
}
#use .box:nth-of-type(2n) .num{
    right: auto;
    left: -5rem;
}

h3{
    color: #E84477;
    text-align: center;
    margin-bottom: 8rem;
    font-size: 3.8rem;
}
h3 span{
    font-size: 1.8rem;
    font-weight: 400;
    color: #575757;
}


/*** キャンペーンバナー ***/
#bnr .inner{
    padding-bottom: 0;
}
#bnr a{
    width: 700px;
    max-width: 95%;
    margin: auto;
    text-align: center;
}
#bnr img{
    border: 1px solid #eee;
    margin-bottom: 4rem;
}

/*** picup_news ***/
#picup_news .inner{
    padding: 12rem 0 5rem;
}
#picup_news a{
    text-align: center;
    color: #E84477;
    text-decoration: underline 1px;
    font-size: 2.0rem;
}

/** intro **/
h2{
    text-align: center;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.8;
    position: relative;

}
h2 span{
    font-size: 1.2rem;
    font-weight: 300;
    position: absolute;
    margin-top: 2rem;
    right: 7%;
}

/** イメージ画像 **/
#impress .img_area{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}
#impress .img_area img{
    width: 45%;
}
#impress .img_area img:last-of-type{
    padding-top: 5%;
}


/** concept **/
#concept .inner{
    width: 1200px;
}
#concept .area{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
#concept .area img{
    width: 40%;
    margin-right: 5rem;
}
#concept .area .txt_area h4{
    font-size: 3.0rem;
    font-weight: 500;
}
#concept .area .txt_area strong{
    font-size: 2.0rem;
    display: block;
    margin-top: 2rem;
    letter-spacing: 0;
}

button{
    background-color: #716769;
    color: #fff;
    width: 300px;
    max-width: 65%;
    padding: 1.5rem 0;
    margin-top: 5rem;
    position: relative;
}
button::after{
    content: "\e900";
    font-weight: 900;
    position: absolute;
    top: 50.5%;
    transform: translateY(-50%);
    right: 25%;
    transition: 0.3s;

}
button:hover::after{
    right: 20%;
}





/** Feature **/
#feature .area{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
#feature .area.a2{
    justify-content: space-between;
}
#feature .area .box{
    flex-basis: 30%;
    text-align: center;
    margin-bottom: 6rem;
}
#feature .area.a2 .box{
    flex-basis: 22%;
}

#feature .area .box img{
    width: 60%;
    margin: auto;
}
#feature h5{
    font-size: 2.4rem;
    color: #0a0a0a;
    letter-spacing: 0;
    margin: 1rem auto;
    font-weight: 500;
}
#feature .area.a2 .box h5{
    font-size: 2.0rem;
}
#feature .area .box p{
    line-height: 1.8;
    font-size: 1.5rem;
}
#feature .area .box strong{
    font-size: 1.65rem;
    letter-spacing: -1px;
    display: block;
    text-align: center;
    color: #716769;
}

/** image_slide **/
#image_slide {
    background-color: #F0EBE7;
    width: 100vw;
    margin-bottom: 5rem;
}
#image_slide .inner{
    overflow: hidden;
    padding: 18rem 0px 5rem;
}

.slick00 .slick-list{
    overflow: visible;   
}
.slick00 .slick-slide{
    text-align: center;   
}
.slick00 .slick-slide img{
    display: inline-block !important;
}
.slick00 .slick-current img{
    transform: scale(1.50);
    filter: drop-shadow(0px 0px 6px #d6d6d6);
}  

/* ページャー */
.slick-dots{
    text-align: center;
    margin-top: 8%;
}
.slick-dots li{
    display: inline !important;
    margin: 0.5em;
}
.slick-dots button{
    display: inline !important;
    width: 15px;
    height: 15px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    text-indent: 2em;
    border-radius: 100%;
    padding: 0;
    margin-top: 0;
}
.slick-dots .slick-current button{
    background-color: #E84477;
}
.slick-dots button::after{
    display: none;
}


/** item **/
#item .inner{
    width: 1200px;
}
#item .area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/* 最後のコンテンツを左寄せにする指定 */
#item .area::after, #item .area::before{
    content: "";
    display: block;
    width: 22%;  /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
}
#item .area::before {
    order: 1;  /* 疑似要素beforeの順番を必ず指定する*/
}

#item .area .box{
    text-align: center;
    flex-basis: 22%;
    margin-bottom: 6rem;
}
#item .area .box h6{
    font-size: 1.4rem;
    margin: 1rem auto 2rem;
}
#item .area .box .txt{
    display: none;
    line-height: 1.5;
}
#item .area .box .price{
    font-family: serif;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}
#item .area .box .price span.red{
    color: #E92600;
    font-size: 1.5rem;
    line-height: 0.5;
}
#item .area .box .price span.empha{
    display: inline;
    font-size: 2.5rem;
}


/*25.01.16追記*/
#item .area .box .price span.tujo{
    line-height: 0.5;
    padding-top: 1.8rem;
}
#item .area .box .price span.tujo em{
    position: relative;
    font-style: normal;
}
#item .area .box .price span.tujo em::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #333;
    top: 50%;
}

#item button{
    width: 95%;
    max-width: 95%;
    margin-top: 1.5rem;
}
#item button::after{
    right: 13%;
}
#item button:hover::after{
    right: 9%;
}

.sp_br, .sp_br2{
    display: none;
}


/*2505追記*/
.no-click{
    pointer-events: none;
}
#kago .inner{
    width: 1000px;
    padding-bottom: 4rem;
    overflow: hidden;
    overflow-x: scroll;
    position: relative;
}
.kago_area{
    width: 1000px;
    display: flex;
    gap: 3rem 2.3%;
    flex-wrap: wrap;
}
.kago_area .block{
    width: calc(100% / 4.3);
    flex-shrink: 0;
}
.kago_area .block a{
    color: #6E6F6F;
}
.kago_area .block a:last-of-type{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80px;
}
.kago_ttl{
    line-height: 1.35;
    font-size: clamp(1.3rem, 1.3vw, 1.3rem);
    letter-spacing: 0px;
}
.kago_price {
    font-family: serif;
    font-weight: 600;
}
.kago_price span{
    font-size: 1.1rem;
    margin-right: 2rem;
    text-decoration-line: line-through;
}
.kago_price small{
    font-size: 60%;
}


/** how to use **/
#use .inner{
    width: 1200px;
}
#use h4{
    font-size: 3.0rem;
    margin-bottom: 2rem;
}
#use h4 span{
    font-size: 2.0rem;
    display: inline;
}
#use h5{
    color: #E84477;
    font-size: 2.0rem;
    margin-bottom: 1.8rem;
    font-weight: 600;
}
#use p{
    font-size: 1.5rem;
}
#use p span{
    font-size: 0.9rem;
    margin-top: 1.8rem;
    line-height: 1.4;
}

#use .box{
    display: flex;
    align-items: flex-start;
    margin-bottom: 15rem;
    position: relative;
}
#use .box:nth-of-type(2n){
    flex-direction: row-reverse;
}
#use .box img{
    width: 50%;
    margin-left: 5rem;
}
#use .box:nth-of-type(2N) img{
    margin-left: 0;
    margin-right: 5rem;
}

/** sns **/
#sns .inner{
    max-width: 100%;
}

#sns .hashtag{
    display: flex;
    flex-direction: row;
    width: 400px;
    max-width: 68%;
    margin: 0 auto;
    text-align: center;
}
#sns .hashtag a{
    display: block;
    color: #716769;
    font-size: 1.6rem;
    text-decoration: underline 1px;
}

/**スライダー**/
.slick img{
    width: 100%;
}

.slick-slide{
   outline: none;
   margin: 0 10px;
}


/** News **/
#news .area dl{
    padding: 4%;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
}
#news .area dl:first-of-type{
    border-top: 1px solid #E5E5E5;
}
#news .area dt{
    padding-right: 2.0rem;
    border-right: 1px solid #E3E3E3;
    margin-right: 2rem;
    width: 20%;
}
#news .area dt span{
    margin-top: 2rem;
}
#news .area dd{
    text-align: justify;
    width: 80%;
}
#news .area a{
    display: inline;
    text-decoration: underline;
}


/** contact **/
#contact{
    background: #fff;
}
#contact .inner{
    padding-bottom: 5rem;
}

#contact iframe{
    width: 100%;
    height: 600px;
}

#contact a{
    display: block;
    width: min(350px, 80%);
    margin: auto;
}

.btn_area{
    text-align: center;
    padding: 1.5rem 0;
    border: 1px solid #716769;
    border-radius: 2px;
    display: block;
    margin: auto;
    width: 350px;
    max-width: 50%;
}
.btn_area a{
    color: #716769;
    position: relative;
}
.btn_area a::after{
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 6%;
    transition: right 0.3s;
    width: 7px;
    height: 7px;
    border-top: solid 1px currentColor;
    border-right: solid 1px currentColor;
    transform: translateY(-50%) rotate(45deg);
}
.btn_area a:hover::after{
    right: 5%;
}



/*** footer ***/
footer {
    background-color: #716769;
    text-align: center;
    color:#fff;
    padding: 5rem 0 2rem;
    font-size: 1.5rem;
    margin-top: 20rem;
}
footer .area{
    font-weight: 500;
}
footer a{
    color: #fff;
}

footer .footerLogo{
    margin-bottom: 6rem;
}
footer .footerLogo img{
    display: inline;
    text-align: center;
}

footer .footer_icon{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}
footer .footer_icon li{
    margin: 0 1rem;
}

footer .box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 6rem;
}

footer .footer_list{
    display: flex;
    width: 750px;
    margin: auto;
    max-width: 80%;
}
footer .footer_list.f02{
    font-size: 1.4rem;
    margin-top: 3rem;
}
footer .footer_list li{
    margin: 0 2rem;
}

/*----------------------------------------------------
エフェクト  
----------------------------------------------------*/


/*----------------------------------------------------
レスポンシブ用
----------------------------------------------------*/
@media screen and (max-width:1055px) {
    #kago .inner{
        padding-bottom: 2rem;
    }
    .kago_area{
        flex-wrap: nowrap;
    }
    .kago_area .block a:last-of-type{
        height: 25%;
    }
    #kago .scrolldown4{
        display: block;
        bottom: -1.6rem;
    }
}

@media screen and (max-width:950px) {
    html{
        font-size: 1.05vw;
    }
}

@media screen and (max-width:834px) {
    /** header **/
    #slider{
        width: 100vw;
        right: 0;
        height: 90vh !important;
    }
    #top-nav{
        display: none;
    }
    .openbtn{
        display: block;
    }
    h1{
        top: 30px;
        left: 15px;
        max-width: 35%;
    }    
}


@media screen and (max-width:768px) {
    html{
        font-size: 1.45vw;
    }

    .pc_br{
        display: none;
    }
    .sp_br{
        display: inline;
    }



    .bg{
        top: 9rem;
    }

    #use .box:first-of-type{
        margin-top: 12rem;
    }
    .num{
        top: 0;
        left: 50%;
        right: auto;
        transform: translate(-50%, -100%);

    }
    #use .box:nth-of-type(2n) .num{
        left: 50%;
    }


    /** Concept **/
    #concept .area{
        flex-direction: column;
        align-items: center;
    }
    #concept .area img{
        width: 60%;
        margin-right: 0;
        margin-bottom: 3rem;
    }
    #concept .area .txt_area{
        text-align: center;
        width: 85%;
    }

    button{
        margin-top: 3rem;
    }


    /** Feature **/
    #feature .area .box{
        flex-basis: 75%;
    }
    #feature .area.a2{
        justify-content: space-around;
    }
    #feature .area.a2 .box{
        flex-basis: 45%;
    }
    #feature .area .box p{
        font-size: 1.65rem;
    }
    #feature .area .box strong{
        font-size: 1.85rem;
    }


    /** item **/
    #item .area{
        justify-content: space-around;
    }
    #item .area::after, #item .area::before{
        width: 40%;
    }
    #item .area .box{
        flex-basis: 40%;
    }

    /** how to use **/
    #use .box, #use .box:nth-of-type(2n){
        flex-direction: column-reverse;
        text-align: center;
    }
    #use .box img, #use .box:nth-of-type(2n) img{
        width: 60%;
        margin: 0 auto 3rem;
    }
    #use .box .txt_area{
        width: 85%;
        margin: auto;
    }
    #use p{
        font-size: 1.65rem;
    }

    /** News **/
    #news .area dl:first-of-type, #news .area dl{
        border: none;
        margin-bottom: 3rem;
    }
    #news .area dl{
        flex-direction: column;
        width: 90%;
        margin: auto;
    }    
    #news .area dt{
        padding: 0 0 2rem;
        border-right: none;
        border-bottom: 1px solid #E3E3E3;
        margin: 0 0 2rem;
        width: auto;
    }
    #news .area dd{
        width: auto;
    }


    
    /** footer **/
    footer{
        text-align: center;
    }
    footer a{
        font-size: 15px;        
    }
    footer .box{
        flex-direction: column;
        align-items: center;
    }
    footer .footer_list{
        flex-direction: column;
        text-align: left;
        margin:0 auto 3rem;
        width: 60%;
    }
    footer .footer_list li{
        margin-bottom: 2rem;
    }
}


@media screen and (max-width:480px) {
    html {
        font-size: 1.9vw;
    }

    /** header **/
    #slider{
        background-image: url(../img/webp/top_img01_sp.webp);
        background-position: 50% center;
    }
    .top_img_fl{
        right: 10%;
        max-width: 80%;
    }    
    
    /** intro **/
    #intro .sp_br, .sp_br2{
        display: inline;
    }
    h2{
        line-height: 2;
    }
    h2 span{
        margin-top: 3rem;
    }

    /** Feature **/
    #feature .area .box{
        flex-basis: 85%;
    }


    /** image_slide **/
    #image_slide .inner{
        overflow: visible;
        padding: 5rem 0px 1.5rem;
    }
    .slick00 .slick-current img{
        transform: none;
    }
    .slick-dots{
        margin-top: 4%;
    }


    /** Item **/
    #item .area::after, #item .area::before{
        width: 46%;
    }
    #item .area .box{
        flex-basis: 46%;
    }
    #item .area .box h6{
        letter-spacing: 0;
    }


    /** contact **/
    .btn_area{
        max-width: 80%;
    }
    

    /*kago*/
   .kago_area .block {
    width: calc(100% / 5.3);
}


}


