@charset "utf-8";
/* CSS Document */

/***************************
 ** FV
 */
.fv_wrapper{
  position: relative;
}

.fv_slider {
  position:relative;
  z-index: 1;
}

.fv_img_01, .fv_img_02, .fv_img_03 {
	display: block;
}

.fv_img_01 .video {
  width: 100%;
}

.fv_img_01 .video video {
  width: 100%;
}

.fv_img_01 .video_sp {
	display: none;
}

.fv_img_02 {
  background: url(https://sanukigoe.itembox.design/item/img/top/pc/img_fv02.jpg) no-repeat;
  height: calc(100vw * 0.459);
  width: 100vw;
  background-size: cover;
  background-position: center;
}

.fv_img_03 {
  background: url(https://sanukigoe.itembox.design/item/img/top/pc/img_fv03.jpg) no-repeat;
  height: calc(100vw * 0.459);
  width: 100vw;
  background-size: cover;
  background-position: center;
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

.slick-prev,
.slick-next {
    position: absolute;
    z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}


@media screen and (max-width: 736px) {
  .fv_img_02, .fv_img_03 {
    height: calc(100vw / 0.729);
  }

  .fv_img_01 .video_sp {
    display: block;
  }
  .fv_img_01 .video_pc {
    display: none;
  }

  .fv_img_02 {
    background: url(https://sanukigoe.itembox.design/item/img/top/sp/img_fv02_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }

  .fv_img_03 {
    background: url(https://sanukigoe.itembox.design/item/img/top/sp/img_fv03_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}


/***************************
 ** TOPのページ内リンクボタン
 */
.link_btn_area {
    margin: 0 auto 5rem auto;
}
.link_btn {
    display: flex;
    justify-content: center;
}
.link_btn li {
    flex-basis: 40%;
}

.link_btn li:first-child {
        margin-right: 4%;
    }
.link_btn a {
    font-size: 2rem;
    background: #000;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 400px;
    padding: 15px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
}
.link_btn a:hover {
    background: #999999;
    color: #FFF;
    text-decoration: none;
}
.link_btn a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 736px) {
    .link_btn_area {
        margin: 0 auto 4rem auto;

    }
    .link_btn {
        display: flex;
        justify-content: space-between;
    }

    .link_btn li {
        flex-basis: 48%;
    }

    .link_btn li:first-child {
        margin: 0 0 1rem 0;
    }
    .link_btn a {
        font-size: 1.4rem;
    }
}

/***************************
 ** TOPさぬきごえ紹介
 */
.top_intro_area {
    padding: 5rem 6rem;
    margin-bottom: 5rem;
}
.top_intro_flex {
    display: flex;
    justify-content: space-between;
}
.top_intro_block {
  /*  flex-basis: 48%;*/
}

.top_intro_txt{
    flex-basis: 40%;
    margin-right:5%;
}

.top_intro_img{
    flex-basis: 55%;
}


.top_intro_h3 {
    color: #ab2323;
    font-size: 2.6rem;
    margin-bottom: 2rem;
}
.top_intro_btn {
    text-align: center;
    margin: 4rem 0 2rem 0;
}
.top_intro_btn a {
    font-size: 2rem;
    background: #fff;
    position: relative;
    align-items: center;
    max-width: 400px;
    padding: 15px 25px;
    color: #000;
    transition: 0.3s ease-in-out;
    border: 1px #000 solid;
    display: block;
}
.top_intro_btn a:hover {
    background: #999999;
    color: #000;
    text-decoration: none;
}
.top_intro_btn a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.3s ease-in-out;
}
@media screen and (max-width: 736px) {
    .top_intro_area {
        padding: 3rem 1rem;
        margin-bottom: 4rem;
    }
    .top_intro_h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .top_intro_flex {
        flex-direction: column-reverse;
    }
    .top_intro_txt{
        margin-right:0;
    }

    .top_intro_img {
        margin: 0 auto 2rem;
    }
	.top_intro_btn{
		margin: 2rem 0;
	}
    .top_intro_btn a {
        margin: 0 auto;
        font-size: 1.6rem;
        padding: 10px;
    }
}

/***************************
 ** TOPページのグルテンフリー・アレルギーボタン
 */
.top_gluten_allergy_btn {
    text-align: center;
    margin-bottom: 6rem;
}

.top_gluten_allergy_btn a span {
    font-size: 1.4rem;
    font-weight: normal;
}

.top_gluten_allergy_btn a {
    font-size: 2rem;
/*    background: #ab2323;*/
background: #7c550b;
    position: relative;
    align-items: center;
    max-width: 500px;
    padding: 15px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    display: block;
    margin: 0 auto;
    line-height: 1.5;
    outline : 1px solid #FFFFFF; /* 内側に線 */
    outline-offset : -5px /* 内側に線 */

}
.top_gluten_allergy_btn a:hover {
    background: #999999;
    /*    color: #000;*/
    text-decoration: none;
}
.top_gluten_allergy_btn a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    transition: 0.3s ease-in-out;
}

@media screen and (max-width: 736px) {
.top_gluten_allergy_btn a {
    font-size: 1.6rem;
}
}


/***************************
 ** 売れ筋商品
 */
.fs-c-productListCarousel {
    margin-bottom: 6rem;
}

.fs-c-productListItem__productDescription{
    font-size: 1.2rem;
}


/***************************
 ** 売れ筋商品(html)
 ** 商品一覧(html)
 */
.top_item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  font-size: .9em;
}
.top_item_list > li {
  width: 18%;
}
.top_item_list li .item_img img {
  width: 100%;
}
.item_link dt,
.item_link dd {
  margin-bottom: 10px;
}
.item_icon ul {
  font-size: .8em;
}
.item_icon ul li {
  border-radius: 10px;
  padding: 2px 5px;
  text-align: center;
  margin-bottom: 6px;
}
.item_icon ul li:last-child {
  margin-bottom: 0;
}
.icon-cool {
  background-color: #006bb8;
  color: #FFF;
}
.icon-mail {
  background-color: #ff8c00;
  color: #FFF;
}
.icon-regular {
  background-color: #e3e516;
  color: #5c5c5c;
}
.item_price {
   font-size: 1em;
}
.item_price span {
  font-size: 1.3em;
}

/** 売れ筋商品ランキングアイコン **/
#top_ranking {
  margin-bottom: 5em;
}
#top_ranking > li .ranking_icon {
  font-weight: bold;
  padding: 20px 0 14px;
  margin-bottom: 10px;
  text-align: center;
  color: #FFF;
  font-size: 1.2em;
}
#top_ranking > li:nth-child(1) .ranking_icon { /* 1位（王冠）のスタイル */
  background: url(https://sanukigoe.itembox.design/item/img/top/ranking-icon01.png) no-repeat center;
  background-size: contain;
}
#top_ranking > li:nth-child(2) .ranking_icon { /* 2位（王冠）のスタイル */
  background: url(https://sanukigoe.itembox.design/item/img/top/ranking-icon02.png) no-repeat center;
  background-size: contain;
}
#top_ranking > li:nth-child(3) .ranking_icon { /* 3位（王冠）のスタイル */
  background: url(https://sanukigoe.itembox.design/item/img/top/ranking-icon03.png) no-repeat center;
  background-size: contain;
}
#top_ranking > li:nth-child(n + 4) .ranking_icon {
  background: url(https://sanukigoe.itembox.design/item/img/top/ranking-icon04-.png) no-repeat center;
  background-size: contain;
}

/** 商品一覧flex横複数行配置 **/
#top_itemlist {
  flex-wrap: wrap;
}
#top_itemlist > li {
  margin-bottom: 1em;
}

@media screen and (max-width: 736px) {
  #top_ranking {
	flex-wrap: wrap;
	margin-bottom: 3rem;
  }
  .top_item_list > li {
    width: 31%;
  }
  .top_item_list::after {
	content: "";
	display: block;
	width: 31%;
  }
}

@media screen and (max-width: 480px) {
  .top_item_list > li {
    width: 48%;
  }
  .top_item_list::after {
	content: "";
	display: block;
	width: 48%;
  }
}




/***************************
 ** TOPの特集
 */
.top_feature_area {
    margin-bottom: 5rem;
}
.top_feature_flex {
    display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
    margin-bottom: 2rem;

}
.top_feature_block {
    width: 28%;
    margin-bottom: 2rem;
}
.top_feature_ttl {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.top_feature_recipe_icon{
	/*display: block;*/
    background: #ed8752;
    color: #fff;
    width: 10rem;
    margin-right: 1rem;
    float: left;
    /*margin-bottom: 1rem;*/
    font-size: 1rem;
    text-align: center;
    /*top: 0.5rem;*/
    border-radius: 1.8rem;
    padding: 0.5rem;

}

@media screen and (max-width: 736px) {
.top_feature_block {
    width: 48%;
	margin-bottom: 2rem;
}


.top_feature_recipe_icon{
    float:none;
}
}



/***************************
 ** 米粉のプロフェッショナルたち
 */
.komeko-professional {
  margin: 6em 0;
}
.komeko_list {
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}
.komeko_list li {
  width: 31%;
}
.komeko_list li a {
  text-decoration: none;
  transition: 0.5s;
}
.komeko_list li a:hover {
  opacity: 0.7;
}
.komeko_list li dl {
  text-align: center;
}
.komeko_list li dl dt {
  margin-bottom: 5px;
}

@media screen and (max-width: 736px) {
  .komeko_list {
    display: block;
  }
  .komeko_list li {
    width: 100%;
	margin-bottom: 2rem;
  }
  .komeko_list li dl dt {
    margin-bottom: 0;
  }

}



/***************************
 ** TOPのお知らせ
 */
.top_notice {
    background: #f7f7f7;
    padding: 5rem 6rem;
    margin-bottom: 6rem;
}
.fs-pt-list {
    list-style: none;
    padding: 2rem;
    background: #fff;
}

.fs-pt-list a:hover {
    text-decoration: none;
}

.fs-pt-list__link a {
    margin-top: 0;
}

.fs-p-dateList > li {
    border: 1px solid #999999;
    border-width: 1px 0 0 0;
    padding: 2rem 1rem;
  }

  .fs-p-dateList > li:last-child {
    padding-bottom: 2rem;
  }

@media screen and (max-width: 736px) {
.top_notice {
    padding: 3rem 1rem;
}
	}



/***************************
 ** TOPの試食セットCVエリア
 */
/*
.top_cv_1set_area {
  margin: 0px auto 50px;
  text-align: center;
  background-image: url(../img/lp02/cv_1set_bg.jpg);
  padding: 7rem 4rem 4rem;
}

.top_cv_1set_inner {
  background-color: #fff;
  border-radius: 30px;
  padding-bottom: 1em;
}
.top_cv_1set_img img {
  position: relative;
  top:-30px;
}
.top_cv_1set_btn {
  margin: 0 auto 2rem;
}
.top_cv_1set_btn a:hover{
  opacity: 0.3;
}
.top_cv_1set_btn img {
  max-width: 806px;
  width: 90%;
}

@media screen and (max-width: 736px) {
  .top_cv_1set_area {
    margin: 0px auto 50px;
    width: 100%;
    padding:5rem 1rem 1rem;
  }
  .top_cv_1set_inner {
    border-radius: 20px;
  }
  .top_cv_1set_img img {
    top:-40px;
  }
  .top_cv_1set_btn {
	margin-bottom: 0;
  }
  .top_cv_1set_btn img {
    width: 96%;
    margin-bottom: 1rem;
  }
}
*/



/***************************
 ** TOPの試食セットCVエリア(１食２食試食セットCV) 2024.09.10
 */

.top_cv_1and2_area {
  margin: 0 auto 2em;
  text-align: center;
  background-image: url(../img/lp02/cv_1set_bg.jpg);
  padding: 7rem 4rem 4rem;
}
.top_cv_ttl {
  margin-bottom: 2em;
}
.top_cv_1and2_inner {
  background-color: #fff;
  border-radius: 30px;
  padding: 1em 0;
}
.top_cv_1set_btn,
.top_cv_2set_btn {
  margin: 0 auto 2rem;
}
.top_cv_1set_btn a:hover,
.top_cv_2set_btn a:hover {
  opacity: 0.3;
}
.top_cv_1set_btn img,
.top_cv_2set_btn img {
  max-width: 806px;
  width: 90%;
}

@media screen and (max-width: 736px) {
  .top_cv_1and2_area {
    margin: 0 auto 1em;
    width: 100%;
    padding: 2rem 1rem 1rem;
  }
  .top_cv_ttl {
    margin-bottom: 1em;
  }
  .top_cv_1and2_inner {
    border-radius: 20px;
	padding: 0;
  }
  .top_cv_1set_btn,
  .top_cv_2set_btn {
	margin-bottom: 0;
  }
  .top_cv_1set_btn img,
  .top_cv_2set_btn img {
    width: 96%;
    margin-bottom: 1rem;
  } 
}

