﻿@charset "utf-8";
/* CSS Document */


/***** loader *****/

#fade {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background-color: #fff;
}

#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    width: 80px;
    height: 80px;
    margin-top: -40px; /* heightの半分のマイナス値 */
    margin-left: -40px; /* widthの半分のマイナス値 */
}


/*****base*****/

*{
	margin: 0 auto;
	padding: 0px;
	border: none;
	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

body {
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #FFF;
	background-color: #fff;
	background-image: url(../img/bg.png);
	background-repeat: repeat;
	background-position: center top;
	text-shadow: 0px 0px 0px rgba(0,0,0,0.4);
}

img {
    max-width: 100%;
    display: block;
}

.clear{
	float: none;
	clear: both;
}

.border{
	width: 95%;
	height: auto;
}

.border img{
	width: 100%;
	height: auto;
}

a{
	color: #FF9218;
	overflow: hidden;
	outline: none;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}
	
a:link{
	color: #FF9218;
	text-decoration: none;
}	
	
a:visited{
	color: #FF9218;
}	

a:hover {
	color: #76E7FF;
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
}	

a.pt:hover img{
   filter: alpha(opacity=70); /*←IE用*/
   -moz-opacity: 0.80; /*←Mozilla用*/
    opacity: 0.70; /*safari opera*/
}

.red{
	color: #f54353;
}

.yellow {
	color: #ffbd03;
}

.blue {
	color: #3CF;
}

.green {
	color: #b7f60c;
}

.green2 {
	color: #00C2BB;
}

.orange{
	color: #E44305;
}

.gray {
	color: #424242;
}

.text-small {
	font-size: 25px;
}

.text-small2 {
	font-size: 18px;
}


.add-cap1 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    line-height: 90px;
    background-color: #fff;
}


/***** section & content *****/

section {
	width: 100%;
	height: auto;
}

.content1 {
    width: 100%;
    height: auto;
    padding-top: 0%;
    padding-bottom: 0%;
    padding-right: 0px;
    padding-left: 0px;
    border-bottom: 13px solid #263634;
}

.content2 {
    width: 1400px;
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 30px;
    padding-left: 30px;
}

.content3 {
    width: 1200px;
    height: auto;
    padding-top: 80px;
    padding-bottom: 45px;
    padding-right: 30px;
    padding-left: 30px;
}


/*****header*****/

.header1 {
    width: 100%;
    height: auto;
}

.header2 {
	width: 100%;
	display: none;
}

.header1 img, .header2 img {
	width: 100%;
	height: auto;
}


/*****intro*****/

.title1 {
    margin-bottom: 25px;
}

.intro {
    width: 100%;
    height: auto;
}

.intro-title {
    font-size: 32px;
    font-weight: bold;
	text-align: center;
    padding-bottom: 10px;
}

.cap1 {
	width: 100%;
	height: auto;
}

.cap1 p {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 15px;
}


/***** info *****/

.info1-title1 {
    width: 90%;
    margin-bottom: 20px;
}

.info1 {
    width: 100%;
	padding-top: 5%;
	padding-bottom: 5%;
	padding-right: 0%;
	padding-left: 0%;
    margin-bottom: 30px;
    border-top: 5px solid #293b39;
    border-bottom: 1px solid #b6b3b3;
}

.info1-list1 {
    display: flex;
    justify-content: center;
    align-items: stretch;
	margin-bottom: 7px;
}

.info1-list1-left {
    width: 20%;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #1e2c2a;
}

.info1-list1-right {
    width: 80%;
	font-size: 28px;
    font-weight: bold;
	line-height: 40px;
	padding-top: 8px;
	padding-bottom: 8px;
    padding-left: 20px;
}

.info1-list1-right p {
    /*margin-bottom: 0px;*/
}

.txt-s1 {
    font-size: 15px;
    line-height: 27px;
}

.txt-s2 {
    font-size: 20px;
	margin-bottom: 5px;
}

.txt-s3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info1-btn1 {
    width: 45%;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
	margin-top: 10px;
    margin-right: 55%;
	background-color: #d23718;
	transition: .3s;
}

.info1-btn1:hover {
	background-color: #f0654a;
}

.info1-btn1 a {
	color: #fff;
	display: block;
}

.info1-btn1 a:hover {
	color: #fff;
}

.contact{
	height: auto;
	width: 90%;
	text-align: center;
	padding: 15px;
	border: 2px dashed #e3dddd;
}

.contact-title{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.shop-name1{
	font-size: 20px;
	padding-bottom: 5px;
}

.tel-mail1 {
    font-size: 17px;
	padding-bottom: 5px;
}

.contact-cap{
	font-size: 16px;
	text-align: center;
	margin-bottom: 5px;
}


/***** artist *****/

.title2 {
    width: 100%;
    height: auto;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 40px;
}

.artist-wrap {
    margin-bottom: 40px;
    display: block;
    justify-content: center;
    align-items: stretch;
}

.artist1 {
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist1-photo1-wrap {
    width: 35%;
	float: right;
    padding-left: 1%;
    padding-right: 1%;
    margin-bottom: 20px;
}

.artist1-photo1 {
    background-color: #000;
	border: 1px solid #5c5c5c;
}

.artist1-photo1 img {
    border: 0px solid #5c5c5c;
}

.artist1-info1-wrap {
    width: 65%;
	float: right;
    padding-left: 0%;
}

.artist-info1 {
    padding-left: 1%;
    padding-right: 1%;
    margin-bottom: 0px;
}

.artist-name1-wrap {
    width: 100%;
    padding-bottom: 7px;
    margin-bottom: 25px;
    border-bottom: 3px solid #293b39;
}

.artist-name1 {
    font-size: 28px;
    font-weight: bold;
    text-align: left;
}

.artist-name2 {
    font-size: 20px;
    font-weight: bold;
}

.artist-cap1 {
    font-size: 15px;
    margin-bottom: 30px;
}

.artist-cap1 p {
    margin-bottom: 10px;
}

.artist1-btn1 {
    width: 48%;
    float: left;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    margin-left: 1%;
	margin-right: 1%;
	margin-bottom: 8px;
    border: 2px solid #293b39;
    transition: .3s;
}

.artist1-btn1:hover {
    background-color: #293b39;
}

.artist1-btn1 a {
    color: #293b39;
    display: block;
}

.artist1-btn1 a:hover {
    color: #fff;
}

.d1{
    display: block;
}

.d2{
    display: none;
}


/***** release *****/

.release1-img1-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.release1-cap1 {
    font-size: 18px;
    line-height: 30px;
}


/***** movie *****/

.movie1-wrap {
    width: 85%;
}

.movie1 {
    position: relative;
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
    width: 100%;
    float: none;
    padding-left: 1%;
    padding-right: 1%;
}

.movie1 iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.movie1-title1 {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 10px solid #334845;
    border-bottom: 0px dotted #c6c6c6;
}


/***** product *****/

.product1-wrap {
    margin-bottom: 45px;
}

.product1 {
    width: 48%;
    float: left;
    padding: 3%;
    margin: 1%;
    background-color: #171717;
}

.product1-img1 {
	margin-bottom: 15px;
}

.product1-info1 {
}

.product1-name1-wrap {
    padding-bottom: 12px;
    margin-bottom: 17px;
    border-bottom: 1px dotted #fff;
}

.product1-name1_1 {
    font-size: 16px;
    font-weight: bold;
	margin-bottom: 5px;
}

.product1-name1_2 {
    font-size: 13px;
}

.product1-btn1 {
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #099ebc;
	transition: .3s;
}

.product1-btn1:hover {
	background-color: #099ebc;
}

.product1-btn1 a {
	color: #fff;
	display: block;
}

.product1-btn1 a:hover {
	color: #fff;
}


/***** banner *****/

.banner1 {
    width: 65%;
    float: none;
    padding: 0%;
}

.banner img {
    width: 100%;
    height: auto;
}

.banner a {
    display: block;
}


/***** sns *****/

.sns1-wrap {
    width: 400px;
}

.sns1 {
	width: 25%;
	float: left;
	padding: 2%;
}


/*** inquiry ***/

.inquiry {
	width: 100%;
	height: auto;
	text-align: center;
}

.inquiry-title {
    width: 100%;
    height: auto;
    font-size: 24px;
    font-weight: bold;
    font-variant-ligatures: none;
    text-align: center;
    text-indent: 15px;
    letter-spacing: 15px;
    padding: 2%;
    margin-bottom: 30px;
    border-top: 2px solid #293b39;
	border-bottom: 2px solid #293b39;
}

.inquiry-title img{
	width: 100%;
	height: auto;
}

.txt-s4 {
    font-size: 16px;
    text-indent: 5px;
    letter-spacing: 5px;
    margin-top: 7px;
}

.store1-wrap {
    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
}

.store1 {
    width: 100%;
    font-size: 22px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store1-logo1 {
    width: 50%;
	margin-bottom: 0px;
}

.store1-info1 {
    width: 50%;
    font-size: 16px;
    text-align: left;
    border: 0px dotted #000;
}

.store1-name1 {
    font-size: 24px;
    font-weight: bold;
	text-align: left;
    margin-bottom: 3px;
}

.store1-btn1 {
    width: 48%;
    float: left;
    margin: 1%;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #293b39;
    transition: .3s;
}

.store1-btn1:hover {
	background-color: #293b39;
}

.store1-btn1 a {
	color: #293b39;
	text-decoration: none;
	display: block;
}

.store1-btn1 a:hover{
	color: #fff;
}

.store1-btn2 {
    width: 98%;
    margin: 1%;
    font-size: 12px;
    line-height: 35px;
	text-align: center;
    border: 2px solid #293b39;
	transition: .3s;
}

.store1-btn2:hover {
	background-color: #293b39;
}

.store1-btn2 a {
	color: #293b39;
	text-decoration: none;
	display: block;
}

.store1-btn2 a:hover{
	color: #fff;
}

.store1-ggmap {
    width: 100%;
}


/***** footer *****/

.footer1 {
    padding: 1%;
    border-top: 2px dotted #fff;
}

.footer1-logo1 {
	width: 280px;
	height: auto;
}

.footer1-logo1 a {
	display: block;
}

.footer1-pagetop1 {
    position: fixed;
    bottom: 27px;
    right: 20px;
}

.footer1-pagetop1 a {
	color: #293b39;
	font-size: 16px;
}
