@charset "UTF-8" ;

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1200px) {

.container {
    width: 100%;
    /* background-color: navajowhite; */
}
.header {
    width: 90%;
    display: flex;
    margin: 20px auto;
    align-items: center;
    /* background-color: blue; */
}
.header1 {
    width: 40%;
    /* background-color: mediumpurple; */
}
.header1 h2 {
    font-size: 36px;
}
.header2 {
    width: 60%;
    /* background-color: magenta; */
}
.header2 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}
.header2 a {
    color: #212529;
    text-decoration: none;
}
.hamburger {
    display: none;
}
.top {
    width: 100%;
    /* background-color: midnightblue; */
}
.top1 {
    width: 100%;
    /* background-color: yellow; */
}
.top1 video {
    width: 100%;
}
.top2 {
    width: 100%;
    text-align: center;
    padding-top: 100px;
    /* background-color: plum; */
}
.top2 h2 {
    font-size: 50px;
}
.top2 p {
    font-size: 20px;
}
.image {
    width: 100%;
    /* background-color: orchid; */
}
.image h2 {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 100px;
    font-size: 50px;
}

/* ここからslider */

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

.slider ul{
	margin:0;
	padding: 0;
	list-style: none;
}

/* ここまでslider */


.point {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
    text-align: center;
    /* background-color: seagreen; */
}
.point h2 {
    font-size: 50px;
}
.point1 {
    width: 100%;
    padding-top: 50px;
    /* background-color: skyblue; */
}
.point1 img {
    width: 90%;
    /* background-color: hotpink; */
}
.point1 ul {
    display: flex;
    list-style: none;
}
.point1 p {
    font-size: 20px;
}
.about {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
    /* background-color: aquamarine; */
}
.about h2 {
    font-size: 50px;
    text-align: center;
}
.camera {
    width: 100%;
    display: flex;
    padding-top: 50px;
    /* background-color: green; */
}
.camera1 {
    width: 40%;
    /* background-color: violet; */
}
.camera1 img {
    width: 100%;
}
.camera2 {
    width: 60%;
    padding: 90px 50px;
    /* background-color: gold; */
}
.camera2 h3 {
    font-size: 40px;
}
.camera2 p {
    font-size: 20px;
}
.contact {
    width: 100%;
    height: 400px;
    background-image: url(../img/contact-background.png);
    background-position: center;
    background-size: cover;
    margin: 200px 0px;
    padding-top: 200px;
    padding-left: 200px;
    /* background-color: mediumslateblue; */
}
.contact h3 {
    font-size: 25px;
    padding-bottom: 20px;
}
.contact1 {
    padding-left: 30px;
}

/* ここからcontactボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: rgb(106, 165, 106);
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: palevioletred;
}

a.btn--radius {
   border-radius: 100vh;
}
/* ここまでcontactボタン */

.access {
    width: 80%;
    margin: 0 auto;
    display: flex;
    /* background-color: pink; */
}
.access1 {
    width: 50%;
    height: 460px;
    padding-top: 150px;
    padding-left: 150px;
    background-color: beige;
}
.access1 h3 {
    font-size: 35px;
    padding-bottom: 15px;
}
.access1 p {
    font-size: 20px;
}
.access2 {
    width: 50%;
    /* background-color: darkorange; */
}
.access2 iframe {
    width: 100%;
    height: 460px;
}
.footer {
    width: 100%;
    height: 200px;
    text-align: center;
    padding-top: 130px;
    /* background-color: orchid; */
}

}





























/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1199px) {



.container {
    width: 100%;
    /* background-color: navajowhite; */
}
.header {
    width: 90%;
    display: flex;
    margin: 20px auto;
    align-items: center;
    /* background-color: blue; */
}
.header1 {
    width: 40%;
    /* background-color: mediumpurple; */
}
.header1 h2 {
    font-size: 36px;
}
.header2 {
    width: 60%;
    /* background-color: magenta; */
}
.header2 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}
.header2 a {
    color: #212529;
    text-decoration: none;
}
.hamburger {
    display: none;
}

.top {
    width: 100%;
    /* background-color: midnightblue; */
}
.top1 {
    width: 100%;
    /* background-color: yellow; */
}
.top1 video {
    width: 100%;
}
.top2 {
    width: 100%;
    text-align: center;
    padding-top: 100px;
    /* background-color: plum; */
}
.top2 h2 {
    font-size: 50px;
}
.top2 p {
    font-size: 20px;
}
.image {
    width: 100%;
    /* background-color: orchid; */
}
.image h2 {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 100px;
    font-size: 50px;
}

/* ここからslider */

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

.slider ul{
	margin:0;
	padding: 0;
	list-style: none;
}

/* ここまでslider */


.point {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
    text-align: center;
    /* background-color: seagreen; */
}
.point h2 {
    font-size: 50px;
}
.point1 {
    width: 100%;
    padding-top: 50px;
    /* background-color: skyblue; */
}
.point1 img {
    width: 90%;
    /* background-color: hotpink; */
}
.point1 ul {
    display: flex;
    list-style: none;
}
.point1 p {
    font-size: 20px;
}
.about {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
    /* background-color: aquamarine; */
}
.about h2 {
    font-size: 50px;
    text-align: center;
}
.camera {
    width: 100%;
    display: flex;
    padding-top: 50px;
    /* background-color: green; */
}
.camera1 {
    width: 40%;
    /* background-color: violet; */
}
.camera1 img {
    width: 100%;
}
.camera2 {
    width: 60%;
    padding: 90px 50px;
    /* background-color: gold; */
}
.camera2 h3 {
    font-size: 40px;
}
.camera2 p {
    font-size: 20px;
}
.contact {
    width: 100%;
    height: 400px;
    background-image: url(../img/contact-background.png);
    background-position: center;
    background-size: cover;
    margin: 200px 0px;
    padding-top: 200px;
    padding-left: 200px;
    /* background-color: mediumslateblue; */
}
.contact h3 {
    font-size: 25px;
    padding-bottom: 20px;
}
.contact1 {
    padding-left: 30px;
}

/* ここからcontactボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: rgb(106, 165, 106);
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: palevioletred;
}

a.btn--radius {
   border-radius: 100vh;
}
/* ここまでcontactボタン */

.access {
    width: 80%;
    margin: 0 auto;
    display: flex;
    /* background-color: pink; */
}
.access1 {
    width: 50%;
    height: 460px;
    padding-top: 150px;
    padding-left: 150px;
    background-color: beige;
}
.access1 h3 {
    font-size: 35px;
    padding-bottom: 15px;
}
.access1 p {
    font-size: 20px;
}
.access2 {
    width: 50%;
    /* background-color: darkorange; */
}
.access2 iframe {
    width: 100%;
    height: 460px;
}
.footer {
    width: 100%;
    height: 200px;
    text-align: center;
    padding-top: 130px;
    /* background-color: orchid; */
}

}








































/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

.container {
    width: 100%;
    /* background-color: navajowhite; */
}
.header {
    width: 90%;
    /* display: flex; */
    margin: 20px auto;
    align-items: center;
    /* background-color: blue; */
}
.header1 {
    width: 40%;
    /* background-color: mediumpurple; */
}
.header1 h2 {
    font-size: 1rem;
}
.header2 {
    display: none;
    width: 60%;
    /* background-color: magenta; */
}
.header2 ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}
.header2 a {
    color: #212529;
    text-decoration: none;
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #999;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* ここまでハンバーガーメニュー */


.top {
    width: 100%;
    /* background-color: midnightblue; */
}
.top1 {
    width: 100%;
    /* background-color: yellow; */
}
.top1 video {
    width: 100%;
}
.top2 {
    width: 100%;
    text-align: center;
    padding-top: 50px;
    /* background-color: plum; */
}
.top2 h2 {
    font-size: 1rem;
}
.top2 p {
    font-size: 0.6rem;
}
.image {
    width: 100%;
    /* background-color: orchid; */
}
.image h2 {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    font-size: 1rem;
}

/* ここからslider */

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウトのためのCSS ===============*/

.slider ul{
	margin:0;
	padding: 0;
	list-style: none;
}

/* ここまでslider */


.point {
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
    /* background-color: seagreen; */
}
.point h2 {
    font-size: 1rem;
}
.point1 {
    width: 100%;
    padding-top: 50px;
    /* background-color: skyblue; */
}
.point1 img {
    width: 90%;
    /* background-color: hotpink; */
}
.point1 ul {
    display: flex;
    list-style: none;
}
.point1 p {
    font-size: 0.4rem;
}
.about {
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    /* background-color: aquamarine; */
}
.about h2 {
    font-size: 1rem;
    text-align: center;
}
.camera {
    width: 100%;
    /* display: flex; */
    padding-top: 50px;
    /* background-color: green; */
}
.camera1 {
    width: 80%;
    margin: 0 auto;
    /* background-color: violet; */
}
.camera1 img {
    width: 100%;
}
.camera2 {
    width: 100%;
    text-align: center;
    /* padding: 90px 50px; */
    /* background-color: gold; */
}
.camera2 h3 {
    font-size: 0.7rem;
}
.camera2 p {
    font-size: 0.6rem;
}
.contact {
    width: 100%;
    height: 100px;
    background-image: url(../img/contact-background.png);
    background-position: center;
    background-size: cover;
    margin: 100px 0px;
    padding-top: 40px;
    padding-left: 45px;
    /* background-color: mediumslateblue; */
}
.contact h3 {
    font-size: 0.6rem;
    /* padding-bottom: 20px; */
}
.contact1 {
    width: 100%;
    padding-left: 30px;
}

/* ここからcontactボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  padding: 4px 8px;  /* 小さめに */
    font-size: 10px;    /* 文字も小さめに */
    border-radius: 6px; /* 角丸も少し控えめにすると自然 */
}
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: rgb(106, 165, 106);
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: palevioletred;
}

a.btn--radius {
   border-radius: 100vh;
}
/* ここまでcontactボタン */

.access {
    width: 80%;
    margin: 0 auto;
    /* display: flex; */
    /* background-color: pink; */
}
.access1 {
    width: 100%;
    /* height: 460px; */
    text-align: center;
    padding-top: 10px;
    /* padding-top: 150px;
    padding-left: 150px; */
    background-color: beige;
}
.access1 h3 {
    font-size: 1rem;
    padding-bottom: 10px;
}
.access1 p {
    font-size: 0.4rem;
    padding-bottom: 10px;
}
.access2 {
    width: 100%;
    /* background-color: darkorange; */
}
.access2 iframe {
    width: 100%;
    height: 150px;
}
.footer {
    width: 100%;
    height: 200px;
    text-align: center;
    padding-top: 100px;
    /* background-color: orchid; */
}

}
