.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}
/* Content */
#main-top {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	height: 80vh;
	overflow: hidden;
	font-family: var(--content-font);
	--pieces-height: calc(100vh - 4em);
}

.slideshow {
	grid-area:1 / 1 / 2 / 4 /*1/2/1/2*/   /* 1 / 3 / 3 / 5*/;
	display: flex;
	justify-content: center;
	overflow:hidden;
	width: 80vw;
    height: 100vh;
    margin: 0 10vw;
	margin-top: -4em;
}

.main-text{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 2;
	position:absolute;
	right:3vw;
	top:2vh;
}
.main-text h2 {
	font-size: 1.7vh;
    letter-spacing: 0.3em;
	color: #777;
}
.main-text h2 br{
	display:none;
}
.slide {
	opacity: 0;
}

#slide-1{
	background:url(../img/index/top1.jpg) center no-repeat;
	background-size:cover;
}
#slide-2{
	background:url(../img/index/top2.jpg) center no-repeat;
	background-size:cover;
}
#slide-3{
	background:url(../img/index/top3.jpg) center no-repeat;
	background-size:cover;
}
#slide-4{
	background:url(../img/index/top4.jpg) center no-repeat;
	background-size:cover;
}
#slide-5{
	background:url(../img/index/top5.jpg) center no-repeat;
	background-size:cover;
}

.pieces {
	flex: none;
	opacity: 1;
	height: var(--pieces-height);
	width: calc(var(--pieces-height) * 0.76);
	position: relative;
	display: flex;
	flex-wrap: wrap;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 0 0;
}

.piece {
	pointer-events: none;
}

.scroll{
	position: absolute;
    left: 74px;
    bottom: 30px;
}
.scroll span{
	position: absolute;
    line-height: 60px;
    bottom: 26px;
    left: -8px;
    font-size: 0.68em;
    opacity: 0.6;
	letter-spacing:0.2em;
    text-align: center;
    transform: rotate(-90deg);
}
.scroll svg{
	width:34px;
	height:9.67px;
	-webkit-animation: sdb 4s infinite;
	animation: sdb 4s infinite;
}

@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotateY(0deg);
		opacity: 1;
	}
	20% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotateY(360deg);
		opacity: 1;
	}
}
@keyframes sdb {
	0% {
		transform: rotateY(0deg);
		opacity: 1;
	}
	20% {
		opacity: 1;
	}
	100% {
		transform: rotateY(360deg);
		opacity: 1;
	}
}

.menu {
	z-index: 10;
	/*grid-area: 2 / 1 / 2 / 3;*/
	position:absolute;
	bottom: 0;
    right: 0;
	/*background: rgba(247,246,244,.5);*/
    --highlight-text: #90596a;
    --link-text-hover: #766c6c;
    /* font-family: 'Scheherazade', serif; */
    border-top: 1px solid #d9d9d9;
    padding: 30px 50px 30px 0;
    color: #777;
}

.menu__item {
	font-size: 12px;
	letter-spacing:0.6em;
	line-height: 2.5em;
}

.menu__item p{
	padding-left:40px;
	position:relative;
}
.menu__item p:after {
	content:"";
	width:25px;
	height:1px;
	position:absolute;
	top:14px;
	left:0;
	background:#aaa;
}

.menu__item span {
	opacity: 1;
	font-size: 14px;
}
.menu__item:hover {
	color: var(--link-text-hover);
}

.menu__item--current,
.menu__item--current:hover,
.menu__item--current:focus {
	color: var(--highlight-text);
}

#cnt-about{
	width:90vw;
	margin:8em 5vw 0;
	background:#efede5;
	text-align:center;
	box-sizing:border-box;
	padding:100px 50px;
}
#cnt-about h2,
#cnt-style h2,
#cnt-item h2,
#cnt-news h2{
	font-family: 'Abel', sans-serif;
	font-weight:700;
	font-size:2.2em;
	letter-spacing:0.9em;
	line-height:1em;
	margin-left: 0.9em;
}
#cnt-about h2 span,
#cnt-style h2 span,
#cnt-item h2 span,
#cnt-news h2 span{
	font-size:0.45em;
	letter-spacing:0.3em;
	font-weight:normal;
	margin-left: -2em;
	color:#777;
	font-family:"IPAex", YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", Honoka, Meiryo, "メイリオ", serif;
}
#cnt-about p.text,
#cnt-style p.text,
#cnt-item p.text,
#cnt-news p.text{
	margin-top:50px;
	font-size:1.2em;
	line-height:1.9em;
}
#cnt-about p.link{
	margin-top:50px;
}
p.link a{
	position:relative;
    letter-spacing: .2em;
    padding: 15px 0;
    text-align: center;
    display: inline-block;
    font-size:1em;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
	overflow:hidden;
}
p.link a:after{
	content:"";
	position:absolute;
	left:0;
	bottom:0;
	height:1px;
	background:#90596a;
	width:100%;
	display:block;
    transition: width .4s cubic-bezier(.25,.1,.25,1);
}
p.link a svg.icn_new_window{
	display:inline-block;
	width:10px;
	height:10px;
	margin-left:10px;
	fill:#333;
	transition: all ease 0.4s;
}
p.link a:hover{
	color:#777;
}
p.link a:hover:after{
	width:0;
	left:100%;
	transition:all .4s cubic-bezier(.25,.1,.25,1);
}

.style-top-image{
	width:100%;
	height:600px;
	margin-top:80px;
	position:relative;
}
.style-top-image .image{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(../img/index/style-top-image.jpg) no-repeat bottom;
	background-size:cover;
}

#cnt-style{
	position:relative;
	width:90vw;
	margin:0 5vw;
	margin-top:80px;
	background:#e5e5e0;
	box-sizing:border-box;
	padding:100px 0;
}
#cnt-style:before{
	content:"";
	position: absolute;
	opacity:0.12;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:url(../img/index/back-g.jpg) no-repeat center;
	background-size:cover;
}
#cnt-style h2{
	text-align:center;
}
#cnt-style .style-box{
	display:flex;
	max-width:1400px;
	min-width:1000px;
	margin:80px auto 0;
}
#cnt-style .style-box .text-box{
	width:700px;
	height:400px;
	box-sizing:border-box;
}
#cnt-style .style1 .text-box .text-in{
	width:400px;
	float:right;
	position:relative;
	top:50%;
	transform:translateY(-50%);
	margin-right:50px;
	
}
#cnt-style .style2 .text-box .text-in{
	width:400px;
	float:left;
	position:relative;
	top:50%;
	transform:translateY(-50%);
	margin-left:50px;
	
}
#cnt-style .style-box .text-box h3{
	font-family: 'Abel', sans-serif;
	font-weight:700;
	font-size:1.7em;
	letter-spacing:0.5em;
	line-height:1em;
}
#cnt-style .style-box .text-box h3 span{
	font-size:0.6em;
	letter-spacing:0.3em;
	font-weight:normal;
	font-family: "IPAex", YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", Honoka, Meiryo, "メイリオ", serif;
}
#cnt-style .style-box .text-box p{
	margin-top:40px;
}
#cnt-style .style-box .image-box{
	width:700px;
	height:400px;
	position:relative;
}
#cnt-style .style1 .image-box .image{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:url(../img/index/style-bridal.jpg) no-repeat center;
	background-size:cover;
}
#cnt-style .style2 .image-box .image{
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:url(../img/index/style-mother.jpg) no-repeat center;
	background-size:cover;
}
#cnt-style .style2 div:nth-child(2){
	 order: -1;
}

.link-style a{
	position:relative;
	transition: all ease 0.4s;
	width:320px;
	display:block;
	margin:80px auto 0;
	text-align:center;
	padding:30px;
	box-sizing:border-box;
	border:1px solid #aaa;
	border-bottom:none;
	overflow:hidden;
}
.link-style a span{
	transition: all ease 0.4s;
	margin-left:-40px;
}
.link-style a svg.icn_link-arrow{
	display:inline-block;
	width:20px;
	height:13.45px;
	opacity:0;
	margin-right:20px;
	fill:#90596a;
	transition: all ease 0.4s;
}
.link-style a svg.icn_new_window{
	display:inline-block;
	width:10px;
	margin-left:10px;
	fill:#333;
	transition: all ease 0.4s;
}
.link-style a:before{
	content:"";
	position:absolute;
	height:1px;
	width:100%;
	bottom:0;
	left:0;
	background:#90596a;
	transition: width .4s cubic-bezier(.25,.1,.25,1);
}
.link-style a:after{
	content:"";
	position:absolute;
	height:1px;
	width:100%;
	bottom:0;
	left:0;
	background:#aaa;
	transition: width .4s cubic-bezier(.25,.1,.25,1);
}

.link-style a:hover svg.icn_link-arrow {
	opacity:1;
}
.link-style a:hover svg.icn_new_window{
	fill:#90596a;
}
.link-style a:hover span{
	margin-left:0px;
	color:#90596a;
}
.link-style a:hover:after{
	left:100%;
	width:100px;
	transition:all .4s cubic-bezier(.25,.1,.25,1);
}

#cnt-item{
	width:90vw;
	margin:0 5vw;
	box-sizing:border-box;
	padding:150px 0;
}
#cnt-item .text-box{
	text-align:center;
}
#cnt-item .text-box p{
	margin-top:50px;
}
#cnt-item ul{
	margin:80px auto 0;
	width:1150px;
	display:flex;
}
#cnt-item ul li{
	width:350px;
	margin:0 50px;
}
#cnt-item ul li img{
		width:350px;
		height:350px;
	}
#cnt-item ul li h3{
	text-align: center;
	font-size:1.1em;
	margin: 20px 0;
}
#cnt-item ul li p.link{
	text-align:center;
	margin-top:20px;
}
#cnt-item ul li:nth-child(1){
	margin-left:0;
}
#cnt-item ul li:nth-child(2){
	margin:0;
}
#cnt-item ul li:nth-child(3){
	margin-right:0;
}

#cnt-news{
	position:relative;
	width:90vw;
	margin:0 5vw;
	background:#e7e7e7;
	box-sizing:border-box;
	padding:100px 0 70px;
}
#cnt-news h2{
	text-align:center;
}
#cnt-news .news-box{
	width:1200px;
	margin:50px auto 0;
	border-bottom:1px solid #ddd;
}
#cnt-news .news-in{
	width:100%;
	background:#eee;
	box-sizing:border-box;
	border-top:1px solid #ddd;
}
#cnt-news dl{
	justify-content: center;
	-webkit-justify-content: center;
}
#cnt-news dl a{
	padding:30px;
	width:100%;
	box-sizing:border-box;
	display:flex;
}
#cnt-news dl a svg.icn_link-arrow{
	width: 20px;
    height: 20px;
    margin-left: auto;
    fill: #90596a;
    transition: all ease 0.4s;
}
#cnt-news dl dt{
	font-weight:700;
}
#cnt-news dl dd{
	margin-left:50px;
	margin-top:3px;
	line-height:1.4;
}
#cnt-news .news-in a:hover,
#cnt-news .news-in a:hover{
	color:#90596a
}

/*Instagram*/
#instagram{
	width:90vw;
	background:linear-gradient(#e7e7e7 50%, rgba(255, 255, 255, 0) 50%);
	margin:0 auto;
}
#instagram .isg{
	max-width:1200px;
	display:flex;
	width:80%;
	margin:0 auto;
}
.instagram-item-box{
	width: 100%;
}
.instagram-item{
	width:100%;
	margin:0 auto;
	display:flex;
}
.instagram-item li{
	overflow:hidden;
	width:25%;
	box-sizing: border-box;
	margin:0;
	position: relative;
    display: block;
	z-index:1;
	opacity:0;
}
.instagram-item li a{
	width:100%;
	height:100%;
	display:block;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.instagram-item li a p{
	opacity:0;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	position:absolute;
	color:#fff !important;
	width:100%;
	height:100%;
	box-sizing: border-box;
	padding:20px;
	text-align:center;
	display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	background: rgba(33, 39, 54, 0.5);
	transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
}
.instagram-item li a:hover p{
	opacity:1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#sns-box{
	width:90vw;
	margin:0 auto;
}
#sns-box .nav-sns{
    display: flex;
    bottom: 45px;
	width:100px;
	margin:50px auto 0;
}
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/sns_icn/icomoon.eot?84fnsc');
  src:  url('../fonts/sns_icn/icomoon.eot?84fnsc#iefix') format('embedded-opentype'),
    url('../fonts/sns_icn/icomoon.ttf?84fnsc') format('truetype'),
    url('../fonts/sns_icn/icomoon.woff?84fnsc') format('woff'),
    url('../fonts/sns_icn/icomoon.svg?84fnsc#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icontop-"], [class*=" icontop-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size:20px;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icontop-facebook:before {
  content: "\ea90";
}
.icontop-instagram:before {
  content: "\ea92";
}
.instagram,
.facebook{
	width: 20px;
    padding: 15px;
	color: #7f7f7f;
	-webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
    transition: all ease 0.4s;
}
.instagram:hover,
.facebook:hover{
	color:#222;
}

#cnt-footer-box{
	width:100vw;
	margin-top:100px;
	box-sizing:border-box;
	padding:100px 0;
    background: #c6c6ce;
}
#cnt-footer-box .cnt-box{
	width:1200px;
	display:flex;
	margin:0 auto;
}
#cnt-footer-box .box-2a{
    width: 50%;
	height:300px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#cnt-footer-box .box-2a .image{
	width:100%;
	height:300px;
	position:relative;
}
#cnt-footer-box .box-2a a{
	width:100%;
	height:100%;
	transition:all .4s cubic-bezier(.25,.1,.25,1);
}
#cnt-footer-box .box-2a .image:after{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.45);
	transition:all .4s cubic-bezier(.25,.1,.25,1);
}
#cnt-footer-box .box-2a a:hover .image:after{
	background-color: rgba(144,89,107,0.9);
	
}

#cnt-footer-box .catalog-box .image{
	background:url(../img/index/catalog-image.jpg) no-repeat center;
	background-size:cover;
}
#cnt-footer-box .shop-box .image{
	background:url(../img/index/shop-image.jpg) no-repeat center;
	background-size:cover;
}
#cnt-footer-box .support-box .image{
	background:url(../img/index/support-image.jpg) no-repeat center;
	background-size:cover;
}
#cnt-footer-box .contact-box .image{
	background:url(../img/index/contact-image.jpg) no-repeat center;
	background-size:cover;
}
#cnt-footer-box .box-2a h3{
	position:absolute;
	left:50%;
	top:50%;
	width:100%;
	transform:translate(-50%,-50%);
	color:#fff;
	z-index:1;
	font-family: 'Abel', sans-serif;
	font-weight:700;
	font-size: 1.7em;
    letter-spacing: 0.5em;
	line-height:1em;
	text-align:center;
}
#cnt-footer-box .box-2a h3 span{
	font-size: 0.6em;
    letter-spacing: 0.3em;
	font-weight:normal;
	margin-left: -0.3em;
	color:#eee;
	font-family: YuMincho, "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", Honoka, Meiryo, "メイリオ", serif;
}
@media screen and (max-height: 1000px) , (max-device-height : 1000px) {
	.main-text h2{
		font-size: 1.4em;
    	line-height: 1.7em;
	}
	.main-text h2 br{
		display:block;
	}
}
@media screen and (max-height: 700px) , (max-device-height : 700px) {
	.main-text{
		padding:10px 30px 30px;
	}
}
@media screen and (max-width: 1500px) , (max-device-width : 1500px) {
	.slideshow {
		width: 70vw;
		margin: 0 15vw;
		margin-top: -4em;
	}
	#cnt-news .news-box{
		width:80%;
	}
	#cnt-news .news-box dl{
		width:100%;
	}
}
@media screen and (max-width: 1250px) , (max-device-width : 1250px) {
	#cnt-style .style-box{
		display: block;
		min-width: 80%;
		margin: 100px auto 0;
	}
	#cnt-style .style-box .image-box{
		width:100%;
		margin-top: 40px;
	}
	#cnt-style .style-box .text-box{
		text-align:center;
		width:100%;
		height:inherit;
	}
	#cnt-style .style1 .text-box .text-in,
	#cnt-style .style2 .text-box .text-in{
		float:inherit;
		width: 80%;
		margin:0 auto;
		transform: none;
		top:0;
	}
	#cnt-style .style-box .text-box h3 span{
		margin-left:-0.8em;
	}
	#cnt-item{
		padding:150px 0;
		margin:0 auto;
		width:80%;
	}
	#cnt-item ul{
		width:100%;
	}
	#cnt-item ul li,
	#cnt-item ul li img{
		width:100%;
		height:100%;
	}
	#cnt-footer-box .cnt-box{
		width:80vw;
	}
}
@media screen and (max-width: 990px) , (max-device-width : 990px) {
	.slideshow {
		width: 65vw;
		margin: -4em 20vw 0 15vw;
	}
	.scroll{
		left:50px;
	}
	.main-text{
		right:50px;
		padding:30px 0;
	}
	
}
@media screen and (max-width: 900px) , (max-device-width : 900px) {
	#cnt-item{
		padding:100px 0;
		margin:0 auto;
		width:80%;
	}
	#cnt-item ul{
		width:100%;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#cnt-item ul li{
		width:50%;
		margin:0;
	}
	#cnt-style .style-box{
		margin: 80px auto 0;
	}
	.style-top-image{
		height:500px;
	}
	#cnt-item ul li:nth-child(3){
		margin-top:50px;
	}
	#cnt-item ul li img{
		width:100%;
	}
	#cnt-item ul li h3,
	#cnt-item ul li p{
		padding:0 30px;
	}
	.instagram-item{
		width:100%;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.instagram-item li{
		width:50%;
	}
	#cnt-footer-box .box-2a,
	#cnt-footer-box .box-2a .image{
		height:220px;
	}
	#cnt-footer-box .box-2a h3{
		font-size:1.3em;
	}
}
@media screen and (max-width: 700px) , (max-device-width : 700px) {
	#main-top{
		height:100vh;
	}
	.slideshow {
		width: 100vw;
		height: 100vh;
		margin: -4em 0 0 0;
	}
	.scroll{
		display:none !important;
	}
	.main-text{
		right: 50%;
		background: rgba(255,255,255,.8);
		top: 0;
		padding: 30px 20px;
		transform: translate(50%,-0%);
	}
	.main-text h2{
		color:#333;
	}
	.menu{
		display:flex;
		left: 50%;
		right:inherit;
    	transform: translate(-50%,0%);
		padding:20px 0;
		background: rgba(247,246,244,.5);
		justify-content: center;
	}
	.menu__item p {
    	padding-left: 20px;
	}
	.menu__item p:after{
		width:7px;
		left: 5px;
	}
	.menu__item:first-child p{
		padding-left:0;
	}
	.menu__item:first-child p:after{
		content:none;
	}
	#cnt-about{
		width:100vw;
		margin: 8em 0 0;
	}
	#cnt-about p.text br{
		display:none;
	}
	#cnt-about h2 span, #cnt-style h2 span, #cnt-item h2 span, #cnt-news h2 span{
		letter-spacing:0.1em;
	}
	.style-top-image{
		margin-top:0;
		height:350px;
	}
	#cnt-style .style-box{
		margin: 80px auto 0;
	}
	.link-style{
		width:80%;
		margin: 80px auto 0;
	}
	.link-style a{
		width:100%;
		font-size:.85em;
	}
	#cnt-news dl a{
		display:block;
	}
	#cnt-news dl dd{
		margin-left:0;
	}
	#cnt-news dl a svg.icn_link-arrow{
		display:none;
	}
}
@media screen and (max-width: 600px) , (max-device-width : 600px) {
	#main-top{
		height:550px;
	}
	.slideshow{
		height:500px;
		overflow: hidden;
	}
	#cnt-about h2,
	#cnt-style h2,
	#cnt-item h2,
	#cnt-news h2{
		font-size:1.8em;
		line-height:1em;
	}
	#cnt-about p.text,
	#cnt-style p.text,
	#cnt-item p.text,
	#cnt-news p.text{
		margin-top: 30px;
    	font-size: 1em;
	}
	#cnt-about{
		margin: 4em 0 0;
		padding: 80px 40px;
	}
	#cnt-about p.text{
		text-align:left;
	}
	#cnt-about p.link{
		margin-top:30px;
	}
	#cnt-about .link-style a span{
		letter-spacing:0;
	}
	#cnt-style{
		margin-top:60px;
		padding:60px 0;
	}
	#cnt-style .style-box .image-box{
		height:300px;
	}
	#cnt-style .style1 .text-box .text-in,
	#cnt-style .style2 .text-box .text-in{
		width: 86%;
	}
	#cnt-style .style-box .text-box h3{
		letter-spacing: 0.3em;
	}
	#cnt-style .style-box .text-box p{
		text-align:left;
	}
	#cnt-style .style-box .text-box p.link{
		margin-top:20px;
	}
	.link-style,
	.link-style a{
		margin: 40px auto 0;
	}
	#cnt-item{
		width:86%;
		padding: 60px 0;
	}
	#cnt-item .text-box p{
		margin-top:40px;
	}
	#cnt-item ul{
		margin-top:30px;
	}
	#cnt-item ul li{
		width: 100%;
		margin-top: 0;
		padding: 20px 20px 40px;
		border: 1px solid #ddd;
	}
	#cnt-item ul li:nth-child(2),
	#cnt-item ul li:nth-child(3){
		width:100%;
		margin-top:40px;
	}
	#cnt-item .link-style a{
		letter-spacing:0;
	}
	#cnt-news{
	    padding: 60px 0 40px 0;
	}
	#cnt-news .news-box{
	    width: 86%;
	}
	#instagram .isg{
		width:86%;
	}
	#cnt-news .news-box dl{
		font-size:0.9em;
	}
	#cnt-news dl a{
		padding:30px 20px;
	}
	#sns-box .nav-sns{
		margin:40px auto 0;
	}
	#cnt-item ul li h3,
	#cnt-item ul li p{
		padding: 0;
	}
	#cnt-footer-box{
		margin-top: 40px;
		padding: 40px 0;
	}
	#cnt-footer-box .box-2a,
	#cnt-footer-box .box-2a .image{
		height:170px;
	}
	#cnt-footer-box .box-2a h3{
		font-size:1em;
		letter-spacing:.3em;
		margin-left:.3em;
	}
	#cnt-footer-box .box-2a h3 span{
		margin-left:-.2em;
		font-size:.7em;
		letter-spacing:.1em;
	}
		
}
@media screen and (max-width: 700px) and (min-height: 1000px){
	.main-text{
		transform: translate(-.4em,-0%);
	}
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .pieces{
    /* IE11 にのみ適用される */
		width: 100%;
  }
	.menu{
		display: none;
	}
}