@charset "utf-8";
.titlebox2 {
  width: 100%;
  text-align: center;
  align-items: center;      /* flex が付いている前提 */
  justify-content: center;
  gap: 35px;
  padding: 0px 0 40px;
}

/* 見出し */
.titlebox2 .default_title {
  margin: 0;
  position: relative;
    
}

/* 見出し下の細いライン */
.titlebox2 .default_title::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #7b5b34;
  margin: 14px auto 0;
}


/* --- カード全体 --- */
.worries_b1 .worry_box {
  position: relative;
  z-index: 2;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  padding: 60px 10%;
  display: flex;
  flex-wrap: wrap;               /* 2カラムに並べる */
  gap: 20px 60px;                /* 行間 / 列間 */
}

/* --- 各行 --- */
.worries_b1 .worry_box .worry_item {
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(50% - 30px);
  padding: 0px 0 8px;
  border-bottom: 1px solid #e0e0e0;
    flex-wrap: nowrap;
}


/* --- アイコン（FontAwesome） --- */
.worries_b1 .worry_box .worry_item i {
  font-size: 20px;
  color: #A89778;                /* 丸＋チェックの色 */
  margin-right: 12px;
  flex: 0 0 auto;
}

/* --- テキスト --- */
.worries_b1 .worry_box .worry_item p {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
  margin: 0;
}

.cate3 .onlineshop_d1{
	padding-top: 80px;
}
.cate3 .onlineshop_d1 a{
	border-radius: 1000px;
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
	transition: ease 0.3s;
}
.onlineshop_d1 a.bg_img_wrap2::after{
	background: rgba(0, 0, 0, 0.6);
	transition: ease 0.3s;
}
.cate3 .onlineshop_d1 a:hover{
	opacity: 0.9;
	box-shadow: 0 0 10px rgba(0,0,0,0.9);
}
.cate3 .onlineshop_d1 a:hover.bg_img_wrap2::after{
	background: rgba(0, 0, 0, 0.1);
}
.cate3 .onlineshop_d1 .more{
	background-color: transparent;
}
.cate3 .onlineshop_d1 a .box{
	align-items: center;
}
/* ---------- 1280px 以下 ---------- */
@media screen and (max-width: 1280px) {

}

/* ---------- 1080px 以下 ---------- */
@media screen and (max-width: 1080px) {
  .worries_b1 .worry_box {
    padding: 60px 60px;
  }

  .worries_b1 .worry_box .worry_item {
    width: 100%;                 /* 画面狭くなったら1カラムでもOKなら */
  }
}

/* ---------- 768px 以下 ---------- */
@media screen and (max-width: 768px) {

}

/* ---------- 576px 以下 ---------- */
@media screen and (max-width: 576px) {
    .worries_b1 .worry_box {
        padding: 40px 40px;
    }
	.cate3 .onlineshop_d1 .more{
		margin-top: 0;
	}
}
