@charset "utf-8";
a:hover {
  color: #333;
}
footer a:hover {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 560px) {
  .main_img img {
    height: 100%;
    width: 100%;
  }
}
/*==================================================
*footer-フッター*
===================================*/
/*説明:クレプレ版から変更なし*/
.sp_footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_footer {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 2;
  }
  .sp_footer ul {
    display: flex;
    background: #CECECE;
  }
  .sp_footer ul li {
    width: calc(25% - 2px);
    border-left: 2px dashed white;
  }
  .sp_footer ul li:first-child {
    border-left: 0;
  }
  .sp_footer ul li .sp_footer_btn {
    display: inline-block;
    width: 100%;
    padding: 5px 0 2px;
    text-align: center;
  }
  .sp_footer ul li .sp_footer_btn img {
    display: inline-block;
    width: 60%;
    vertical-align: bottom;
  }
  .anchor {
    margin-top: -50px;
    padding-top: 50px;
  }
}
.top_btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: block;
  padding: 8px;
  background-color: #A3A2A2;
  font-size: 30px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .top_btn {
    bottom: 148px;
  }
}
footer {
  font-family: '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'MS ゴシック', sans-serif;
}
.footer-list {
  padding: 33px 0px;
  display: flex;
  justify-content: center;
  background: #E5E5E5;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .footer-list {
    flex-wrap: wrap;
  }
}
.footer-item {
  border-left: 3px solid;
  width: calc(100% / 8);
}
@media screen and (max-width: 768px) {
  .footer-item {
    margin: 6px 18px;
    width: 100%;
    border: none;
  }
}
.footer-item:last-of-type {
  border-right: 3px solid;
}
@media screen and (max-width: 768px) {
  .footer-item:last-of-type {
    border: none;
  }
}
.footer-item a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-item a {
    justify-content: flex-start;
  }
}
.footer-item a img {
  margin: 0 5px 0 0;
}
.copy {
  padding: 18px 0;
  background: #463536;
  color: #fff;
  font-family: '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'MS ゴシック', sans-serif;
  font-size: 0.9rem;
}


/*==================================================
*header-ヘッダー*
===================================*/
header {
  background: #c38e8f;
}
header img {
  padding: 2px 0;
  width: 150px;
}
@media screen and (max-width: 768px) {
  header img {
    width: 23%;
  }
}
/*ヘッダーのロゴサイズ調整*/
.logoHDR {
  padding: 10px;
}
.logoHDR img {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .logoHDR img {
    width: 80px;
  }
}
/*==================================================
*main contents-メインコンテンツ*
===================================*/
body#top {
  background: #fff; /*PC表示の項目外の背景色*/
}
.mainCont {
  background: #fff; /*中央項目全体の背景色*/
  max-width: 1000px;
  margin: auto;
  box-shadow: 3px 3px 21px 0px rgba(0, 0, 0, 0.4);
  font-family: '游ゴシック', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}
.mainCont img {
	width: 100%;
	vertical-align: top;	
}


/*下部のページ紹介*/
.product-slider {
	margin-top: 10%;
	margin-bottom: 10%;
  width: 100%;
  overflow: hidden;
}


/* 固定タイトル */
.slider-title {

  text-align: center;
  margin: 0 0 20px;
  padding: 0;
	font-family: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
	color: #463536;
  font-size: 20px;
  font-weight: bold;
}

.product-track {

  display: flex;
  width: max-content;
  gap: 2vw;
  animation: productSlide 25s linear infinite;
}

.product-track a {
  width: 15vw;
  max-width: 160px;
  min-width: 100px;
  flex-shrink: 0;
  display: block;
}

.product-track img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes productSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 1vw));
  }
}


/*下部のページ紹介*/
.banner-grid {
	margin-top: 0%;
	margin-bottom: 10%;
  width: 100%;
  box-sizing: border-box;
  padding: 3%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3%;
}

.banner-grid a {
  display: block;
}

.banner-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/*下部のSNS一覧*/
#brand {
  padding-bottom: 10%;
}

.snslist {

		margin-top: 0%;

	display: flex;
	justify-content: center;

}

.snslist li {
	margin: 1%;
	width: 13%;
}

.snslist li:last-child {
	margin-light: 0;
}


/*==================================================
*small-画像並べるとき*
===================================*/
.small {
  background-color: #fff;
}

.small img {
  width: 49%;
}


.title {
	background-color: #0C3967; 
	padding: 1.5rem;
	color: #fff;
	font-weight: 500;
	font-size: 1.5rem;
}

#cool img {
	vertical-align: bottom;
}
