/* Fonts */

@import url('https://fonts.googleapis.com/css?family=Alegreya+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;500;700&display=swap');
/* Basic */

* {
	margin: 0;
	padding: 0;
}

html,
body,
.Container {
	height: 100%;
	font-family: 'Noto Sans JP' , sans-serif;
}

body {
	background-color: #fff;
}

.btn {
	border-radius: 0;
}

a:link,
a:hover,
a:visited {
	text-decoration: none;
	color: #000;
}

a:link.white,
a:hover.white,
a:visited.white {
	text-decoration: none;
	color: #fff;
}

.bold {
	font-weight: bold;
}

h1 {
	font-size: 3.5rem;
}

h2 {
	font-size: 1.5rem;
}

h3 {
    font-size: 1.1rem;
    border-bottom: 1px solid;
    border-top: 1px solid;
    padding: 5px 0;
    margin-bottom: 20px;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
}

p {
	color: #000;
	font-family: 'Noto Sans JP' , sans-serif;
	font-size: 0.9rem;
}

.min-100 {
	min-height: 100%;
}


.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/* Spacing */

.no-gutter {
	margin-right: 0;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}


/* Navbar */

.navbar {
	position: fixed;
	z-index: 99999;
	top: 0;
	width: 100%;
	padding: 1.8rem 1rem;
	font-family: 'Noto Serif JP', serif;
}

.navbar-dark .navbar-nav .nav-link {
	color: #000;
}

.navbar-brand img {
    height: 100px;
}

@media (min-width: 992px) {
.navbar-dark .navbar-nav .nav-link {
	color: #000;
}
.navbar-brand img {
    height: 120px;
}
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: #7a7a7a;
}

.navbar a:link,
.navbar a:hover,
.navbar a:visited {
	text-decoration: none;
	color: #7a7a7a;
}

.navbar-dark .navbar-toggler {
	border: none;
}

.navbar .navbar-collapse {
	text-align: center;
}

.navbar-brand {
	padding-top: 0;
}

.wrapper {
	margin: 0;
	width: 200px;
	height: 40px;
}

.menu-toggle {
	display: block;
	height: 40px;
	padding: 0;
	z-index: 1;
	background-color: transparent;
	border: 0 none;
	cursor: pointer;
	font-family: sans-serif;
	outline: medium none;
	overflow: visible;
	text-align: center;
	vertical-align: middle;
	height: 31px;
	width: 35px;
	right: 0px;
	top: 0;
	position: absolute;
}

.menu-toggle:before {
	content: attr(data-label);
	display: block;
	padding: 12px 0;
	position: absolute;
	right: 100%;
	top: 0;
	transition: color 0.2s ease 0s, opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.menu--is-revealed .menu-toggle:before {
	opacity: 0;
	visibility: hidden;
}

.menu-toggle .icon-bars,
.menu-toggle .icon-bars:before,
.menu-toggle .icon-bars:after {
	transition: background-color 0.2s ease;
}

.menu-toggle:focus .icon-bars,
.menu-toggle:focus .icon-bars:before,
.menu-toggle:focus .icon-bars:after,
.menu-toggle:hover .icon-bars,
.menu-toggle:hover .icon-bars:before,
.menu-toggle:hover .icon-bars:after {
	background-color: #000;
}

.menu-toggle .icon-bars {
	transition: transform 0.3s ease-in, background-color 0.2s ease;
	background-color: #000;
}

.menu-toggle .icon-bars:before,
.menu-toggle .icon-bars:after {
	transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
	background-color: #000;
}

.menu-toggle:active .icon-bars,
.menu--is-revealed .menu-toggle .icon-bars {
	transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
	transform: rotate3d(0, 0, 1, 135deg);
}

.menu-toggle:active .icon-bars:before,
.menu-toggle:active .icon-bars:after,
.menu--is-revealed .menu-toggle .icon-bars:before,
.menu--is-revealed .menu-toggle .icon-bars:after {
	transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
	transform: rotate3d(0, 0, 1, 90deg);
	top: 0;
}

.menu--is-revealed .menu-toggle {
	position: fixed;
	top: 66px;
	right: 22px;
}

.nav-item {
	font-size: 1.2rem;
}

.icon-bars {
	position: relative;
}

.icon-bars,
.icon-bars:before,
.icon-bars:after {
	display: block;
	width: 32px;
	height: 1px;
	background-color: currentColor;
}

.icon-bars,
.icon-bars:before,
.icon-bars:after {
	background-color: #273138;
}

.icon-bars:before,
.icon-bars:after {
	content: "";
	position: absolute;
	left: 0;
}

.icon-bars:before {
	top: 0.5em;
}

.icon-bars:after {
	top: -0.5em;
}

.lineup{
    width: 100%;
    margin-bottom: 50px;
}

.lineup td{
    border: 1px solid #929292;
    padding: 5px 5px;
    text-align: center;
}

.lineup .lineup-name{
    letter-spacing: 3px;
}

.lineup .lineup-buy{
    width: 30%;
    padding: 0;
    background: #929292;
}

.lineup .lineup-buy a{
    display: block;
    color: #fff;
}

.lineup .lineup-text{
    font-size: 0.8rem;
}


/* 008 */
.button008 a {
	border: 1px solid;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
    font-family: 'Noto Serif JP', serif;
}
.button008 a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #6bb6ff;
    transition: .3s;
    left:0;
}
.button008 a:hover {
    color: #FFF;
}
.button008 a:hover:before {
    width: 100%;
    z-index: -1;
}

.sp-br  {
    display: none;
}

@media (min-width: 635px) {
.lineup .lineup-name br{
    display: none;
}
}

@media (max-width: 800px) {
.row {
    margin-right: -30px;
    margin-left: -30px;
}
p{
    font-size: 14px;
}
.sp-br  {
    display: unset;
}
}

@media (min-width: 990px) {
	.navbar-brand {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		/**optional offset from top**/
		max-height: 40px;
	}
}

@media screen and (min-width:768px) {
	.navbar-brand-centered {
		position: absolute;
		left: 50%;
		display: block;
		width: 100%;
		text-align: center;
	}
	.navbar>.container .navbar-brand-centered,
	.navbar>.container-fluid .navbar-brand-centered {
		margin-left: -50%;
	}
}

.navbar-toggler-icon {
	top: 15px;
	right: 0px;
	position: absolute;
}


.custom-toggler.navbar-toggler {
	border-color: rgb(0, 0, 0);
	z-index: 9999;
}

@media screen and (max-width:991px) {
	.navbar-collapse {
		height: 100vh;
		background-color: #fff;
		top: 0;
		left: 0;
		width: 100%;
		position: fixed;
	}
	.navbar-nav {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 30%;
		width: 50%;
		margin: -15% 0 0 -25%;
	}
	h3 {
    font-size: 16px;
	}
}

.navbar-toggler {
	height: 30px;
	width: 21px;
	position: absolute;
	right: 22px;
}

@media (min-width: 992px) {
	#social {
		display: none;
	}
}

@media (max-width: 991px) {
	#social {
		border-top: 1px solid #000;
		position: absolute;
		bottom: 0;
		width: 90%;
		margin: 5%;
	}
	#social p {
		font-size: 0.9rem;
		padding-top: 1rem;
	}
}


/* Half Page */

.Container:before {
	content: '';
	height: 100%;
	float: left;
}

.Content {
	position: relative;
	z-index: 1;
}

.Content:after {
	content: '';
	clear: both;
	display: block;
}

.Wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	color: #000;
	background-color: #fff;
	z-index: -2;
}

.LeftContent {
	float: left;
	margin: 0;
	padding: 0;
}

.RightContent {
	overflow: auto;
}

.split-image-left {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
}


.background-1 {
	background-image: url("../img/photo-6.jpg");
}

.background-2 {
	background-image: url("../img/photo-4.jpg");
}

.split-image-right {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

@media (max-width: 1200px) {
.split-image-right {
	padding-top: 100vh;
	top: -100vh;
}
}


.signature {
	padding-top: 2rem;
	height: 6rem;
}


/* Works - Horizontal Gallery */

.swiper-container {
	width: 100%;
	height: 100%;
	margin-bottom: 5rem;
}

@media (max-width: 1200px) {
	.swiper-container {
		padding: 0 20px 0;
	}
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

 :root {
	--swiper-theme-color: #000;
}

.swiper-pagination {
	display: none;
}


/* Works */

.works {
	font-size: 1.2em;
	padding-top: 14rem;
	padding-bottom: 3rem;
}


/* Studio */

.studio {
	font-size: 1.2em;
	padding-top: 10rem;
	padding-bottom: 10rem;
}


/* Contact */

.contact {
	font-size: 1.8em;
	padding-top: 15rem;
	padding-bottom: 10rem;
}


/* Contact Form */

.contact-form {
	font-size: 1.2em;
	padding-bottom: 11rem;
}

.contact-form .btn-primary {
	color: #fff;
	background-color: #000;
	border-color: #000;
}

.contact-form .form-control {
	color: #000;
	background-color: transparent;
	border-color: #000;
	border-width: 0 0 2px 0;
	border-radius: 0;
	border-style: solid;
	font-size: 1.5rem;
}

.form-control::-webkit-input-placeholder {
	color: #000;
	opacity: 0.6;
}

.form-control {
	padding: 1.5rem 16rem 1.5rem 0.75rem
}

.contact-form .btn {
	padding: 0.8rem 4rem;
	border-radius: 5px;
}

#footerFloatingMenu {
    display: block;
    width: 100%;
    position: fixed;
    right: 0px;
    bottom: 2px;
    z-index: 9999;
    text-align: center;
    padding: 0 auto;
}
#footerFloatingMenu a{
    width: calc(100% - 10px);
    display: block;
    background: #6bb6ff;
    color: #ffffff;
    padding: 10px 0;
    margin: 0 5px 5px;
    border: 2px solid #ffffff;
}
@media (min-width: 1200px) {
#footerFloatingMenu {
width: 50%;
}
#footerFloatingMenu a{
    width: calc(100% - 30px);
    margin: 0 15px 5px;
}
}