@charset "UTF-8";
/* CSS Document */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  color:#000;
  background:#f5f7fa;
	padding: 0 !important;
}
a{
  text-decoration:none;
  color:#fff;
}
/*//////////// header //////////////*/
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:transparent;
  padding:20px;
	z-index: 999;
  transition: background-color 0.3s ease;
}
#header.is-scroll {
  background: #fff;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.header-left{
  display:flex;
  align-items:center;
  gap:32px;
}
.header-logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}
.header-logo img{
  width:140px;
  display:block;
}
.header-right{
  display:flex;
  align-items:center;
  gap:32px;
}
.header-nav{
  display:flex;
  gap:25px;
}
.header-nav a,
.header-right a{
  font-size:14px;
  letter-spacing:0.08em;
  transition:opacity .3s;
	color: #000;
}
@media screen and (max-width: 1000px){
	.header-nav a, .header-right a {
		font-size:12px;
	}
	.header-right{
	  gap:15px;
	}
	.header-nav{
	  gap:15px;
	}
	.header-logo img{
	  width:100px;
	}
}
.header-nav a:hover,
.header-right a:hover{
  opacity:.6;
}
.hamburger{
  display:none;
  width:32px;
  height:24px;
  position:relative;
  cursor:pointer;
  z-index:1200;
}
.hamburger span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#000;
  transition:.3s;
}
.hamburger span:nth-child(1){
  top:0;
}
.hamburger span:nth-child(2){
  top:11px;
}
.hamburger span:nth-child(3){
  bottom:0;
}
.drawer{
  position:fixed;
  top:0;
  left:-80%;
  width:80%;
  height:100vh;
  background:#fff;
  z-index:1500;
  padding:100px 40px 40px;
  transition:left .4s ease;
}
.drawer.active{
  left:0;
}
.drawer-close{
  position:absolute;
  top:20px;
  right:20px;
  width:40px;
  height:40px;
  cursor:pointer;
}
.drawer-close::before,
.drawer-close::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:28px;
  height:2px;
  background:#000;
}
.drawer-close::before{
  transform:translate(-50%, -50%) rotate(45deg);
}
.drawer-close::after{
  transform:translate(-50%, -50%) rotate(-45deg);
}
.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.drawer-nav a{
  font-size:18px;
	color: #000;
}
.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1400;
}
.drawer-overlay.active{
  opacity:1;
  visibility:visible;
}
@media screen and (max-width: 768px){
  .header{
    padding:20px;
	  width: 100%;
	  overflow:hidden;
	  max-width: 100vw;
	  height: 65px;
  }
	.header-inner{
	  display:flex;
	  align-items:center;
	  justify-content:space-between;
	  width:100%;
	  max-width:100%;
	}
  .header-nav{
    display:none;
  }
  .hamburger{
    display:block;
  }
  .header-logo img{
    width:110px;
  }
  .header-right{
    gap:16px;
  }
  .header-right a{
    font-size:12px;
  }
}
/*//////////// FV //////////////*/
.fv{
  width:100%;
	overflow:hidden;
	opacity: 0;
  transform: scale(1.05);
  animation: fvAnime 1.5s ease forwards;
}
@keyframes fvAnime {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fv img{
  width:100%;
  object-fit:cover;
  display:block;
}
@media screen and (max-width: 768px){
	.fv{
    height:auto;
		overflow:hidden;
  }
  .fv img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
  }
	.fv picture{
  display:block;
}
}
/*////////////// BEST SELLER /////////////////*/
.content-wrap{
  max-width:100%;
  margin:auto;
}
.swiper{
  overflow:visible;
}
.swiper-slide{
  height:auto;
}
.content-card{
  display:flex;
  gap:24px;
  align-items:flex-start;
}
.content-image{
  width:48%;
  flex-shrink:0;
}
.content-image img{
  width:100%;
  display:block;
}
.content-body{
  flex:1;
}
.content-title{
  font-size:28px;
  color:#b5d568;
  margin-bottom:24px;
  line-height:1.4;
}
.content-bottom{
  display:block;
}
.detail-list{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:28px;
}
.detail-item{
  display:flex;
  align-items:flex-start;
  gap:6px;
  color:#000;
  font-size:15px;
  line-height:1.6;
}
.detail-item img{
  width:14px;
  height:14px;
  object-fit:contain;
  flex-shrink:0;
	margin-top: 5px;
}
.show-more{
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#b5d568;
  color:#fff!important;
  padding:14px 32px;
  font-size:14px;
  font-weight:bold;
  transition:.3s;
}
.show-more:hover{
  opacity:.8;
}
.custom-pagination{
  display:none;
  gap:8px;
}
.custom-pagination .bullet{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d1d5db;
  cursor:pointer;
  transition:.3s;
}
.custom-pagination .bullet.active{
  background:#b5d568;
}
@media screen and (max-width:768px){
	.content-wrap{
		width: 100%;
  		max-width:100%;
  		margin:auto;
		overflow: hidden;
	}
	.content-card{
		flex-direction:column;
		gap:0;
	}
	.content-image{
		width:100%;
		margin-bottom:0;
	}
	.content-image img{
		width:100%;
		display:block;
	}
	.content-body{
	  width: 90%;
		margin: 0 auto;
	}
	.custom-pagination{
		display:flex;
		justify-content:flex-end;
		margin-top:14px;
		margin-bottom:20px;
	}
	.content-title{
		font-size:24px;
		margin-bottom:20px;
	}
	.content-bottom{
		display:flex;
		align-items: flex-end;
		justify-content:space-between;
		gap:16px;
	}
	.detail-list{
		flex-wrap:wrap;
		gap:6px;
		margin-bottom:0;
		width: 50%;
	}
	.detail-item{
		width:calc(100% - 8px);
		font-size:14px;
		align-items:flex-start;
	}
	.show-more{
		width:50%;
		min-width:140px;
		height:42px;
		font-size:15px;
		flex-shrink:0;
	}
}
.tab-buttons{
  display:flex;
  gap:12px;
  margin: 40px 0 30px;
}
.tab-btn{
  padding:14px 28px;
  border: 0.5px solid #414141;
  background:#fff;
  color:#000;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
}
.tab-btn.active{
	border: none;
  background:#b5d568;
  color:#fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
}
.tab-contents{
  background:#f5f7fa;
}
.tab-content{
  display:none;
  animation:fade .3s ease;
}
.tab-content.active{
	display: flex;
	flex-wrap: wrap;
	gap:25px;
}
@keyframes fade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.tab-content h2{
  margin-bottom:20px;
  font-size:28px;
}
.tab-content p{
  line-height:1.8;
  font-size:16px;
}
.product_item202605 {
	background: #fff;
	padding: 30px 20px;
	box-shadow: 0 0 8px #e4e5e6;
}
.product_item202605 a p:first-child {
	text-align: center;
}
.product_item202605 img {
	width: 200px;
}
.product_item202605 a {
	text-decoration: none;
	color: #000;
}
.tab-buttons_wrap {
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width:768px){
	.tab-content.active{
		display: flex;
		flex-wrap: wrap;
		gap:4%;
	}
  .tab-buttons{
    	flex-wrap:wrap;
  }

  .tab-btn{
    	min-width:100px;
    	font-size:14px;
    	padding:12px 16px;
		width: calc(50% - 6px);
  }
	.tab-btn.active{
	  	background:#b5d568;
	  	color:#fff;
		width: 48%;
	}
  .tab-contents{
    	padding:0;
  }
	.tab-content p{
	  	line-height:1.8;
	  	font-size:12px;
	}
  .tab-content h2{
    	font-size:22px;
  }
	.product_item202605 {
		background: #fff;
		padding: 20px 10px;
		width: 48%;
		margin-bottom: 15px;
	}
	.product_item202605 a p:first-child {
		text-align: center;
	}
	.product_item202605 img {
		width: 100%;
	}
	.product_item202605 a {
		text-decoration: none;
		color: #000;
	}
}
.logoSliderAreaCustom{
  width:90%;
	margin: 0 auto;
  overflow:hidden;
}
.logoLoopSwiperCustom{
  overflow:visible;
  padding-left:16px;
}
.logoLoopSwiperCustom .logoLoopWrapper{
  transition-timing-function:linear !important;
  align-items:center;
}
.logoLoopSwiperCustom .logoLoopSlide{
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logoLoopSwiperCustom img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
@media screen and (max-width:768px){
	.logoSliderAreaCustom {
		width: 100%;
	}
  .logoLoopSwiperCustom .logoLoopSlide{
    width:30vw;
    height:100px;
  }
}
@media screen and (min-width:769px){
  .logoLoopSwiperCustom{
    padding-left:0;
  }
  .logoLoopSwiperCustom .logoLoopWrapper{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    transform:none !important;
  }
  .logoLoopSwiperCustom .logoLoopSlide{
    width:auto !important;
    height:180px;
  }
}
.newsSliderSection{
  width:100%;
  overflow:hidden;
}
.newsSwiperCustom{
  overflow:visible;
  padding-left:16px;
}
.newsSwiperWrapper{
  align-items:flex-start;
}
.newsSwiperSlide{
  background: #f5f7fa;
  overflow:hidden;
}
.newsImage{
  width:100%;
  aspect-ratio: 4 / 3;
  overflow:hidden;
}
.newsImage img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.newsBody{
  padding:18px;
}
.newsDate{
  font-size:13px;
  color:#000;
  margin-bottom:10px;
}
.newsText{
  font-size:15px;
  line-height:1.7;
  color:#000;
}
@media screen and (max-width:768px){
  .newsSwiperCustom{
    padding-left:16px;
  }
  .newsSwiperSlide{
    width:42vw;
  }
}
@media screen and (min-width:769px){
  .newsSliderSection{
    max-width:1400px;
    margin:auto;
  }
  .newsSwiperCustom{
    padding-left:0;
  }
  .newsSwiperWrapper{
    justify-content:center;
  }
}
/*///////////////// body ////////////////////*/
.fade-up {
  opacity: 0;
  transform: translateY(30px); 
  transition:
    opacity 1s ease,
    transform 1s ease;
  will-change: transform, opacity;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.top_main_contents {
	background: #f5f7fa;
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.pickup_bnr202605 {
	width: 90%;
	margin: 0 auto;
	padding: 100px 0 0;
}
.pickup_bnr202605 img {
	width: 100%;
}
.best_seller202605 {
	width: 90%;
	margin: 0 auto;
	padding: 100px 0;
}
.best_seller202605 h2.top_h2 {
	padding-bottom: 15px;
	border-bottom: 0.5px solid #414141;
	width: 100%;
	margin: 0 auto 60px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	    font-size: 30px;
}
h2.top_h2 {
	padding-bottom: 15px;
	border-bottom: 0.5px solid #414141;
	width: 90%;
	margin: 0 auto 60px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 30px;
}
.new_product202605 {
	margin: 100px auto;
}
.product_bnr {
	width: 90%;
	margin: 0 auto;
	display: flex;
	gap:4%;
}
.product_bnr a {
	width: 48%;
}
.product_bnr a img {
		width: 100%;
	}
.center_btn {
	text-align: center;
	padding: 14px 32px;
    margin: 50px auto 0;
}
.center_btn a {
	display: block;
	background: #b5d568;
    color: #fff;
    padding: 14px 32px;
	width: 300px;
	margin: 0 auto;
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 300;
  	font-style: normal;
}
.award202605 {
	margin: 100px auto;
}
.media202605 {
	margin: 100px auto;
}
.information202605 {
	width: 100%;
	margin: 100px auto;
}
.information202605_inner {
	width: 90%;
	margin: 0 auto;
}
.information202605 a {
	color: #000;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
}
.information202605 div.center_btn a {
	display: block!important;
	color: #fff;
	margin: 0 auto;
}
.concept202605 {
	background-image: url("https://d2w53g1q050m78.cloudfront.net/cicakatanjp/uploads/home202605/img/bg_concept.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #fff;
	padding: 100px 0;
}
.concept202605_inner {
	width: 90%;
	margin: 0 auto;
	display: flex;
	gap: 4%;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}
.concept202605_inner div {
	width: 48%;
}
.concept202605_inner div:last-child {
	text-align: center;
}
.concept202605 img {
	max-width: 500px;
}
.concept202605 h2.top_h2 {
	width: 90%;
	border-bottom: 0.5px solid #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	    font-size: 30px;
}
.concept202605 h3 {
	font-size: 42px;
	line-height: 1.6;
	padding-bottom: 50px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.concept202605 p {
	font-size: 16px;
	line-height: 2;
}
.shoplist202605 {
	background-image: url("https://d2w53g1q050m78.cloudfront.net/cicakatanjp/uploads/home202605/img/bg_shoplist.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 60px 0;
}
.shoplist202605 h2.top_h2 {
	border-bottom: none;
	margin-bottom: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.shoplist202605_inner {
	width: 90%;
	margin: 0 auto;
	background: #fff;
	padding: 30px 30px 15px;
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
	justify-content: center;
	align-items: center;
}
.shoplist202605_inner img {
	width: 100px;
	margin-bottom: 15px;
}
.footer202605 {
	background: #f3f4f6;
	padding: 50px 0 30px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.footer202605_inner {
	width: 90%;
	margin: 50px auto 0;
	display: flex;
	flex-direction: row-reverse;
}
.footer202605 .center_btn {
	margin-bottom: 30px;
}
.footer_menu202605 {
	width: 90%;
	margin: 0 auto;
}
.footer_menu202605 ul {
	list-style: none;
	display: flex;
	width: 100%;
    flex-wrap: wrap;
	justify-content: flex-end;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.footer_menu202605 ul:last-child {
	border-bottom: none;
}
.footer_menu202605 ul li {
	padding-bottom: 20px;
	padding-right: 30px;
}
.footer_menu202605 ul li a {
	color: #000;
	font-size: 12px;
}
.footer_logo202605 {
	width: 300px;
	margin: 0 auto;
	text-align: center;
}
.footer_logo202605 img {
	max-width: 100%;
}
.footer_logo202605 p {
	margin-bottom: 15px;
}
.footer_logo202605 p a img {
	width: 50%;
	margin: 0 auto;
}
.footer_sns202605 {
	display: flex;
	justify-content: center;
	gap:5px;
}
.footer_sns202605 a img {
	width: 30px;
}
.footer_copy202605 {
	text-align: center;
	width: 90%;
	margin: 30px auto 0;
	padding: 30px 0 0;
	border-top: 1px solid #fff;
	font-size: 10px;
}
@media screen and (max-width:768px){
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	h2.top_h2 {
		font-size: 20px;
		padding-bottom: 6px;
		margin-bottom: 30px;
	}
	.best_seller202605 h2.top_h2 {
		width: 90%;
		margin-bottom: 30px;
		font-size: 20px;
		padding-bottom: 6px;
	}
	.pickup_bnr202605 {
		width: 100%;
		margin: 0 auto;
		padding: 50px 0 0;
	}
	.best_seller202605 {
		width: 100%;
		margin: 0 auto;
		padding: 50px 0 0;
	}
	.new_product202605 {
		margin: 50px auto;
	}
	.product_bnr {
		display: block;
		width: 100%;
	}
	.product_bnr a {
		width: 100%;
	}
	.product_bnr a img {
		width: 100%;
		margin-bottom: 15px;
	}
	.award202605 {
		margin: 50px auto;
	}
	.media202605 {
		margin: 50px auto;
		position: relative;
	}
	.information202605 {
		width: 100%;
		margin: 50px auto;
	}
	.concept202605 {
		background-image: url("https://d2w53g1q050m78.cloudfront.net/cicakatanjp/uploads/home202605/img/bg_concept_sp.jpg");
		padding: 50px 0;
	}
	.concept202605 img {
		width: 60%;
		display: block;
		margin: 0 auto;
		padding-bottom: 10px;
	}
	.concept202605 h3 {
		font-size: 20px;
	}
	.concept202605 h3 {
		font-size: 23px;
		line-height: 1.5;
		padding-bottom: 10px;
	}
	.concept202605_inner p {
		font-size: 13px;
		line-height: 1.8;
	}
	.concept202605_inner {
		display: block;
		font-size: 12px;
		flex-direction: column; 
	}
	.concept202605_inner div {
		width: 100%;
	}
	.shoplist202605 {
		background-image: url("https://d2w53g1q050m78.cloudfront.net/cicakatanjp/uploads/home202605/img/bg_shoplist_sp.png");
	}
	.shoplist202605_inner {
		width: 90%;
		margin: 0 auto;
		background: #fff;
		padding: 30px 15px 10px;
		display: flex;
		flex-wrap: wrap;
		gap: 5%;
		justify-content: center;
		align-items: center;
	}
	.shoplist202605_inner img {
		width: 30%;
		margin-bottom: 20px;
	}
	.footer202605 {
		background: #f3f4f6;
		padding: 30px 0;
	}
	.footer202605_inner {
		display: block;
	}
	.footer202605 .center_btn {
		margin-bottom: 30px;
	}
	.footer_menu202605 {
		width: 90%;
		margin: 0 auto;
	}
	.footer_menu202605 ul {
		list-style: none;
		display: flex;
		border-bottom: 1px solid #fff;
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.footer_menu202605 ul:last-child {
		border-bottom: none;
	}
	.footer_menu202605 ul li {
		padding-bottom: 20px;
		padding-right: 30px;
	}
	.footer_menu202605 ul li a {
		color: #000;
		font-size: 12px;
	}
	.footer_logo202605 {
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
	.footer_logo202605 img {
		max-width: 100%;
	}
	.footer_logo202605 p {
		margin-bottom: 15px;
	}
	.footer_logo202605 p a img {
		width: 50%;
		margin: 0 auto;
	}
	.footer_sns202605 {
		display: flex;
		justify-content: center;
		gap:5px;
	}
	.footer_sns202605 a img {
		width: 30px;
	}
	.footer_copy202605 {
		text-align: center;
		width: 90%;
		margin: 30px auto 0;
		padding: 30px 0 0;
		border-top: 1px solid #fff;
		font-size: 10px;
	}
}
.scroll-side{
	  display:flex;
	  align-items:center;
	  gap:16px;
	  position:absolute;
	  top: 45px;
	  right: 8%;
	}
	/* テキスト */
	.scroll-text{
	  font-size:10px;
	  letter-spacing:0.2em;
	  color:#000;
	}
	/* 矢印全体 */
	.arrow{
	  position:relative;
	  width:30px;
	  height:12px;
	}
	/* 伸びる線 */
	.arrow-line{
	  position:absolute;
	  top:50%;
	  left:80%;
	  background:#000;
	  transform:translateY(-50%);
	  animation:lineStretch 2s ease-in-out infinite;
	}
	/* 矢印先端 */
	.arrow-line::after{
	  content:"";
	  position:absolute;
	  right:0;
	  top:50%;
	  width:5px;
	  height:5px;
	  border-top:1px solid #000;
	  border-right:1px solid #000;
	  transform:translateY(-50%) rotate(45deg);
	}
	/* 線が伸びる */
	@keyframes lineStretch{
	  0%{
		width:0;
		opacity:0;
	  }
	  20%{
		opacity:1;
	  }
	  70%{
		width:30px;
		opacity:1;
	  }
	  100%{
		width:30px;
		opacity:0;
	  }
	}