@charset "UTF-8";

/*----------------------------------------
	スライダー
----------------------------------------*/
.sliderWrap {
  width: 100%;
  /*max-width: 2000px;*/
  overflow: hidden;
  margin: 0 auto;
  height: auto;
}

.slider {
    width: 100%;
}
.slider img{
    height: auto;
    width: 100%;
}

.sliderThumb {
  width: 100%;
  max-width: 770px;
  margin: 15px auto 0;
  overflow: hidden;
  padding-bottom: 1px;
}

.sliderThumb li {
width: 32%;
max-width: 250px;
border: 1px solid #DED7C7;
padding: 4px;
}

.sliderThumb li img {
  width: 100%;
}

.sliderThumb li:nth-child(2) {
  margin: 0 10px;
}




@media screen and (max-width: 1080px) {
  .sliderThumb {
    max-width: 650px;
    margin: 15px auto 0;
    overflow: hidden;
    padding-bottom: 1px;
  }

  .sliderThumb li {
    max-width: 210px;
    border: 1px solid #DED7C7;
    padding: 3px;
  }

  .sliderThumb li:nth-child(2) {
    margin: 0 10px;
  }
}

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

  .sliderThumb {
    max-width: 410px;
    margin: 10px auto 0;
    overflow: hidden;
    padding-bottom: 1px;
  }

  .sliderThumb li {
    max-width: 130px;
    border: 1px solid #DED7C7;
    padding: 3px;
  }

  .sliderThumb li:nth-child(2) {
    margin: 0 10px;
  }
}


@media screen and (max-width: 450px) {
  .sliderThumb {
    max-width: 290px;
    margin: 10px auto 0;
    overflow: hidden;
    padding-bottom: 1px;
  }

  .sliderThumb li {
    max-width: 90px;
    border: 1px solid #DED7C7;
    padding: 1px;
  }

  .sliderThumb li:nth-child(2) {
    margin: 0 10px;
  }
}
/*----------------------------------------
	トップバナー
----------------------------------------*/
.topBnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4.6%;
}

.topBnr li {
  width: 47.5%;
}

.topBnr li img {
  width: 100%;
}

.topBnrSp {
  display: none;
}

@media screen and (max-width: 750px) {
  .topBnr {
    margin-bottom: 0;
  }
}


@media screen and (max-width: 480px) {
  .topBnrPc {
    display: none
  }

  .topBnrSp {
    display: flex;
  }
}

/*----------------------------------------
	トップ商品tab
----------------------------------------*/
.topTabList {
  display: flex;
  cursor: pointer;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3%;
}

.topTabList li {
  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s ease;
  border: 1px solid var(--main-color);
  cursor: pointer;
  padding: 12px 20px 10px;
  border-radius: 1000px;
  color: var(--main-color);
  margin: 0 5px 10px 5px;
  line-height: 120%;
}


.topTabList .active {
  background-color: var(--main-color);
  color: #fff;
}

.topTabCnt {
  display: none;
}

.topTabCnt.show {
  display: block;
  margin-top: 70px;
}

@media screen and (max-width: 950px) {
  .topTabList {
    display: flex;
    cursor: pointer;
    justify-content: center;
    flex-wrap: wrap;
  }

  .topTabList li {
    font-size: 13px;
    font-weight: bold;
    padding: 8px 12px 6px;
    margin: 0 4px 8px 4px;
  }
}

@media screen and (max-width: 750px) {
  .topTabCnt.show {
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  .topTabList li {
    font-size: 12px;
    font-weight: bold;
    padding: 8px 12px 6px;
    margin: 0 3px 6px 3px;
  }
  
  .topTabCnt.show {
    margin-top: 40px;
  }
}

/*----------------------------------------
	検索フォーム
----------------------------------------*/

.itemSearch {

}

.itemSearch form {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 460px;
  margin: auto;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.itemSearch input[type="text"]:focus {
  outline: 0;
}


.itemSearch input:first-child {
  flex-grow: 1;
  padding: 8px;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  height: 34px;
}

.itemSearch input:nth-child(2) {
  flex-basis: 36px;
  border: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: url("../images/common/search.png") no-repeat center center;
  background-size: 14px auto;
  height: 34px;
  cursor: pointer;
  outline: 0;  
}


.itemSearch input:nth-child(2)::before {
    content: "\e91f";
}





/*----------------------------------------
	トップ商品コンテンツ
----------------------------------------*/
.topItemCnt {
  margin-bottom: 15%;
}

.topItemList {
  display: flex;
  flex-wrap: wrap;
}

.topItemList > li {
  width: 22%;
  margin-right: 4%;
}

.topItemList > li:nth-child(4n) {
  margin-right: 0;
}

.topItemList > li:nth-child(n+5) {
  margin-top: 4%;
}

.topItemList li a {
  color: #333;
}

.topItemList li img {
  width: 100%;
}

.topItemList li h2 ,
.topItemList li h4 {
  font-weight: bold;
  margin-top: 30px;
}

.topItemList li a:hover {
  opacity: 1;
}

.topItemList li a:hover h2 ,
.topItemList li a:hover h4 {
  color: var(--main-color);
  text-decoration: underline;
  opacity: 1;
}

.topItemList li a:hover img {
  opacity: 0.7;
}

.topItemList li p span {
  font-weight: bold;
  color: var(--main-color);
  margin: 0 0 0 5px;
}


@media screen and (max-width: 750px) {
  .topItemList > li {
    width: 30%;
    margin-right: 5%;
  }
  
  .topItemList > li:nth-child(4n) {
    margin-right: 5%;
  }

  .topItemList > li:nth-child(3n) {
    margin-right: 0;
  }
  
  .topItemList > li:nth-child(n+5) {
    margin-top: 0;
  }

  .topItemList > li:nth-child(n+4) {
    margin-top: 5%;
  }
  
  .topItemTxt h3 {
     font-size: 18px;
  }
  
  .topItemTxt li {
    font-size: 11px;
    font-size: 1.6vw;
    border-radius: 5px;
    padding: 5px 4px 4px;
    margin-right: 2%;
  }
}

@media screen and (max-width: 480px) {
  .topItemList > li {
    width: 47.5%;
    margin-right: 5%;
    margin-top: 5%;    
  }
  
  .topItemList > li:nth-child(4n) {
    margin-right: 5%;
  }

  .topItemList > li:nth-child(3n) {
    margin-right: 5%;
  }
  
  .topItemList > li:nth-child(even) {
    margin-right: 0;
  }  
  
  .topItemList > li:nth-child(n+5) {
    margin-top: 0;
  }

  .topItemList > li:nth-child(n+4) {
    margin-top: 5%;
  }
  
  .topItemTxt h3 {
     font-size: 18px;
  }
  
  .topItemTxt li {
    font-size: 11px;
    font-size: 1.6vw;
    border-radius: 5px;
    padding: 5px 4px 4px;
    margin-right: 2%;
  }
}
/*----------------------------------------
	リンクボタン
----------------------------------------*/
.itemLinkBtn {
  margin: 70px auto 0;
  width: 100%;
  max-width: 300px;
}

.itemLinkBtn a {
  color: #fff;
  background: var(--main-color);
  font-weight: bold;
  padding: 20px 10px 18px;
  display: block;
  text-align: center;
  position: relative;
}

.itemLinkBtn a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -5px;
  transition: all .2s;
  width: 8px;
  height: 8px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.itemLinkBtn a:hover::after {
  right: .5em;
}

.linkBtn {
  
}

.linkBtn a {
  color: var(--main-color);
  font-weight: bold;
  padding: 16px 10px 14px;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 2px solid var(--main-color);
  line-height: 130%;
  width: 280px;
}

.linkBtn a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -4px;
  transition: all .2s;
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--main-color);
  border-right: solid 2px var(--main-color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.linkBtn a:hover {
  background: #F1FBFE;
  opacity: 1;
}

.linkBtn a:hover::after {
  right: .5em;
}


.linkBtn-2rows a {
	color: #fff;
  	background: var(--main-color);
  	font-weight: bold;
  	padding: 20px 10px 18px;
  	text-align: center;
  	position: relative;
	display: inline-block;
	width: 300px;
	margin: 5px 10px;
}

.linkBtn-2rows a::after {
	content: "";
	position: absolute;
	right: 1em;
	top: 50%;
	margin-top: -5px;
	transition: all .2s;
	width: 8px;
	height: 8px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (max-width: 480px) {
  .itemLinkBtn {
    width: 100%;
    max-width: 270px;
  }

  .itemLinkBtn a {
    padding: 16px 10px 14px;
  }

  .itemLinkBtn a::after {

  }
	
	
	.linkBtn-2rows a {
		width: 95%;
		max-width: 300px;
	}
  


  .linkBtn a {
    padding: 12px 10px 10px;
    width: 270px;  
  }
}




/*----------------------------------------
	ご利用の流れ
----------------------------------------*/

.topFlow ul {
  overflow: hidden;
}

.topFlow li {
  float: left;
  text-align: center;
  font-size: 14px;

}

.topFlow li a {
  display: block;
}

.topFlowTtl {
  margin-top: 10px;
  line-height: 140%;
  font-weight: bold;
}

.topFlowTxt {
  text-align: left;
  font-size: 13px;
  margin-top: 10px;
}

.topFlow li:nth-child(odd) {
  width: 21.25%;
}

.topFlow li:nth-child(odd) a {
  color: #333;
  text-decoration: underline;
}

.topFlow li:nth-child(odd) a:hover {
  text-decoration: none;
}

.topFlow li:nth-child(odd) img {
  width: 100%;
  max-width: 50px;
}

.topFlow li:nth-child(even) {
  width: 5%;
  margin-top: 0.5%;
  padding: 0.5%;
}

.topFlow li:nth-child(even) img {
  width: 100%;
  max-width: 11px;
}


@media screen and (max-width: 900px) {
  .topFlowTtl  {
    font-size: 14px;
    font-size: 1.5vw;
  }
  
  .topFlowTxt {
    font-size: 14px;
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 750px) {
  .topFlowTtl {
    font-size: 16px;
    font-size: 2.1333vw;
  }
  
  .topFlowTxt {
    font-size: 16px;
    font-size: 2.1333vw;
  }
  
  .topFlow li:nth-child(even) {
    width: 4%;
    margin-top: 1.5%;
    padding: 0.75%;
  }
}

@media screen and (max-width: 480px) {
  .topFlow li:nth-child(odd) {
    width: 20.5%;
  }

  .topFlowTtl {
    font-size: 10px;
  }
  
  .topFlowTxt {
    font-size: 10px;
  }  
  
  .topFlow li:nth-child(even) {
    width: 2%;
    padding: 0.25% 0.5% 0;
    margin: 2% 2% 0;
  }
}
/*----------------------------------------
	サービス
----------------------------------------*/
.topService {
  display: flex;
  flex-wrap: wrap;
}

.topService li {
  width: 32%;
  margin-right: 2%;
  text-align: center;
}

.topService li:nth-child(3n) {
  margin-right: 0;
}

.topService li:nth-child(n+4) {
  margin-top: 2%;
}

.topService li img {
  width: 100%;
}

.topService li p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.topService li a {
  color: #333;
}

@media screen and (max-width: 480px) {
  .topService {
    display: flex;
    flex-wrap: wrap;
  }

  .topService li {
    width: 48%;
    margin-right: 0;
    text-align: center;
  }

  .topService li:nth-child(odd) {
    margin-right: 4%;
  }

  .topService li:nth-child(n+4) {
    margin-top: 0;
  }
  
  .topService li:nth-child(n+3) {
    margin-top: 4%;
  }  

}
/*----------------------------------------
	よくある質問 
----------------------------------------*/
.topQuestion ul {
  overflow: hidden;
}

.topQuestion li {
  float: left;
  width: 32%;
  margin-right: 2%;

  border-radius: 4px;

}

.topQuestion li a {
  color: #333;
  font-size: 14px;
  line-height: 140%;
  vertical-align: middle;
  display: block;
  padding: 10px 10px 8px 40px;
  border: 3px solid #F0F0F0;  
}

.topQuestion li a:hover {
  opacity: 1;
}

.topQuestion li:nth-child(3n) {
  margin-right: 0;
}

.topQuestion li:nth-child(n+4) {
  margin-top: 2%;
}

.topQuestion li:nth-child(1) a {
  background: url("../images/common/qIcon01.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(2) a {
  background: url("../images/common/qIcon02.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(3) a {
  background: url("../images/common/qIcon03.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(4) a {
  background: url("../images/common/qIcon04.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(5) a {
  background: url("../images/common/qIcon05.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(6) a {
  background: url("../images/common/qIcon06.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(7) a {
  background: url("../images/common/qIcon07.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(8) a {
  background: url("../images/common/qIcon08.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(9) a {
  background: url("../images/common/qIcon09.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(10) a {
  background: url("../images/common/qIcon12.png") no-repeat left 10px center;
}

.topQuestion li:nth-child(11) a {
  background: url("../images/common/qIcon13.png") no-repeat left 10px center;
}

.topQuestion li a:hover {
  border: 3px solid #D1EDFC;
  background-color: #F1FBFE;
}

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

  .topQuestion li {
    float: left;
    width: 49%;
    margin-right: 2%;
  }
  
  .topQuestion li:nth-child(3n) {
    margin-right: 2%;
  }  

  .topQuestion li:nth-child(4n) {
    margin-right: 0;
  }

  .topQuestion li:nth-child(even) {
    margin-right: 0;
  }

  .topQuestion li:nth-child(n+3) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 520px) {
  .topQuestion li a {
    font-size: 13px;
  }
}

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

    .topQuestion li {
      float: none;
      width: 100%;
      margin-right: 0;
    }

    .topQuestion li:nth-child(4n) {
      margin-right: 0;
    }

    .topQuestion li:nth-child(3n) {
      margin-right: 0;
    }

    .topQuestion li:nth-child(n+1) {
      margin-top: 2%;
    }
    
  .topQuestion li a {
    font-size: 14px;
  }    
}
/*----------------------------------------
	サービス
----------------------------------------*/
.topAbout {
  display: flex;
}

.topAbout li {
  width: 30%;
  margin-right: 5%;
}

.topAbout li:nth-child(3n) {
  margin-right: 0;
}

.topAbout li img {
  width: 100%;
}

.topAboutTtl {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}

.topAboutTxt {
  margin-top: 15px;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .topAbout {
    display: block;
  }

  .topAbout li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
    text-align: center;
  }
  
  .topAbout li:last-child {
    margin-bottom: 0;
  }  

  .topAbout li img {
    width: 100%;
    max-width: 300px;
  }

  .topAboutTtl {
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
  }

  .topAboutTxt {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }

}



























/*----------------------------------------
	重要なお知らせ
----------------------------------------*/
.importantNews {
  border: solid 2px #ccc;
  border-radius: 10px;
  padding: 30px 40px;
  overflow: hidden;
  display: table;
  width: 100%;
}

.importantNewsTtl {
  color: #333;
  font-size: 17px;
  width: 160px;
  display: table-cell;
  vertical-align: middle;
}

.importantNews ul {
  padding-left: 30px;
  border-left: 2px solid #ccc;
  display: table-cell;  
}

.importantNews li {
  margin-top: 15px;
}

.importantNews li:first-child {
  margin-top: 0;
}


.importantNews li a {
  color: #C90A0A;
  text-decoration: underline;
}

.importantNews li a:hover {
  text-decoration: none;
  opacity: 1;
}

.importantNews li dl {
  overflow: hidden;
  width: 100%
}

.importantNews li dt {
  float: left;
  width: 130px;
}

.importantNews li dt::before {
  content: "・";
  color: #C90A0A;
}

.importantNews li dd {
  float: left;
  width : calc(100% - 130px);
}

@media screen and (max-width: 950px) {
  .importantNews {
    padding: 20px 30px;
  }
  
  .importantNews li {
    margin-top: 10px;
  }  
}

@media screen and (max-width: 750px) {
  .importantNews {
    display: none;
  }  
}

/*----------------------------------------
	重要なお知らせ2
----------------------------------------*/
.importantNews2 {
  margin-top: 10px;
}

.importantNews2 a {
  display:  block;
  text-align: center;
  padding: 10px 30px 8px;
  color: #C81C1D;
  position: relative;
  border: 1px solid #C81C1D;  
  border-radius: 5px;  
}

.importantNews2 a:hover {
  background: #ffeded;
  opacity: 1;
  border-radius: 5px;
}


.importantNews2 a::after {
    content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -5px;
  transition: all .2s;
  width: 6px;
  height: 6px;
  border-top: solid 2px #C81C1D;
  border-right: solid 2px #C81C1D;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}

.importantNews2 a:hover::after {
  right: .5em;
}

@media screen and (max-width: 750px) {
  .importantNews2 {
   
  }
}


/*----------------------------------------
	重要なお知らせSP
----------------------------------------*/



.important-news-sp {
  background: #333;
  padding: 12px 10% 10px 3%;
  overflow: hidden;
}

.important-news-sp-title {
  color: #fff;
  background: #B40000;
  display: inline-block;
  border-radius: 100px;
  line-height: 105%;
  font-size: 11px;
  padding: 4px 5px 3px;
  text-align: center;
  width: 64px;
  float: left;
  margin-right: 10px;
}

.important-news-sp a {
  color: #fff;
}

.news-slider {
  width: 100%;
}

.news-slider li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}


/*矢印の設定*/

.news-slider .slick-prev {/*戻る矢印の位置と形状*/
  display: none!important;
}

.news-slider .slick-next {/*次へ矢印の位置と形状*/
  position: absolute;
  top: 50%;
  cursor: pointer;
  outline: none;
  right: -8%;
  background: #333;
  width: 20px;
  height: 20px;
  margin-top: -11px;
}


.news-slider .slick-next::after {
  position: absolute;
  content: "";    
  border-top: 2px solid #fff;/*矢印の色*/
  border-right: 2px solid #fff;/*矢印の色*/
  height: 5px;
  width: 5px;
  transform: rotate(45deg);
/*  
  top: 50%;
  margin-top: -3px;
  right: 8px;
*/  
} 

.news-slider .slick-prev:hover ,
.news-slider .slick-next:hover {
  opacity: 1;
}









/*----------------------------------------
	トップお知らせ
----------------------------------------*/
.topNews {
  overflow: hidden;
}

.topNews dl {
  overflow: hidden;
  border-bottom: 1px solid #f2f2f2;
  line-height: 140%;
  padding: 15px 0;
}

.topNews dl:first-child {
  border-top: 1px solid #f2f2f2;
}

.topNews dt {
  float: left;
  width: 120px;
  background: #f2f2f2;
  font-size: 14px;
  padding: 8px 20px 7px;
  position: relative;
  display: inline-block;
  margin-right: 30px;  
}

.topNews dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-left: 10px solid #f2f2f2;
}

.topNews dd {
  float: left;
  width: 100%;
  width : -webkit-calc(100% - 150px) ;
  width : calc(100% - 150px);
  margin-top: 8px;
}

.topNews dd a {
  color: #333;
  text-decoration: underline;
}

.topNews dd a:hover {
  text-decoration: none;
  opacity: 1;
}

.newsListLink {
  margin-top: 20px;
  font-size: 14px;
  position: relative;
  display: inline-block;
  float: right;
}

.newsListLink a {
  color: #333;
  text-decoration: none;
  padding: 0 0 0 15px;
}

.newsListLink a:hover {
  opacity: 0.7;
}

.newsListLink a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 1px var(--main-color);
  border-right: solid 1px var(--main-color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}




@media screen and (max-width: 750px) {
  .topNews dt {
    float: left;
    width: 100px;
    background: #f2f2f2;
    font-size: 12px;
    padding: 6px 15px 5px;
    position: relative;
    display: inline-block;
    margin-right: 30px;  
  }
  
  .topNews dd {
    float: left;
    width: 100%;
    width : -webkit-calc(100% - 130px) ;
    width : calc(100% - 130px);
    margin-top: 6px;
  }
  
}

@media screen and (max-width: 480px) {
  .topNews dt {
    float: left;
    width: 90px;
    background: #f2f2f2;
    font-size: 12px;
    padding: 5px 10px 4px;
    position: relative;
    display: inline-block;
    margin-right: 20px;  
  }
  
  .topNews dd {
    float: left;
    width: 100%;
    width : -webkit-calc(100% - 110px) ;
    width : calc(100% - 110px);
    margin-top: 6px;
  }
}
/*----------------------------------------
	スマホメニュー
----------------------------------------*/

.spNavMenu  {
  display: none;
}

@media screen and (max-width: 750px) {
  .spNavMenu {
    margin: 15% 0 0;
    display: block;    
  }
  
/*  
  .spNavMenuLink a:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 42%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #BFB193;
    border-right: solid 2px #BFB193;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }  
*/
  .spNavMenu .accordion-container {

  }
  
  .spNavMenu .accordion-container {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer;
    color: #594C3E;
  }

  .spNavMenu .accordion-container .article-title {
    display: block;
    position: relative;
    padding: 12px 0 10px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    border-bottom: 1px solid #EDEAE0;
  }
  
  .spNavMenuLink a {
    display: block;
    position: relative;
    padding: 12px 0 10px;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    border-bottom: 1px solid #EDEAE0;
    color: #594C3E;
    text-decoration: none;
  }
  
  .spNavMenuLink a:hover {
    opacity: 1;
  }  


  .spNavMenu .accordion-container .article-title:hover,
  .spNavMenu .accordion-container .article-title:active,
  .spNavMenu .accordion-container .content-entry.open .article-title {
  }

  .spNavMenu .accordion-container .article-title:hover i:before,
  .spNavMenu .accordion-container .article-title:hover i:active,
  .spNavMenu .accordion-container .content-entry.open i {
    color: white;
  }

  .spNavMenu .article-title{
    position: relative;
  }

  .spNavMenu .article-title:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 42%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #BFB193;
    border-right: solid 2px #BFB193;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .spNavMenu .article-title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
  }

  .spNavMenu .accordion-content {
    display: none;
  }

  .spNavMenu .accordion-content .article-title {
    padding-left: 4%;
    background: #FAF9F5;
  }
  
  .spNavMenu .accordion-content .accordion-content ul {
    padding-left: 8%;
    font-size: 14px;
  }
  
  .spNavMenu .accordion-content ul {
    padding-left: 4%;
    font-size: 14px;
  }
  
  .spNavMenu .accordion-content li a {
    color: #594C3E;
    padding: 6px 0 ;
    display: block;
  }
  
  .spNavMenu .accordion-content li:first-child a {
    padding-top: 14px;
  }  
  
  .spNavMenu .accordion-content li:last-child a {
    padding-bottom: 14px;
  }  
}


/*----------------------------------------
	sns
----------------------------------------*/
.menuSns {
  width: 230px;
  margin: 5% auto 0;
}


.snsBox {
  overflow: hidden;
}

.snsBox li {
  float: left;
  margin-right: 10%;
  width: 17.5%;
}

.snsBox li:last-child {
  margin-right: 0;
}


.snsBox li img {
  width: 100%;
  max-width: 40px;
}

@media screen and (max-width: 750px) {
  .menuSns {
    width: 230px;
    margin: 7.5% auto 0;
  }
}

@media screen and (max-width: 480px) {
  .menuSns {
    width: 200px;
    margin: 7.5% auto 0;
  }
}


/*----------------------------------------
	カレンダー
----------------------------------------*/
#calendar {
  margin-top: 5%;
}

#calendar #block-calendar {
  display: flex;
}

#calendar table {
	width: 230px;
	border-collapse: collapse;
	text-align: center;
	border: 1px solid #dcdcdc;
	background: #fff;
}

#calendar table:first-child {
  margin-right: 30px;
}

#calendar table caption {
	text-align: center;
	color: #333;
	font-size: 13px;
	padding: 0 0 5px;
}

#calendar table th {
	background: #f0f0f0;
	color: #333;
	font-size: 12px;
	text-align: center;
	padding: 2px;
	margin: 0;
}

#calendar table td {
	border: 1px solid #dcdcdc;
	font-size: 13px;
	text-align: center;
	padding: 3px;
	margin: 0;
	color: #333;
}

#calendar table td.off {
	background: #ffdade;
	color: #d50d21;
}

@media screen and (max-width: 750px) {
  #calendar {
    margin-top: 7.5%;
  }

  #calendar #block-calendar {
    display: flex;
    justify-content: center;
  }

  #calendar table {
    width: 100%;
    max-width: 230px;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid #dcdcdc;
    background: #fff;
  }
  
  #calendar table:first-child {
    margin-right: 20px;
  }
}

@media screen and (max-width: 480px) {
  #calendar #block-calendar {
    display: block;
    justify-content: center;
  }

  #calendar table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    text-align: center;
    border: 1px solid #dcdcdc;
    background: #fff;
  }
  
  #calendar table:first-child {
    margin: 0 0 15px;
  }

}


/*----------------------------------------
	サイドカレンダー
----------------------------------------*/
#sideCalendar {
  margin-top: 20px;
}

#sideCalendar table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
	text-align: center;
	border: 1px solid #dcdcdc;
	background:#fff;
}

#sideCalendar table caption {
	text-align: center;
	color: #333;
	font-size: 13px;
	padding: 10px 0 5px;
}

#sideCalendar table th {
	background: #f0f0f0;
	color: #333;
	font-size: 12px;
	text-align: center;
	padding: 2px;
	margin: 0;
}

#sideCalendar table td {
	border: 1px solid #dcdcdc;
	font-size: 13px;
	text-align: center;
	padding: 3px;
	margin: 0;
	color: #333;
}

#sideCalendar table td.off {
	background: #ffdade;
	color: #d50d21;
}





/*----------------------------------------
	サイドカート
----------------------------------------*/
#sidecartWrap {
  position: relative;
  margin-bottom: 1px;
}

.sideCartTtl {
  background: var(--main-color) url("../images/common/cartIcon.png") no-repeat 20px center;
  background-size: 26px auto;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 10px 8px 56px;
  border-radius: 10px 10px 0 0;
}

.sideCartBox {
  border: 1px solid #bcbcbc;
  border-top: none;
  padding: 15px 10px 20px;
  font-size: 12px;
  border-radius: 0 0 10px 10px;
}

.sideCartName {
  font-size: 14px;
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.sideCartBox dl {
  overflow: hidden;
  margin-bottom: 5px;
}

.sideCartBox dt {
  float: left;
  font-weight: bold;
  text-align: right;
  width: 50px;
  margin-right: 20px;
}

.sideCartBox dd {
  float: left;
  width: 138px;
}

.subtotalBox {
  border-top: 1px solid #bcbcbc;
  padding-top: 15px;
  margin-top: 15px;
}
.subtotal {
  color: var(--main-color);
  font-size: 14px;
}

.sideCartMemoBox {
  margin-top: 20px;
}

.sideCartMemo {
  background: #e4e4e4;
  color: #333;
  text-align: center;
  padding: 4px 10px 3px;
  font-size: 11px;
}

.sideCartMemoBox input {
  width: 100%;
  border: 1px solid #e4e4e4;
  padding: 10px;
}

.optionList {
  border-top: 1px solid #bcbcbc;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 13px;
  overflow: hidden;
}

.optionList li:last-child {
  border: none;
  padding-top: 0;
  margin-top: 0;  
}

.optionList dt ,
.optionList dd {
  font-size: 12px;
  margin-top: 10px;  
}

.optionDel {
  color: #888;
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
  text-align: right;
  float: right;
}

.ui-button-text{

}

@media screen and (max-width: 900px) {
  .sideCartBox dd {

    width: 118px;
  }
}
/*----------------------------------------
	お知らせ
----------------------------------------*/
.infoListBox li {
  border-bottom: 1px solid #f2f2f2;
  line-height: 140%;
  padding: 15px 0 15px 0;
}

.infoListBox li:first-child {
  border-top: 1px solid #f2f2f2;
}

.infoListBox li a {
  color: var(--main-color);
}


.infoTtlBox {
  position: relative;
}

.infoTtlBox h3 {
  font-weight: bold;
  line-height: 140%;
  border-bottom:1px solid #ccc;
  padding-right: 40px;
}

.infoTtlBox a {
  position: absolute;
  right: 0;
  top: 0;
}


.infoBtmLink {
  display: flex;
  justify-content: space-between;
}

.infoBtmLink li a {
  color: var(--main-color);
  text-decoration: underline;
}

.infoBtmLink li a:hover {
  text-decoration: none;
  opacity: 1;
}

.infoBtmLink li:first-child {
  text-align: left;
}

.infoBtmLink li:nth-child(2) {
  text-align: center;
}

.infoBtmLink li:last-child {
  text-align: right;
}

.infoItemList {
  display: flex;
  flex-wrap: wrap;
}

.infoItemList li {
  width: 24.625%;
  margin-right: 0.5%;
	border: 1px solid #bcbcbc;  
}

.infoItemList li:nth-child(4n) {
  margin-right: 0;
}

.infoItemList li:nth-child(n+5) {
  margin-top: 0.5%;  
}

.infoItemList li img {
  width: 100%;
}

.infoItemList li a img:hover {
  opacity: 0.7;
}


.infoItemList td, 
.infoItemList th {
	padding: 8px 15px 6px;
}


.infoItemList th {
  background: #F5F7F8;
  vertical-align: middle;
}

.infoItemList td {
	border-top: 1px solid #bcbcbc;
	border-bottom: 1px solid #bcbcbc;
}

.infoItemList tr:first-child td {
  border-top: none;
}

.infoItemList td:last-child {
  border-bottom: none;
}

.infoItemName {
  background: #F5F7F8;
}

.infoItemName a {
  color: #333;
  text-decoration: none;
}

.infoItemName a:hover {
  opacity: 0.7;
}

.infoDlLink {
  text-align: center;
}

.infoDlLink a {
  color: #333;
}



@media screen and (max-width: 750px) {
  .infoItemList li {
    width: 33%;
    margin-right: 0.5%;
  }

  .infoItemList li:nth-child(4n) {
    margin-right: 0.5%;
  }
  
  .infoItemList li:nth-child(3n) {
    margin-right: 0;
  }  

  .infoItemList li:nth-child(n+5) {
    margin-top: 0;  
  }
  
  .infoItemList li:nth-child(n+4) {
    margin-top: 0.5%;  
  }  
}


@media screen and (max-width: 480px) {
  .infoItemList li {
    width: 49%;
    margin-right: 1%;
  }

  .infoItemList li:nth-child(4n) {
    margin-right: 0;
  }
  
  .infoItemList li:nth-child(odd) {
    margin-right: 1%;
  }  

  .infoItemList li:nth-child(n+4) {
    margin-top: 0;  
  }
  
  .infoItemList li:nth-child(n+3) {
    margin-top: 1%;  
  }  
}




/*----------------------------------------
	サイドお知らせアーカイブ
----------------------------------------*/
.infoSideTtl {
  color: #635748;
  font-size: 18px;
  border-bottom: 1px solid #e4d9c4;
  box-shadow: 0 3px 0 #f3eee3;  
}

.infoSideList li {
  border-bottom: 1px dotted #D6C7A9;
  font-size: 14px;
  line-height: 140%;
  padding: 0 0 5px 0;
  margin-top: 15px;
}

.infoSideList li a {
  color: #594C3E;
}





/*----------------------------------------
	スマホ時トップ　カレンダー
----------------------------------------*/

.top-calender__sp {
	display: none;
}


@media screen and (max-width: 480px) {
	.top-calender__sp {
		display: block;
	}
}













