@charset "utf-8";

/*===============================================
●画面の横幅が769px以上
===============================================*/
@media screen and (min-width : 769px ){
#pc------------------------------------------- {
}
.snav ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.snav ul li a {
  display: block;
  position: relative;
  background: #edead1; /* ベージュ背景 */
  width: 380px;
  height: 85px;
  line-height: 70px;
  border-radius: 20px;
  text-align: center;
  font-size: 24px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
.snav ul li a:hover {
	opacity: 0.7;
	transition: 0.3s;
}

/* ▼ CSSで作る矢印 */
.snav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 12px;
  height: 12px;

  border-left: 2px solid #c5b36d;  /* 薄い金色 */
  border-bottom: 2px solid #c5b36d;

  transform: translateX(-50%) rotate(-45deg);
}





#kinds h2 {
	font-size: 29px;
	height: 100px;
	background-color: #EEECD6;
	margin-top: 80px;
	line-height: 100px;
	margin-bottom: 80px;
}
#kinds .flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 150px;
}
#kinds .flex.left {
	flex-direction: row-reverse;
}
#kinds .flex div.text {
	width: 514px;
}
#kinds .flex div.text h3 {
	font-size: 26px;
	margin-bottom: 20px;
}
#kinds .flex div.text h3+p {
	font-size: 17px;
	color: #393939;
	text-align: left;
	margin-bottom: 40px;
}
#kinds .flex div.text ul li {
	width: 514px;
	height: 75px;
	line-height: 75px;
	border-radius: 100px;
	background-color: #EEECD6;
	margin-bottom: 25px;
	font-size: 23px;
	text-align: left;
}
#kinds .flex div.text ul li span {
	color: #a66400;
	margin-left: 50px;
	margin-right: 30px;
}
.butsudan-slider {
  width: 528px;
}

.butsudan-main img {
  width: 100%;
  display: block;
}

.butsudan-thumb {
  margin-top: 20px;
}

.butsudan-thumb .slick-slide {
  padding: 0 5px;
}

.butsudan-thumb img {
  width: 120px;
  height: 100px;
  cursor: pointer;
  filter: brightness(0.7)
}

.butsudan-thumb .slick-current img {
  filter: brightness(1);
}





#type h2 {
	font-size: 29px;
	height: 100px;
	background-color: #EEECD6;
	margin-top: 80px;
	line-height: 100px;
	margin-bottom: 145px;
}
#type .box {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
#type .box+.box {
	margin-top: 100px;
}
#type .flex {
	display: flex;
	justify-content: space-between;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	gap:35px;
	flex-direction: row-reverse;
	align-items: center;
}
#type .flex div h3 {
	font-size: 28px;
	text-align: center;
	margin-bottom: 25px;
}
#type .flex div p {
	color: #393939;
	font-size: 17px;
	line-height: 1.6em;
}
#type table {
	width: 965px;
	border-top: 1px solid #393939;
	border-left: 1px solid #393939;
	margin-top: 45px;
}
#type table tr:first-child th {
	background-color: #B7AA44;
	font-size: 26px;
	color: #fff;
	text-align: center;
	height: 55px;
}
#type table tr:not(:first-child) th {
	background-color: #EEECD6;
	text-align: center;
	font-size: 26px;
	height: 55px;
}
#type table th {
	border-right: 1px solid #393939;
	border-bottom: 1px solid #393939;
}
#type table td {
	border-right: 1px solid #393939;
	border-bottom: 1px solid #393939;
	font-size: 26px;
	text-align: center;
	width: 25%;
}

}



/*===============================================
●画面の横幅が768pxまで
===============================================*/
@media screen and (max-width:768px){
	
/*===============================================
●sp-tablet
===============================================*/
#sptablet------------------------------------------- {
}
.snav ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 94%;
  margin-left: auto;
	margin-right: auto;
}
.snav ul li {
	width: 48%;
}
.snav ul li a {
  display: block;
  position: relative;
  background: #edead1; /* ベージュ背景 */
  width: 100%;
  height: 15vw;
  line-height: 12vw;
  border-radius: 3vw;
  text-align: center;
  font-size: 4vw;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
.snav ul li a:hover {
	opacity: 0.7;
	transition: 0.3s;
}

/* ▼ CSSで作る矢印 */
.snav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3vw;
  width: 3vw;
  height: 3vw;

  border-left: 2px solid #c5b36d;  /* 薄い金色 */
  border-bottom: 2px solid #c5b36d;

  transform: translateX(-50%) rotate(-45deg);
}





#kinds h2 {
	font-size: 6vw;
	height: 25vw;
	background-color: #EEECD6;
	margin-top: 10vw;
	line-height: 25vw;
	margin-bottom: 10vw;
}
#kinds .flex {
	margin-left: 5vw;
	margin-right: 5vw;
	margin-bottom: 25vw;
}
#kinds .flex div.text {

}
#kinds .flex div.text h3 {
	font-size: 6vw;
	margin-bottom: 5vw;
}
#kinds .flex div.text h3+p {
	color: #393939;
	text-align: left;
	margin-bottom: 5vw;
}
#kinds .flex div.text ul li {
	height: 15vw;
	line-height: 15vw;
	border-radius: 100px;
	background-color: #EEECD6;
	margin-bottom: 5vw;
	font-size: 4.5vw;
	text-align: left;
}
#kinds .flex div.text ul li span {
	color: #a66400;
	margin-left: 8vw;
	margin-right: 3vw;
}
.butsudan-slider {
  width: 100%;
}

.butsudan-main img {
  width: 100%;
  height: auto;
  display: block;
}

.butsudan-thumb {
  margin-top: 20px;
}

.butsudan-thumb .slick-slide {
  padding: 0 5px;
}

.butsudan-thumb img {

  cursor: pointer;
  filter: brightness(0.7)
}

.butsudan-thumb .slick-current img {
  filter: brightness(1);
}





#type h2 {
	font-size: 6vw;
	height: 25vw;
	background-color: #EEECD6;
	margin-top: 10vw;
	line-height: 25vw;
	margin-bottom: 10vw;
}
#type .box {
	margin-left: 5vw;
	margin-right: 5vw;
	text-align: left;
}
#type .box+.box {
	margin-top: 15vw;
}
#type .flex {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
#type .flex div h3 {
	font-size: 6vw;
	text-align: center;
	margin-bottom: 5vw;
}
#type .flex div p {
	color: #393939;
	line-height: 1.6em;
	margin-bottom: 5vw;
}
#type table {
	width: 100%;
	border-top: 1px solid #393939;
	border-left: 1px solid #393939;
	margin-top: 5vw;
}
#type table tr:first-child th {
	background-color: #B7AA44;
	color: #fff;
	text-align: center;
	height: 12vw;
}
#type table tr:not(:first-child) th {
	background-color: #EEECD6;
	text-align: center;
	height: 12vw;
}
#type table th {
	border-right: 1px solid #393939;
	border-bottom: 1px solid #393939;
}
#type table td {
	border-right: 1px solid #393939;
	border-bottom: 1px solid #393939;
	text-align: center;
	width: 25%;
}
}



/*===============================================
●画面の横幅が400pxまで
===============================================*/
@media screen and (max-width:400px){
/*===============================================
●sp400
===============================================*/
#sp400------------------------------------------- {
}
}



/*===============================================
●画面の横幅が320pxまで
===============================================*/
@media screen and (max-width:320px){
/*===============================================
●sp320
===============================================*/
#sp320------------------------------------------- {
}
}



/*===============================================
●画面の横幅が481pxから768pxまで
===============================================*/
@media screen and (min-width:481px) and (max-width:768px) {
/*===============================================
●tablet
===============================================*/
#tab------------------------------------------- {
}
}