@charset "UTF-8";

/*
（768px以上）タブレット以上の場合 タブレットを含む
@media (min-width:768px){}

（769px以上）タブレットより大きい場合 タブレットを含まない
@media (min-width:769px){}

横幅1180pxを切るとき
@media (max-width:1179px){}

横幅1180pxより大きいとき（PC表示）
@media (min-width:1180px){
}

PC表示（1180px）より小さく、タブレット以上の場合
@media (min-width:768px) and (max-width:1179px){
*/

/****************************************************************************
 	mainvisual-sec
****************************************************************************/
.visual-sec {
	position: relative;
}
.visual-sec:after {
	position: absolute;
	left: 0;
	bottom: -20px;
	display: block;
	content: "";
	width: 154px;
	height: 200px;
	background: url(../img/mainvisual_bg_light.png) no-repeat left center;
	background-size: cover;
	z-index: -10000;
}
.visual-sec .mainvisual {
	background: url("../img/mainvisual_2_sp.jpg")no-repeat left center;
	background-size: cover;
	min-height: 400px;
	margin-left: 40px;
}
.visual-sec .logo {
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 5px;
	width: 200px;
}
.visual-sec .logo .logo-link {
	display: block;
}
.visual-sec .copy {
	width: 85%;
	position: absolute;
	bottom: -35px;
	right: 5px;
}
@media (min-width:768px){
	.visual-sec:after {
		left: 0;
		bottom: -30px;
		width: 258px;
		height: 333px;
	}
	.visual-sec .mainvisual {
		background: url("../img/mainvisual_2.jpg")no-repeat left center;
		background-size: cover;
		min-height: 550px;
		margin-left: 120px;
	}
	.visual-sec .logo {
		top: 10px;
		left: 10px;
		width: 300px;
	}
	.visual-sec .copy {
		width: 630px;
		max-width: 100%;
		bottom: -60px;
		right: 10px;
	}
}
@media (min-width:1180px){
	.visual-sec:after {
		left: 0;
		bottom: -50px;
		width: 515px;
		height: 666px;
	}
	.visual-sec .mainvisual {
		min-height: 920px;
		margin-left: 200px;
	}
	.visual-sec .logo {
		top: 20px;
		left: 20px;
		width: 473px;
	}
	.visual-sec .copy {
		width: 950px;
		max-width: 100%;
		bottom: -70px;
		right: 20px;
	}
}

/****************************************************************************
 	intro-sec
****************************************************************************/
.intro-sec {
	margin-top: 40px;
	padding: 30px 0;
	background: url("../img/intro_bg_logo.png")no-repeat center top;
	background-size: contain;
}
@media (min-width:768px){
	.intro-sec {
		margin-top: 65px;
		padding: 40px 0 40px 0;
		/*background-size: cover;*/
	}
}
@media (min-width:1180px){
	.intro-sec {
		margin-top: 80px;
		padding: 60px 0 60px 0;
	}
}


/*写真とコピー
-------------------------------*/
.intro-sec .intro-box .note .title {
	font-weight: 700;
	line-height: 1.4;
	font-size: 23px;
}
.intro-sec .intro-box .note .title span {
	background: linear-gradient(transparent 60%, #010188 60%);
}
.intro-sec .intro-box .note .copy {
	margin-top: 10px;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.4;
	padding-left: 20px;
}
.intro-sec .intro-box .photo {
	width: 75%;
	margin: 30px auto 0 auto;
}
@media (min-width:768px){
	.intro-sec .intro-box {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
	.intro-sec .intro-box .note {
		width: 60%;
		margin-top: 15px;
	}
	.intro-sec .intro-box .note .title {
		font-size: 30px;
	}
	.intro-sec .intro-box .note .copy {
		margin-top: 10px;
		font-size: 18px;
		padding-left: 30px;
	}
	.intro-sec .intro-box .photo {
		width: 35%;
		margin: 0;
	}
}
@media (min-width:1180px){
	.intro-sec .intro-box .note {
		width: 65%;
		margin-top: 30px;
	}
	.intro-sec .intro-box .note .title {
		font-size: 42px;
	}
	.intro-sec .intro-box .note .copy {
		margin-top: 20px;
		font-size: 26px;
		padding-left: 50px;
	}
	.intro-sec .intro-box .photo {
		width: 31%;
		margin: 0;
	}
}

/*開発者コメント
-------------------------------*/
.intro-sec .comment-box {
	padding: 20px 20px;
	margin-top: 30px;
	position: relative;
}
.intro-sec .comment-box:before,
.intro-sec .comment-box:after {
	position: absolute;
	left: 0;
	display: block;
	content:"";
	width: 100%;
	height: 5px;
	background-image: linear-gradient(90deg, rgba(6, 12, 36, 0), rgba(231, 231, 231, 1) 50%, rgba(6, 12, 36, 0) 100%);
}
.intro-sec .comment-box:before {
	top: 0;
}
.intro-sec .comment-box:after {
	bottom: 0;
}
.intro-sec .comment-box .copy-main {
	font-weight: 700;
	line-height: 1.4;
	font-size: 20px;
	text-align: center;
}
.intro-sec .comment-box .copy-sub {
	margin-top: 10px;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
}
.intro-sec .comment-box .copy-sub.name {
	text-align: center;
}
@media (min-width:768px){
	.intro-sec .comment-box:before,
	.intro-sec .comment-box:after {
		height: 8px;
	}
	.intro-sec .comment-box {
		padding: 25px 20px;
		margin-top: 30px;
	}
	.intro-sec .comment-box .copy-main {
		font-size: 28px;
	}
	.intro-sec .comment-box .copy-sub {
		margin-top: 10px;
		font-size: 18px;
		text-align: center;
	}
	.intro-sec .comment-box .copy-sub.name {
		margin-top: 20px;
	}
}
@media (min-width:1180px){
	.intro-sec .comment-box {
		padding: 35px 20px;
		margin-top: 40px;
	}
	.intro-sec .comment-box .copy-main {
		font-size: 34px;
		letter-spacing: 1px;
	}
	.intro-sec .comment-box .copy-sub {
		margin-top: 10px;
		font-size: 20px;
	}
}

/****************************************************************************
 	bnr-sec
****************************************************************************/
.bnr-sec {
	padding: 0 0 30px 0;
}
.bnr-sec .list-item {
	margin-bottom: 20px;
}
.bnr-sec .list-item:last-child {
	margin-bottom: 0;
}
.bnr-sec .list-link {
	display: block;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	color: #ffff00;
	line-height: 1.4;
	padding: 25px 20px;
	border-radius: 10px;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
.bnr-sec .list-link:hover {
	opacity: .8;
}
.bnr-sec .list-link.jigging {
	background: url("../img/news_bnr_001.jpg") center center;
	background-size: cover;
}
.bnr-sec .list-link.lurenewsr {
	background: url("../img/news_bnr_002.jpg") center center;
	background-size: cover;
}
@media (min-width:768px){
	.bnr-sec {
		padding: 0 0 40px 0;
	}
	.bnr-sec .list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.bnr-sec .list-item {
		margin-bottom: 0;
		width: 48%;
	}
	.bnr-sec .list-link {
		padding: 50px 0;
		font-size: 26px;
	}
}
@media (min-width:1180px){
	.bnr-sec {
		padding: 0 0 50px 0;
	}
	.bnr-sec .list-link {
		font-size: 34px;
		padding: 60px 20px;
		border-radius: 15px;
	}
}

/****************************************************************************
 	points-sec
****************************************************************************/
.points-sec {
	padding: 30px 0 40px 0;
}
@media (min-width:768px){
	.points-sec {
		padding: 40px 0 60px 0;
	}
}
@media (min-width:1180px){
	.points-sec {
		padding: 60px 0 80px 0;
	}
}

/*メインコピー
-------------------------------*/
.points-sec .m-title-M-wrap {
	position: relative;
}
.points-sec .m-title-M-wrap .icon {
	width: 60px;
	position: absolute;
	top: -20px;
	right: -5px;
}
@media (min-width:768px){
	.points-sec .m-title-M-wrap {
		width: 95%;
		max-width: 870px;
		margin: 0 auto;
	}
	.points-sec .m-title-M-wrap .icon {
		width: 80px;
		top: -40px;
		right: -10px;
	}
}
@media (min-width:1180px){
	.points-sec .m-title-M-wrap {
		width: 1000px;
		max-width: 1000px;
	}
	.points-sec .m-title-M-wrap .icon {
		width: 120px;
		top: -70px;
		right: -40px;
	}
}


/*図とコピー
-------------------------------*/
.points-sec .points-wrap {
	background-color:rgba(0,0,0,0.6);
	margin-top: -30px;
	padding: 40px 10px 30px 10px;
}
.points-sec .points-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.points-sec .points-wrap .photo {
	width: 20%;
	padding-top: 20px;
}
.points-sec .points-wrap .note {
	width: 77%;
}
.points-sec .points-wrap .note .list-item {
	border-bottom: 1px dashed #707070;
	padding: 10px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.points-sec .points-wrap .note .list-item .num {
	width: 30px;
}
.points-sec .points-wrap .note .list-item .num span {
	display: block;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: #010188;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	line-height: 1.6;
}
.points-sec .points-wrap .note .list-item .copy {
	width : -webkit-calc(100% - 40px) ;
	width : calc(100% - 40px) ;
	font-size: 16px;
	line-height: 1.5;
}
@media (min-width:768px){
	.points-sec .points-wrap {
		margin-top: -25px;
		padding: 40px 40px 10px 40px;
	}
	.points-sec .points-wrap .photo {
		width: 15%;
		padding-top: 0;
	}
	.points-sec .points-wrap .note {
		width: 80%;
	}
	.points-sec .points-wrap .note .list-item {
		padding: 15px 0;
	}
	.points-sec .points-wrap .note .list-item .num {
		width: 40px;
	}
	.points-sec .points-wrap .note .list-item .num span {
		width: 35px;
		height: 35px;
		font-size: 19px;
		line-height: 1.8;
	}
	.points-sec .points-wrap .note .list-item .copy {
		width : -webkit-calc(100% - 50px) ;
		width : calc(100% - 50px) ;
		font-size: 20px;
		padding-top: 5px;
	}
}
@media (min-width:1180px){
	.points-sec .points-wrap {
		margin-top: -35px;
		padding: 60px 90px 30px 90px;
	}
	.points-sec .points-wrap .photo {
		width: 12%;
	}
	.points-sec .points-wrap .note {
		width: 82%;
	}
	.points-sec .points-wrap .note .list-item {
		padding: 20px 0;
	}
	.points-sec .points-wrap .note .list-item .num {
		width: 60px;
	}
	.points-sec .points-wrap .note .list-item .num span {
		width: 50px;
		height: 50px;
		font-size: 30px;
		line-height: 1.7;
	}
	.points-sec .points-wrap .note .list-item .copy {
		width : -webkit-calc(100% - 60px) ;
		width : calc(100% - 60px) ;
		font-size: 26px;
		padding-top: 8px;
	}
}


/****************************************************************************
 	photo-sec
****************************************************************************/
.photo-sec .list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.photo-sec .list-item {
	width: 25%;
}
@media (min-width:1180px){
	.photo-sec .list-item img {
		width: 100%;
	}
}

/****************************************************************************
 	color-sec
****************************************************************************/

.color-sec {
	padding: 30px 0 0 0;
}
@media (min-width:768px){
	.color-sec {
		padding: 50px 0 0 0;
	}
}
@media (min-width:1180px){
	.color-sec {
		padding: 60px 0 0 0;
	}
}


/* リスト
-------------------------------*/
.color-sec .list-item {
	background-color: #000;
	padding: 20px 20px 30px 20px;
	position: relative;
	margin-top: 20px;
}
.color-sec .list-item .name {
	margin-top: 20px;
	font-weight: 700;
	line-height: 1.5;
	font-size: 22px;
}
.color-sec .list-item .copy {
	margin-top: 10px;
	font-weight: 400;
	color: #b5b5b5;
	font-size: 15px;
	line-height: 1.7;
}
@media (min-width:768px){
	.color-sec .list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		padding-top: 10px;
	}
	.color-sec .list-item {
		width: 48.5%;
		padding: 20px 25px 30px 25px;
		margin-top: 30px;
	}
	.color-sec .list-item .name {
		font-size: 24px;
	}
	.color-sec .list-item .copy {
		font-size: 16px;
	}
}
@media (min-width:1180px){
	.color-sec .list-item {
		padding: 30px 40px 40px 40px;
		margin-top: 40px;
	}
	.color-sec .list-item .name {
		font-size: 33px;
		margin-top: 30px;
	}
	.color-sec .list-item .copy {
		font-size: 18px;
	}
}



/****************************************************************************
 	info-sec
****************************************************************************/
.info-sec {
	padding: 60px 0 0 0;
}
@media (min-width:768px){
	.info-sec {
		padding: 80px 0 0 0;
	}
}
@media (min-width:1180px){
	.info-sec {
		padding: 90px 0 0 0;
	}
}


/*テーブル*/
.info-sec table {
	border-bottom: 1px solid #333b5b;
}
.info-sec table th,
.info-sec table td {
	display: block;
	border-top: 1px solid #333b5b;
	padding: 15px 10px;
	font-size: 15px;
	line-height: 1.6;
}
.info-sec table th {
	background-color: #000;
	font-weight: 700;
	text-align: center;
}
@media (min-width:768px){
	.info-sec table th,
	.info-sec table td {
		display: table-cell;
		padding: 15px 20px;
		font-size: 17px;
	}
	.info-sec table th {
		width: 25%;
	}
}
@media (min-width:1180px){
	.info-sec table th,
	.info-sec table td {
		padding: 25px 30px;
		font-size: 20px;
	}
	.info-sec table th {
		width: 20%;
	}
}


/*価格リスト*/
.info-sec .price-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 15px;
}
.info-sec .price-list dt {
	width: 70px;
	border: 1px solid #fff;
	text-align: center;
}
.info-sec .price-list dd {
	width : -webkit-calc(100% - 80px) ;
	width : calc(100% - 80px) ;
}
@media (min-width:768px){
	.info-sec .price-list dt {
		width: 100px;
	}
	.info-sec .price-list dd {
		width : -webkit-calc(100% - 120px) ;
		width : calc(100% - 120px) ;
	}
}
@media (min-width:1180px){
	
}

/****************************************************************************
 	 gallery-sec
****************************************************************************/
.gallery-sec  {
	padding: 60px 0;
}
@media (min-width:768px){
	.gallery-sec  {
		padding: 80px 0;
	}
}
@media (min-width:1180px){
	.gallery-sec  {
		padding: 90px 0;
	}
}


.gallery-sec .list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.gallery-sec .list-item {
	width: 48%;
	margin-right: 4%;
	margin-bottom: 4%;
}
.gallery-sec .list-item:nth-child(2n) {
	margin-right: 0;
}
@media (min-width:768px){
	.gallery-sec .list-item {
		width: 31.5%;
		margin-right: 2.75%;
		margin-bottom: 2.75%;
	}
	.gallery-sec .list-item:nth-child(2n) {
		margin-right: 2.75%;
	}
	.gallery-sec .list-item:nth-child(3n) {
		margin-right: 0;
	}
}


/*youtube 埋め込み*/
.gallery-sec .youtube-box {
	 margin-top: 50px;
}
.gallery-sec .youtube-box iframe {
	width: 100%;
	height: 200px;
}
@media (min-width:768px){
	.gallery-sec .youtube-box {
		 margin-top: 50px;
	}
	.gallery-sec .youtube-box iframe {
		height: 420px;
	}
}
@media (min-width:1180px){
	.gallery-sec .youtube-box {
		 margin-top: 100px;
	}
	.gallery-sec .youtube-box iframe {
		height: 620px;
	}
}

/****************************************************************************
 	contact-sec
****************************************************************************/
.contact-sec {
	padding: 50px 0;
	position: relative;
}
.contact-sec .cont-box {
	background-color:rgba(0,0,0,0.6);
	padding: 30px 20px;
	color: #fff;
	text-align: center;
}
.contact-sec .cont-box .m-title-L-wrap {
	margin-bottom: 10px;
}
.contact-sec .cont-box .tel-wrap .list-item {
	margin-top: 15px;
}
.contact-sec .cont-box .tel-wrap .list-item .title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}
.contact-sec .cont-box a.btn {
	position: relative;
	display: block;
	width: 300px;
	height: 55px;
	padding: 12px 0 0 0;
	background-color: #010188;
	border: 3px solid #fff;
	border-radius: 50px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	margin: 5px auto 0 auto;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
.contact-sec .cont-box a.btn.mail {
	font-size: 18px;
	line-height: 1.3;
}
.contact-sec .cont-box a.btn:hover {
	opacity: .85;
}
.contact-sec .cont-box .copy-sub {
	margin-top: 5px;
}
.contact-sec .cont-box .company {
	margin-top: 30px;
	line-height: 1.5;
	font-weight: 500;
	font-size: 14px;
}
.contact-sec .cont-box .company a {
	color: #fff;
	font-weight: bold;
}
@media (min-width:768px){
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec .cont-box {
		padding: 30px 20px;
	}
	.contact-sec .cont-box .m-title-L-wrap {
		margin-bottom: 30px;
	}
	.contact-sec .cont-box .tel-wrap .list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.contact-sec .cont-box .tel-wrap .list-item {
		width: 50%;
		margin-top: 0;
		padding-bottom: 10px;
	}
	.contact-sec .cont-box .tel-wrap .list-item:first-child {
		border-right: 1px solid #808094;
	}
	.contact-sec .cont-box .tel-wrap .list-item .title {
		font-size: 24px;
	}
	.contact-sec .cont-box a.btn {
		width: 300px;
		height: 55px;
		padding: 12px 0 0 0;
		font-size: 25px;
	}
	.contact-sec .cont-box a.btn.tel {
		pointer-events: none;
	}
	.contact-sec .cont-box a.btn.mail {
		font-size: 18px;
		line-height: 1.3;
	}
	.contact-sec .cont-box .company {
		font-size: 16px;
		margin-top: 30px;
	}
}
@media (min-width:1180px){
	.contact-sec {
		padding: 130px 0 80px 0;
	}
	.contact-sec .cont-box {
		width: 980px;
		margin: 0 auto;
		padding: 60px 50px 50px 50px;
	}
	.contact-sec .cont-box .logo {
		width: 340px;
		margin-left: -170px;
	}
	.contact-sec .cont-box .m-title-L-wrap {
		margin-bottom: 40px;
	}
	.contact-sec .cont-box a.btn {
		width: 400px;
		height: 80px;
		padding: 17px 0 0 0;
		font-size: 40px;
	}
	.contact-sec .cont-box a.btn.mail {
		font-size: 25px;
		line-height: 1.5;
	}
	.contact-sec .cont-box .company {
		font-size: 18px;
		margin-top: 30px;
	}
}

/****************************************************************************
 	cr-sec
****************************************************************************/
.cr-sec {
	background: url("../img/cr_bg.jpg")no-repeat center center;
	background-size: cover;
	padding: 8px;
	font-size: 13px;
	text-align: center;
	color: #bdbcbc;
}
@media (min-width:768px){
	.cr-sec {
		padding: 8px;
		font-size: 15px;
	}
}
@media (min-width:1180px){
	.cr-sec {
		padding: 12px;
		font-size: 16px;
	}
}



/****************************************************************************
 	ec-fix-btn
****************************************************************************/
#ec-fix-btn {
	position: fixed;
	z-index: 100000;
	bottom: 30%;
	right: 0;
	display: block;
	width: 40px;
	height: 165px;
	background-color: #122cde;
	border-radius: 10px 0 0 10px;
	text-decoration: none;
	color: #feff00;
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
	padding: 36px 0 0 3px;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
}
#ec-fix-btn:hover {
	opacity: .8;
}
#ec-fix-btn .text {
	writing-mode: vertical-rl;
	line-height: 1;
}
#ec-fix-btn .en {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
}
#ec-fix-btn .jp {
	font-size: 9px;
	font-weight: normal;
	letter-spacing: 1px;
}
#ec-fix-btn:before {
	position: absolute;
	top: 3px;
	right: 8px;
	font-size: 20px;
	content:'shopping_cart';
	font-family: "Material Icons";
}
@media (min-width:768px){
	#ec-fix-btn {
		bottom: 40%;
		width: 70px;
		height: 250px;
		border-radius: 10px 0 0 10px;
		padding: 55px 0 0 8px;
	}
	#ec-fix-btn .text {
		line-height: 1.2;
	}
	#ec-fix-btn .en {
		font-size: 22px;
		letter-spacing: 2px;
	}
	#ec-fix-btn .jp {
		font-size: 13px;
		letter-spacing: 2px;
	}
	#ec-fix-btn:before {
		top: 3px;
		right: 22px;
		font-size: 30px;
	}
}
@media (min-width:1180px){
	
}



