@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700");
@charset "UTF-8";

#body-inside{
	overflow-x: hidden;
}

* {
	color: #444444;
	font-family: kozuka-gothic-pro, sans-serif;
	font-weight: 200;
	font-style: normal;
	font-size: 3.125vw;
	line-height: 200%;
	width: auto;
	margin-left: 0px;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}



/* --------------------------------------------------------------------
 * ## header
 * -------------------------------------------------------------------- */

/* 商品ヘッダー全体 */
.hd_all {
    width: 100%; /* 幅いっぱいを指定 */
    height: 10%; /* 高さを80pxに指定 */
    background: #ffffff; /* 背景色にグレーを指定 */
    box-sizing: border-box; /* padding分を含んで幅を100%にするため */
    position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
	z-index: 10000;/* 重なり順を一番上にする */
}

/* ヘッダーロゴ固定部分 */

.hd_menu {
	display: flex;
	justify-content: left;
	align-items: center;
	padding: 5px 40px 0;
	background: transparent;
	position: relative;
}
.logo {
	font-size: 20px;
	text-align: left;
	margin-left: -1rem;
	z-index: 11000;/* 重なり順を一番上にする */
}
.logo img {
	width: 7rem;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:-120%;
    left:0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
	background: #C1BCAE;
	background-image: -webkit-gradient(linear, left top, right top, from(#e3dd9a), to(#f9e3ee));
	background-image: -webkit-linear-gradient(left, #e3dd9a 0%, #f9e3ee 100%);
	background-image: linear-gradient(to right, #e3dd9a 0%, #f9e3ee 100%);
    /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 80%;
}
/*リストのレイアウト設定*/
#g-nav li{
    list-style: none;
    text-align: center;
	border-bottom: solid 0.15rem #FFFFFF; 
}
#g-nav li a{
    color: #444444;
    text-decoration: none;
    padding:16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
	font-size: 1.1rem;
    font-weight: bold;
}
.member .cap_text p {
    text-align: center;
	font-size: 1.2rem;
}
.member p span {
	font-family: 'Cinzel','Noto Serif JP', serif;
	font-size: 1.5rem;
	background: linear-gradient(transparent 50%, #fffd60 50%);
	border-bottom: solid 5px #fffd60;
	letter-spacing: 0.1rem;
	padding: 0 1rem;
}
.member .btn_red {
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
	border: none;
}
.member .btn_red span {
    font-size: 1.4rem;
    color: #b9232a;
    font-weight: 600;
    letter-spacing: .1rem;
    padding: 1rem 2rem;
	border: solid 0.1rem #b9232a;
    border-radius: 50px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height:50px;
}
/*×に変化*/  
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #444444;
    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;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* メニューのデザイン*/
.nav_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 100%;
	left: 0%; /* メニューを画面の外に飛ばす */
	z-index: 10000;
	background: #C1BCAE;
	transition: .5s;
	text-align: left;
	padding-left: 1.8rem;
}
.nav_content .logo {
	margin: 1.3rem 0 0;
}

/* メニュー黒ポチを消す */
.nav_menu {
    font-family: a-otf-ryumin-pr6n, serif;
    font-size: 0.8rem;
	line-height: 2.3rem;
    font-weight: 600;
	letter-spacing: .1rem;
	color: #665B3D;
	margin-bottom: 2rem;
	list-style: none;
}
.nav_menu  li a {
    font-family: a-otf-ryumin-pr6n, serif;
    font-size: 0.8rem;
    line-height: 2.3rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: #665B3D;
    margin-bottom: 2rem;
    list-style-type: none;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
	bottom: 0;/* メニューを画面に入れる */
}

.menu {
    font-family: a-otf-ryumin-pr6n, serif;
    font-size: 2rem;
	line-height: 3rem;
    font-weight: 600;
	letter-spacing: .1rem;
	color: #665B3D;
	margin: 1rem 0 2rem;
}
.menu a {
    font-size: 1rem;
    line-height: 3.3rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: #665B3D;
    margin-bottom: 2rem;
}

img {
    vertical-align: bottom;
}

h1 {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 3rem;
	color: #665B3D;
	letter-spacing: .1rem;
}

h1 .h101 {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 5rem;
	color: #665B3D;
	letter-spacing: .01rem;
}

h1 .h102 {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 2rem;
	line-height: 4rem;
	color: #665B3D;
}

h1 .h103 {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.3rem;
	line-height: 4rem;
	color: #444444;
}

/* -- イメージ02 -- */

.category .h1logo {
	width: 100%;
	max-width: 230px;
	margin: 6rem auto 1rem;
	text-align: center;
}

.category .h1logo img {
    width: 100%;
    /*height: 30rem;*/
    object-fit: cover;
    margin-top: -20px;/*画像上下の余白*/
}

.category  img {
    width: 100%;
    /*height: 30rem;*/
    object-fit: cover;
	margin: 5rem auto;
}

h2 {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.8rem;
	font-weight: 300;
	font-style: normal;
	line-height: 4rem;
    letter-spacing: .05em;
	margin-bottom: 2rem;
	
}

h3 {
	font-size: 2.1rem;
	font-weight: 600;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

h3 span {
	color: #665B3D;
	font-size: 1.7rem;
	font-weight: 500;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	padding-bottom: 0.5rem;
	border-bottom: solid 3px #665B3D;
}

h4 {
	font-size: 1.7rem;
	font-weight: 500;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}



h5 {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.8rem;
	font-weight: 300;
	font-style: normal;
	line-height: 4rem;
    letter-spacing: .05em;
	margin-bottom: 0.5rem;
}

.title_h5 {
	font-size: 1.7rem;
	font-weight: 600;
	font-style: normal;
	line-height: 2.5rem;
    letter-spacing: .05em;
	margin-bottom: 1rem;
	padding: 1rem 0.5rem 0.5rem;
	color: #665B3D;
	background-color: #E6E1D5;
}

p.circle {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.3rem;
	width: 5rem;
	height: 5rem;
	border: solid 1px;
	padding: 1rem 0;
	margin: 0 auto 1rem;
	border-radius: 50%;
}

.resizeimage img {
	margin: 80px auto 0;
}

   @media screen and (max-width: 560px) {

    .resizeimage img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-left: 0px;/*トップの画像ずらす*/
    }
    
    }

.wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.inner {
	margin: 0 5%;
	padding: 1.9rem 0.8rem;
}

.inner img {
    width: 60%;
}



header h2 {
	font-size: 2rem;
	color: #DFD9C5;
}


footer h2 {
	font-size: 1.8rem;
	color: #DFD9C5;
}



.title h2 {
	color: #AB9567;
}

.title p {
	color: #AB9567;
}

p.strong {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: .2rem;
}

p.big {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 2.8rem;
	letter-spacing: .4rem;
}

p.line {
    font-weight: 600;
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
    background-color: #FFFFFF;
    padding: 1.0rem;
    margin: 1.0rem 0;
}

p.date {
	font-weight: lighter;
    line-height: 2rem;
	font-size: 2rem;
	color: #444444;
	width: auto;
	text-indent: 0px;
    text-align: center;
    margin: 2rem 0 2rem;
}

.frame {
	font-size: 0.7rem;
	text-align: justify;
	padding: 1.0rem;
	margin: 0 3rem;
	border: solid 1px #444444;
}

.price1 span {
    font-size: 0.7rem;
    letter-spacing: 0.07rem;
    border: solid 0.05rem ;
    padding: 0.3rem;
	line-height: 4rem;
}

.price_sale {
	font-family: kozuka-gothic-pro, sans-serif;
	font-size: 3rem;
	font-weight: 800;
	line-height: 1rem;
	color: #b9232a;
}

.price2 {
    margin-bottom: 1.5rem;
}

.price2 span {
    font-size: 1.1rem;
    letter-spacing: 0.07rem;
	color: #ffffff;
	background-color: #b9232a;
    padding: 0.3rem 0.5rem;
}






/* よくある質問 */

.box2 {
    margin: 0 0 4rem;
    text-align: center;
}

.box3 {
    margin: 0 0.5rem;
    text-align: left;
}
.hidden_box {
    text-align: justify;
    padding: 1.0rem;
}

/*ボタン装飾*/
.hidden_box label {
    padding: 1.0rem;
    margin: 1.0rem 0;
    cursor :pointer;
    font-size: 1rem;
	line-height: 2.5rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #E6E1D5;
}

.hidden_box label:visited {
    background: #E6E1D5;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.hidden_show p {
    font-family: kozuka-gothic-pro, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.01rem;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 1.5rem 1.0rem 1.0rem;
    height: auto;
    opacity: 1;
}
.hidden_box span {
    border-bottom: solid 3px #AB9567;
    padding-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

p.a_text {
    font-family: kozuka-gothic-pro, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.a_text span {
    border-bottom: solid 3px #E6E1D5;
    padding-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.a_line{
    border: solid 1px #444444;
    padding: 1.0rem;
    margin: 0.5rem 0;
    font-size: 1.0rem;
    width: 80%;
}

.rogo {
    width: 8.5rem;
}


.inner .box_img img {
    width: 100%;
}




.icon_box {
    display:flex;
    justify-content: flex-start;
}
.icon {
    margin: 1.5rem 0.5rem;
}
.box_text2 {
    margin: 0.5rem;
    text-align: left;
}
.p_text2{
    text-align: justify;
    padding: 1.0rem;
    border: solid 1px;
}
.p_text3{
    text-align: left;
    ont-weight: 800;
    color: #665B3D;
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: solid 2px;
    display:inline-block
}

.list {
    list-style: none;
}
.list_box {
    width: 100%;
    padding: 2.0rem;
 }
.list_box img{
    width: 30%;
}
li {
    margin: 1.0rem;
}











/* ------------ ヘッダー ------------ */

header {
	text-align: center;
}

header img {
    width: 11.0rem;
    margin: 1.2rem 0 ;
}

p.top_cap {
	font-family: 'Cinzel','Noto Serif JP', serif;
	font-weight: lighter;
	font-size: 1.4rem;
	line-height: 1.5rem;
	color: #444444;
	padding: 0.5rem 0 0;
	width: auto;
    text-align: center;
	letter-spacing: 0.1rem;
	background: #E6E1D5;
}

p.top_cap img {
	margin-top: 0.9rem;
}

img.logo {
	width: 30%;
	margin: 2rem 0 3rem;
}


/* -- TOPに戻るボタン -- */

#page_top {
    position: fixed;
    right: 0px;
    bottom: 0px;
    margin: 0;
	z-index: 999;
    color: #FFFFFF
    
}

#page_top a{
    position: relative;
    display: flex;
    width: 65px;
    height: 65px;
    justify-content: center;
    background:#AB9567;/*背景の色を変える*/
    transition: opacity .6s ease;
    color: #FFFFFF;/*アイコンの色を変える*/
    align-items: center;
    text-decoration: none;
    font-size: 32px;
	text-align: center;
   
}

#page_top .fas {
    color: #FFFFFF;
	line-height: 1.5rem;
	
}

/* -- フォローするボタン -- */

.button {
	padding-top: 20px;
    text-align: center;
	
}

.button span {
	border-radius:5px;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
    letter-spacing: .1rem;
    padding: 0.8rem 2rem;
	
}

/* -- フェードイン -- */

.scroll-up {
    opacity: 0; 
    visibility: hidden;
    transform: translateY(50px);
    transition: all 1s;
}

.scroll-up.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/* ------------ 最初のテキスト ------------ */

.first_category {
	width: 100%;
	margin: 5rem auto;
	text-align: center;
}

.first_category .box {
	margin: 7rem 0 10rem;
}

.first_category .box p {
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.2rem;
	line-height: 4rem;
	letter-spacing: .1rem;
}

.info {
	background-color: rgba(255,255,255,0.6);
	margin: 5rem 2.3rem 10rem;
	padding: 0.5rem;
}
.info ul {
	margin: 1rem 1rem;
}
.info li {
	list-style:none;
	font-size: 1.2rem;
    padding-left: 1.2rem;
    text-indent: -1.2rem;
	text-align: justify;
}

/* ------------ カテゴリー ------------ */

.category {
	width: 100%;
	margin: 5rem auto 0;
	padding: 0 1rem 0 1.2rem;
	text-align: center;
}

.category .box4  {
	margin-top: -5rem;
}

.category h3{
	margin-bottom: 2rem;
}

.category .strong{
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.5rem;
	color: #AB9567;
	line-height: 3.5rem;
}

.category .strong2{
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.2rem;
	border-bottom: solid 2px #AB9567;
}

.category p{
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.2rem;
	line-height: 3.5rem;
	margin-bottom: 5rem;
}

.category .text{
	font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.2rem;
	line-height: 3.5rem;
	margin-bottom: 5rem;
	text-align: justify;
}

.category li {
	list-style:none;
	font-size: 1.3rem;
	margin-bottom: 3rem;
	line-height: 3rem;
	text-align: justify;
}

.category li p {
	font-size: 1.5rem;
	margin-bottom: 3rem;
	background-color: #665B3D;
	color: #ffffff;
	padding: 1rem 2rem;
	text-align: center;
}


.content.scroll-up {
	display: flex; /* 横並び配置 */
    align-items: flex-start; /* 子要素を上揃えに配置 */
	gap: 1.5rem; /* 画像とテキストの間にスペースを追加 */
	margin: 0 0 4rem;
	padding: 0 0.5rem;
}

.content.scroll-up img {
  display: block; /* 画像のデフォルト余白をリセット */
  align-self: flex-start; /* 画像を個別に上揃え */
	margin-top: 0.6rem;
	width: 55%; /* 画像サイズを調整 */
	height: auto; /* アスペクト比を維持 */
}

.content.scroll-up .text {
	font-size: 1.1rem; /* テキストのフォントサイズを調整 */
	color: #444444; /* テキストカラー */
	line-height: 2.3rem; /* 行間を調整 */
	margin: 0; /* 不要なマージンを削除 */
	text-align: justify;
}




.category_face {
	width: 100%;
	margin: 0 auto;
	padding: 0 0 4rem 4rem;
	text-align: center;
}


.face.scroll-up {
	display: flex;
	align-items: center;
	gap: 2rem; /* 画像と名前の間のスペース */
	margin: 3rem auto 5rem;
}

.image-container img {
	width: 130px; /* 画像の幅を調整 */
	height: auto; /* アスペクト比を維持 */
	border-radius: 50%; /* 丸型にしたい場合 */
    display: block; /* 画像周りの余計な空白を削除 */
}

.name-container {
	display: flex;
	flex-direction: column;
}

.name-container a {
	text-decoration: none;
}

.name-container .name {
    font-family: kozuka-gothic-pro, sans-serif;
	text-align: left;
	font-size: 1rem;
	color: #333;
	font-weight: bold;
}


/*.category .face {
	width: 100%;
	max-width: 400px;
	margin: 6rem auto 10rem;
	text-align: center;
}

.category .face img {
    width: 70%;
    object-fit: cover;
	border-radius: 100%;
	margin-bottom: 2rem;
}*/






.category1 {
	width: 100%;
	margin: 2rem 1rem;
	text-align: left;
}/*※の文字*/

.category1 p{
	font-size: 13px;
}/*※の文字大きさ*/

.category2 {
	width: 100%;
	margin: 2rem 2rem;
	text-align: left;
}/*アンバサダー特典3点*/

.category2_symbol {
	width: 100%;
	margin: 2rem 1rem;
	text-align: left;
}/*アンバサダー特典3点*/


.category3 {
	/*width: 100%;*/
	margin: 2rem 2rem;
	text-align: left;
}/*応募概要*/

.category4 {
	/*width: 100%;*/
	margin: 2rem 2rem;
	text-align: left;
}/*応募概要*/

.category5 {
	width: 80%;
	margin: 5rem auto 0;
	text-align: center;
	margin-bottom: -100px;
	
}/*アンバサダーロゴ*/

.category .title {
	padding: 0 1rem;
}

.title02 h2 {
    position: relative;
	margin: -3rem 2rem 5rem;
    padding: 1rem 1rem;
	color: #ffffff;
	font-size: 2.2rem;
	line-height: 4rem;
    text-align: center;
	background-color: #AB9567;
}

/*.title02 h2::before,
.title02 h2::after {
    position: absolute;
    top: -3px;
    width: 20px;
    height: 100%;
    content: '';
    border-top: solid 2px;
    border-bottom: solid 2px;
}

.title02 h2::before {
    border-left: solid 3px;
    left: 0;
}

.title02 h2::after {
    border-right: solid 3px;
    right: 0;
}*/





.category .title03  p {
	font-size: 1.2rem;
	color: #444444;
	font-weight: 500;
	padding-top : -10px;
}

.category .title03  .text_small {
	font-size: 1.2rem;
	color: #444444;
	font-weight: 500;
	padding-top : 20px;
	margin-bottom : -20px;
	line-height: 2.1rem;
}





.category .box {
	margin: 7rem 0 5rem;
}


.category .box p {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.2rem;
	line-height: 3.5rem;
	margin-top: -50px;
}

.category2 .box2 p {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.4rem;
	line-height: 3.5rem;
}

.category2_symbol {
	margin: auto 0;
	padding: 0 1rem;
}
.category2_symbol .box2_symbol p {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.2rem;
	line-height: 3.5rem;
	margin: 10px;
}

.category2_symbol .box2_symbol span {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.2rem;
	line-height: 3.5rem;
	/*margin: 10px;*/
	border-bottom: solid 2.8px #E6E1D5;
	
}

.category2_symbol .box2_symbol img {
    margin-right: 10px;
    margin-top: 30px;
    width: 15%;
}

/*.category4   {
	border-bottom: solid;
	padding-bottom:1rem;
	color: #E6E1D5;
}*/


.category3 .box3 h2 {
	line-height: 3.5rem;
}

.category3 .box3 p {
	font-size: 1.2rem;
	line-height: 2.7rem;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	
}

.category3 .box3 .small {
	text-align: left;
	font-size: 0.98rem;
	line-height: 1.5rem;
	margin: 1rem 0;
	
}

.category3 .box3 .prof {
	text-align: justify;
	margin-bottom: 1rem;
}

.category3 .box3 .prof p {
	font-size: 1.1rem;
	line-height: 2rem;
	margin-left: 1.4rem;
	text-indent: -1.4rem;
}

.category3 .box3 img {
	text-align: center;
	width: 80%;
	border-radius: 100%;
}

.category3 .box3 .name {
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2rem;
	color: #AB9567;
	margin-top: 1rem;
}

.category3 .box3 .name span {
	font-weight: 600;
	font-size: 1.2rem;
	line-height: 2rem;
	color: #AB9567;
	margin-top: 1rem;
}

.category3 .box3 .main {
	font-size: 1.5rem;
	line-height: 3rem;
	font-weight: 600;
	color: #444444;
}

.category3 .box3 .main2 {
	font-size: 1.5rem;
	line-height: 3rem;
	font-weight: 600;
	color: #444444;
}

.category3 .box3 span {
	font-size: 1.1rem;
	line-height: 2.5rem;
	color: #b9232a;
}

.category3 .box3 .cate_list {
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.category3 .box3 .cate_list p {
	font-size: 1.2rem;
	line-height: 1rem;
	margin-left: 1.2rem;
	text-indent: -1.2rem;
	margin-bottom: 0.5rem;
}

.category4 .box3 span {
	font-size: 1.1rem;
	line-height: 2.5rem;
	color: #b9232a;
}

.category3 .box3 .cate_list2 {
	margin-top: 1rem;
	margin-bottom: 3rem;
}

.category3 .box3 .cate_list2 p {
	font-size: 0.9rem;
	line-height: 1.8rem;
	margin-left: 1.2rem;
	text-indent: -1.2rem;
	margin-bottom: 0.5rem;
}

.category4 .box3 h2 {
	line-height: 3.5rem;
}

.category4 .box3 p {
	font-size: 1.2rem;
	line-height: 2.3rem;
	margin-left: 1.3rem;
	text-indent: -1.3rem;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	
}

.category4 .box3 span {
	font-size: 1.1rem;
	color: #b9232a;
	font-weight: 600;
	border-bottom: solid 1px #b9232a;
}

.category4 .box3 .cate_list p {
	font-size: 0.9rem;
	line-height: 1.8rem;
	margin-left: 1.2rem;
	text-indent: -1.2rem;
	margin-bottom: 0.5rem;
}

/* ------------ アイテムイメージ ------------ */

/* -- イメージ01 -- */

.category .item_image01 {
	width: 100%;
	margin: 0 0 6rem 0;
	text-align: left;
}

.category .item_image01 img {
	width: 80%;
	height: 30rem;
	object-fit: cover;
}

.category .item_image01:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* -- イメージ01 -- */

/* -- イメージ02 -- */

.category .item_image01 {
	width: 100%;
	margin: 0 0 6rem 0;
	text-align: center;
}

.category .item_image01 img {
    width: 100%;
    /*height: 30rem;*/
    object-fit: cover;
    margin-top: -20px;/*画像上下の余白*/
}

.category .item_image01:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    width: auto;
}


/* -- イメージ02 -- */

.category .item_image02 {
	width: 100%;
	max-width: 600px;
	margin: 6rem auto 10rem;
	text-align: center;
}

.category .item_image02 img {
    width: 100%;
    /*height: 30rem;*/
    object-fit: cover;
    margin-top: -20px;/*画像上下の余白*/
}


/* -- イメージ02 -- */

.category .item_image02_1 {
	width: 100%;
	margin: 0 0 6rem 0;
	text-align: right;
}

.category .item_image02_1 img {
    width: 100%;
    /*height: 30rem;*/
    object-fit: cover;
    margin-top: 90px;/*画像上下の余白*/
}

.category .item_image02_1:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}



/* -- イメージ03 -- */

.category .item_image03 {
	width: 100%;
	margin: 0 0 6rem 0;
	text-align: center;
}

.category .item_image03 img {
	width: 70%;
	height: auto;
	object-fit: cover;
}

.category .item_image03:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


/* --------------------------------------------------------------------
 * ## modalArea
 * -------------------------------------------------------------------- */

/* モーダルボタン */
#openModal {
  position: absolute;
  left: 50%;
  transform:translate(-50%,-50%);
	margin-top: -4rem;
}
#openModal2 {
  position: absolute;
  left: 50%;
  transform:translate(-50%,-50%);
	margin-top: -4rem;
}
#openModal3 {
  position: absolute;
  left: 50%;
  transform:translate(-50%,-50%);
	margin-top: -4rem;
}
#openModal4 {
  position: absolute;
  left: 50%;
  transform:translate(-50%,-50%);
	margin-top: -4rem;
}
.lead {
	text-align: center;
	color: #b9232a;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: .1rem;
	width: 25rem;
	padding: 0.5rem;
	border: solid 1px #b9232a;
	background-color: #F5F3ED;
	margin-bottom: 2rem;
}
.lead i {
	width: 2rem;
	color: #b9232a;
	vertical-align: -1px;
}

/* モーダル中身 */
.modalScroll,
.ScrollContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 12100;
}
.modal2 {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 12100;
}
.modal3 {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 12100;
}
.modal4 {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 12100;
}
.modal_bg {
  background: rgba(0, 0, 0, 0.32);
  height: 100vh;
  position: absolute;
  width: 200%;
  left: -100%;
}
.js-modal-close {
  color: #555;
}
.modalScroll {
  background: #fff;
  height: 600px;
  width: 90%;
  max-height: 800px;
  padding: 1rem;
  border-radius: 20px;
}
.ScrollContent {
  overflow-y: scroll;
  height: 90%;
  width: 100%;
  border-radius: 20px;
}
::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
  border-radius: 10px;
}

.modal_content {
  color: rgb(49, 49, 49);
  text-align: center;
  text-align: center;
  padding: 1rem 0;
}



/*------------下段アイテム詳細------------*/

.product {
	overflow: hidden;
	padding-top: -1rem;
    margin-bottom: -3rem;
}
.product .item_detail {
	width: 100%;
	margin: 0 auto 12rem;
	padding: 7px;
	max-width: 750px;
	justify-content:center;
	background-color: #FFFFFF;
}

.product1 .item_detail1 {
	width: 80%;
	margin: -10rem auto 8rem;
	max-width: 750px;
	justify-content:center;
	border: solid 1px #C1BCAE;
	background-color: #FFFFFF;
}

.product2 .item_detail1 {
	width: 80%;
	margin: 0 auto 8rem;
	max-width: 750px;
	justify-content:center;
	border: solid 1px #C1BCAE;
	background-color: #FFFFFF;
}

.product2 .item_detail2 {
	width: 80%;
	margin: 0 auto 18rem;
	max-width: 750px;
	justify-content:center;
	border: solid 1px #E6E1D5;
	background-color: #E6E1D5;
}

.product .item_all {
	text-align: center;
	display: flex;
  	align-items:center;
}

.product1 .item_all {
	text-align: center;
	display: flex;
  	align-items:center;
}



.item_all .item_box {
	font-size: 0.8rem;
	letter-spacing: 0.1rem;
	font-weight: 600;
	display: inline-block;
	padding: 1.2rem 1rem;
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

.item_all1 .item_photo {
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
    display: inline-block;
    padding: 1.2rem 1rem;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.item_all1 .item_box1 {
	font-size: 0.8rem;
	letter-spacing: 0.1rem;
	font-weight: 600;
	display: inline-block;
	padding: 1.2rem 1rem;
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}



.item_box1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
}

.item_box1:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.item_box1:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}

.item_box1 p {
  margin: 0;
  padding: 0;
}

.item_box2 p{
	font-size: 1.3rem;
	line-height: 2.8rem;
	padding-bottom: 10px;
}/*インスタフォローする*/




.item_all1 .item_box2 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #ffffff;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*白四角*/
 
.item_all1 .item_box2 :before {
    content: "";
    position: absolute;
    bottom: -112px;
    left: 17%;
    border-width: 50px 95px;
    border-color: #C1BCAE transparent transparent transparent;
    border-style: solid;
	
	
}/*白矢印*/


.item_all1 .item_box2 :after {
    content: "";
    position: absolute;
    bottom: -111px;
    left: 17%;
    border-width: 50px 95px;
    border-color: #FFFFFF transparent transparent transparent;
    border-style: solid;
	
	
}/*白矢印*/



.item_all2 {
	background: #E6E1D5;
}


.item_box3 p{
	font-size: 1.3rem;
	line-height: 2.8rem;
	padding-bottom: 10px;
}
.item_all2 .item_box3 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #E6E1D5;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*茶色四角*/
 
.item_all2 .item_box3 :before {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 17%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
}/*茶色矢印*/


.item_all2 .item_box3 img {
	border: solid 4px #665B3D;
    width: 50%;
}


/*.item_all2 .item_box3 :after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 20%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
	
	
}茶色矢印*/

.product2 .item_detail2 img {
    width: 50%;

	
}

.item_all3 .item_box4 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #ffffff;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*白四角*/

.item_box4 p{
	line-height: 2.0rem;
	font-size: 1.3rem;
	line-height: 2.8rem;
	padding-bottom: 10px;
}/*エントリーフォーム*/


.entry{
	text-align: center;
	line-height: 2.0rem;
	padding: -10px;
}
.big{
	font-size:1.4rem; 
	text-align: center;
	padding-top: -10px;
}

.attention { 
	padding: 1rem aute;
	margin: -5rem 0 10rem;
	border: 2px solid #b9232a;
	
}


.item_box h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.item_photo h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.item_photo img {
	width: 50%;
	
}


.item_box1 h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.item_box1 img {
	width: 15%;
}


.product .item_detail img {
	width: 95%;
	height: auto;
}

.product .item_detail:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.product .item_detail h4 {
	font-size: 0.9rem;
	font-weight: 600;
    text-align: center;
	margin-bottom: 1.5rem;
}

.product .item_detail .item_price {
	font-size: 1.5rem;
}




.product1 .item_detail1 img {
    width: 15%;
    height: auto;
    margin-bottom: 20px;
	
}/*インスタアイコン*/


.product2 .item_detail2 img {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
    text-align: center;
}/*インスタ載せるバナー*/


.product1 .item_detail1:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.product2 .item_detail2:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}


.product1 .item_detail1 h4 {
	font-size: 0.9rem;
	font-weight: 600;
    text-align: center;
	margin-bottom: 1.5rem;
}

.product1 .item_detail1 .item_price {
	font-size: 1.5rem;
}

.product2 .item_detail2 h4 {
	font-size: 0.9rem;
	font-weight: 600;
    text-align: center;
	margin-bottom: 1.5rem;
}

.product2 .item_detail2 .item_price {
	font-size: 1.5rem;
}

/* -- フォローするボタン -- */

.button {
	padding-top: 30px;
	margin-bottom: 2rem;
    text-align: center;
}

.button span {
	border-radius: 50px;
    font-size: 1.1rem;
    color: #FFFFFF;
    background-color: #b9232a;
    font-weight: 600;
    letter-spacing: .2rem;
    padding: 1.2rem 3rem;
	
}

.btn {
	padding-top: 40px;
	margin-bottom: 2rem;
    text-align: center;
}
.btn span {
	border-radius: 50px;
    font-size: 1.1rem;
    color: #FFFFFF;
	background-image: -webkit-gradient(linear, left top, right top, from(#8a92d2), to(#e18cc8));
	background-image: -webkit-linear-gradient(left, #8a92d2 0%, #e18cc8 100%);
	background-image: linear-gradient(to right, #8a92d2 0%, #e18cc8 100%);
    font-weight: 600;
    letter-spacing: .1rem;
    padding: 1.2rem 5rem;
}

.btn4 {
	padding-top: 40px;
	margin-bottom: 4rem;
	margin-top: -6rem;
    text-align: center;
}
.btn4 span {
	border-radius: 50px;
    font-size: 1.1rem;
    color: #FFFFFF;
	background-image: -webkit-gradient(linear, left top, right top, from(#8a92d2), to(#e18cc8));
	background-image: -webkit-linear-gradient(left, #8a92d2 0%, #e18cc8 100%);
	background-image: linear-gradient(to right, #8a92d2 0%, #e18cc8 100%);
    font-weight: 600;
    letter-spacing: .1rem;
    padding: 1.2rem 5rem;
}

.btn2 {
	border-radius: 10px;
	background-image: -webkit-gradient(linear, left top, right top, from(#8a92d2), to(#e18cc8));
	background-image: -webkit-linear-gradient(left, #8a92d2 0%, #e18cc8 100%);
	background-image: linear-gradient(to right, #8a92d2 0%, #e18cc8 100%);
    font-weight: 600;
    letter-spacing: .1rem;
    padding: 1.2rem 1.5rem;
	margin: auto 9%;
}
.btn2 a {
    display: block;
    width: 100%;
    height: 100%;
	
}
.btn2 span {
    font-size: 1.5rem;
	font-weight: 600;
    color: #FFFFFF;
}
.btn2 p i {
    font-size: 1.3rem;
    color: #FFFFFF;
}
.btn2 p {
    font-size: 1.3rem;
	font-weight: 400;
    color: #FFFFFF;
}


/* ------------ 背景色 ------------ */


.space {
	margin: 9rem 0;
}

.backglound1 {
    background: #ffffff;
    margin: 5rem -200% 5rem;
    padding: 5rem 200%;
    text-align: center;
}
.backglound2 {
    background: #E6E1D5;
    margin: 0 -200% 0rem;
    padding: 5rem 200%;
	padding-bottom: 3rem;
    text-align: center;
}


.backglound3 {
    background: #ffffff;
    margin: 0 -200% 4rem;
    padding: 4rem 200%;
    text-align: center;
}

.backglound4 {
    background: #E6E1D5;
    margin: 0 -200% 0rem;
    padding: 3rem 200%;
	padding-bottom: 5rem;
    text-align: center;
}

.backglound5 {
    background: #ffffff;
    margin: 0 -200% 5rem;
    padding: 5rem 200%;
    text-align: center;
}

.backglound6 {
    background: #E6E1D5;
    margin: 0 -200% 0rem;
    padding: 3rem 200%;
	padding-bottom: 0rem;
    text-align: center;
}

.backglound7 {
    background: #ffffff;
    margin: 0 -200% 5rem;
    padding: 5rem 200%;
	padding-top: 5rem; 
    text-align: center;
}

.pin{
	color: #b9232a;
	font-size: 1.2em !important;
	padding: 10px;
	margin-right: 4px;
}

.fa-check{
	font-size: 1.1em !important;
	padding: 10px;
	color: #b9232a;
	
}


/* ------------------------------------------------------------------- 
 * ## footer
 * ------------------------------------------------------------------- */

footer {
	text-align: center;
}
footer h2 {
	font-size: 1.8rem;
    font-family: a-otf-ryumin-pr6n, serif;
	margin: 8rem 0 1rem;
}
footer .english {
	font-size: 1.3rem;
	letter-spacing: .08rem;
}
a.contact {
	display: inline-block;
	width: 5rem;
	height: 5rem;
	border: 1px solid #665B3D;
	border-radius: 50%;
	margin: 2rem 0.5rem;
}
footer i.fa {
	font-size: 1.9rem;
	color: #665B3D;
	line-height: 5rem;
}
p.tel {
    font-family: a-otf-ryumin-pr6n, serif;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}
footer span{
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: .1rem;
	color: #665B3D;
	padding: 0.5rem 1rem;
	border: solid 1px #665B3D;
}
p.tel_no {
    font-family: a-otf-ryumin-pr6n, serif;
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: .3rem;
	color: #665B3D;
}
p.mail {
	font-size: 1.3rem;
	margin-bottom: 0.6rem;
}
footer .logo {
	width: 50%;
}
p.copyright {
	font-size: 1rem;
}



@media screen and (min-width: 560px) {
	
* {
    font-size: 16px;
    line-height: normal;
}
	

.logo {
	font-size: 30px;
}

.resizeimage img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}
	
.inner img {
    width: 40%;
}
    
img.logo {
	width: 10rem;
	margin-top: 2rem;
	margin-right: 0;
	margin-left: 0;
}
	
.category1 {
	width: 100%;
	margin: 2rem 2rem;
	text-align: left;
}/*※の文字*/

.category1 p{
	font-size: 16px;
}/*※の文字大きさ*/

	
.category2_symbol .box2_symbol p {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.6rem;
	line-height: 3.5rem;
	margin: 10px;
	
}

.category2_symbol .box2_symbol span {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.6rem;
	line-height: 3.5rem;
	/*margin: 10px;*/
	border-bottom: solid 2.8px #E6E1D5;
	
}

.category2_symbol .box2_symbol img {
    margin-right: 30px;
    margin-top: 30px;
	
    width: 12%;
}
	
	
.item_all1 .item_box2 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #ffffff;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*白四角*/
 
.item_all1 .item_box2 :before {
    content: "";
    position: absolute;
    bottom: -117px;
    left: 30%;
    border-width: 50px 95px;
    border-color: #C1BCAE transparent transparent transparent;
    border-style: solid;
	
	
}/*白矢印*/


.item_all1 .item_box2 :after {
    content: "";
    position: absolute;
    bottom: -116px;
    left: 30%;
    border-width: 50px 95px;
    border-color: #FFFFFF transparent transparent transparent;
    border-style: solid;
	
	
}/*白矢印*/

.item_all2 {
	background: #E6E1D5;
}



.item_all2 .item_box3 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #E6E1D5;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*茶色四角*/
 
.item_all2 .item_box3 :before {
    content: "";
    position: absolute;
    bottom: -117px;
    left: 30%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
	
	
}/*茶色矢印*/


/*.item_all2 .item_box3 :after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 20%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
	
	
}茶色矢印*/


.item_all3 .item_box4 {
	
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #ffffff;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*白四角*/

.item_all2 {
	background: #E6E1D5;
}

.item_all2 .item_box3 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #E6E1D5;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*茶色四角*/
 
.item_all2 .item_box3 :before {
    content: "";
    position: absolute;
    bottom: -117px;
    left: 30%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
}/*茶色矢印*/

	
	
	
    
}


@media screen and (min-width: 960px) {
	

.logo {
	font-size: 30px;
}
    
.resizeimage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
	
.inner img {
    width: 40%;
}
    
img.logo {
	width: 10rem;
	margin-top: 2rem;
	margin-right: 0;
	margin-left: 0;
}

.category1 {
	width: 100%;
	margin: 2rem 2rem;
	text-align: left;
}/*※の文字*/

.category1 p{
	font-size: 18px;
}/*※の文字大きさ*/	

.category2_symbol .box2_symbol p {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.8rem;
	line-height: 3.5rem;
	margin: 10px;
	
}

.category2_symbol .box2_symbol span {
	/*font-family: a-otf-ryumin-pr6n, serif;*/
	font-size: 1.8rem;
	line-height: 3.5rem;
	/*margin: 10px;*/
	border-bottom: solid 2.8px #E6E1D5;
	
}

.category2_symbol .box2_symbol img {
    margin-right: 30px;
    margin-top: 30px;
    width: 8%;
}	
	
.item_all1 .item_box2 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #ffffff;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*白四角*/
 
.item_all1 .item_box2 :before {
    content: "";
    position: absolute;
    bottom: -117px;
    left: 37%;
    border-width: 50px 95px;
    border-color: #C1BCAE transparent transparent transparent;
    border-style: solid;
	
	
}/*白矢印*/


.item_all1 .item_box2 :after {
    content: "";
    position: absolute;
    bottom: -116px;
    left: 37%;
    border-width: 50px 95px;
    border-color: #FFFFFF transparent transparent transparent;
    border-style: solid;
	
	
}/*白矢印*/

.item_all2 {
	background: #E6E1D5;
}



.item_all2 .item_box3 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #E6E1D5;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*茶色四角*/
 
.item_all2 .item_box3 :before {
    content: "";
    position: absolute;
    bottom: -117px;
    left: 37%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
	
	
}/*茶色矢印*/
	
.product2 .item_detail2 img {
    width: 50%;

	
}

/*.item_all2 .item_box3 :after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 20%;
    border-width: 50px 95px;
    border-color: #E6E1D5 transparent transparent transparent;
    border-style: solid;
	
	
}茶色矢印*/


.item_all3 .item_box4 {
    margin: 1rem ;
    width: 95%;
    padding: 2rem 1rem ;
	background: #ffffff;
	text-align: center;
    font-size: 1.2em; /* テキストの指定 */
	font-weight: 600;
	color: #665B3D;
    position: relative;
}/*白四角*/


.modalScroll {
  background: #fff;
  height: 600px;
  width: 600px;
  max-height: 800px;
  padding: 1rem;
  border-radius: 20px;
}

	
}
