@charset "utf-8";

/*------------------------------

Copyright © 2016 ULM Co., Ltd.

sp/tablet both css
v3.0

------------------------------*/

html, body {
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	color: #000;
	text-align: left;
	-webkit-text-size-adjust: none; /* adjust */
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#wrapper {
	position: relative;
	margin: 0 auto;
	padding: 60px 0 0;
	width: 100%;
}

.contents {
	width: 100%;
}

.ttl {
	margin: 1% 0 3%;
	text-align: right;
}

.ttl p {
	display: inline-block;
	position: relative;
	font-family: 'Neuton', serif;
	font-size: 40px;
	color: #a48b78;
	letter-spacing: 1px;
	opacity: 0.5;
}


/*------------------------------

navi

------------------------------*/
#navi {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
	margin: 0 auto;
	padding: 0;
	width: 100%;
    height: 60px;
	border-bottom: 1px solid #c30d23;
    background: rgba(255,255,255,0.9);
    z-index: 100;
}

#navi-logo {
	height: 60px;
	text-align: center;
}

#navi-logo img {
	height: 60px;
}


/*------------------------------

drawer

------------------------------*/
#drawer-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 60px;
	z-index: 5;
    transition: all 1s;
    -webkit-transition: all 1s;
}

#drawer-txt {
	padding: 8px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
	color: #fff;
    text-align: center;
}

#drawer-btn {
	padding: 20px 0 0;
}

#drawer-btn .drawer-line {
	display: block;
	margin: 0 auto 4px;
    width: 30px;
    height: 3px;
    background: #000;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}


/*------------------------------

drawer-btn-animation

------------------------------*/
.open-drawer #drawer-btn .drawer-line:nth-child(1) {
	transform: rotate(405deg) translate(5px,5px);
	-webkit-transform: rotate(405deg) translate(5px,5px);
	-moz-transform: rotate(405deg) translate(5px,5px);
}

.open-drawer #drawer-btn .drawer-line:nth-child(2) {
	opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
}

.open-drawer #drawer-btn .drawer-line:nth-child(3) {
	transform: rotate(-405deg) translate(5px,-5px);
	-webkit-transform: rotate(-405deg) translate(5px,-5px);
	-moz-transform: rotate(-405deg) translate(5px,-5px);
}


/*------------------------------

drawer（show/hide）

------------------------------*/
#drawer-navi-container {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 80px 0 0;
	width: 100%;
	height: 100%;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 99;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

#drawer-navi {
	position:relative;
	width: 100%;
	z-index: 1;
	/*padding: 45px 0 0 0;*/
	/*background: #fffdf2;*/
}

#drawer-navi-bg {
	position: fixed;
	bottom: 20%;
	width: 100%;
	z-index: 0;
}

#drawer-bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 150%;
	background: #fffdf2;
	z-index: 0;
	overflow: hidden;
}

#drawer-navi ul li {
	padding: 10px 0;
	text-align: center;
}

#drawer-navi ul li a, #drawer-navi ul li span {
	display: block;
	padding: 5px 0;
	width: 100%;
	font-family: 'Neuton', serif;
	font-size: 24px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	letter-spacing: 0.1em;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

#drawer-navi ul li.selected {
  background: #fff;
}

#drawer-navi ul li.selected span {
  color: #1998CF;
}

#drawer-navi ul li a img, #drawer-navi ul li img {
	width: auto;
	height: 17px;
}

.close-navi-container {
	padding: 20px 0 40px;
	text-align: center;
}

.close-navi {
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
}

.close-navi:before, .close-navi:after {
	display: block;
	content: "";
	position: absolute;
	left: 18px;
	width: 3px;
	height: 40px;
	background-color: #000;
	border-radius: 10px;
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.close-navi:after {
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}


/*------------------------------

trailer

------------------------------*/
#top-trailer-nav {
	background: #fff;
	font-size: 14px;
}

#top-trailer-nav p {
	width: 100%;
	min-height: 38px;
	background: none;
	box-shadow: inset 0 -1px 0 0 #333;
	color: #000;
	text-align: center;
	line-height: 38px;
	letter-spacing: 3px;
}

#top-trailer-nav p:first-child {
	width: 100%;
	border-right: 1px solid #c30d23;
	box-shadow: inset 1px -1px 0 #c30d23;
}

#top-trailer-nav p:last-child {
	border-left: 1px solid #c30d23;
	box-shadow: inset -1px -1px 0 #c30d23;
}

#top-trailer-container iframe {
	display: block;
	margin: 0;
	padding: 0;
	border: 1px solid #c30d23;
}

#top-trailer-nav p.trailer-selected {
	background: #c30d23;
	color: #fff;
}


/*------------------------------

footer

------------------------------*/
#footer {
	padding: 7% 0 8%;
	width: 100%;
	background: #c30d23;
}

#billing {
	margin: 0 0 7%;
	width: 100%;
}

#billing img {
	width: 100%;
}

#banner {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 7%;
	width: 94%;
}

#banner li {
	margin: 0 2% 2% 0;
	width: 49%;
	border: 1px solid #fff;
	box-sizing: border-box;
}

#banner li:nth-child(2n) {
	margin: 0 0 2%;
}

#banner li a img {
	width: 100%;
	vertical-align: middle;
}

#copyright {
	font-family: "FP-ヒラギノ明朝 ProN W6";
	font-size: 10px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.1em;
}


/*------------------------------

share

------------------------------*/
#social-container {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	margin: 0 auto 7%;
}

#social-container li:first-child, #social-container li:nth-child(2) {
	margin: 0 7px 0 0;
}

#twitter-btn {
}

#facebook-btn {
}


/*------------------------------

preloader

------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 1000;
}

#preloader-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -34.25px 0 0 -125px;
    width: 250px;
    height: 68.5px;
	text-align: center;
	z-index: 1;
	-webkit-animation: opacity 2s linear;
    -moz-animation: opacity 2s linear;
    -ms-animation: opacity 2s linear;
    -o-animation: opacity 2s linear;
    animation: opacity 2s linear;
}

#preloader-inner img {
	width: 100%;
}

@-webkit-keyframes opacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-moz-keyframes opacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-ms-keyframes opacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@-o-keyframes opacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes opacity {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*------------------------------

default

------------------------------*/
h1{}

h2{}

h3{color: #9725d8;}

h4{color: #3876b4;}


/*------------------------------

a

------------------------------*/
a {
	color: #f39600;
	text-decoration: underline;
}

a:hover, a:active {
	text-decoration: none;
}


/*------------------------------

modules

------------------------------*/

/*------------------------------
color
------------------------------*/
.purple {
	color: #d40c1f;
}
.red {
	color: #d40c1f;
}
.blue {
	color: #414fbc;
}
.yellow {
	color: #e9dd53;
}
.beige {
	color: #b8a569;
}
.orange {
	color: #FF7400;
}
.white {
	color: #FFF;
}

.small {
	margin: 0;
	padding: 0;
	letter-spacing: 1px;
}

.strong {
	display: block;
	font-weight: bold;
	color: #f39600;
}


/*------------------------------
change
------------------------------*/
.change {
	display: block;
	/*margin: 0 auto;*/
}


/*------------------------------
pagetop
------------------------------*/
.pagetop {
	text-align: right;
}