<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*全体設定*/
body{
    width: 1280px;
    margin-right: auto;
    margin-left: auto;
}

/*全体リンク*/
a{
    color: inherit;
    text-decoration: none;
}
a:hover{
color: rgb(175, 172, 172);
opacity: 0.5;

}
/*--------------------------*/

/*header*/
header {
    width: 1280px;
    position: fixed;
    top: 0px;
}
header ul{
    list-style-type: none;
    font-family: 'Shippori Mincho', serif;
    font-size: 24px;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-left:20px;
    padding-right:50px;

}

li:not(:last-child){
    margin-right: 70px;
}

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

.header {
	color: #000000;
}

/*index設定*/

/*==================================================
スライダーのためのcss
===================================*/
.sliders {
    position:relative;
      z-index: 1;
      /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
      
      margin-top: 120px;
      padding: 0%;
  }
  /*　背景画像設定　*/
  
  .slider-item011 {
      background:url(img/header1.jpg);
  }
  
  .slider-item021 {
      background:url(img/header2.jpg);
  }
  
  .slider-item031 {
      background:url(img/header3.jpg);
  }
  
  .slider-items {
      width: 1280px;
      height:900px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
      background-repeat: no-repeat;/*背景画像をリピートしない*/
      background-position: center;/*背景画像の位置を中央に*/
      background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
  }


#HomeSpace{
    margin-top:300px;
    margin-bottom: 100px;
    display: flex;
}
.ArtWork {
    margin-right:auto ;
    margin-left: auto;
}
.NEWS{
    font-family: 'Shippori Mincho', serif; 

}
.NewsScrall{
    height: 194px;
    overflow-y: scroll; 
}
.NEWS h1{
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 33px;
}


.NEWS li{
    margin-bottom: 20px;
    font-size: 20px;
    list-style-type: none;
    width: 700px;
    border-bottom: solid 1px;
}
/*ABOUTコンテンツ*/
.NavImg{
    margin-top: 100px;
}

.profile h1{
    width: 100px;
font-size: 36px;
font-family: 'Shippori Mincho', serif;
border-bottom: solid 1px black; 
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 300px;
margin-bottom: 70px;

}

.ProfRist li{
    width: 500px;
    border-bottom: solid 1px black;
    font-size: 24px;
    font-family: 'Shippori Mincho', serif;
    list-style-type: none;
    line-height: 2;
}
.prof{
    display: flex;
    background-color: #00000009;
    width:1031px;
    margin-left: auto;
    margin-right: auto;

}
.ProfImg{
    margin-right: 100px;
    margin-left: 50px; 
    margin-top: 50px;
    margin-bottom: 20px;
}

.concept h1{
    width: 140px;
    font-size: 36px;
    font-family: 'Shippori Mincho', serif;
    border-bottom: solid 1px black; 
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 300px;
    margin-bottom: 130px;
}
.concept{
    font-size:24px ;
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    margin-bottom: 200px;
}
#background1{
    position: relative;
    left: -200px;
    bottom: 530px;
    opacity: 0.5;
}
#background2{
 position: relative;
 right: -200px;
 bottom: 50px;
}
.ArtWork h1{
    width: 160px;
    font-size: 36px;
    font-family: 'Shippori Mincho', serif;
    border-bottom: solid 1px black; 
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 300px;
    margin-bottom: 50px;
}

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

.slider img {
    width:322px;
    height:204px;
}

.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: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;/*ドットボタンの現在地表示の色*/
}
.notice h1{
    width: 1200px;
    font-size: 36px;
    font-family: 'Shippori Mincho', serif;
    border-bottom: solid 1px black; 
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-top: 300px;
    margin-bottom: 50px;
}
.notice{
    margin-bottom: 120px;
}
.NoticeImg{
    margin: 50px;
}

.NoticeText{
display: flex;
}
.NoticeText img{
    text-align: left;
}
.NoticeRist{
    display: flex;
}
/*ACTIVITYコンテンツ*/

#NavImg{
    margin-top: 100px;
    margin-bottom: 200px;
}
.ArtWorkRist{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
}
.ART{
    margin-left: 100px;
    margin-right: 100px;
}
#ArtNema{
    font-size: 32px;
    font-family: 'Shippori Mincho', serif;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 130px;
}
#ArtNema2{
    font-size: 32px;
    font-family: 'Shippori Mincho', serif;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 65px;
}
#ArtNema3{
    font-size: 32px;
    font-family: 'Shippori Mincho', serif;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 160px;
}
#ArtNema4{
    font-size: 32px;
    font-family: 'Shippori Mincho', serif;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 85px;
}
.LookRist{
    display: flex;
    font-size: 20px;
    font-family: 'Shippori Mincho', serif;
}
.LookRistText{
    width: 200px;
    margin-left: 40px;
    border-bottom: solid 1px black;
    text-align: center;
}

/*CONTACT コンテンツ*/
.contact{
    margin-bottom: 200px;
}
.contact h1{
    width: 140px;
    font-size: 36px;
    font-family: 'Shippori Mincho', serif;
    border-bottom: solid 1px black; 
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 300px;
    margin-bottom: 300px;
}
.ContactFont{
    font-size: 20px;
    font-family: 'Shippori Mincho', serif;
    text-align: center;

}
/*ArtWork コンテンツ*/

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    margin-top: 100px;
    position:relative;
      z-index: 1;
      /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 300px;
  }
  /*　背景画像設定　*/
  
  .slider-item01 {
      background:url(img/cap1.jpg.JPG);
  }
  
  .slider-item02 {
      background:url(img/cap2.jpg.JPG);
  }
  
  .slider-item03 {
      background:url(img/cap3.jpg.JPG);
  }

  .slider-item04 {
      background:url(img/cap4.jpg);
  }

  .slider-item05 {
    background:url(img/cap5.jpg);
  }

   .slider-item06 {
    background:url(img/cap6.jpg);
  }
  /*　背景画像設定　*/
  
  .slider-item07 {
      background:url(img/cook1.jpg);
  }
  
  .slider-item08 {
      background:url(img/cook2.jpg);
  }
  
  .slider-item09 {
      background:url(img/cook3.jpg);
  }

  .slider-item10 {
      background:url(img/cook4.jpg);
  }

  .slider-item11 {
    background:url(img/cook5.jpg);
  }

   .slider-item12 {
    background:url(img/cook6.jpg);
  }

  .slider-item13 {
    background:url(img/cook7.jpg);
  }
  .slider-item14 {
    background:url(img/box1.jpg);
}

.slider-item15 {
  background:url(img/box2.jpg);
}

 .slider-item16 {
  background:url(img/box3.jpg);
}

.slider-item17 {
    background:url(img/box4.jpg);
}

.slider-item18 {
    background:url(img/chair1.jpg);
}

.slider-item19 {
    background:url(img/chair2.jpg);
}

.slider-item20 {
    background:url(img/chair3.jpg);
}

.slider-item21 {
    background:url(img/chair4.jpg);
}
  
  .slider-item {
      width: 1000px;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
      height:600px;/*各スライダー全体の縦幅を画面の高さいっぱい（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 #000000;/*矢印の色*/
      border-right: 2px solid #000000;/*矢印の色*/
      height: 25px;
      width: 25px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
      left:2.5%;
      transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
      right:7.5%;
      transform: rotate(45deg);
  }
  .Arts{
    position: absolute;
    top: 650px;
    left: 300px;
  }
  .ArtTexts p{
    font-family: 'Shippori Mincho', serif; 
    border-bottom: solid 1px;
    width: 350px;
    font-size: 20px;
  }
  
  .ArtAboutRist{
    margin-top: 20px;
    display: flex;
    font-size:16px;
  }
  .ArtConcepts{
    font-family: 'Shippori Mincho', serif; 
    position: absolute;
    top: 650px;
    right: 300px;
  }
  .A{
    font-size: 20px;
  }
  .B{
    margin-top: 0px;
    font-size: 14px;
line-height: 1.7;

  }
.image{
    opacity: 0.7;

}

.SNS {
    background-color: rgb(231, 231, 231);
    text-align: center;
    height:127px ;
}
.SNS img{
    padding-top: 17.5px;
}
.img{
    padding-bottom: 17.5px;
    padding-left: 20px;
    padding-right: 20px;
}

footer{
    font-family: 'Shippori Mincho', serif; 
    background-color: black;
    text-align: center;
    color: white;
    padding: 50px;

}
footer p{
    font-size: 12px;
    margin-top: 0;
}</pre></body></html>