
/*------ デフォルト ------*/

	* { 
    margin: 0px; 
    padding: 0px; 	
}

img {
    width: 100%;
    height: auto;
	vertical-align:top;
}


/*------ 画像切り替え ------*/

.img-sp {
    display: none;
}

@media screen and (max-width:640px) {
    .img-pc {
        display: none;
    }
    .img-sp {
        display: block;
    }
}


.responsive {
width: 100%;
aspect-ratio: 16/9;
}


/*------ リンク設定 ------*/

a{ color: #646262; }
a:link,
a:visited,
a:hover,
a:active{ text-decoration:underline; }
a:hover,
a,
input[type="submit"],
input[type="button"]{
    -webkit-transition:0.2s ease-in-out;
    -moz-transition:0.2s ease-in-out;
    -o-transition:0.2s ease-in-out;
    transition:0.2s ease-in-out;
}
a:hover{ opacity:0.8; }




/*------ メインコンテンツ ------*/

body{
	width: 100%; 
	margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-size:15px;
    font-family: "游ゴシック Light", "游ゴシック", "YuGothic", sans-serif;
　　font-weight: 200;
	}

/*------ レスポンシブフレーム ------*/

.product-main {
  width: 100%; 
position: static;
background-color: #f9f9f9;

  /* 画像を常に天地左右の中央に配置 */
  background-position: center center ;
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
}


.product-flame {
    width:40%; 
	padding: 0em;
    margin: 0em;
	margin-left: auto;
    margin-right: auto;
	background:#fff;	
}

@media screen and (max-width:780px){
 
.product-flame  {
    width:100%; 
		padding: 0em;
    margin: 0em ;
} } 



/*------ BOX設定 ------*/


.product-box1 {
    width:100%; 
	padding: 0em 0em 1em 0em; 
    margin: 0em ;
	margin-left: auto;
    margin-right: auto;
	
}



.product-box2 {
    width:40%; 
	padding: 0em 0em 8em 0em; 
    margin: 0em ;
	margin-left: auto;
    margin-right: auto;
	
}

.product-box3 {
    width:100%; 
	padding: 0em 0em 4em 0em; 
    margin: 0em ;
	margin-left: auto;
    margin-right: auto;
	
}


.loop_wrap {
  position: relative;
  display: -webkit-flex;
  display: flex;
  height: 240px;
  overflow: hidden;
}

.loop_wrap img {
  width: auto;
  max-width: fit-content;
  height: 100%;
  will-change: transform;
	
}

.loop_wrap img:first-child {
  -webkit-animation: loop 36s -18s linear infinite;
  animation: loop 36s -18s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.loop_wrap img + img {
    -webkit-animation: loop2 36s linear infinite;
    animation: loop2 36s linear infinite;
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@media screen and (max-width:780px){
	
  .loop_wrap {
    /*height: calc(100vw * .17);*/
    height: 240px;
  }
  .loop_wrap img {
    width: auto;
    max-width: fit-content;
    height: 100%;
	  
    /*min-width: 110vw;*/
  }
}


/*------ footer ------*/

footer {
 text-align: center;
 padding: 30px;
}

.footer_copyrights {
	font-weight: bold;
	color: #000;
	text-align: center;
	font-size: 13px;
	padding:   0em;
	margin: 15px 15px 0px 15px;
}

@media screen and (max-width:780px){
 
.footer_copyrights {
	font-weight: bold;
	color: #000;
	text-align: center;
	font-size: 12px;
	padding:   0em;
	margin: 15px 15px 0px 15px;
	
} } 
