
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*************************
*******Typography******
**************************/

body {
  background: #fff;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "游明朝", YuMincho, serif;
  color:#a3a3a3;
  line-height:1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight:bold; 
	color:#a3a3a3;
}


p{
	color:#a3a3a3;
}

a {
  color: #a3a3a3;
  -webkit-transition: color 300ms, background-color 300ms;
  -moz-transition: color 300ms, background-color 300ms;
  -o-transition:  color 300ms, background-color 300ms;
  transition:  color 300ms, background-color 300ms;
}

a:hover, a:focus {
  color: #a3a3a3;
}

hr {
  border-top: 1px solid #a3a3a3;
  border-bottom: 1px solid #fff;
}



body > section {
  padding: 70px 0;
}

.center {
  text-align: center;
  padding-bottom: 55px;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

.lead{
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.transparent-bg {
  background-color: transparent !important;
  margin-bottom: 0;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}


/*************************
*******Header******
**************************/
.navbar-fixed-top .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar>.container .navbar-brand{
  margin-left: 0;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
  background: #fff;
  padding: 5px 0;
  padding-bottom: 0;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "游明朝", YuMincho, serif;
  font-weight: bold;
  font-size: 25px;
}

 .navbar-nav{
  margin-top: 12px;
 }


.navbar-nav>li{
  margin-left: 25px;
  padding-bottom: 15px;
}


/*************************
*******Home Page******
**************************/

.homepage{
  background-color: #fff;
}

.slider {
  position: relative;
  padding:80px 0 80px;
}

#carousel-slider {
  position: relative;
}

.carousel-inner{
	padding:50px 0 0px;
}

#carousel-slider .carousel-indicators {
  bottom: -25px;
}

#carousel-slider .carousel-indicators li {
  border: 1px solid #fff;
}

#carousel-slider a i {
  border: 1px solid #fff;
  border-radius:50%;
  font-size: 28px;
  height: 50px;
  padding: 8px;
  position: absolute;
  top: 50%;
  width: 50px;
  color:#fff;
}

#carousel-slider a i:hover {
  background:#fff;
  color:#fff;
  border: 1px solid #fff;
}

#carousel-slider 
.carousel-control {
  width:inherit;
}

#carousel-slider .carousel-control.left i {
  left:-25px
}

#carousel-slider .carousel-control.right i {
  right: -25px;
}

#carousel-slider
.carousel-control.left, 
#carousel-slider
.carousel-control.right {
  background: none;
}


#movie{
  background: #fff;
  padding-bottom: 20px;
}



/***********************
********* Footer ******
************************/
#bottom {
  background: #f5f5f5;
  border-bottom: 5px solid #659fca;
}

#bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bottom ul li {
  display: block;
  padding: 5px 0;
}

#bottom ul li a {
  color: #808080;
}

#bottom ul li a:hover {
  color: #808080;
}

#bottom .widget {
  margin-bottom: 0;
}

#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
}

#footer p {
  color: #a3a3a3;
  font-size: 0.8em;
}


#footer a {
  color: #808080;
}

#footer a:hover {
  color: #808080;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer ul > li {
  display: inline-block;
  margin-left: 15px;
}

#feature h2{
	padding-bottom:0.8em;
}

@media only screen and (max-width: 750px) {
.bn img {
  width:90%; 
}
}


.video_wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.video_wrapper > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.sample{
	width: 100%;
	height: auto;
}


#video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.sample{
	width: 100%;
	height: auto;
}