/* WESOLOWSKI */

/*
basic,section
h1,h2...
header
mv
footer
*/

@media screen and (max-width: 800px) { /* SP ------------------------------- */


/* basic ---------------------------------------------- */

html{ scroll-behavior: smooth; }

body {
	margin: 0;
	background-color: #fff;
	font-family: 'Montserrat','Noto Sans JP', sans-serif;
	font-size: 15px;
	letter-spacing: 1px;
	color: #333;
	}

a {
	transition: 0.4s;
	}

a:link { color: #aaa; text-decoration: none; text-transform: uppercase; }
a:visited { color: #aaa; }
a:hover { color: #ccc; }
a:active { color: #aaa; }

p {
	margin: 0;
	}

.font-size-13 { font-size: 13px; }

.copy-big {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 0em;
	line-height: 1.4em;
	text-align: center;
	}

.pc { display: none; }
.sp { display: block; }
.none { display: none;}


/* h1,h2... ---------------------------------------------- */

h1 {
	opacity: 0.9;
 	letter-spacing: 1px;
	line-height: 1em;
 	text-indent: 0px;
	text-align: center;
	font-family: ;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 4px;
	padding: 0;
	margin: 0px 0px 0px 0px;
	color: #fff;
	}

.h1-above {
	opacity: 0.9;
	margin: 0px auto 5px auto;
	letter-spacing: 1px;
	line-height: 1.2em;
	color: #fff;
	text-align: center;
	}

.h1-under {
	opacity: 0.95;
	margin: 50px auto 0px auto;
	font-family: serif;
	font-size: 24px;
	letter-spacing: 4px;
	line-height: 1.5em;
	color: #fff;
	text-align: center;
	}

.h1-under span {
	font-size: 1.2em;
	}

h2 {
	position: relative;
	border: 0px dotted #aaa;
	width: 700px;
	padding: 0px 0px 5px 0px;
	margin: 0px auto 30px auto;
 	text-indent: 0px;
	font-family: ;
	font-size: 40px;
	font-weight: 600;
 	letter-spacing: 2px;
	line-height: 1.2em;
	text-align: center;
	color: #000;	
	}

h2::before {
	content:"";
	display: inline-block;
	border: 0px solid #aaa;
	background-image: url(img/logo-01-white.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	}

.h2-above {
	opacity: 0.8;
	margin: 0px auto 5px auto;
	font-size: 0.35em;
	font-weight: 200;
	letter-spacing: 1px;
	line-height: 1.5em;
	}

h2 span {
	margin: 0px 0px 0px 10px;
	font-size: 20px;
	font-weight: 400;
	font-style: italic;
 	letter-spacing: 0px;
	color: #aaa;
	}

/* header ---------------------------------------------- */

header {
	z-index: 10;
	}

header #logo:hover{
	color: #aaa;
	}

header #menu{
	position: fixed; right: 40px;
	border-left: 0px solid #ebc081;
	width: px;
	padding: 0px 0px 0px 7px;
	margin: 0px 0px 0px 30px;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0px;
	color: #000;
	text-decoration: none;
	text-align: left;
	transition: 0.4s;
	}

header #menu:hover{
	color: #aaa;
	}

header nav {
	display: flex;
	justify-content: space-between;
	width: 100%;
	}

nav a:link{ color: #fff; text-decoration: none; transition: 0.4s;}
nav a:visited{ color: #fff;}
nav a:hover{ color: #fff;}
nav a:active{ color: #fff;}


/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(0, 0, 0, 0.6);
}

.header {
  background: transparent;
  position: fixed;
  width: 100%;
  height: 52px;
}

/* Nav Items - これが中身 */
.menu {
  list-style: none;
  position: absolute; top: 0px;
  width: 100%;
  height: 100vh;
  top: 0;
	padding: 50px 0px 0px 0px;
	margin-top: 0px;
  clear: both;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
	}

.menu .socialmedia {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	}

.menu .sm {
	display: block;
	background-size: contain;
	background-position: center;
	width: 20px;
	height: 20px;
	margin: 0px 10px;
	font-size: 0px;
	color: transparent;
	transition: .4s;
	}

.menu .sm:hover { opacity: 0.5!important; }

.menu .x { background-image: url(img/sm-x-logo-white.png); }


/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 20px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
	opacity: 0;
	border-bottom: 0px solid rgba(255, 255, 255, 0.03);
	padding: 5px 0px;
	margin: 0px;
	text-align: center;
	font-size: 30px;
	transition: 0.5s;
	}

.menu li a:hover {
	opacity: 0.5!important;
	}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
	opacity: 1;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
	}

.menu-btn {
	display: none;
	}

.menu-icon { /* これがアイコン */
	z-index: 100;
	border: 0px solid #fff;
	display: inline-block;
	position: absolute; right: 0px;
	cursor: pointer;
	padding: 24px 14px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}

.navicon {
	background: #ddd;
	display: block;
	height: 3px;
	width: 30px;
	position: relative;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}

/* #mv ---------------------------------------------- */

#mv {
	overflow: hidden;
	background-color: #000;
	background-image: url(img/mv.jpg);
	background-size: cover;
	background-position: center calc(35%);
	background-repeat: no-repeat;
	width: 100%;
	height: px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	}

.mv_title {
	border: 0px dotted #fff;
	margin-top: 230px;
	text-shadow: 2px 2px 8px rgba(255,255,255,0.5);
	}


/* section ---------------------------------------------- */

section .section-inner {
	border: 0px solid #ccc;
	width: 90%;
	max-width: 1000px;
	margin: 0px auto;
	}


/* footer ---------------------------------------------- */

footer {
	border-top: 0px solid #222;
	width: 100%;
	height: auto;
	padding: 20px 0px;
	margin: 0px auto 0px auto;
	font-size: 12px;
	color: #666a77;
	text-align: center;
	}

.copy {
	margin-top: 8px;
	font-family: "Oswald",sans-serif;
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	}

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




} /* SP : END ------------------------------- */