body {
    margin: 0;
    overflow-x: hidden;
}


header{
    float: left;
    margin-bottom: 5px;
    position:fixed;
    z-index:10000;

    width:100vw;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.763);

    
}

.header-text {
	position: relative;
	z-index: 10;
	height: 80px;
    width: 100vw;
    display: flex;
	align-items: center;
	padding-left: 20px;
    font-weight: bold;
}
.header-area{
    display: flex;
    width: 20vw;
}


.slider {
    width: 100vw;
    padding-top: 80px;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.slider img{
  width: 98vw;
  height: auto;
  margin-bottom: 100px;
  padding-bottom: 100px;
}


footer{
  width: 100vw;
}

.footer-list{
    position: relative;
	height: 180px;
    width: 100vw;
    padding-left: 20px;
	display: flex;
	align-items: center;
    font-weight: bold;
}


/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  
  .hamburger__line {
    position: absolute;
    width: 50px;
    height: 3px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
  }
  
  .hamburger__line--1 {
    top: 1px;
  }
  
  .hamburger__line--2 {
    top: 18px;
  }
  
  .hamburger__line--3 {
    top: 36px;
  }
  
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }
  
  .open .hamburger__line--2 {
    opacity: 0;
  }
  
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }
  
  /* 
  sp-nav(ナビ)
  =================================== */
  .sp-nav {
    position: fixed;
    right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 62%; /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
    padding-left: 2%;
    font-weight: bold;
    font-size:xx-large;
  }
  
  .sp-nav ul li{
    padding-bottom: 50px;
  }

  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  
  
  /* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
  }
  
  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
    opacity: 0.3;
    visibility: visible;
  }
  
  ul{
    padding-left:0;
  }
  
  li{
    list-style:none;
    padding-bottom: 5px;
  }
  
.prof-pic img{
    margin-top: 140px;
    margin-bottom: 30px;
    margin-left: 10%;
    width: 128px;
    height: 128px;
    border-radius: 9999vmax;
}

.about{
    padding-left: 40px;
}

a{
    color: inherit;
    text-decoration: none;
}


.about-li{
    font-size: smaller;
}

.g-title{
    height: 60px;
    width: 100vw;
    padding-top: 100px;
    padding-left: 40px;
    font-weight: bold;
    font-size: large;
}

/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
    columns: 4;/*段組みの数*/
    padding:0 15px;/*ギャラリー左右に余白をつける*/
    margin:0;
    }
    
    .gallery li {
        margin-bottom: 20px;/*各画像下に余白をつける*/
    list-style:none;
    }
    
    /*ギャラリー内のイメージは横幅100%にする*/
    .gallery img{
        width:100%;
        height:auto;
        vertical-align: bottom;/*画像の下にできる余白を削除*/}
    
    /*　横幅900px以下の段組み設定　*/
    @media only screen and (max-width: 900px) {
        .gallery{
        columns:3;
        }	
    }
    
    @media only screen and (max-width: 768px) {
        .gallery{
        columns: 2;
        }	
        }

.brank{
  height: 100px;
}

.formrun-embed{
  padding-top: 80px;
}

