@charset "UTF-8";
/*-----------------------------------------------------*/
/* PC用のCSS ！始まり！ */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1000px) {





.container{
    width: 100%;
}





.navi{
    width: 100%;
    display: flex;
    align-items: center;
}

.navi h2{
    width: 25%;
    padding-left: 3%;
    font-size: 30px;
}

.navi ul{
    width: 50%;
    margin-left: 25%;
    display: flex;
    list-style: none;
}

.navi li{
    padding-left: 5%;
    font-size: 20px;
}





.top{
    width: 100%;
}

.top video{
    width: 100%;
}

.toptext{
    width: 90%;
    margin: 0 auto;
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
}

.toptext h2{
    font-size: 45px;
}

.toptext p{
    font-size: 22px;
}





.image{
    width: 60%;
    margin: 0 auto;
    margin-top: 10%;
    text-align: center;
}

.image h2{
    font-size: 45px;
    padding-bottom: 5%;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/slider-1.png);
}

.slider-item02 {
    background:url(../img/slider-2.png);
}

.slider-item03 {
    background:url(../img/slider-3.png);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

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

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

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

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

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 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
===================================*/





.point{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.point h2{
    font-size: 45px;
    margin: 10% 0 5% 0;
}

.point1-3{
    display: flex;
}

.point img{
    width: 100%;
}

.point p{
    padding-top: 3%;
}

.point-1{
    padding-right: 15px;
}

.point-2{
    padding-right: 15px;
}





.cameraman{
    width: 80%;
    margin: 0 auto;
    margin-top: 15%;
}

.cameraman h2{
    font-size: 45px;
    padding-bottom: 5%;
    text-align: center;
}

.cameraman1-2{
    display: flex;
}

.cameraman-1{
    width: 40%;
    margin-right: 5%;
}

.cameraman-1 img{
    width: 100%;
}

.cameraman-2{
    width: 55%;
}

.cameraman-2 h3{
    font-size: 30px;
    padding-top: 80px;
}

.cameraman-2 p{
    font-size: 18px;
}





.contact{
    width: 100%;
    margin-top: 10%;
    height: 330px;
    background-image: url(../img/contact-background.png);
    background-size: cover;
    position: relative;
}

/* contactのボタン */
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #06ab56;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #0d0d0d;
}

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

.contact h3{
    line-height: 330px;
    padding-left: 150px;
}

.contact a{
    padding: 10px 30px;
    position: absolute;
     bottom: 100px;
     left: 220px;
}





.access{
    width: 80%;
    margin-top: 10%;
    margin: 0 auto;
}

.access h2{
    font-size: 45px;
    text-align: center;
    margin-top: 10%;
    margin-bottom: 5%;
}

.access1-2{
    display: flex;
}

.access-1{
    width: 50%;
    text-align: center;
    background-color: #e6cfa1;
}

.access-1 h3{
    font-size: 30px;
    padding-top: 150px;
}

.access-1 p{
    padding-top: 10px;
    padding-left: 120px;
    text-align: left;
}

.access-2{
    width: 50%;
}





.footer p{
    text-align: center;
    padding-top: 10%;
    padding-bottom: 5%;
}





}
/*-----------------------------------------------------*/
/* PC用のCSS ！終わり！ */
/*-----------------------------------------------------*/





/*-----------------------------------------------------*/
/* タブレット用のCSS ！始まり！ */
/*-----------------------------------------------------*/
@media only screen and (min-width:480px) and (max-width:999px) {

 



body{
  min-width: 480px;
  max-width: 999px;
}





}
/*-----------------------------------------------------*/
/* タブレット用のCSS ！終わり！ */
/*-----------------------------------------------------*/





/*-----------------------------------------------------*/
/* スマホ用のCSS ！始まり！ */
/*-----------------------------------------------------*/
@media only screen and (max-width: 479px) {





body{
  max-width: 479px;
}





.container{
    width: 100%;
}





.navi{
    width: 100%;
}

.navi h2{
    width: 50%;
    padding-left: 3%;
    font-size: 25px;
}

.navi ul{
    width: 75%;
    margin-left: 25%;
    display: flex;
    list-style: none;
}

.navi li{
    padding-left: 2%;
    font-size: 13px;
}





.top{
    width: 100%;
}

.top video{
    width: 100%;
    padding-top: 10px;
}

.toptext{
    width: 70%;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
}

.toptext h2{
    font-size: 20px;
}

.toptext p{
    font-size: 14px;
    margin-top: 5px;
}





.image{
    width: 60%;
    margin: 0 auto;
    margin-top: 30px;
}

.image h2{
    font-size: 20px;
    padding-bottom: 5px;
    text-align: center;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/slider-1.png);
}

.slider-item02 {
    background:url(../img/slider-2.png);
}

.slider-item03 {
    background:url(../img/slider-3.png);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:40vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

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

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

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

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

.slick-dots {
	position: relative;
	z-index: 3;
    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:5px;/*ドットボタンのサイズ*/
    height:5px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
/*==================================================
スライダーのためのcss
===================================*/





.point{
    width: 90%;
    margin: 0 auto;
}

.point h2{
    font-size: 20px;
    text-align: center;
}

.point1-3{
    display: flex;
}

.point img{
    width: 100%;
}

.point p{
    padding-top: 5px;
    font-size: 14px;
}

.point-1{
    padding-right: 15px;
}

.point-2{
    padding-right: 15px;
}





.cameraman{
    width: 70%;
    margin: 0 auto;
    margin-top: 30px;
}

.cameraman h2{
    font-size: 20px;
    padding-bottom: 5px;
    text-align: center;
}

.cameraman-1{
    width: 80%;
    margin: 0 auto;
}

.cameraman-1 img{
    width: 100%;
}

.cameraman-2{
    width: 100%;
    margin: 0 auto;
}

.cameraman-2 h3{
    font-size: 15px;
    padding-top: 10px;
    text-align: center;
}

.cameraman-2 p{
    font-size: 12px;
    text-align: center;
}





.contact{
    width: 100%;
    margin-top: 30px;
    height: 140px;
    background-image: url(../img/contact-background.png);
    background-size: cover;
    position: relative;
}

/* contactのボタン */
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #06ab56;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #0d0d0d;
}

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

.contact h3{
    padding-top: 100px;
    padding-left: 50px;
    font-size: 14px;
}

.contact a{
    padding: 20px 30px;
    position: absolute;
     bottom: 50px;
     left: 120px;
    font-size: 14px;
}





.access{
    width: 80%;
    margin-top: 10%;
    margin: 0 auto;
}

.access h2{
    font-size: 45px;
    text-align: center;
    margin-top: 10%;
    margin-bottom: 5%;
}

.access1-2{
    display: flex;
}

.access-1{
    width: 50%;
    text-align: center;
    background-color: #e6cfa1;
}

.access-1 h3{
    font-size: 30px;
    padding-top: 150px;
}

.access-1 p{
    padding-top: 10px;
    padding-left: 120px;
    text-align: left;
}

.access-2{
    width: 50%;
}





.footer p{
    text-align: center;
    padding-top: 10%;
    padding-bottom: 5%;
}





}
/*-----------------------------------------------------*/
/* スマホ用のCSS ！終わり！ */
/*-----------------------------------------------------*/