/* ──────────────────────────────────────────────  
   モダン CSS リセット — 出典: Andy Bell ほか  
   ────────────────────────────────────────────── */

/* 1. ボックスサイズを扱いやすく */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. 余白／パディングを初期化 */
* {
  margin: 0;
  padding: 0;
}

/* 3. html / body の基礎スタイル */
html {
  /* テキスト自動調整を無効化（モバイル対応） */
  text-size-adjust: 100%;
  /* スクロールバー等の挙動をより予測しやすく */
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 必要なら背景色やフォント色を初期値に */
  background-color: #fff;
  color: #000;
}

/* 4. メディア要素の調整 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム要素のフォント継承 */
input, button, textarea, select {
  font: inherit;
}

/* 6. 見出しや段落などのテキスト要素の折り返し対応 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl,
figure, figcaption {
  overflow-wrap: break-word;
}

/* 7. リストマーカー / ナビゲーションリスト等 */
ul, ol {
  list-style: none;
}

/* 8. アンカーリンクの装飾リセット（必要なら上書き可能） */
a {
  text-decoration: none;
  color: inherit;
}

/* 9. テーブル要素の基本リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 10. ボタンの見た目リセット */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* 11. フォーカス時のアウトライン（アクセシビリティ対応） */
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid Highlight; /* 適宜調整 */
}

/* 12. ルート要素の分離（React / Next.js などで有用） */
#root, #__next {
  isolation: isolate;
}


/*******************************************************
 * Base
 *******************************************************/

 .sp{ display: none;}


a, a img, .open img{
	-webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

a:hover img, .open:hover img{
	opacity: 0.6;
}



html { font-size: 62.5%; }

body {
 color: #9F8254;
 background: #F6F3EC;
 font-size: clamp(1.3rem, 1.5vw, 1.6rem);
 font-family: 'Noto Sans JP', sans-serif;
 letter-spacing: 0.1em;
 font-feature-settings: "palt";
 overflow-x: hidden;
}


.min {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}


header{
	position: relative;
	margin-bottom: 13vw;
}

header .logo{
	position: absolute;
	left: 2.7777777777777777vw;
	top: 3.125vw;
}

header .site-name{
	position: absolute;
	left: 14.7777777777777777vw;
	top: 3.525vw;
	font-weight: bold;
}

.nav__items{
	display: flex;
	position: absolute;
	right:  2.7777777777777777vw;
	top: 2vw;
}

.nav__items li{
	margin-left: 20px;
	list-style-type: none;
	font-weight: bold;
}

.nav__items li:last-child a{
	color: #FFF;
	background: #C0532B;
	padding: 10px 35px;
	border: 2px solid #C0532B;
	border-radius: 100px;
}


.nav__items li:last-child a:hover{
	color: #C0532B;
	background: #FFF;
	box-sizing: border-box;
}

.nav__items li a{
	text-decoration: none;
	font-size: 1vw;
}

.nav__items li a:hover{
	color: #C0532B;
}

header .logo img{
	width: 10.555555555555555vw;
}

.content-ttl{
	text-align: center;
	font-size: clamp(2.6rem, 3.8vw, 52rem);
	margin-bottom: clamp(5px, 2.5vw, 30px);
}



.inner{
  width: min(100%, 1200px); /* 最大幅1200px。スマホでは100%まで縮む */
  margin-inline: auto;      /* 左右中央揃え（2025年以降はmargin-inline推奨） */
  padding-inline: clamp(1rem, 5vw, 2rem); /* スマホ〜PCで左右の余白調整 */
}


.main-vis .main-inner{
	position: relative;
}

.main-vis{
	margin-bottom: clamp(80px, 10vw, 190px);
}



h1{ 
	text-align: center;
	font-size: clamp(1.5rem, 2vw, 20rem);
	margin-bottom: clamp(1.5rem, 2vw, 2rem);
}
h1 .name{
	display: block;
	font-size: clamp(3.5rem, 5vw, 90rem);
}



.slider-wrapper{
	display: flex;
	position: relative;
}

.main-vis .slider{
	width: 100%;
}

.slider-wrapper .catch-copy{
	position: absolute;
	right: 3%;
	top: 50px;
	z-index: 100;
}

.main-vis .monitor-btn{
	position: absolute;
	right: 3%;
	bottom: -120px;
}

.main-vis .monitor-btn img{
	width: 240px;
}


.intro-block .right-img-box{
	display: flex;
	align-items: flex-end;
	width: min(100%, 960px); /* 最大幅1200px。スマホでは100%まで縮む */
	margin: 0 auto;
}

.intro-block{
	margin-bottom: clamp(90px, 30vw, 160px);
	position: relative;
}

.intro-block:before{
	display: inline-block;
	content:"";
	background: url("../img/object.png") 0 0 no-repeat;
	width: 790px;
	height: 809.5px;
	background-size: contain;
	position: absolute;
	left: -395px;
	top: -404.75px;
	z-index: -1;
}

.intro-block:after{
	display: inline-block;
	content:"";
	background: url("../img/circle-set.png") 0 0 no-repeat;
	width: 239px;
	height: 325px;
	background-size: contain;
	position: absolute;
	right: 25vw;
	top: 104.75px;
	z-index: -1;
}

.intro-block h2{
	font-size: clamp(2rem, 2.2vw, 28rem);
	margin-bottom: clamp(40px, 10vw, 80px);
	font-feature-settings: "palt";
}

.intro-block .text{
	line-height: 3.5em;
	margin-bottom: clamp(20px, 5vw, 40px);
}

.intro-block .copy{
	font-size: clamp(1.8rem, 2rem, 5rem);
	line-height: 2em;
	display: inline;
	border-bottom: 1px solid #9F8254;
}

.right-img-box .img{
	width: 100%;
	margin-left: clamp(40px, 30vw, 50px);
	max-width: clamp(170px, 255px, 340px);
}


.reccomend-block{
	width: min(92%, 960px); /* 最大幅1200px。スマホでは100%まで縮む */
	margin: 0 auto;
	border: 1px dashed #9F8254;
	border-radius: 20px;
	padding-top: clamp(2vw, 3vw, 6vw);
	padding-bottom: clamp(1.5vw, 3vw, 4.5vw);
	margin-bottom: clamp(60px, 9vw, 120px);
	box-sizing: border-box;
	font-size: clamp(1.4rem, 2vw, 2.4rem);
	text-align: center;
}


.reccomend-block .copy{
	font-size: clamp(1.3rem, 2.0vw, 2.4rem);
	margin-bottom: 10px;
}

.reccomend-block h2{
	font-size: clamp(2rem, 3rem, 3.7rem);
	background: #9F8254;
	display: inline;
	color: #FFF;
	padding: 3px 20px;
}

.ttl-wrap{
	margin-bottom: clamp(1vw, 2vw, 4vw);
}

.reccomend-block dl{
	display: flex;
	font-size: clamp(1.3rem, 1.5vw, 1.6rem);
	align-items: center;
	justify-content: center;
}

.reccomend-block dl dt img{
	width: 183px;
}

.reccomend-block dl dd{
	padding-left: 20px;
	text-align: left;
	line-height: 1.8em;
}


.reccomend-block .inner{
	width: 100%;
	padding: 0;
}

.reccomend-block ul{
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: clamp(2rem, 9rem, 16rem);
}

.reccomend-block ul li{
	text-align: left;
	position: relative;
	margin-bottom: 15px;
	padding-left: 54px;
}

.reccomend-block ul li:before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 48px;
	height: 48px;
	background: url("../img/check.png") 0 0 no-repeat;
	background-size: contain;
	margin-right: 10px;
	left: 0px;
	top: -3px;
}

.reccomend-block ul li .small{
	font-size: clamp(1.3rem, 1.5vw, 1.6rem);
}

.reccomend-block ul li .strong{
font-weight: bold;
border-bottom: 2px solid #9F8254;
}

.reccomend-block .text a{
	position: relative;
	padding-left: 15px;
	font-weight: bold;
}

.reccomend-block .text a:before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 8px;
	height: 12.5px;
	background: url("../img/arrow-baige.png") 0 0 no-repeat;
	background-size: contain;
	margin-right: 10px;
	left: 0px;
	top: 50%;
	margin-top: -6.2px;
	
}

.monitor-block{
	background: #9F8254;
	color: #FFF;
	padding-top: clamp(70px, 11vw, 120px);
	padding-bottom: clamp(70px, 11vw, 120px);
	border-radius: clamp(60px, 13vw, 230px);
	margin-bottom: clamp(60px, 9vw, 120px);
	box-sizing: border-box;

}

.monitor-block .copy{
	font-size: clamp(1.4rem, 1.8vw, 1.6rem);
	margin-bottom: 70px;
	text-align: center;
}

.monitor-block .copy .small{
	display: block;
	padding-top: 5px;
	font-size: clamp(1.0rem, 1.5vw, 1.3rem);
}

.monitor-block ul dt{
	font-size: clamp(1.5rem, 2vw, 2.2rem);
	border: 1px solid #FFF;
	display: inline;
	padding: 6px 10px;
	text-align: left;
}

.monitor-block ul dd{
	padding-top: 20px;
}

.monitor-block ul li{
	margin-bottom: clamp(40px, 5vw, 60px);
}

.monitor-block ul li.price dd{
	display: flex;
	column-gap: 10px;
}

.monitor-block ul li.price dd p{
	background-color: #FFF;
	border-radius: 20px;
	padding: 15px 30px;
	position: relative;
}

.monitor-block ul li.price dd p:after{
	content:"";
	width: 39px;
	height: 39px;
	background: url("../img/plus-icon.png") 0 0 no-repeat;
	display: inline-block;
	background-size: contain;
	position: absolute;
	top: 50%;
	margin-top: -19.5px;
	left: -24.5px;
}

.monitor-block ul li.price dd p:first-child:after{
	display: none;
}

.monitor-block ul li.price dd p a{
	margin-top: 20px;
	display: block;
}

.monitor-block ul li.entry dd ol{
	display: flex;
	column-gap: 28px;
	margin-top: 30px;
}

.monitor-block ul li.entry dd ol li{
	flex: 1;
	position: relative;
}

.monitor-block ul li.entry dd ol li p{
	margin-bottom: 10px;
}

.monitor-block ul li.entry dd ol li:first-child:after{
	display: none;
}

.monitor-block ul li.entry dd ol li picture{
	position: relative;
}

.monitor-block ul li.entry dd ol li:first-child picture:after{
	display: none;
} 

.monitor-block ul li.entry dd ol li picture:after{
	content:"";
	width: 29px;
	height: 58px;
	background: url("../img/flow-arrow.png") 0 0 no-repeat;
	display: inline-block;
	background-size: contain;
	position: absolute;
	top: 50%;
	margin-top: -29px;
	left: -36.5px;
}

.monitor-block ul li.entry dd ol li:first-child picture:before{
	content:"";
	width: 60px;
	height: 60px;
	background: url("../img/num01.png") 0 0 no-repeat;
	display: inline-block;
	background-size: contain;
	position: absolute;
	top: -17px;
	left: -17px;
}

.monitor-block ul li.entry dd ol li:nth-child(2) picture:before{
	content:"";
	width: 60px;
	height: 60px;
	background: url("../img/num02.png") 0 0 no-repeat;
	display: inline-block;
	background-size: contain;
	position: absolute;
	top: -17px;
	left: -17px;
}

.monitor-block ul li.entry dd ol li:nth-child(3) picture:before{
	content:"";
	width: 60px;
	height: 60px;
	background: url("../img/num03.png") 0 0 no-repeat;
	display: inline-block;
	background-size: contain;
	position: absolute;
	top: -17px;
	left: -17px;
}




.monitor-block ul li.entry dd .text{
	margin-bottom: 20px;
}

.monitor-block .monitor-btn{
	text-align: center;
}

.monitor-block .monitor-btn a{
	background: #C04F26;
	color: #FFF;
	border-radius: 100px;
	padding-top: clamp(1.5rem, 1.5vw, 2rem);
	padding-bottom: clamp(1.5rem, 1.5vw, 2rem);
	padding-left:clamp(4.5rem, 4.5vw, 5.8rem);
	padding-right: clamp(4.5rem, 4.5vw, 5.8rem);
	font-size: clamp(2rem, 2vw, 2.6rem);
}

.monitor-block .monitor-btn a:hover{
	background: #FFF;
	color: #C04F26;
}

.kimono-block{
	margin-bottom: clamp(50px, 7.5vw, 100px);
}

.kimono-block .content-ttl{
	font-size: clamp(2.6rem, 5.2rem, 52rem);
}

.kimono-block .right-img-box{
	display: flex;
	align-items: center;
}

.kimono-block .text-box{
	text-align: left;
	width: 485px;
}

.kimono-block .text-box h2{
	text-align: left;
}

.kimono-block .text-box h2 span{
	font-size: clamp(1.5rem, 2.4rem, 20rem);
	display: block;
}


.kimono-block .slider-wrap{
	width: 700px;
	padding-left: 30px;
}

.kimono-block .slider-wrap img {
	width: 100%;
}


.banner-list{
	margin-top: clamp(50px, 7.5vw, 100px);
	display: flex;
	column-gap: 40px;
	padding-bottom: 10px;
}


footer{
	text-align: center;
	padding-bottom: 30px;
	font-size: 0.8vw;
}


.menu-btn{
	display: none;
}
.drawer-menu-contents {
	display: none;
}

#access{
	margin-bottom: 60px;
}


#access .flexbox{
	display: flex;
	max-width: 960px;
	margin: 0 auto 50px;
    flex-wrap: wrap;
    justify-content: center;
}

#access .flexbox .inner{
	width: 50%;
	padding: 0 2% 30px;
	box-sizing: border-box;
}

#access .flexbox h3{
	margin-bottom: 15px;
	font-size: 20px;
}

#access .flexbox .sp{
	display: none;
}

#access .flexbox img{
	width: 100%;
	padding-bottom: 10px;
}

#access .flexbox p{
	margin-bottom: 10px;
	line-height: 1.6em;
}

.access-block .contact-btn{
	text-align: center;
}

.access-block .contact-btn a{
	background: #C04F26;
	color: #FFF;
	border-radius: 100px;
	padding-top: clamp(1.5rem, 1.5vw, 2rem);
	padding-bottom: clamp(1.5rem, 1.5vw, 2rem);
	padding-left:clamp(4.5rem, 4.5vw, 5.8rem);
	padding-right: clamp(4.5rem, 4.5vw, 5.8rem);
	font-size: clamp(2rem, 2vw, 2.6rem);
}

.access-block .contact-btn a:hover{
	background: #FFF;
	color: #C04F26;
}


 @media screen and (max-width: 750px) {
	.sp{ display: block;}
	.menu-btn{
		display: block;
		width: 50px;
		height: 50px;
		background: url("../img/sp/menu-btn.png") 0 0 no-repeat;
		background-size: contain;
		position: fixed;
		top: 20px;
		right: 4%;
		z-index: 1000;
	}
	

	.on .menu-btn span{
		display: inline-block;
		width: 50px;
		height: 50px;
		background: url("../img/sp/close-btn.png") 0 0 no-repeat;
		background-size: contain;
	}
	
	
	.drawer-menu-contents {
		display: none;
	}
	
		.drawer-menu-contents {
			position: fixed;
			background: #FFF;
			z-index: 100;
			text-align: center;
			display: none;
			padding-bottom: 40px;
			width: 100%;
			height: 10000px;
			top: 0px;
			left: 0px;
		}
	
	.drawer-menu-contents ul{
		margin: 100px 0 50px;
	}
	
	 .drawer-menu-contents ul li{
		margin-bottom: 30px;
		list-style-type: none;
		font-weight: bold;
		margin-left: -40px;
	 }

	 .drawer-menu-contents ul li a{
		color: #404040;
		text-decoration: none;
	 }

	 .drawer-menu-contents ul li:last-child a{
		background: #C0532B;
		color: #FFF;
		padding: 10px 50px;
		border-radius: 100px;
	 }
	

.wrapper{
	overflow-x: hidden;
}

header{
	position: relative;
	margin-bottom: 16vw;
}

header .logo{
	position: absolute;
	left: 2.7777777777777777vw;
	top: 5.125vw;
}

header .site-name{
	position: absolute;
	left: 2.7777777777777777vw;
	top: 12.525vw;
	font-size: 3vw;
	font-weight: bold;
}

.nav__items{
	display: none;
}


header .logo img{
	width: 25.555555555555555vw;
}

.main-vis{
	padding-top: 20px;
}

.main-vis .monitor-btn{
	bottom: -95px;
}

.main-vis .monitor-btn img{
	width: 120px;
}

.slider-wrapper .catch-copy{
	position: absolute;
	right: 50%;
	top: 50%;
	margin-top: -22px;
	margin-right: -67.25px;
}

.slider1 .slick-slide .catch-copy img{
	width: 134.5px;
	height: 44px;
}

.intro-block{
	margin-bottom: 80px;
}
.intro-block .right-img-box{
	display: block;
}

.right-img-box .img{
	width: 40%;
	margin: 0 auto;
}


.intro-block .text-box{
	margin-bottom: 30px;
}

.intro-block .text{
	line-height: 2.5em;
}

.intro-block:before {
  display: inline-block;
  content: "";
  background: url(../img/object.png) 0 0 no-repeat;
  width: 395px;
  height: 405px;
  background-size: contain;
  position: absolute;
  left: -205px;
  top: -200px;
  z-index: -1;
}

.intro-block:after{
	width: 120px;
	height: 162.5px;
}

.reccomend-block{
	padding-top: 30px;
}

.reccomend-block h2{
	font-size: 20px;
}

.reccomend-block ul{
	padding-left: 20px;
}

.monitor-block{
	padding-top: 60px;
}

.monitor-block .copy{
	margin-bottom: 40px;
	font-size: 15px;
}

.monitor-block ul li.price dd{
	display: block;
}
.monitor-block ul li.price dd p{
	background-color: #FFF;
	margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px 20px;
  position: relative;
}

.monitor-block ul li.price dd p a{
	display: inline-block;
}

.monitor-block ul li.price dd p:after {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/plus-icon.png) 0 0 no-repeat;
  display: inline-block;
  background-size: contain;
  position: absolute;
  top: 0;
  margin-top: -15px;
  left: 50%;
  margin-left: -15px;
}

.monitor-block ul li.entry dd ol li{
	margin-bottom: 10px;
}

.monitor-block ul li.entry dd ol li:first-child picture:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/num01.png) 0 0 no-repeat;
  display: inline-block;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -10px;
}

.monitor-block ul li.entry dd ol li:nth-child(2) picture:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/num02.png) 0 0 no-repeat;
  display: inline-block;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -10px;
}

.monitor-block ul li.entry dd ol li:nth-child(3) picture:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/num03.png) 0 0 no-repeat;
  display: inline-block;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: -10px;
}

.monitor-block ul li.entry dd ol li picture:after{
	display: none;
}


.monitor-block ul li.entry dd ol{
	display: block;
}

.monitor-block ul li.entry dd ol li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
	column-gap: 10px;
}

.monitor-block ul li.entry dd ol li .img{
	width: 40%;
}

.monitor-block ul li.entry dd ol li .text{
	width: 50%;
}

.monitor-block ul li.price dd p{
	text-align: center;
}

.monitor-block ul li.price dd p a {
	display: inline-block;
	margin-top: 10px;
}

.monitor-block ul li.price dd p a img{
	width: 140px;
}

.monitor-block .monitor-btn a{
	font-size: 15px;
}

.reccomend-block dl {
	padding: 0 20px 20px;
}

.reccomend-block dl dt {
	min-width: 100px;
}

.reccomend-block dl dt img{
	width: 100px;
}

.reccomend-block dl dd br.pc{
	display: none;
}

.reccomend-block ul li:before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url("../img/check.png") 0 0 no-repeat;
	background-size: contain;
	margin-right: 10px;
	left: 0px;
	top: -3px;
}

.reccomend-block ul li{
	padding-left: 30px;
	padding-right: 20px;
}


.banner-list{
	display: block;
	padding-bottom: 0;
}

.banner-list li{
	margin-bottom: 10px;
}

.kimono-block .slider-wrap{
	width: 100%;
	padding-left: 0;
}

.kimono-block .right-img-box{
	display: block;
}

.kimono-block .content-ttl {
  font-size: 2.6rem;
}

.kimono-block .text-box h2 span{
	font-size: 1.8rem;
	line-height: 1.3em;
}

.kimono-block .text-box{
	margin-bottom: 20px;
	width: 100%;
}


footer{
	text-align: center;
	padding-bottom: 30px;
	font-size: 2vw;
}

#access .flexbox h3{
	margin-bottom: 10px;
	font-size: 15px;
}

#access .flexbox .sp{
	display: block;
}

#access .flexbox {
	width: 92%;
	margin: 0 auto;
	font-size: 3vw;
}

.access-block .contact-btn a{
	font-size: 15px;
}

	}

  
	
/*----------------------------------------------------------
  LINE BUTTON
 ---------------------------------------------------------*/
.top-btn {
	position: fixed;
	bottom: clamp(10px,4vw,20px);
	right: 3%;
	transition: all .3s;
	visibility: visible;
	display: flex;
	justify-content:flex-end;
	z-index: 9999;
 }
 .top-btn .open {
	padding: 0;
	cursor: pointer;
 }
 .top-btn a {
	 margin-right: clamp(10px,2.5vw,20px);
	 cursor: pointer;
 }
 .open img,
 .top-btn > a img { width: clamp(75px,17vw,150px); }
 .top-btn > div {
	margin: 0 0.5rem;
	width: 26%;
 }
 #pop-up, .top-btn .overlay { display: none; }
 #pop-up:checked + .overlay {
	display: block;
	z-index: 9998;
	background-color: rgba(0,0,0,0.565);
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
 }
 .top-btn .window {
	margin: 0 auto;
	padding: 0 5%;
	width: 100%;
	max-width: 700px;
	height: auto;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
 }
 .top-btn .window ul {
	margin: 0 auto;
	padding: 0;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
 }
 .top-btn .window ul li {
	margin: 0 10px 30px;
	width: calc(50% - 20px);
	color: #fff;
	font-size: 0.8rem;
	font-weight: bold;
	letter-spacing: normal;
	text-align: left;
	list-style: none;
 }
 .top-btn .window ul li span {
	margin-bottom: 10px;
	display: block;
 }
 .top-btn .window ul li img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
 }
 .top-btn .window dt {
	margin-bottom: 0.5rem;
	font-weight: normal;
 }
 .top-btn .window dd { margin: 0; }
 .top-btn .close {
	cursor: pointer;
	position: absolute;
	top: initial;
	bottom: -80px;
	opacity: 1;
	color: #fff;
	font-size: 60px;
 }
 
 @media screen and (min-width: 840px){
 .top-btn { right: 4%; }
 .top-btn > div { margin: 0; }
 .top-btn .window ul li {
	margin: 0 20px 30px;
	width: calc(50% - 40px);
	font-size: 1rem;
 }
 
 }



 /*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
	from {
	 transform: translateX(0);
	}
	to {
	 transform: translateX(-100%);
	}
 }
 
 /*
 IE11対策
 ----------------------------*/
 _:-ms-lang(x)::-ms-backdrop, .d-demo {
	display: -ms-grid;
	overflow: hidden;
 }
 /*----------------------------*/
 .d-demo__wrap {
	display: flex;
	overflow: hidden;
	margin-bottom: 0px;
 }
 .d-demo__list {
	display: flex;
	list-style: none;
	padding: 0 20px;
 }
 .d-demo__list--left {
	animation: infinity-scroll-left 65s infinite linear 0.5s both;
 }
 .d-demo__item { width: calc(150vw); }
 .d-demo__item > img { width: 100%; }

/* Slickスライダー用スタイル */
.slider1 {
  position: relative;
  width: 100%;
}

.slider1 .slick-slide {
  position: relative;
}

.slider1 .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slickのデフォルトスタイルを無効化 */
.slider1 .slick-dots,
.slider1 .slick-prev,
.slider1 .slick-next {
  display: none !important;
}

/* フェード効果の調整 */
.slider1 .slick-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider1 .slick-slide.slick-active {
  opacity: 1;
}