@charset "UTF-8";

/*基本設定*/
body, h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  margin-right: auto;
  margin-left: auto;
  font-family: 'klee', "Roboto", "Helvetica Neue", "Hiragino Kaku Gothic Pro", "Meiryo, Yu Gothic", "YuGothic", "Arial", sans-serif;
}

img {
    vertical-align: bottom;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul {
    list-style-type:none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
 }

/*ヘッダー*/
header {
  margin-right: auto;
  margin-left: auto;
  background-color: #fff3e2;
}

header .container{
  margin-left: 60px;
  margin-right: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

header .one {
  display: flex;
  align-items: center;
}

header .logo {
    width: 130%;
}

h1 {
    font-size: 54px;
    margin-left: 40px;
}

header .oyster {
    width: 130%;
}

.title {
  text-align: center;
}
/*ファーストビュー*/

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

.slider-item01 {
    background:url(images/firstview.jpg);
    width: 100%;
}

.slider-item02 {
    background:url(images/firstview2.jpg);
    width: 100%;
}

.slider-item03 {
    background:url(images/firstview3.jpg);
    width: 100%;
}

.slider-item04 {
    background:url(images/firstview4.jpg);
    width: 100%;
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:80vh;/*各スライダー全体の縦幅を画面の高さいっぱい（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;/*ドットボタンの現在地表示の色*/
}

/*商品紹介*/

h2 {
  font-size: 44px;
  padding-top: 50px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: solid 4px black;
  display: inline-block;
}

.items {
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 180px;
  background-image:url(images/background1.png);
  background-size:cover;
  text-align: center;
}

.Aset{
  margin-top: 80px;
  margin-left: 80px;
  width: 90%;
}

.Bset{
  margin-top: 80px;
  margin-left: 10px;
  width: 92%;
}

/*料金*/

.prices {
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 180px;
  background-image:url(images/background2.png);
  background-size:cover;
  text-align: center;
}

.price{
  margin-top: 100px;
  width: 92%;
}

.attention{
  font-size: 20px;
  text-align: left;
  margin-left: 70px;
}

.maps {
  text-align: center;
}

h4 {
  font-size: 36px;
  padding-top: 80px;
}

.map{
  margin-top: 80px;
  margin-bottom: 100px;
  width: 88%;
}

/*インスタグラム*/

.instagram{
  margin-top: 40px;
  padding-bottom: 120px;
  background-color: #ffe5be;
}

h3 {
  font-size: 44px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.instagram-center {
  margin:0 auto;
  max-width: 800px;
}

/*お問い合わせ*/

header{
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #ffe5be;
}

.container2 {
  margin-left: 60px;
  display: flex;
  align-items: center;
}

.contact-title{
  font-size: 36px;
  padding-right: 40px;
}

.info{
  border-left: solid 2px white;
  padding-left: 40px;
  font-size: 24px;
}

<section class="infomation">
    <div> <img src="images/contact.jpg" alt="お問い合わせ" class="info"/> </div>
</section>
