@charset "utf-8";@charset "utf-8";

/* ===================================
    全体レイアウト用
==================================== */
#Area {
	font-family: "Inter", sans-serif,'Meiryo';
	text-align: center;
	color:#333333;
	width: 90%;
	margin: 0 auto;
	display: block;
	overflow: hidden;
}

.inner  {
	width: 80%;
}

/*スマホの時だけ改行*/
/*<br class="br-sp">*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
 }

/* 余白*/
.spece {
 margin-bottom:3%;
}	

.spece2 {
    padding-top: 10%;
    text-align: center;
}	

.spece_bottom {
 margin-bottom:25%;
}	


img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
	
}

.image {
	text-align: center;
}

p {
	font-size: 16px;
	/*font-family: "Libre Baskerville", serif;*/
  font-weight: 400;
  font-style: normal;
}



.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 10% auto 9% auto;
}


/*===================================
TOPテキスト
===================================*/
.top {
line-height: 2.0;
font-size: 16px;
font-weight: 400;
margin: 6% auto 9%;
max-width: 80%;
}

.top span{
font-size: 16px;
font-weight: 400;
margin: 5% auto;
}

.span_2 {
color: #81cde2;
font-size: 16px;
font-weight: 700;
}


/*===================================
リストボタン
===================================*/
.list_btn {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "top_btn-1 top_btn-2 top_btn-3 top_btn-4";
    max-width: 920px;
    text-align: center;
    margin: 0 auto;
	margin-bottom: 8%;
}

.list_btn-1 { grid-area: top_btn-1;}
.list_btn-2 { grid-area: top_btn-2; }
.list_btn-3 { grid-area: top_btn-3; }
.list_btn-4 { grid-area: top_btn-4; }

.list_btn-1,.list_btn-2,.list_btn-3,.list_btn-4 {
	max-width: 220px;
    text-align: center;
    line-height: 1.5;
    border-radius: 10px 10px 10px 10px;
    padding: 0.5em;
	color: #FFFFFF;
	background: linear-gradient(-225deg, #2CD8D5 0%, #C5C1FF 56%, #FFBAC3 100%);
	/*background: #add8db;*/
	font-weight: 300;
	
}

.list_btn span{
	font-size: 25px;
	font-family: Times,"Times New Roman"
	}	

.list_btn-1 img,.list_btn-2 img,.list_btn-3 img,.list_btn-4 img {
	width: 11%;
	margin-top: -2%;
}

/*===================================
テキスト
===================================*/
.title {
	font-size: 18px;
	margin: 5% auto 1%;
	font-weight: 600;
}

.text {
	font-size: 16px;
	margin-bottom: 2%;
}

/*===================================
商品横並びのコンテナー
===================================*/


.image_width {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid1 img_wid2 img_wid3 img_wid4";
		max-width: 1100px;
	text-align: center;
	margin: 0 auto;	
}

.img_wid1 { grid-area: img_wid1; }
.img_wid2 { grid-area: img_wid2; }
.img_wid3 { grid-area: img_wid3; }
.img_wid4 { grid-area: img_wid4; }


.image_width_2 {  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  grid-template-rows: 100%;
  gap: 12px 12px;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid5 img_wid6 img_wid7 img_wid8";
		max-width: 1100px;
	text-align: center;
	margin: 1% auto 0 auto;
}

.img_wid5 { grid-area: img_wid5; }
.img_wid6 { grid-area: img_wid6; }
.img_wid7 { grid-area: img_wid7; }
.img_wid8 { grid-area: img_wid8; }



/*===================================
商品の小画像＆詳細
===================================*/

.details {
	font-size: 14px;
	text-align: left;
}

.details span {
	/*color: #81cde2;*/
	font-weight: 400;
}

.red {
	color: #81cde2;
}

/*===================================
ボタン系
===================================*/

/*黒細ライン＆ホバーグレー*/
a.btn_01 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 450px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 6% auto 4% auto;
}

a.btn_01:hover {
  background: #9b9b9d;
  color: #fff;
    border: 1px solid #9b9b9d;
}

a.btn_01:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_01:hover:before {
  border-color: transparent transparent transparent #fff;
}




/*黒細ライン＆ホバーも黒*/
a.btn_02 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 400px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
        margin: 2% auto 4% auto;
}

a.btn_02:hover {
  background: #000;
  color: #fff;
}

a.btn_02:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_02:hover:before {
  border-color: transparent transparent transparent #fff;
}




/*黒細ライン＆ホバーグレー*/
a.btn_03 {
display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 450px;
    height: 55px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 16px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
     margin: 4% auto 4% auto;
}

a.btn_03:hover {
  background: #9b9b9d;
  color: #fff;
    border: 1px solid #9b9b9d;
}

a.btn_03:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  left: 6%;
  margin-top: -7px;
}

a.btn_03:hover:before {
  border-color: transparent transparent transparent #fff;
}



/*===================================
TOPブランドリスト画像
===================================*/


.bland_list {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    grid-template-rows: 56% 30% 30% 29%;
    gap: 9% 1.5%;
    grid-auto-flow: row;
    grid-template-areas:
        "logo_1 logo_2 logo_3 logo_4"
        "logo_5 logo_6 logo_7 logo_8"
        "logo_9 logo_10 logo_11 logo_12"
        "logo_13 logo_14 logo_15 logo_16";
}

.bland_list {
  margin: 0 auto;
	max-width: 880px;
	text-align: center;
	margin-top: -1%;
	margin-bottom: 10%;
}

.logo_1 { grid-area: logo_1; }
.logo_2 { grid-area: logo_2; }
.logo_3 { grid-area: logo_3; }
.logo_4 { grid-area: logo_4; }
.logo_5 { grid-area: logo_5; }
.logo_6 { grid-area: logo_6; }
.logo_7 { grid-area: logo_7; }
.logo_8 { grid-area: logo_8; }
.logo_9 { grid-area: logo_9; }
.logo_10 { grid-area: logo_10; }
.logo_11 { grid-area: logo_11; }
.logo_12 { grid-area: logo_12; }
.logo_13 { grid-area: logo_13; }
.logo_14 { grid-area: logo_14; }
.logo_15 { grid-area: logo_15; }
.logo_16 { grid-area: logo_16; }


.logo_1,.logo_2,.logo_3,.logo_4,.logo_5,.logo_6,.logo_7,.logo_8,.logo_9,.logo_10,.logo_11,.logo_12,.logo_13,.logo_14,.logo_15,.logo_16 {
	width: 70%;
	margin: auto;
}





/*================================
その他の記事の記述
=================================*/

.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    /* grid-template-rows: 200px; */
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }

.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 7% auto 1%;
	font-size: 16px;
}

.other_details {
font-size: 15px;
text-align-last: left;	
}

/*================================
注釈の記載
=================================*/

.mini {
  font-size: 14px;
margin-bottom: 5%;	
}



/*================================
tablet
=================================*/
@media(max-width: 834px){
#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 5% auto 0;
  }	
	
.top {
    line-height: 2.0;
    font-size: 14px;
    font-weight: 400;
    margin: 7% auto;
	max-width: 80%;
}	
	
.span_2 {
    color: #81cde2;
    font-size: 15px;
    font-weight: 700;
}	
	
/*===================================
リストボタン
===================================*/
.list_btn {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-template-rows: 100%;
    gap: 3% 2.5%;
    grid-auto-flow: row;
    grid-template-areas: "top_btn-1 top_btn-2 top_btn-3 top_btn-4";
    max-width: 660px;
    text-align: center;
    margin: 0 auto;
	margin-bottom: 8%;
}

	.list_btn-1, .list_btn-2, .list_btn-3, .list_btn-4 {
	max-width: 155px;
    text-align: center;
    line-height: 1.5;
    border-radius: 10px 10px 10px 10px;
    padding: 0.2em;
	color: #FFFFFF;
	background: linear-gradient(-225deg, #2CD8D5 0%, #C5C1FF 56%, #FFBAC3 100%);
	}

/*===================================
テキスト
===================================*/
	
.title {
    font-size: 16px;
    margin: 5% auto 1%;
    font-weight: 600;
}
	
.text {
    font-size: 14px;
    margin-bottom: 4%;
}
	
/*===================================
商品横並びのコンテナー
===================================*/	
.image_width {
    max-width: 688px;
    text-align: center;
	margin: 0 auto;	}
	
.image_width_2 {
    max-width: 688px;
    text-align: center;
	margin: 2% auto 2%;
	}
	
/*===================================
商品の小画像＆詳細
===================================*/
.ex_1, .ex_2, .ex_3, .ex_4 {
    font-size: 9px;
}	
	
.image_detail {
    display: grid;
    grid-template-columns: 37px 114px 37px 114px 37px 114px 37px 114px;
    grid-template-rows: 45px;
    gap: 12px 12px;
    grid-auto-flow: row;
    grid-template-areas: "img_small_1 ex_1 img_small_2 ex_2 img_small_3 ex_3 img_small_4 ex_4";
    max-width: 688px;
    text-align: center;
	margin: 2% auto 1% auto;
	}
	
/*===================================
ボタン系
===================================*/
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}
	
	
a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 330px;
    height: 45px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 5% auto 3% auto;	
	}	
	
	
/*================================
注釈の記載
=================================*/	
	
.mini {
    font-size: 12px;
    margin-bottom: 6%;
}	

/*================================
その他の記事の記述
=================================*/
.other {
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    gap: 2% 2.7%;
    grid-auto-flow: row;
    grid-template-areas: "other-1 other-2 other-3 other-4";
    text-align: center;
    margin: 0 auto;
    max-width: 85%;
	
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }


.other_title {
	 text-align: left;
    max-width: 85%;
	margin: 7% auto 1%;
	font-size: 14px;
}
	}




	
/*===================================
SMP
====================================*/

@media (max-width: 480px) {
#Area .imageArea ul.row-fluid {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
	
.inner  {
	width: 100%;
}
	
	
.border_1 {
	border-top: 1px solid #d1cbc2;
	width: 80%;
	margin: 20% auto 10% auto;
}	
	
.image_width {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid1 img_wid2"
    "img_wid3 img_wid4";
}

.img_wid1 { grid-area: img_wid1; }
.img_wid2 { grid-area: img_wid2; }
.img_wid3 { grid-area: img_wid3; }
.img_wid4 { grid-area: img_wid4; }
	
.image_width_2 {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 49% 49%;
  gap: 4% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "img_wid5 img_wid6"
    "img_wid7 img_wid8";
	margin-top: 7%;
}

.img_wid5 { grid-area: img_wid5; }
.img_wid6 { grid-area: img_wid6; }
.img_wid7 { grid-area: img_wid7; }
.img_wid8 { grid-area: img_wid8; }

	
/*===================================
リストボタン
===================================*/
	
.list_btn {
    display: grid;
    grid-template-columns: 48.5% 48.5%;
    grid-template-rows: 50% 50%;
    gap: 30% 3%;
    grid-template-areas: "list_btn-1 list_btn-2"
    "list_btn-3 list_btn-4";
    max-width: 323px;
    margin: 0 auto;
	text-align: center;
	margin-bottom: 23%;
	font-size: 13px;

}

.list_btn-1 { grid-area: list_btn-1; }
.list_btn-2 { grid-area: list_btn-2; }
.list_btn-3 { grid-area: list_btn-3; }
.list_btn-4 { grid-area: list_btn-4; }
	
.list_btn-1,.list_btn-2,.list_btn-3,.list_btn-4 {
	max-width: 155px;
    text-align: center;
    line-height: 1.2;
	border-radius: 10px 10px 10px 10px;
    padding: 0.5em;
    color: #FFFFFF;
    background: linear-gradient(-225deg, #2CD8D5 0%, #C5C1FF 56%, #FFBAC3 100%);
}
	
.list_btn span{
	font-size: 20px;
	font-family: Times,"Times New Roman"
	}	
	
	
/*===================================
ボタン系
===================================*/	
	
a.btn_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 14% auto 3% auto;	
	}
	
a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 75%;
    height: 40px;
    padding: 0 6% 0 6%;
    color: #000;
    font-size: 14px;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition-duration: 0.2s;
    margin: 7% auto 3% auto;	
	}	
	
.text {
    font-size: 14px;
    margin: 0 3% 7% 3%;		
}	
	
.title {
        font-size: 14px;
        margin: 18% 3% 1% 3%;
        font-weight: 600;
        width: 98%;
	}
	
.top {
        line-height: 2.0;
        font-size: 14px;
        font-weight: 400;
        margin: 9% auto 12%;
	max-width: 100%;
    }	
	
.top span {
	    font-size: 14px;
	}

.details {
	font-size: 12px;
	text-align: left;
}
	
/*================================
注釈の記載
=================================*/

.mini {
        font-size: 12px;
        width: 90%;
        margin: 16% auto 0;
        text-align: left;
    }
	
	
/*===================================
TOPブランドリスト画像
===================================*/


.bland_list {  display: grid;
  grid-template-columns: 48% 48%;
  grid-template-rows: 25% 25% 25% 25% 16% 9% 13% 13%;
  gap: 2% 4%;
  grid-auto-flow: row;
  grid-template-areas:
    "logo_1 logo_2"
    "logo_3 logo_4"
    "logo_5 logo_6"
    "logo_7 logo_8"
    "logo_9 logo_10"
    "logo_11 logo_12"
    "logo_13 logo_14"
    "logo_15 logo_16";
}
	
	
.bland_list {
  margin: 0 auto;
	max-width: 86%;
	text-align: center;
	margin-top: 5%;
	margin-bottom: 20%;
}

.logo_1 { grid-area: logo_1; }
.logo_2 { grid-area: logo_2; }
.logo_3 { grid-area: logo_3; }
.logo_4 { grid-area: logo_4; }
.logo_5 { grid-area: logo_5; }
.logo_6 { grid-area: logo_6; }
.logo_7 { grid-area: logo_7; }
.logo_8 { grid-area: logo_8; }
.logo_9 { grid-area: logo_9; }
.logo_10 { grid-area: logo_10; }
.logo_11 { grid-area: logo_11; }
.logo_12 { grid-area: logo_12; }
.logo_13 { grid-area: logo_13; }
.logo_14 { grid-area: logo_14; }
.logo_15 { grid-area: logo_15; }
.logo_16 { grid-area: logo_16; }

.logo_1,.logo_2,.logo_3,.logo_4,.logo_5,.logo_6,.logo_7,.logo_8,.logo_9,.logo_10,.logo_11,.logo_12,.logo_13,.logo_14,.logo_15,.logo_16 {
	width: 80%;
	margin: auto;
}	
	
	
	
	
	
/*================================
その他の記事の記述
=================================*/
	
.other {
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 50% 50%;
        gap: 3% 3%;
        grid-auto-flow: row;
        grid-template-areas:
        "other-1 other-2"
        "other-3 other-4";
        text-align: center;
        margin: 0 auto;
        max-width: 86%;
}

.other-1 { grid-area: other-1; }
.other-2 { grid-area: other-2; }
.other-3 { grid-area: other-3; }
.other-4 { grid-area: other-4; }
	
.other_title {
   text-align: left;
   max-width: 85%;
   margin: 17% auto 1%;
   font-size: 13px;
    }
	
.other_details {
font-size: 12px;
text-align: left;	
}
	
	
.spece_bottom {
 margin-bottom:40%;
}	
	
	
	
	
	
	}
	
	