/* CSS Document */
@charset "UTF-8";

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/*body*/
body {
	font-size: 16px;
	line-height: 2em;
	font-family: sans-serif;
	font-feature-settings: "pkana" 1;
	color: #333;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

a:hover img,
#stafflink:hover,
.syouhin ul li:hover {
	opacity: 0.7;
}

h2 {
	font-size: 1.5rem;
	padding: 0.25rem;
	color: #00afa4;
	margin-bottom: 0.25rem;
}

.pc-img {
	display: block;
}

.sp-img {
	display: none;
}

#top h2 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	font-style: normal;
}

header {
	width: 100%;
	position: relative;
}


header nav {
	font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	font-size: 18px;
	margin: 2rem 0;
	border-top: 1px solid #6a6b6a;
	border-bottom: 1px solid #6a6b6a;
}

header nav ul ul{
	display: block;
}
header nav ul li{
	position: relative;
}
header nav ul li.has-child >ul{
	position: absolute;
	left: 0;
	top: 50px;
	visibility: hidden;
	opacity: 0;
	transform:  all .3s;
	background: #fff;
	z-index: 10;
}
header nav ul li.has-child:hover >ul,
header nav ul li.has-child > ul:hover
header nav ul li.has-child:active >ul{
	visibility: visible;
	opacity: 1;
}
header nav ul li.has-child.show > ul {
  visibility: visible;
  opacity: 1;
}
header nav li.has-child ul li a:hover,
header nav li.has-child ul li a:active{
	background-color: #e2f6f4;
}
header nav li a {
	display: block;
	padding: 0.25rem 0;
	color: #00afa4;
	text-decoration: none;
	text-align: center;
}

#title {
	width: 100%;
	max-width: 1280px;
	margin: auto;
	background: url(../images/titlebg.png) no-repeat;
	height: 170px;
	display: flex;
	align-items: center;
	padding-left: 2rem;
	font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	font-weight: normal;
}

.red {
	color: red;
}

@media screen and (max-width:980px) {
	#title {
		width: 96%;
		height: 1em;
		padding: 2em 1rem;
		font-size: 1.5rem;
	}
}

@media screen and (min-width:640px) {
	.no-pc {
		display: none;
	}

	header nav ul {
		width: 100%;
		display: flex;
		justify-content: space-between;
		list-style: none;
		padding: 0;
		margin: 0 auto;
	}
		/*2階層目以降は横並びにしない*/
	header nav ul ul {
		display: block;
	}

	/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
	header nav ul li {
		position: relative;
	}

	header nav li a:hover:after,
	#top nav li#top a:after,
	#making nav li#making a:after,
	#product nav li#product a:after,
	#jreform nav li#jreform a:after,
	#about nav li#about a:after,
	#contact nav li#contact a:after {
		content: "";
		width: 0;
		height: 0;
		border: 8px solid transparent;
		border-bottom: 8px solid #6a6b6a;
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	/*ナビゲーションのリンク設定*/
	header nav ul li a {
		display: block;
		text-decoration: none;
		color: #00afa4;
		padding: 0.4rem 0;
		transition: all .3s;
	}

	header nav ul li li a {
		padding: 10px;
		text-align: left;
	}

	header nav ul li a:hover {
		color: #75ddd6;
	}
	/*== 2階層目の共通設定 */

	/*下の階層を持っているulの指定*/
	header nav li.has-child ul {
		/*絶対配置で位置を指定*/
		position: absolute;
		left: 0;
		top: 50px;
		z-index: 4;
		/*形状を指定*/
		background: #fff;
		width: 200px!important;
		/*はじめは非表示*/
		visibility: hidden;
		opacity: 0;
		/*アニメーション設定*/
		transition: all .3s;
	}

	/*hoverしたら表示*/
	header nav li.has-child:hover>ul,
	header nav li.has-child:active>ul {
		visibility: visible;
		opacity: 1;
	}

	header nav li.has-child ul li a:hover,
	header nav li.has-child ul li a:active {
		background-color: #e2f6f4;
	}

}

header h1 {
	margin-top: 2rem;
	text-align: center;
}

article {
	width: 100%;
	margin: 0 auto 2rem auto;
	display: flex;
	justify-content: space-between;
}

footer {
	height: 10rem;
	padding-top: 0.5rem;
	background: #00afa4;
	color: #fff;
	font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
}

footer div {
	display: flex;
	width: 100%;
	margin: auto;
	justify-content: space-between;
}

footer ul {
	list-style: none;
	display: flex;
	justify-content: space-between;
	border-right: 1px solid #fff9b1;
	font-size: 0.9rem;
}

footer li {
	border-left: 1px solid #fff9b1;
	padding: 0 1rem;
	color: #fff9b1;
}

footer li a {
	text-decoration: none;
	color: #fff9b1;
	font-size: 18px;
}

/*HOME*/
#headimg {
	outline: 4px solid #00afa4;
	margin: 0 auto 2rem auto;
	display: block;
}

#top #fb {
	width: 100%;
}

#fb .facebook {
	outline: 1px solid #ccc;
	margin-bottom: 1.25rem;
}

#top #banner ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

#top #banner li {
	list-style: none;
}

#top #banner li:first-child {
	margin-bottom: 0.5rem;
}

#top #banner.toppage li:first-child {
	margin-bottom: 0;
}


/*全体的な大きさうんぬん*/
@media screen and (min-width:1280px) {

	article,
	footer div,
	nav ul {
		max-width: 1280px;
	}

	#top #banner ul {
		max-width: 498px;
	}

	#top #banner.toppage ul {
		max-width: 1280px;
		column-gap: 18px;
	}

	#top #fb {
		max-width: 754px;
	}

	#top #new-item {
		max-width: 1280px;
		margin: 0 auto;
		width: 100%;
	}
}

@media screen and (max-width:1280px) and (min-width:980px) {
	#top #fb {
		width: 70%;
	}

	#top #banner li {
		margin-bottom: 0.5rem;
	}

	#top #banner {
		max-width: 244px;
	}
}

@media screen and (max-width:980px) and (min-width:640px) {
	article {
		flex-wrap: wrap;
	}

	#top #banner {
		margin: auto;
	}

	footer div {
		flex-direction: column;
		text-align: center;
	}

	footer ul {
		max-width: 400px;
		margin: auto;
	}
}

@media screen and (max-width:1280px) and (min-width:640px) {

	article,
	footer div,
	nav ul,
	#headimg {
		width: 96% !important;
	}

	#top #banner.toppage {
		width: 100%;
		max-width: 96%;
		margin: 0 auto;
	}

	#top #banner.toppage ul {
		flex-wrap: nowrap;
		column-gap: 15px;
	}

	article section:not(:last-child) {
		margin-bottom: 2rem;
	}

	#top #fb img {
		margin: auto;
		display: block;
	}

	#top #banner {
		width: 30%;
	}
}

@media screen and (max-width:640px) {
	header h1 {
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	article {
		flex-wrap: wrap;
	}

	section:not(:last-child) {
		margin-bottom: 2rem;
	}

	article,
	footer div,
	#headimg {
		width: 90% !important;
	}

	#top #banner.toppage ul {
		row-gap: 15px;
	}

	#top #banner li {
		margin: 0 auto 0.5rem auto;
		max-width: 244px;
	}

	footer div {
		flex-direction: column;
		text-align: center;
	}

	footer ul {
		width: 300px;
		margin: auto;
	}
	footer.en ul{
		width: auto;
	} 

	footer li a {
		font-size: 14px;
	}

	small#copyright {
		font-size: 12px;
	}
}

/*スマホナビの設定*/
span.menubutton {
	display: none;
}

@media screen and (max-width:640px) {
	span.menubutton {
			display: block;
		}
	nav {
		width: 100%;
	}

	nav ul {
		display: none;
	}
	nav ul li {
		position: relative;
	}

	nav span {
		height: 36px;
		line-height: 36px;
		display: block !important;
		text-align: center;
	}

	nav span:before {
		content: "▼";
		margin-right: 0.5em;
		font-size: 60%;
		vertical-align: top;
		color: #666;
	}

	nav span.active:before,
	nav li.active span::before {
			content: "▲";
		}

	nav span.active {
		border-bottom: 1px solid #ccc;
	}

	nav span:first-child {
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
	nav #product span:first-child {
			border-top: none;
			border-bottom: none;
		}
	nav ul {
		display: none;
		border: none;
		padding-bottom: 0;
		list-style: none;
	}

	nav li {
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #ccc;
	}

	nav li ul li:last-child {
		border: none;
	}

	nav li ul li {
		background: #EEE;
	}

	nav.track {
		position: fixed;
		z-index: 999;
		background: #fff;
		border-bottom: 1px solid #ccc;
		top: 0;
		margin-top: 0;
	}
	header nav li.has-child >ul {
			position: absolute;
			left: 0;
			top: 100%!important;
			width: 100%;
			display: none;
			visibility: none;
			opacity: 1;
			background-color: #e2f6f4;
		}
nav ul li.has-child.active > ul {
  visibility: visible;
  opacity: 1;
	position: relative;
}

		header nav ul li li a {
			text-align: center;
		}

		header nav ul li a {
			border-bottom: 1px solid #00afa4;
			text-align: center;
		}

		header nav ul li#contact a {
			border-bottom: none;
		}
}

/*パンくずリスト*/
.pankuzu {
	list-style: none;
	display: flex;
	width: 96%;
	max-width: 1280px;
	flex-wrap: wrap;
	margin: 1rem auto;
	font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
}

.pankuzu li:not(:last-child)::after {
	content: ">";
	padding: 0 0.5em;
}

.pankuzu a {
	color: #00afa4;
	text-decoration: underline;
}

.pankuzu a:hover {
	text-decoration: none;
}

/*secondary*/
#secondary a{
	display: block;
	background-color: #fff;
}
article {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
}

#top article {
	flex-direction: row !important;
}

#primary,
#lanalana-page {
	width: 78%;
}

#primary h1 {
	font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
	color: #00afa4;
}
.en #primary h1{
	font-size: 1.4rem;
	font-weight: 600; 
}

#secondary {
	width: 20%;
}

#secondary div {
	width: 100%;
	padding: 10px;
	background: #def5f4;
}

#secondary div h3 {
	background: #00afa4;
	text-align: center;
	color: #fff;
	font-weight: normal;
	margin: auto;
}

#secondary div>ul {
	background: #fff;
	margin: 0 auto 10px auto;
	padding: 5%;
}

#secondary li {
	list-style: square;
	margin-left: 1em;
}

#secondary li a {
	text-decoration: none;
	color: #000;
}

#secondary li a:hover {
	text-decoration: underline;
	color: #999 !important;
}

#secondary li a:visited {
	color: #666;
}

#secondary .catalog {
	margin-top: 1rem;
	display: block;
}

@media screen and (max-width:980px) {
	article:not(#top) {
		flex-direction: column;
	}

	#primary,
	#secondary,
	#lanalana-page {
		width: 90%;
		margin: auto;
	}

	#lanalana-page {
		margin-bottom: 100px !important;
	}

	#secondary img {
		margin: auto;
		display: block;
	}
}

/*maiking*/

.flow ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flow img {
	outline: 1px solid #ccc;
	margin-bottom: 0.5rem;
}

.flow li {
	width: 233px;
	margin-bottom: 4rem;
	text-align: left;
	line-height: 1.5rem;
}

.syouhin ul {
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 4rem;
}

.syouhin li {
	width: 300px;
	background-color: #00afa4;
}

.syouhin a {
	text-decoration: none;
	display: block;
	width: 100%;
	color: #fff;
}

/* トップページ */
.slider {
	max-width: 1290px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	height: auto;
	margin-bottom: 50px;
}


section#new-item {
	width: 100%;
}

#wrap {
	max-width: 1290px;
	width: 100%;
}

#main-slider,
#thumbnail-slider {
	width: 100%;
	margin: 0 auto 10px;
}

#main-slider {
	margin-top: 50px;
}

.slick-img img,
.slide-item img {
	width: 100%;
	display: block;
}

.slick-img img:first-of-type,
.slide-item img:first-of-type {
	display: block;
}

.slick-img img:last-of-type,
.slide-item img:last-of-type {
	display: none;
}

li.slide-item {
	text-align: center;
}

.slick-slider,
.slick-list,
.slick-track,
.slick-slide {
	height: auto !important;
}

.slick-slide>div {
	height: 100%;
}

.slider-container {
	position: relative;
}

#thumbnail-slider {
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
}

#thumbnail-slider .slick-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 100%;
	margin-right: 10px !important;
}

#thumbnail-slider .thumbnail-item img {
	width: 100%;
	height: auto;
	max-height: 100%;
}

#thumbnail-slider {
	height: auto !important;
}

#thumbnail-slider .slick-prev,
#thumbnail-slider .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	z-index: 2;
}

.slick-prev:before,
.slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: 1;
	color: #666 !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#thumbnail-slider .slick-prev {
	left: -10px;
}

#thumbnail-slider .slick-next {
	right: -10px;
}

#thumbnail-slider .thumbnail-item {
	margin-bottom: 0;
}

.thumbnail-item {
	position: relative;
	box-sizing: border-box;
}

.thumbnail-item::after {
	content: '';
	background-color: rgba(0, 0, 0, 0.2);
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: .3s opacity linear;
}

.slick-current.thumbnail-item:after {
	opacity: 0;
}

img.lana-logo {
	width: 40%;
	display: block;
}

.slide-item a.slide_btn,
.video-txt ul li a {
	display: inline-block;
	background-color: #666;
	color: #fff;
	text-decoration: none;
	margin: 20px auto;
}

.video-txt ul li a.first-btn {
	background-color: #efefef;
	color: #666;
}

.slide-item a.slide_btn {
	padding: 10px 100px;
}
.en .slide-item a.slide_btn{
	padding: 10px 20px;
}

.video-txt ul li a {
	padding: 10px 20px;
}

#top .art-video {
	display: flex;
	flex-direction: row-reverse !important;
	align-items: center;
	width: 100%;
	height: auto;
}

.art-video .video-txt {
	width: calc(50% - 10px);
}

.art-video .video-txt p {
	font-size: 18px;
	margin-top: 20px;
}

.video-txt ul {
	display: flex;
	column-gap: 20px;
}

.video-txt ul li {
	list-style: none;
}

.video-container {
	width: calc(50% - 10px);
	position: relative;
	display: inline-block;
}

.video-play {
	width: calc(50% - 10px);
	max-width: 100%;
	margin: 0 auto;
}

.play-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.play-btn:hover {
	background-color: rgba(0, 0, 0, 0.7);
}

.video-container video,
.video-play video {
	width: 100%;
	margin: 0 auto;
	height: auto;
	display: block;
}

@media screen and (max-width:960px) {
	.flow ul {
		justify-content: space-around;
	}

	.syouhin ul {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.syouhin ul li:not(:first-child) {
		margin-top: 1rem;
	}
}

/*product*/
.rosecut ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.rosecut img {
	outline: 1px solid #DBDBDB;
	margin-bottom: 0.5em;
}

.rosecut li {
	margin-bottom: 64px;
	text-align: center;
}

@media screen and (max-width:1280px) {
	.rosecut ul {
		justify-content: space-around;
	}
}


/*about*/
.aisatsu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 32px;
	align-items: center;
}

.aisatsu div {
	max-width: 600px;
	width: 100%;
}

#stafflink {
	background-color: #00afa4;
	text-align: center;
	margin-bottom: 1.5rem;
	width: 100%;
	display: block;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 2rem;
	padding: 0.5rem 0;
}

.office {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 1.5rem;
}

.office span {
	margin: auto;
}

.office dl {
	width: auto;
	max-width: 490px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.office dt {
	width: 30%;
	border-right: 1px solid #ccc;
}

.office dd {
	width: 70%;
	padding-left: 1.5rem;
}

.acccess {
	margin-bottom: 2rem;
}

.recruit p {
	margin-bottom: 1.5rem;
}

.recruit li {
	list-style-position: inside;
	width: 100%;
}

/*contact*/
#contact #primary section {
	margin-bottom: 4rem;
}

::-webkit-input-placeholder {
	color: #ccc;
}

::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #ccc;
}

/*reform*/
#jreform #primary section {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	align-items: center;
}

#jreform #primary section div {
	max-width: 440px;
	width: 100%;
}

#jreform #primary section div a {
	margin: 1rem 0;
	text-align: center;
	display: block;
}

/*making product original*/
#originalbrand {
	padding-top: 32px;
	width: 90%;
	margin: 0 auto 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

#originalbrand p {
	width: 100%;
	max-width: 620px;
	margin-bottom: 10px;
	line-height: 1.5em;
}

#originalbrand img {
	display: flex;
	flex-wrap: wrap;
	margin-left: 30px;
}

#kome {
	display: block;
	text-align: right;
}

.audorare {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 24px 0 32px 0;
	align-items: center;
}

.audorare img {
	margin: 30px 30px 30px 0;
}

.audorare li {
	list-style: none;
	background-color: #00afa4;
	text-align: center;
	width: 350px;
	margin-bottom: 12px;
	align-items: center;
}

.audorare ul {
	align-items: center;
	margin: 30px 0 30px 0;
}

.audorare a {
	text-decoration: none;
	color: #fff;
}

.audorare h2 {
	font-weight: normal;
}

.originallist p {
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.5rem;
}

.originallist li {
	list-style: none;
}

.originallist ul>li ul {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

.originallist li li {
	width: 280px;
}

.originallist .single {
	width: 50%;
	min-width: 280px;
	margin: auto;
}

.originallist .single div {
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
	align-items: center;
}

.originallist img {
	margin: 20px auto;
	display: block;
	text-align: center;
}

.originallist p {
	text-align: left;
	font-size: 14px;
	line-height: 1.5em;
}

/*サイトマップ*/
.sitemap h3 {
	font-size: 1.5rem;
}

.sitemap h1 {
	width: 100%;
}

.sitemap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.sitemap div {
	margin: 1rem 0;
	width: 50%;
}

.sitemap li {
	margin-left: 1.5rem;
	list-style: none;
}
.en .sitemap li{
	list-style: square;
}
.sitemap li a {
	color: #000;
	text-decoration: none;
}

.sitemap li a:hover {
	text-decoration: underline;
}

.sitemap li a:visited {
	color: #666;
}

@media screen and (max-width:980px) {
	.sitemap div {
		width: 100%;
	}

}

@media screen and (max-width:640px) {
	.sitemap div {
		display: block;
	}

	.sitemap h1 {
		width: 100%;
	}
}

/*catalog*/
#ebook ul {
	list-style: none;
}

#ebook dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	text-align: center;
}

#ebook dt {
	margin: auto;
}

#ebook dd ul {
	display: flex;
	justify-content: space-around;
}

#ebook dl li {
	list-style: none;
	margin: 1rem;
}

#ebook span {
	font-size: 2rem;
	text-align: center;
}

#ebook li p {
	text-align: left;
}

#cataloglink {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin: auto;
}

#cataloglink aside {
	width: 48%;
	min-width: 240px;
	margin: 2rem auto;
}

#cataloglink div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 50%;
	min-width: 240px;
	margin: 1rem auto;
}

#cataloglink div a {
	margin: 1rem auto;
}

#account_new {
	background-color: #ea5312;
	margin: 0 auto 2rem auto;
	width: 60%;
	text-align: center;
	display: block;
	min-width: 240px;
	font-size: 25px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 10px;
	transition: background-color 0.2s ease-in-out 0s;
}

#account_new:hover {
	background-color: #f3885a;
	transition: background-color 0.2s ease-in-out 0s;
}

.shadow {
	box-shadow: 1px 1px 12px -5px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width:640px) {
	#ebook dd ul {
		display: block;
	}




}


@media screen and (max-width:640px) {
	#ebook dd ul {
		display: block;
	}

	#originalbrand img {
		margin-left: 0;
	}

	.audorare ul {
		width: 100%;
	}

	.audorare ul li {
		width: 100%;
	}
}

/*lanalana*/
.lanalana-items {
	display: flex;
	justify-content: center;
	column-gap: 20px;
	background-color: #f2fcfb;
	padding: .5rem;
}

.lanalana-page img {
	display: block;
	margin: 100px auto 50px;
	width: 100%
}

.lanalana-page ul li {
	list-style: none;
	width: 100%;
	margin-bottom: 1.5rem;
}

.lanalana-page h2,
.lanalana-page h3,
.lanalana-page small {
	font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "MS P明朝", "MS PMincho";
	font-style: normal;
}

.lanalana-page h2,
.lanalana-page h3 {
	font-weight: 600;
}

.lanalana-page small {
	font-weight: 400;
}

.lanalana-page h2,
.lanalana-page h3 {
	font-size: 1.2rem;
}

.lanalana-page small {
	font-size: 1rem;
	margin-top: 1rem;
	display: block;
}
.lanalana_registration{
	color: #666;
	text-decoration: none;
}
.lanalana_registration:hover{
	text-decoration: underline;
	color: #999;
}
@media screen and (max-width:640px) {
	.lanalana-items {
		flex-direction: column;
	}
}

/*PCPCPCPCPCPCPCPCPCPCPCPCPC*/
@media screen and (min-width:641px) {
	/* .art-topitem {} */

	.art-topitem ul {
		display: flex;
		justify-content: left;
		flex-wrap: wrap;
		width: 100%;
	}

	#new-item .art-topitem ul {
		justify-content: space-between;
	}

	.art-topitem li {
		list-style-type: none;
		width: calc(100% / 3 - 20px);
		margin-bottom: 50px;
		margin-right: 20px;
	}

	#new-item .art-topitem li {
		width: calc(100% / 4 - 20px);
		margin-right: 0;
	}

	.art-topitem li a {
		display: block;

	}

	.art-topitem li a img {
		width: 100%;
		margin-bottom: 5px;
		border: 1px solid #999;
		padding: 10px;
	}

	.art-topitem li p {
		display: block;
		color: #333;
		font-size: 16px;
		text-align: center;
	}



	.art-topcopy {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-right: auto;
		margin-bottom: 50px;
		margin-left: auto;
		align-items: center;
		position: relative;
		z-index: 200;
		background-color: rgba(255, 255, 255, 0.8);
		padding: 30px;
		width: 1090px;
	}



	.img-topcopy {
		width: 200px;
		height: auto;
		display: block;
		position: relative;
		z-index: 200;
	}



	.div-topcopy {
		font: 40px/1.5em "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
		text-align: center;
		color: #333;
	}



	.ul-lang {
		top: -50px;
		max-width: 1280px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: right;
		flex-wrap: wrap;
		margin-top: 40px;
	}

	.ul-lang li {
		list-style-type: none;
		margin-left: 5px;
	}

	.ul-lang li:last-child {
		border-left-style: none;
	}




	.ul-lang li a {
		padding: 10px 20px;
		font-size: 15px;
		text-decoration: none;
		background-color: #efefef;
		font-weight: bold;
		color: #666;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	.ul-lang li a:hover {
		background-color: #ddd;
		cursor: pointer;
	}

	.nowlang a {
		background-color: #999 !important;
		color: #fff !important;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	.nowlang a:hover {
		background-color: #b2b2b2!important;
	}

	.form24 {
		width: 600px;
		margin-right: auto;
		margin-left: auto;
	}

	.form24 input,
	.form24 textarea,
	.form24 select {
		color: #333;
		font-size: 16px;
		line-height: 1.5em;
		padding: 10px;
		border: 1px solid #ccc;
	}

	.form24 dt {
		margin-bottom: 10px;

	}

	dt.mfp {
		padding: 5px 10px;
		background-color: #00afa4;
		color: #fff;
		font-size: 18px;
		margin-top: 25px;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	dt.mfp {
		padding: 5px 10px;
		background-color: #00afa4;
		color: #fff;
		font-size: 18px;
		margin-top: 25px;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	dt.mfp .must {
		color: yellow;
		font-size: 15px;
		font-weight: bold;
		margin-left: 1em;
	}

	.ipt025 {
		width: calc(25% - 5px);
		margin-bottom: 5px;
	}

	.ipt050 {
		width: calc(50% - 5px);
		margin-bottom: 5px;
	}

	.ipt100 {
		width: 100%;
		margin-bottom: 5px;
	}

	.btnform {
		width: 8em;
		padding-top: 15px;
		padding-bottom: 15px;
		border-style: none;
		display: block;
		margin-right: 10px;
		margin-left: 10px;
	}

	.btnform1 {
		color: #fff;
		font-size: 16px;
		text-align: center;
		background-color: #00afa4;

	}

	.btnform0 {
		color: #333;
		font-size: 16px;
		text-align: center;
		background-color: #efefef;
		border: 1px solid #ccc;
	}

	.btnform:hover {
		cursor: pointer;
	}


	.must {
		color: #fff;
	}

	.confirm {
		display: inline-block;
		width: 600px;
		margin-right: auto;
		margin-left: auto;
	}

	.confirm input {
		display: inline-block;
		margin-top: 25px;
	}

	.btnformc {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
}

/*SPSPSPSPSPSPSPSPSPSPSPSPSP*/
@media screen and (max-width:640px) {

	:target {
		scroll-margin-top: 80px;
	}

	.slick-img img:first-of-type,
	.slide-item img:first-of-type {
		display: none;
	}

	.slick-img img:last-of-type,
	.slide-item img:last-of-type {
		display: block;
	}

	.sp-img {
		display: block;
	}

	.pc-img {
		display: none;
	}

	.art-topitem {
		width: 100% !important;
	}

	.art-topitem ul {
		display: flex;
		justify-content: left;
		flex-wrap: wrap;
		width: 100%;
	}

	.art-topitem li {
		list-style-type: none;
		width: calc(100% / 2 - 10px);
		margin-right: 5px;
		margin-left: 5px;
		margin-bottom: 10%;
	}

	.art-topitem li a {
		display: block;

	}

	.art-topitem li a img {
		width: 100%;
		margin-bottom: 5px;
		border: 1px solid #999;
		padding: 5px;
	}

	.art-topitem li p {
		display: block;
		color: #333;
		font-size: 13px;
		text-align: center;
	}

	.slider {
		margin-right: auto;
		margin-left: auto;
		overflow: hidden;
		height: auto;
		margin-bottom: 10%;
	}

	#wrap {
		max-width: 100%;
	}

	#main-slider .slick-slide {
		margin-bottom: 0;
	}

	#top .art-video {
		flex-direction: column !important;
	}

	img.lana-logo {
		margin: 0 auto 20px;
		width: 60%;
	}

	.art-video .video-txt,
	.art-video .video-container,
	.art-video .video-play {
		width: 100%;
		margin-bottom: 50px;
	}

	.video-txt ul li a {
		padding: 10px;
	}

	.art-topcopy {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		margin-bottom: 10%;
		align-items: center;
		position: relative;
		z-index: 200;
		background-color: rgba(255, 255, 255, 0.8);
		padding: 15px;
	}

	.img-topcopy {
		width: 30%;
		height: auto;
		display: block;
		position: relative;
		z-index: 200;
	}



	.div-topcopy {
		font: 5.5vw/1.5em "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
		text-align: center;
		color: #333;
	}




	.ul-lang {
		top: calc(-2rem - 6px);
		column-gap: 5px;
		margin-right: auto;
		margin-left: auto;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		justify-content: right;
		flex-wrap: wrap;
		width: 100%;
	}

	.ul-lang li {
		list-style-type: none;

	}

	.ul-lang li:last-child {
		border-left-style: none;
	}




	.ul-lang li a {
		padding: 15px;
		font-size: 12px;
		text-decoration: none;
		background-color: #efefef;
		font-weight: bold;
		color: #666;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	display: flex;
        align-items: center;
        height: 100%;
        line-height: 1;
	}

	.ul-lang li a:hover {
		background-color: #ddd;
		cursor: pointer;
	}

	.nowlang a {
		background-color: #999 !important;
		color: #fff !important;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	.nowlang a:hover {
		background-color: #b2b2b2!important;
	}


	.form24 {

		margin-right: auto;
		margin-left: auto;
	}

	.form24 input,
	.form24 textarea,
	.form24 select {
		color: #333;
		font-size: 16px;
		line-height: 1.5em;
		padding: 10px;
		border: 1px solid #ccc;
	}

	.form24 dt {
		margin-bottom: 10px;

	}

	dt.mfp {
		padding: 5px 10px;
		background-color: #00afa4;
		color: #fff;
		font-size: 18px;
		margin-top: 25px;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	dt.mfp {
		padding: 5px 10px;
		background-color: #00afa4;
		color: #fff;
		font-size: 18px;
		margin-top: 25px;
		font-family: "Zen Old Mincho", "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif, "ＭＳ Ｐ明朝", "MS PMincho";
	}

	dt.mfp .must {
		color: yellow;
		font-size: 15px;
		font-weight: bold;
		margin-left: 1em;
	}

	.ipt025 {
		width: calc(25% - 5px);
		margin-bottom: 5px;
	}

	.ipt050 {
		width: calc(50% - 5px);
		margin-bottom: 5px;
	}

	.ipt100 {
		width: 100%;
		margin-bottom: 5px;
	}

	.btnform {
		width: 8em !important;
		margin-right: auto !important;
		margin-left: auto !important;

		border-style: none !important;
		display: block !important;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.btnform1 {
		color: #fff !important;
		font-size: 16px !important;
		text-align: center !important;
		background-color: #00afa4 !important;

	}

	.btnform0 {
		border: 0px solid #ccc !important;
		font-size: 16px !important;
	}

	.btnform:hover {
		cursor: pointer;
	}


	.must {
		color: #fff;
	}

	.confirm {
		display: inline-block;

		margin-right: auto;
		margin-left: auto;
		width: 100%;
	}

	.confirm input {
		display: inline-block !important;
		margin-top: 25px;
		width: 45% !important;
	}

	.btnformc {
		display: block;
		margin-right: auto;
		margin-left: auto;
	}

	.areabiko {
		width: 100%;
		height: 20em;
	}

}
