@charset "UTF-8";
/* 必須指定 */
#contWrap {
    padding-bottom: 10px;
    font-size: 16px;
    color: #333;
}
@media screen and (max-width: 750px)  {
	#contWrap {
		width: 100%;
        max-width: 100%;
        min-width: 100%;
        font-size: 14px;
	}
}
/*---*/
@media screen and (max-width: 750px) {
    .innner{
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        overflow: hidden;
    }
}
/*--タイトルタグ---*/
#contWrap .ttl-h3{
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    background-color: #FDFC06;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    padding-top: 12px;
    padding-bottom: 12px;
}
@media screen and (max-width: 750px) {
    #contWrap .ttl-h3{
        font-size: 16px;
        padding: 12px 2%;
    }
}
/*--flex---*/
.flexWrap{
    display: flex;
    justify-content: space-between;
}
.flexWrap-right{
    display: flex;
    flex-direction : row-reverse;
    justify-content: space-between;
}
@media screen and (max-width: 750px){
    .flexWrap,.flexWrap-right{
        display: block;
    }
}
/*メニュー部分*/
#sale_menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin: 20px 0 0 0;
}
#sale_menu li {
  width: 25%;
  height: 280px;
  font-size: 16px;
  line-height: 30px;
  border: 1px solid #0574BC;
  box-sizing: border-box;
  border-collapse: collapse;
  border-left-width: 0;
  border-top-width: 0;
}
#sale_menu li:nth-child(-n+6) {
  border-top: 1px solid #0574BC;
}
#sale_menu li:nth-child(6n+1) {
  border-left-width: 1px;
}
#sale_menu li a {
    color:#333;
  display: block;
  position: relative;
  text-decoration: none;
  padding: 15px 0 15px 60px;
  background-repeat: no-repeat;
}
#sale_menu li a::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: #0574BC 1px solid;
  border-right: #0574BC 1px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#sale_menu li a:hover {
  background-color: #E5EEFF;
}
@media screen and (max-width: 750px) {
    #sale_menu li {
        width: 50%;
        font-size: 12px;
        line-height: 20px;
    }
    #sale_menu li:nth-child(-n+6) {
      border-top: none;
    }
    #sale_menu li:nth-child(6n+1) {
      border-left-width: none;
    }
    #sale_menu li:nth-child(-n+2) {
      border-top: 1px solid #0574BC;
    }
    #sale_menu li:nth-child(2n+1) {
      border-left-width: 1px;
    }
    #sale_menu li a {
        padding-left: 40px
    }
}
/*アイコン表示*/
#sale_menu li:nth-child(1) a {
  background-image: url("../images/img_category_01.png");
  background-size: 50px;
  background-position: 5px 6px;
}
#sale_menu li:nth-child(2) a {
  background-image: url("../images/img_category_02.png");
  background-size: 50px;
  background-position: 5px 6px;
}
#sale_menu li:nth-child(3) a {
  background-image: url("../images/img_category_03.png");
  background-size: 50px;
  background-position: 5px 6px;
}
#sale_menu li:nth-child(4) a {
  background-image: url("../images/img_category_04.png");
  background-size: 50px;
  background-position: 5px 6px;
}
#sale_menu li:nth-child(5) a {
  background-image: url("../images/img_category_05.png");
  background-size: 50px;
  background-position: 5px 6px;
}
@media screen and (max-width: 750px) {
    #sale_menu li:nth-child(1) a ,
    #sale_menu li:nth-child(2) a ,
    #sale_menu li:nth-child(3) a ,
    #sale_menu li:nth-child(4) a ,
    #sale_menu li:nth-child(5) a {
        background-size: 32px;
        background-position: 5px 9px;
    }
}

/*メインイメージ部分
------------------------------------------------*/
#mainImg {
	position: relative;
    overflow: hidden;
}
.imgOver {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
    border-bottom: #FDFC06 5px solid;
}
.imgOver img {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
}
#copyOver {
	width: 100%;
	position: absolute;
	top: 0;
}
#copyOver h2 {
    position: absolute;
    top: 37px;
    left: 30px;
    color: #000;
    font-size: 44px;
    font-weight: 600;
    line-height: 50px;
}
#copyOver p {
    position: absolute;
    top: 144px;
    left: 30px;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}
@media screen and (max-width: 750px){
    #copyOver h2 {
        top: 25px;
        left: 2%;
        font-size: 26px;
        line-height: 38px;
    }
    #copyOver p {
        top: 117px;
        left: 2%;
        font-size: 14px;
        line-height: 24px;
    }
    .imgOver{
        height: 225px;
        background-color: #D0E4EB;
    }
}
/*ピックアップアイテム
------------------------------------*/
.cateBtn{/*ボタン　もっと見る*/
    text-align: center;
}
.cateBtn a{
    display: inline-block;
    text-decoration: none;
    border: 2px solid #0574BC;
    background: #fff;
    color: #0574BC;
    border-radius: 3px;
    padding: 10px 100px;
    font-weight: 700;
    line-height: 1.4;
}
.cateBtn a:hover{
    background: #0574BC;
    color: #fff;
}
@media screen and (max-width: 750px){
    .cateBtn a{
        padding: 10px 0;
        width: 95%;
    }
}
/*#ページリンク調整
----------------------------------*/
#chui,
#keisoku,
#sofu,
#yobou,
#ohkyu{
	margin-top: -50px;
	padding-top: 50px;
}

/*--テキスト---*/
.center{text-align: center;}
.bold{font-weight: 700;}
.red{color: #ed1c24;}
.blue{color: #254156;}
.black{color: #333;}
.fs18{font-size: 18px;}
.fs20{font-size: 20px;}
.ma50{margin: 50px auto 30px;}
.mat15{margin-top: 15px;}
.mab30{margin-bottom: 30px;}
.keikou{background:linear-gradient(transparent 60%, #ff6 60%);}
@media screen and (max-width: 750px) {
    .fs18{font-size: 14px;}
    .fs20{font-size: 14px;}
    .center{text-align: center;margin-left: 2%;margin-right: 2%;}
}




/* recoBox
/* ------------------------------------------------------------------------ */

.recoBox {
  margin: 0 auto;
  padding: 0;
}

.recoBox  p{
  margin: 0 auto;
  padding: 0 20px;
}

.recoBox .title span {
  font-size: 18px;
  display: block;
  line-height: 2;
  margin-bottom: 5px;
}

.recoBox .title span br{
	display: none;
}

.recoBox .title .br1 {
  display: none;
}

.recoBox .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 1160px;
  padding: 0;
  margin: 20px auto 0;
}

.recoBox .inner .re2box {
  background: #f3f3f3;
  background: #fff;
  max-width: 285px;
  width: 285px;
  padding: 0 0 30px;
  margin: 0 8px 0 0;
  border: #002558 3px solid;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.recoBox .inner .re2box .title2 {
  font-size: 20px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background: #ffff00; */
  padding:20px 10px;
  color: #000;
  text-align:center;
  border-radius: 10px 10px 0 0;
  width: 100%;
}



.recoBox .inner .re2box .catch {
  margin: 20px auto 0;
  width: 290px;
  text-align:center;
}

.recoBox .inner .re2box .catch img {
  height: 200px;
  margin: 0 auto 10px;
  display: inline-block;
}
.recoBox .inner .re2box p {
  font-size: 15px;
}
.recoBox .inner .re2box .txt {
  margin: 15px 0 0 0;
  text-align: left;
  line-height: 2;
  padding: 0 20px;
}

.recoBox .inner .re2box .txt span {
  font-size: 12px;
  display: block;
  margin: 2px 0 0 0;
  text-indent: -1em;
  padding: 0 0 0 1em;
}

@media (max-width:1050px) {
	.recoBox .title {
		max-width: 640px;
		padding-bottom: 15px;
	}

	.recoBox .title span{
		line-height: 1.6;
	}

	.recoBox .title span br{
		display: block;
	}

  .recoBox .title .br1 {
    display: block;
  }
  .recoBox .inner .re3box .catch {
    width: 80%;
  }
}

@media (max-width:767px) {
  .recoBox {
    padding: 0;
  }
  .recoBox .title {
    font-size: 25px;
    letter-spacing: 1px;
    min-height: auto;
    max-width: 400px;
    width: 93.75%;
    margin: 0 auto;
    padding: 30px 0 0 0;
    position: relative;
    background: none;
    line-height: 1.3;
  }
  .recoBox .title span {
    font-size: 12px;
    line-height: 1.4;
  }
  .recoBox .title .br1 {
    display: none;
  }
  .recoBox .inner {
    display: block;
    padding: 0 15px;
  }
  .recoBox .inner .re2box {
    max-width: 100%;
    width: 100%;
    margin: 15px 20px 0 0;
  }
  .recoBox .inner .re2box .title2 {
    font-size: 17px;
      font-weight: bold;
  }
  .recoBox .inner .re2box .catch {
    margin: 10px auto 0;
    width: 60%;
  }
  .recoBox .inner .re2box .txt {
    margin: 15px 0 0 0;
    line-height: 1.7;
    padding: 0 20px;
  }
  .recoBox .inner .re2box .txt span {
    font-size: 12px;
  }
}
/* 商品リンクボタン*/
.button-2 {
  display: inline-block;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 18px;
  color: #FFF;
  text-decoration: none;
  user-select: none;
  border-radius: 10px;
  transition: 0.4s ease;
  text-align: center;
  background: #008a66;
  width: 100%;
  padding: 10px 40px 10px 40px;
}

.button-2:hover {
  color: #fff;
  background: #ff85ba;
  text-decoration: none;
}




/* recoBox02
/* ------------------------------------------------------------------------ */

.recoBox02 {
  margin: 0 auto;
  padding: 0;
}

.recoBox02  p{
  margin: 0 auto;
  padding: 0 20px;
}

.recoBox02 .title span {
  font-size: 18px;
  display: block;
  line-height: 2;
  margin-bottom: 5px;
}

.recoBox02 .title span br{
	display: none;
}

.recoBox02 .title .br1 {
  display: none;
}

.recoBox02 .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 1160px;
  padding: 0;
  margin: 20px auto 0;
}

.recoBox02 .inner .re2box02 {
  background: #f3f3f3;
  background: #fff;
  max-width: 578px;
  width: 578px;
  padding: 0 0 30px;
  margin: 0 8px 0 0;
  border: #002558 3px solid;
  border-radius: 10px;
}

.recoBox02 .inner .re2box02 .title2 {
  font-size: 20px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background: #ffff00; */
  padding:20px 10px;
  color: #000;
  text-align:center;
  border-radius: 10px;
}



.recoBox02 .inner .re2box02 .catch {
  margin: 20px auto 0;
  width: 578px;
  text-align:center;
}

.recoBox02 .inner .re2box02 .catch img {
  height: 200px;
  margin: 0 auto 10px;
  display: inline-block;
}
.recoBox02 .inner .re2box02 p {
  font-size: 15px;
}
.recoBox02 .inner .re2box02 .txt {
  margin: 15px 0 0 0;
  text-align: left;
  line-height: 2;
  padding: 0 20px;
}

.recoBox02 .inner .re2box02 .txt span {
  font-size: 12px;
  display: block;
  margin: 2px 0 0 0;
  text-indent: -1em;
  padding: 0 0 0 1em;
}

@media (max-width:1050px) {
	.recoBox02 .title {
		max-width: 640px;
		padding-bottom: 15px;
	}

	.recoBox02 .title span{
		line-height: 1.6;
	}

	.recoBox02 .title span br{
		display: block;
	}

  .recoBox02 .title .br1 {
    display: block;
  }
  .recoBox02 .inner .re3box .catch {
    width: 80%;
  }
}

@media (max-width:767px) {
  .recoBox02 {
    padding: 0;
  }
  .recoBox02 .title {
    font-size: 25px;
    letter-spacing: 1px;
    min-height: auto;
    max-width: 400px;
    width: 93.75%;
    margin: 0 auto;
    padding: 30px 0 0 0;
    position: relative;
    background: none;
    line-height: 1.3;
  }
  .recoBox02 .title span {
    font-size: 12px;
    line-height: 1.4;
  }
  .recoBox02 .title .br1 {
    display: none;
  }
  .recoBox02 .inner {
    display: block;
    padding: 0 15px;
  }
  .recoBox02 .inner .re2box02 {
    max-width: 100%;
    width: 100%;
    padding: 20px 0 15px;
    margin: 15px 20px 0 0;
  }
  .recoBox02 .inner .re2box02 .title2 {
    font-size: 17px;
      font-weight: bold;
  }
  .recoBox02 .inner .re2box02 .catch {
    margin: 10px auto 0;
    width: 60%;
  }
  .recoBox02 .inner .re2box02 .txt {
    margin: 15px 0 0 0;
    line-height: 1.7;
    padding: 0 20px;
  }
  .recoBox02 .inner .re2box02 .txt span {
    font-size: 12px;
  }
}

/*テキストボックス背景あり
---------------------------------------*/

.box2 {
    padding: 2em 1em 2em;
    margin: 2em 0;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #000;
    background: #ffffdd;
    text-align: center;
}
.box2 h4 {
	background: linear-gradient(transparent 60%, #ffffa8 0%);
	padding: 0 0 10px;
	margin:  30px;
	display: inline-block;
	color: #002558;
	font-weight: bold;
	font-size: 19px;
}
.box2 p {
    margin-bottom: 15px;
    padding-left: 50px;
}
@media screen and (max-width: 750px) {
    .box2{
        margin: 2em 2%;
    font-size: 12px;
    }
    .box2 h4{
        margin: 30px auto;
        text-align: center;
    }
    .box2 p {
    margin: 0;
    padding-left: 0px;
   }
}


/*テキストボックス背景なし
---------------------------------------*/

.box03 {
    padding: 0 1em;
    margin: 0.5em 0 1.5em;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #333;
    text-align: center;
}
.box03 h4 {
	padding: 0 0 10px;
	margin:  30px;
	display: inline-block;
	color: #002558;
	font-weight: bold;
	font-size: 19px;
}
.box03 p {
    margin-bottom: 15px;
    padding-left: 50px;
}
@media screen and (max-width: 750px) {
    .box03{
        margin: 2em 2%;
    font-size: 12px;
    }
    .box03 h4{
        margin: 30px auto;
        text-align: center;
    }
    .box03 p {
    margin: 0;
    padding-left: 0px;
   }
}



/*メニューボタン
-----------------------------------*/
#menuBtn ul{
    width: 1160px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
}
#menuBtn li{
    width: 575px;
}
#menuBtn li a:hover{
    opacity: 0.5;
}
@media screen and (max-width: 750px) {
    #menuBtn ul{
        width:98%;
        margin: 10px auto 5px auto;
        flex-wrap: wrap;
    }
    #menuBtn li{
        width: 49%;
    }
}




/*人気商品紹介ページ一覧
---------------------------------------*/
#topics{
    width: 100%;
}
#topics .wrap{
    padding-top: 120px;
}
#topics .wrap_wrap{
    width: 82.93103448275862%;
    margin: 50px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#topics a{
    display: block;
    margin-bottom: 40px;
    width: 46.77754677754678%;
}
#topics a > img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    #topics .wrap{
        padding-top: 50px;
    }
    #topics .wrap_wrap{
        width: 94.66666666666667%;
        margin: 50px auto 0 auto;
        display: block;
    }
    #topics a{
        display: block;
        margin-bottom: 16px;
        width: 100%;
    }
    #topics a > img{
        width: 100%;
    }
}
.wrap{
    width: 96.55172413793103%;
    padding-top: 80px;
    padding-bottom: 100px;
    margin: 0 auto;
    text-align: center;
}
.wrap_wrap{
    margin-top: 70px;
}
.ttl3{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 1.7;
    position: relative;
    display: inline-block;
    margin: 0 auto;
}
.ttl3::before{
    content: url("../images/ttl3_img01.png");
    position: absolute;
    top:14px;
    left:-130px;
}
.ttl3::after{
    content: url("../images/ttl3_img02.png");
    position: absolute;
    top:14px;
    right:-130px;
}
.ttl3 span{
    font-size: 18px;
}
