.spacer{
	width: 500px;
	height: 500px;
}

.link {
	text-decoration: none;
}
.wrapper {
	width: 100%;
	margin: 0 auto;
}
.headline {
	text-align: center;
	font-size: 2rem;
	line-height: 2.5rem;
	padding: 3rem 0 1rem 0;
	font-weight: 300;
}
/*************************************************** header  ******************************************************/
/*************************************************** header  ******************************************************/
/*************************************************** header  ******************************************************/
/* レスポンシブ用 */
.menu-wrapper {
	display: none;
}

.header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 99;
}
.main-nav {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	background-color: ghostwhite;
	height: 100%;
	max-height: 70px;
}
.logo--link-to-top {
	width: auto;
	height: 100%;
	max-height:  70px;
	vertical-align: bottom;
}
.main-nav__link {
	padding: 0 1rem;
}
.main-nav__link--logo {
	padding: 0;
	height: auto;
}
.main-nav__link--last {
	margin-left: auto;
	/* margin-right: 30px; */
}
.main-nav__text {
	color: #5c5b5b;
	font-size: 14px;
	font-weight: 300;
	text-decoration: none;
}
.hover1 {
	display: inline-block;
	position: relative;
}
.hover1::after {
	position: absolute;
	content: '';
	bottom: -10px;
	left: 0;
	width: 0;
	height: 1px;
	background: #212121;
	transition: all 0.3s ease 0s;
}
.hover1:hover {
	cursor: pointer;
}
.hover1:hover::after {
	width: 100%;
}
.mobile-nav{
	display: none;
}
.sub-nav{
	display: none;
}
#products-submenu {
	z-index: -1;
	position: fixed;
	top: 70px;
	bottom: 300px;
	right: 0;
	left: 0;
	background-color: rgba(33, 33, 33, 0.95);
	transition: transform 0.6s;
}
#products-submenu.hidden {
	transform: translateY(-600px);
}

.products-submenu-container {
	width: 90%;
	margin: 0 auto;
	padding-top: 50px;
}
.products-submenu-inner {
	padding: 50px;
	/* display: flex; */
	/* flex-direction: row; */
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	color: #616161;
}
.submenu-list {
	padding: 0 20px;
    margin: 0 auto;
	font-weight: 300;
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, auto));
	grid-auto-rows: 40px;
	justify-content: center;

}
.submenu-item {
	font-size: 14px;
    padding-left: 3px;
    margin-bottom: 14px;
	line-height: 16px;
	display: inline-block;
}
.submenu-item a {
	text-decoration: none;
	color: #616161;
}
.submenu-item a:hover{
	color: white;
}

.submenu-item:hover {
	color: white;
}
.submenu-item.head {
	color: white;
	/* padding-top: 5px; */
	 /* display: block; */
} 
/**************************************************** footer ****************************************************/
/**************************************************** footer ****************************************************/
/**************************************************** footer ****************************************************/
.footer {
	margin: auto;
	padding: 50px 0 100px 0;
	width: 100%;
	background-color: #212121;
}
.footer__container {
	max-width: 1230px;
	padding: 0 40px;
	margin: 0 auto;
}
.insta-follow-bunner__container {
	font-size: 16px;
	line-height: 24px;
	color: white;
	margin-bottom: 50px;
}
.insta-follow-bunner__container .insta-follow-bunner__inner {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 85px;
	padding: 20px 40px 17px;
	background-color: #333;
}
.insta-follow-bunner__headline {
	font-size: 30px;
}
.insta-follow-bunner__text{
	margin-left: 30px;
	color: #999;
}
.insta-follow-bunner__text--two {
	margin-left: auto;
	margin-right: 40px;
	color: #fff;
}
.insta-follow-bunner__logo {
	width: 40px;
	vertical-align: bottom;
}
.footer-nav {
	color: #999;
}
.footer-nav__inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-nav__headline {
	color: white;
	margin: 20px;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 300;
	line-height: 35px;
}

.footer-nav__headline--sns {
	display: inline-block;
}
.footer-nav__headline span {
	display: none;
}
.footer-nav__list-container {
	padding: 0 20px;
	margin-right: 40px;
	font-weight: 300;
}
.footer-nav__list {
	color: #3f3f3f;
	font-size: 14px;
	padding-left: 3px;
	margin-bottom: 14px;
	line-height: 16px;
}
.footer-link {
	text-decoration: none;
	color: #999;
}
.footer-nav__list--initial {
	color: white; 
	display: block;
	font-size: 14px;
	margin-bottom: 14px;
	line-height: 16px;
}
.footer-nav__list--last {
	padding-bottom: 15px;
}
.footer-bottom {
	margin-top:40px;

}
.footer-bottom__copyright {
	color: #999;
	font-size: 14px;
	font-weight: 300;
	line-height: 14px;
}
.footer-nav__icon-container {
	display: inline-block;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	padding-left: 20px;
}
.footer-nav__sns-icon {
	width: 30px;
	margin-right: 20px;
}
.footer-nav__list:hover {
	color: white;
}
.footer-link:hover {
	color: white;
}
/**************************************************** body ****************************************************/
/**************************************************** body ****************************************************/
/**************************************************** body ****************************************************/
.spacer--header {
	width: 100%;
	height: 30px;
}
/* --------------------------------トップ画像アニメーション ------------------------------------*/
/* --- 全体のBOX定義 ---------------------------------------- */
.image-container--top {
	background-color: black;
	position: relative;
	width: 100%;
	height: 800px;
	margin: auto;
	overflow: hidden;
}
/* --- 背景の指定 ------------------------------------------- */
.top-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
}  
/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.top-image--1 {
	background-image: url(../img/ectop2.jpg);   /* 背景の画像を指定 */
	background-size: cover;
	background-position: right;
	animation: bgAnime 20s infinite;   /* 2画像 × 各5s = 10s */
}
.top-image--2 {
	background-image: url(../img/top-image1.jpg);   /* 背景の画像を指定 */
	background-size: cover;
	background-position: right;
	animation: bgAnime2 20s infinite;   /* 2画像 × 各5s = 10s */
}
@keyframes bgAnime {
	0% { opacity: 1; }
	5% { opacity: 1; }
	25% { opacity: 1; }
	40% { opacity: 1; }
	50% { opacity: 0; }
	90% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes bgAnime2 {
	0% { opacity: 0; }
	5% { opacity: 0; }
	40% { opacity: 0; }
	50% { opacity: 1; }
	70% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; }
}

/* --------------------------------トップテキストアニメーション ------------------------------------*/
/*=== テキストの表示エリア ================================= */
.slide {
	/* display: inline-block; */
	position: relative;
	top: 400px;
	left: 10%;
	overflow: hidden;
	/* width: 600px; */
	height: 300px;
}
   
/*=== テキストの設定 ======================================= */
.slide div {
	display: block;
	position: absolute;
	left: 0;
	padding: 30px;
	/* background-color: rgba(255, 255, 255, 0.7); */
}
.text-container--1 {
	animation: slideAnime1 20s ease infinite;
}
.text-container--2 {
	animation: slideAnime2 20s ease infinite;
}
.top-image__headline {
	font-size: 70px;
	line-height: 1.076;
	letter-spacing: 0;
	margin-left: -5px;
}
.top-image__logo {
	width: 40%;
}
.top-image__headline--1 {
	color:white;
}
.top-image__headline--2 {
	color:white;
}
.top-image__link {
	display: inline-block;
	color:#212121;
	font-size: 16px;
	padding: 20px 35px 20px;
	margin-top: 24px;
	background-color: rgba(255,255,255,0.7);
}
.top-image__text {
	color:white; 
	font-size: 20px;
	line-height: 1.35;
	margin-top: 10px;
	font-weight:100;
}
/*=== スライドのアニメーション ========================= */
@keyframes slideAnime1 {
	0% { opacity: 0; }
	4% { opacity: 1; }
	35% { opacity: 1; }
	38% { opacity: 0; }
	45% { opacity: 0; }
	50% { opacity: 0; }
	90% { opacity: 0; }
	100% { opacity: 0; }
	/* 0% {
	left: 100%;
	opacity: 0;
	}
	5% {
	left: 0; 
	opacity: 1;
	}
	25% {
	   left: 0;
	}
	40% {
	   left: 0;
	}
	50% {
	left: -100%; 
	opacity: 1;
	}
	90% {
	left: -100%; 
	opacity: 0;
	}
	100% {
	left: 100%;
	opacity: 0;
	} */
}
@keyframes slideAnime2 {
	0% { opacity: 0; }
	5% { opacity: 0; }
	50% { opacity: 0; }
	53% { opacity: 1; }
	85% { opacity: 1; }
	88% { opacity: 0; }
	100% { opacity: 0; }
	/* 0% {
	left: 100%;
	}
	5% {
	left: 100%;
	}
	40% {
	left: 100%;
	}
	50% {
	left: 100%;
	opacity: 0;
	}
	55% {
	left: 0; 
	opacity: 1;
	}
	70% {
	left: 0;
	}
	90% {
	left: 0;
	}
	100% {
	left: -100%;
	} */
}
/* ニュース */
/* ニュース */
/* ニュース */

.news__wrapper {
	width: 100%;
	padding-bottom: 2rem;
	background-color: rgb(42, 42, 42);
}
.news__wrapper--alt {
	background-color: rgb(244, 244, 244);
}
.news-wrapper__headline {
	color: white;
	text-align: center;
	font-size: 2em;
	padding: 2em 0 0 0;
	font-weight: 300;
}
.news-wrapper__headline--alt {
	color: #212121;

}
.news__container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: flex-start;
}
.news__content-box {
	width:300px;
}
.news__content-container {
	margin: 1rem 1rem 2rem 1rem;
	position: relative;
	width: 100%;
	background-color: rgb(243, 243, 243);
}
.news__content-container--alt {
	background-color: rgb(255, 255, 255);
}
.news__content-inner {
	position: relative;
	padding: 30px 10px 0 10px;
	overflow: hidden;
}
.news__update {
	position: absolute;
	top: 0;
	padding: 1rem;
	color: rgb(42, 42, 42);
	background-color: rgba(255, 255, 255, 0.4);
	font-size: 0.7rem;
	z-index:2;
}
.news__update--mobile {
	display: none;
	color: rgb(42, 42, 42);
}
.news__head-image {
	width: 100%;
}
.news__headline, .news__lead {
	color: #212121;
}
.news__headline {
	padding: 16px 0 ;
	font-size: 20px;
	line-height: 2.5rem;
	border-bottom: solid 1px #212121;
}
/* .news__headline--alt {
		border-bottom: solid 1px #212121;
} */
.news__lead {
	overflow: hidden;
	line-height: 1.5rem;
	margin: 1.5rem 0;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news__more {
	color: white;
	padding-right: 1.5rem;
	text-align: right;
}
.news__more--alt {
	color: #212121;
}
.news__more a {
	font-weight: 300;
	display: inline-block;
	color: white;
	font-size: 16px;
	padding: 1.5rem;
	text-align: right;
	text-decoration: none;
}
.news__more--alt a{
	color: #212121;
}

/***************************************** SNS *************************************************/
/***************************************** SNS *************************************************/
/***************************************** SNS *************************************************/
.sns-link__wrapper {
	padding: 50px 0;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	
}
.sns_blog {
	font-size: 32px;
	margin: 30px 0;
}
.sns-link__container {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.other_list {
	width: 200px;
	margin: 10px;
	border: 1px solid #aeaeae ;
	
}
.imgBox {
	margin:0 auto;
	width: 100%;
	border-bottom: 1px solid #aeaeae;
	overflow: hidden;
}
.thumbnail {
	width: 200px;
	height: 200px;
	object-fit: cover;
	vertical-align: bottom;
}
.textBox {
	text-align: left;
	padding: 10px;
}
.date {
	font-size: 12px;
	padding-bottom: 5px;
}
.date span {
	color: red;
}
.title {
	line-height: 18px;
	margin-bottom: 5px;
	overflow: hidden;
}
.title a {
	color: #3f3f3f;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site_name {
	border-top:  1px solid #d0d0d0;
	color: #3f3f3f;
	line-height:  20px;
	padding-top: 15px;
}
.site_name a {
	color: #3f3f3f;
}
.sns-link__inner--instagram {
	margin: 50px;
	text-align: center;
}
.instagram__headline {
	font-size: 32px;
    margin: 30px 0;
}
.instagram-container {
	width:100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}
.instagram-item {
	overflow: hidden;
	position: relative;
	width: 200px;
	height: 200px;
	margin: 2px;
}
.instagram-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .5s;
}
.instagram-card__img:hover {
	transform:scale(1.1);
	opacity: 0.7;
	
}
.instagram-card__badge {
	position: absolute;
	top:5px;
	left: 5px;
}
.instagram-icon {
	width: 20px;
	color:rgba(255, 255, 255, 0.598);
}


/* カンパニーインフォ */
/* カンパニーインフォ */
/* カンパニーインフォ */
.company-info__wrapper {
	height: 100%;
	background-image: url(../img/underconstruction.png);
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
}

.company-info__container {
	color: white;
	padding: 3rem 0 5rem 0;
}
.company-info__table {
	width: 60%;
	margin: 0 auto;
	padding: 3rem 0 5rem 0;
	/* background-color: rgba(255, 255, 255, 0.3); */
}
.company-info__table th {
	width: 30%;
	padding: 1.5rem 1rem 1rem 1rem;
	text-align: right;
	font-weight: 300;
	border-bottom: solid 1px #e9e9e9;
}
.company-info__table td {
	width: 70%;
	padding: 1.5rem 1rem 1rem 1rem;
	text-align: left;
	font-weight: 300;
	border-bottom: solid 1px #e9e9e9;
}
.companyoutline_jp {
	font-size: 1.2em;
	line-height: 1.5em;
}
.companyoutline_en {
	font-size: 0.7em;
	line-height: 1.2em;
} 
td p a {
    text-decoration: none;
    color: white;
}

/* ストッキスト */
/* ストッキスト */
/* ストッキスト */
.stockist-info__container {
	color: white;
	padding: 3rem 0 5rem 0;
}
.stockist-info__table {
	width: 60%;
	margin: 0 auto;
	padding: 3rem 0 5rem 0;
	/* background-color: rgba(255, 255, 255, 0.3); */
}
.stockist-info__table th {
	width: 40%;
	padding: 1.5rem 1rem 1rem 1rem;
	text-align: right;
	font-weight: 300;
}
.stockist-info__table td {
	width: 60%;
	padding: 1.5rem 1rem 1rem 1rem;
	text-align: left;
	font-weight: 300;
}
.stockistoutline_jp {
	font-size: 1em;
	line-height: 1.3em;
}
/* アンダーコンストラクション */
/* アンダーコンストラクション */
/* アンダーコンストラクション */

.under-construction__container {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image:url(../img/underconstruction.png);
	background-size: cover;
	background-repeat: no-repeat;
}
.under-construction__inner {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	vertical-align: middle;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.under-construction__inner p {
	color: white;
	font-size: 1.5rem;
	line-height: 2rem;
	padding-bottom: 1rem;
}
