@charset "UTF-8";
body{
    /* background-color: crimson; */
    min-width: 1000px;
    /* .zen-kaku-gothic-antique-light {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .zen-kaku-gothic-antique-regular {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .zen-kaku-gothic-antique-medium {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .zen-kaku-gothic-antique-bold {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .zen-kaku-gothic-antique-black {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 900;
    font-style: normal;
  } */
  
}
body h1{
    font-weight: normal;
}
.container{
    /* background-color: fuchsia; */
    width: 80%;
    margin:0 auto
}
.header{
    /* background-color: aqua; */
    display: flex;
}
.header1{
    /* background-color: aliceblue; */
    width: 30%;
    font-size: 10px;
}
.header2{
    /* background-color: lightsalmon; */
    
    width: 70%;
}
.header2 ul{
    display: flex;
    justify-content: space-around;
    list-style: none;
    
    
    
}
.header2 a{
    text-decoration: none;
    color: black;
}
.top{
    /* background-color: bisque; */
    width: 100%;
}
.top video{
    width: 100%;
}
.title{
    text-align: center;
    
}
.title h2{
    font-weight: normal;
    font-size: xx-large;
}
.article{
    /* background-color: blanchedalmond; */
    text-align: center;
   
}
.article h3{
    font-weight: lighter;
    font-size: small;
    color: #666;
}
.slider{
    /* background-color: moccasin; */
    width:94%;
    margin:0 auto;
}
.slider img{
    text-align: center;
    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;/*ドットボタンの現在地表示の色*/
}
.main{
    /* background-color: cornflowerblue; */
    display: flex;
    width: 100%;
}
.main p{
    font-weight: lighter;
    color: #666;
    font-size: small;
    text-align: center;
}
.main1{
    /* background-color: azure; */
}
.main1 li{
    font-weight: lighter;
    color: #666;
    font-size: small;
    text-align: center;
}
.main2{
    /* background-color: beige; */
}

.main3{
    /* background-color: cornsilk; */
}
.main img{
    width: 100%;
}
.introduction{
    /* background-color: darkseagreen; */
    display: flex;
    justify-content: center;
    width: 100%;
}
.introduction1{
    /* background-color: lightcyan; */
    width: 40%;
}
.introduction1 img{
    width: 100%;
}
.introduction2{
    /* background-color: lightgreen; */
    width: 60%;
    padding: 8% 3%;
}
.introduction2 span{
    font-size: x-large;
}
.introduction2 p{
    font-size: small;
    color: #666;
}
.contact{
    /* background-color: lightskyblue; */
   background-image: url(../img/contact-background.png);
   background-repeat: no-repeat;
   background-position: center;
   background-size: contain;
   width: 100%;
   padding: 150px 0;

}
.contact a{
    margin: 0% 0% 0% 10%;
}
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  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:#79bf81;
        
      }
      
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #54c662;
}

a.btn--radius {
   border-radius: 100vh;
}
.contact p{
    font-size: small;
    padding-left: 10%;
}
.access{
    /* background-color: deepskyblue; */
    display: flex;
    width: 100%;
}
.access1{
    background-color: rosybrown;
    width: 50%;
    padding: 15% 5%;
    text-align: center;
    
}
.access2{
    /* background-color: skyblue; */
    width: 50%;
}
.footer{
    /* background-color: plum; */
    text-align: center;
}
