@media screen and (min-width: 767px) {
  main {
    /* background-color: gray; */
  }
  #header{
    display:none;
  }

  .profile {
    display: flex;
    width: 96%;
    height: 200px;
    /* background-color: yellow; */
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .profile .profile-img-wrapper {
    display: flex;
    flex-flow: column;
    /* width:30%; */
    height: 100%;
    /* background-color: pink; */
    margin-right:10px;
  }

  .profile .prolile-text-wrapper {
    display: flex;
    justify-content: center;
    /* flex-flow: column; */
  }

  .profile img {
    display: inline-block;
    /* width:100%; */
    /* height:auto; */
    /* max-height:150px; */
  }

  .profile .prolile-text-wrapper div {
    display: flex;
    /* width: 90%; */
    /* background-color: skyblue; */
    justify-content: center;
  }

  .profile .prolile-text-wrapper span {
    display: inline-block;
    /* background-color: red; */
  }

  #content1 {
    width: 80%;
    margin: auto;
    padding-bottom: 40px;
    /* background-color: blue; */
  }

  #content2 {
    display: none;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    margin-bottom: 80px;
  }

  .portfolio-link {
    /* display: inline-block; */
    display:flex;
    font-size:14px;
    width:100%;
    height:40px;
    margin-top: 5px;
    color: #0077cc;
    background-color:white;
    /* text-decoration: underline; */
    transition: color 0.3s ease;
    margin-top:10px;
    justify-content:center;
    align-items:center;
    border:2px solid #0077cc;
    border-radius:30pt;
  }

  .portfolio-link:hover {
    color: white;
    background-color:#0077cc;
  }

  .slider-for {
    /* background-color: yellowgreen; */
    margin-bottom: 30px;
  }

  .slider-for img {
    max-height: 400px;
    height: auto;
    object-fit: cover;
    margin: auto;
  }

  /* 画像スリック全体 */

  /* .slider-nav {
    background-color: skyblue;
  } */


  .slider-nav img {
    max-height: 150px;
    height: auto;
    object-fit: cover;
    margin: auto;
  }

  /* ------------------------↓スライダー設定-------------- */

  .slick-dots {
    position: relative;
    margin-top: 0px;
    text-align: center;
  }

  .slick-prev,
  .slick-next {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 60px;
  }

  /* ------------------------スライダー終わり-------------- */

  /* スライダーの各画像の高さ(divの高さ) */


  .handmade-goods-slick {
    display: flex;
    align-items: center;
  }

  .handmade-goods {
    text-align: center;
  }

  #content2 p {
    margin-bottom: 40px;
  }

  .btn-flex {
    display: flex;
    justify-content: space-around;
  }

  .border_btn02 {
    margin-left: 120px;
  }

  .border_btn01,
  .border_btn02 {
    display: inline-block;
    width: 80%;
    color: #edb918;
    /* 文字色 */
    border: 2px solid #F4E511;
    /* 線幅・種類・色 */
    border-radius: 30px;
    background: #fff;
    /* 背景色 */
    padding: 1em 2em;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
  }

  /* マウスオーバーした際のデザイン */
  .border_btn01:hover,
  .border_btn02:hover {
    color: #000;
    /* 文字色 */
    background: #F4E511;
    /* 背景色 */
  }
}

@media not screen and (min-width: 767px) {
  main {
    /* background-color: gray; */
  }
  #header{
    display:none;
  }

  .profile {
    display: flex;
    flex-flow: column;
    width: 100%;
    /* background-color: yellow; */
    padding-bottom: 10px;
  }

  .profile .profile-img-wrapper {
    display: flex;
    flex-flow: column;
    width: 100%;
    /* background-color: pink; */
    margin-top: 10px;
  }

  .profile .profile-img-wrapper img {
    display: inline-block;
    width: 150px;
    height: 150px;
    margin: auto;
  }

  .profile .prolile-text-wrapper {
    display: flex;
    /* height: 70%; */
    justify-content: center;
    /* flex-flow: column; */
    /* background-color: green; */
    margin-top: 10px;
  }

  .profile .prolile-text-wrapper div {
    width: 90%;
    /* height: 98%; */
    /* margin: auto; */
    /* display: flex; */
    /* flex-flow: column; */
    /* background-color: skyblue; */
  }

  .profile .prolile-text-wrapper span {
    display: inline-block;
    /* margin-left:13px; */
  }

  #content1 {
    width: 80%;
    margin: auto;
    padding-bottom: 40px;
  }

  #content2 {
    display: none;
    width: 90%;
    max-width: 880px;
    margin: 0 auto;
    margin-bottom: 80px;
  }

  .portfolio-link {
    display: flex;
    width:200px;
    height:40px;
    margin-top: 5px;
    color: #0077cc;
    background-color:white;
    /* text-decoration: underline; */
    transition: color 0.3s ease;
    margin: auto;
    justify-content:center;
    align-items:center;
    border:2px solid #0077cc;
    border-radius:30pt;
  }

  .portfolio-link:hover {
    color: white;
    background-color:#0077cc;
  }

  .slider-for {
    margin-bottom: 30px;
  }

  .slider-for img {
    max-height: 400px;
    height: auto;
    object-fit: cover;
    margin: auto;
  }

  /* 画像スリック全体 */

  .slider-nav {
    margin-bottom: 40px;
  }


  .slider-nav img {
    max-height: 150px;
    height: auto;
    object-fit: cover;
    margin: auto;
  }


  /* ------------------------↓スライダー設定-------------- */

  .slick-dots {
    position: relative;
    margin-top: 0px;
    text-align: center;
  }

  .slick-prev,
  .slick-next {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 60px;
  }

  /* ------------------------スライダー終わり-------------- */

  /* スライダーの各画像の高さ(divの高さ) */


  .handmade-goods-slick {
    display: flex;
    align-items: center;
  }

  .handmade-goods {
    text-align: center;
  }

  #content2 p {
    margin-bottom: 40px;
  }

  .btn-flex {
    display: flex;
    justify-content: space-around;
  }

  .border_btn02 {
    margin-left: 120px;
  }

  .border_btn01,
  .border_btn02 {
    display: inline-block;
    width: 80%;
    color: #edb918;
    /* 文字色 */
    border: 2px solid #F4E511;
    /* 線幅・種類・色 */
    border-radius: 30px;
    background: #fff;
    /* 背景色 */
    padding: 1em 2em;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
  }

  /* マウスオーバーした際のデザイン */
  .border_btn01:hover,
  .border_btn02:hover {
    color: #000;
    /* 文字色 */
    background: #F4E511;
    /* 背景色 */
  }
}