@charset "utf-8";
/*pc*/
@media screen and (min-width: 769px) {
	.sp {display:none!important;}
}

/*sp*/
@media screen and (max-width: 768px) {
	.pc {display:none!important;}
}

body, p, h1, h2, ul, dd, tr, td {
	padding: 0;
	margin: 0;
}
img {
	border: none;
	vertical-align: bottom;
}
.inner  {
	margin: 0 auto;
	width: 1000px;
	text-align: center;
}

body {
	font-size: 1em;
	line-height: 1.8em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 500;
	color: #373737;
}
header{
	margin-top: 50px;
}
nav{
	width: 54%;
	margin: 50px auto 0;
	overflow: hidden;
	display: block;
	font-family: "fira-code", sans-serif;
	font-weight: 400;
	font-style: normal;
}
ul{
	list-style-type: none;
}
nav li{
	float: left;
	margin: 0 40px;
	padding: 12px 0;
}
nav li a{
	height: 90px;
	padding: 8px 0;
	position: relative;
	color:#373737;
}
nav li a:hover{
	color:#373737;
}
nav a:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	height: 2px;
	display: block;
	width: 0px;
	background-color: #4B4B4B;
	transition: 0.3s;

}
nav a:hover:after {
	width: 100%;
	left: 0;
}
.nav_hover a:after{
    left: 0;
    width: 100%;
}
/* nav-sp */
#nav-toggle {
	width: 50px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 2000;
	display: none;
}
.mv {
	margin-top:60px;
	margin-bottom: 88px;
	padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
	body{
		padding-top: 30px;
	}
	header {
		margin-top: 0;
		position: relative;
		width: 100%;
		padding-bottom: 25px;
		}
	h1{
		width: 25%;
		margin: 0 auto;
	}
	.inner {
		width:100%;
	}
	img{
		max-width: 100%;
		height: auto;
	}
	.mv{
		width: 90%;
		margin: 30px auto 10px;
		padding-bottom:30px;
	}
	#nav-toggle {
		display: block;
		position: absolute;
		right: 6%;
		top: -5px;
	}
	nav {
		background-color: hsla(0,0%,100%,0.91);
		position: fixed;
		top: 70px;
		z-index: 100;
		width: 100%;
		display: none;
	}
	nav li{
		float: none;
		padding: 25px 0;
	}
	nav img{
		vertical-align: middle;
	}
	#all .parallax-box{
		width: 100%;
	}
	.font09{
		font-size: 0.9em;
	}
}
/*footer*/
footer{
	overflow: hidden;
	text-align: center;
	font-size: 0.95em;
}
a{
	text-decoration: none;
	color: #fff;
}
a:hover{
	color: #d4d4d4;
}
footer .parallax-box{
    height: 230px;
    position: relative;
}
.bk {
    height: 180px;
    width: 100%;
    position: absolute;
    top: 25px;
    background-color: #1a191854;
}

.outer_box{
	width: 900px;
	margin: 0px auto;
	padding: 35px 0;
	overflow: hidden;
}
.footer_box{
	float: left;
	width: 210px;
	margin: 0 45px;
	text-align: left;
}

.copy{
	clear: both;
	background-color: rgba(255, 255, 255, 0.692);
	font-size: 14px;
	height: 30px;
}
.sns{
	text-align: right;
}
.sns p{
	float: left;
	width: 100px;
	margin-bottom: 30px;
}
.sns a:hover img{
	opacity: 0.7;
}
.link{
    margin-bottom: 70px;
}
.link a, .contents a{
	color: #373737;
}
.link a:hover, .contents a:hover, footer .page_top a:hover{
	opacity: 0.7;
}
.page_top{
	position: fixed;
	right: 5%;
	bottom: 10%;
}
.soon{
	text-align: center;
	margin: 150px auto;
}
@media screen and (max-width: 768px) {
	footer .parallax-window{
		width: 100%;
	}
	footer .parallax-box{
		width: 100%;
	}
	.outer_box{
		width: 95%;
		padding-top: 15px;
	}
	.footer_box{
		width: 40%;
		margin: 0 4% 0 0;
		font-size: 0.8em;
	}
	.sns{
		width: 12%;
		margin: 0;
	}
	.sns p{
		float: none;
		width:100%;
	}
	.page_top{
		position: fixed;
		right: 3%;
		bottom: 3%;
		width: 16%;
	}
	.link {
		margin-bottom: 40px;
	}
	.arrow_btn {
		margin-left: -20px;
	}
}

/* 間隔 */
.m_15{
margin-top: 15px;
}
.m_20{
margin-top: 20px;
}
.m_25{
margin-top: 25px;
}
.m_50{
	margin-top: 50px;
	}
@media screen and (max-width: 768px) {
	.m_50{
		margin-top: 0;
		}
}

/* 動く矢印 */
.arrow_btn{
    position: relative;
	display: inline-block;
	font-size: 1.05em;
}
.arrow_btn span{
 font-size: 0.8em;
}
.arrow_btn:after {
    position: absolute;
    top: 10%;
    right: -1.5em;
    content: url(../img/arrow.png);
}
.arrow_btn:hover::after {
  animation: arrow 1.2s infinite;
}
@media screen and (max-width:768px){
.arrow_btn{
	font-size: 1em;
}
}
@keyframes arrow {
  50% {
    right: -2.1em;
    opacity: 1;
  }
  100% {
    right: -2.3em;
    opacity: 0;
  }
}
/* ふわっと上がる効果 */
.list-mv07{
	opacity: 0;
	transform: translate(0,40px);
	-webkit-transform: translate(0,40px);
	transition: 1.1s;
}
.mv07{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}
/* fadein */
body {
    animation-name: fadeIn;
    animation-duration: 2s;
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}




/*----------------------------------------------
                     index
----------------------------------------------*/

.whatis .parallax-box{
    width: 779px;
    height: 580px;
    margin: 0 auto;
    padding-top: 70px;
    position: relative;
}
.whatis02 .parallax-box{
    height: 180px;
}
.whatis{
	text-align: center;
}
.whatis_text{
	position: absolute;
    top: 160px;
    left: 90px;
    width: 272px;
    line-height: 2.5;
}
.home_wrap h2{
    margin: 35px 0;
}
.home_wrap  .jewelry{
    overflow: hidden;
    padding: 0 0 30px;
}
.home_wrap  .jewelry .box{
    width: 840px;
    margin:0 auto;
    overflow: hidden;
    padding-top: 30px;
    padding-bottom: 60px;
}
.home_wrap  .jewelry p{
    float: left;
    margin: 0 45px;
}
.inner .oem{
    margin: 70px 0 100px;
}
.inner .oem.order{
    margin: 180px 0 100px;
}
.contact_other{
    border: solid 1px #373737;
    padding: 30px;
    margin: 50px auto 70px;
    width: 70%;
}
.contact_other p{
line-height: 2.5em;
}
.contact_other a{
    color: #373737;
    font-size: 1em;
}
.contact_other span{
 font-size: 0.7em;
}
@media screen and (max-width: 768px) {
.whatis .parallax-box{
    height: 680px;
    padding-top: 35px;
}
.whatis_sp img{
    width: 315px;
}
.whatis_text {
    top: 375px;
    left: 35%;
    width: 30%;
    font-size: 0.8em;
}
.home_wrap  .jewelry .box{
    width: 80%;
    padding: 0;
}
.home_wrap  .jewelry p{
    float: none;
    margin: 20px 0;
}
}
@media screen and (max-width: 599px) {
	.whatis_text {
			left: 20%;
			width: 60%;
	}
}
/*20210729追記*/
body .trip{
	padding: 50px 0 100px;
    line-height: 2.5;
	letter-spacing: .1em;
}

.trip h3{
	margin: 60px 0 40px;
    font-size: 25px;
    font-weight: 500;

}
.mail{
	margin-bottom: 50px;
}
.note{
	display: inline-block;
    margin-top: 30px;
    border: 1px solid;
    padding: 0 20px;
}
@media screen and (max-width: 599px) {
	body .trip{
	margin: 0 10px;
	}
	.trip h3 {
		margin: 50px 0 30px;
		font-size: 120%;
	}
	.trip p:first-of-type{
		text-align: left;
		letter-spacing: 0;
	}
	.trip .note{
		margin-bottom: 40px;
	}
	.note{
		padding: 0 10px;
	}
}