
/* メインメニュー */
.main-menu {
    background: #000;
    display: flex;
    justify-content: center
}

.main-menu a {
    background: #000;
    padding: 0rem;
    color: #fff;
    display: inline-block;
    margin: 1rem;
}
.main-menu a:hover {
    background: #0090aa;
}

/* サブメニュー */
.sub-menu {
    position: absolute;
    z-index: 3;
    top: 3rem;
    left: 1rem;
}
.sub-menu a {
    margin: 0.1px;
    width: 180px;
    background: #666;
}

/* サブメニューのあるメニュー */
.has-menu {
    position: relative;
}
.has-menu > a::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f078";
    margin-left: .1rem;
}

/* 通常はサブメニューを非表示 */
.has-menu .sub-menu {
    display: none;
}
/* カーソルを合わせるとサブメニューを表示 */
.has-menu:hover .sub-menu {
    display: block;
}


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

.slider-item01 {
    background:url(1.jpg);
}

.slider-item02 {
    background:url(2.jpg);
}

.slider-item03 {
    background:url(3.jpg);
}

.slider-item04 {
    background:url(4.jpg);
}

.slider-item05 {
    background:url(5.jpg);
}

.slider-item06 {
    background:url(6.jpg);
}

.slider-item07 {
    background:url(7.jpg);
}

.slider-item08 {
    background:url(8.jpg);
}

.slider-item {
    width: 50%;/*各スライダー全体の横幅を画面の高さいっぱい（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 #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    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:#fff;/*ドットボタンの色*/
}

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


/*========= レイアウトのためのCSS ===============*/
ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #fff;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  font-family: Klee One;
  position: absolute;
  z-index: 2;
  top: 70%;
  right: 10%;
  transform: translate(10%, -50%);
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

h2{
  font-family: Klee One;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin: 25px;
}

h3{
  font-family: Klee One;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin: 0px;
}

.wrapper{
  position: relative;
}

.container{
  display: flex;
  justify-content: space-between;

main{
  width; 30%;
  position: center;
}

aside{
  width; 30%;
  position: center;
}
aside2{
  width; 40%;
  position: center;
}

}

.container p{
  padding: 300px 0; 
  text-align: center;
  color: #fff;
}

.side-box {
  margin-bottom: 4rem;
  border: 1px solid #ccc;
  outline: 2px solid #ccc;
  outline-offset: 4px;
  border-radius: 0.2px;
  padding: .875rem;
  position: relative;
}

.side-box::before {
  display: block;
  width: 2rem;
  height: 2rem;
  text-align: center;
  background: #fff;
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
/* Font Awesome */
  font-family: 'fa-sharp fa-solid fa-book-bookmark';
  font-weight: 900;
  color: #949087;
  font-size: 1.5rem;
  content: '\f1b0';
}
