@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

html {
  font-size: 100%;
}

body {
  color: #24292e;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  border-top: 10px solid #8bbd9c;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.3rem;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1400px;/* コンテンツの最大幅 */
  margin: 0 auto 150px auto;/* 上下左右に余白を設定 */
  padding: 0 4%
}

.sec-title {
  width: 60%;
  font-size: 1.6rem;
  padding: 1rem;
  text-align: center;
  color: #fff;
  border-radius: 100vh;
  background-color: #8bbd9c;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}

/* Header */
#header {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 4%;
  height: 170px;
}
#header nav {
  display: flex;
}
#header ul {
  display: flex;
  padding: 10px 0;
  align-items: center;
}
#header ul li {
  margin-left: 30px;
}
#header ul li a {
  color: #24292e;
  transition: all 0.3s;
}
#header ul li a:hover {
  opacity: 0.6;
}
#header .logo {
  width: 120px;
}
#header .instagram {
  width: 29px;
}

/* Main */
#main {
  margin-bottom: 80px;
}

#main img {
  width: 100%;
  /* max-width: 2560px;
  height: 1280px; 
  object-fit: cover; */
  opacity: 0.8;
}

/* concept */
#concept {
  margin-bottom: 80px;
}

#concept img {
  width: 100%;
  /* max-width: 2560px;
  height: 800px;
  object-fit: cover; */
  opacity: 0.25;
}

.concept-box {
  position: relative;
}
.concept-box .concept-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
}

/* gallery */
#gallery ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

#gallery ul li {
  width: 31%;
  margin-bottom: 23px;
}

#gallery ul li img {
  cursor: pointer;
  transition: all 0.3s;
}

#gallery ul li img:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

/* staff */
#staff ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
#staff ul li {
  width: 50%;
  margin-bottom: 23px;
  text-align: center;
  vertical-align: middle;
}
#staff img {
  width: 300px;
}
#staff h4 {
  margin-bottom: 40px;
}
#staff .staff-introduction {
  text-align: left;
}

/* access */
#access ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
#access ul li {
  width: 50%;
  text-align: center;
}
#access table {
  width: 100%;
}
#access table th {
  padding: 20px 30px;
  border-bottom: solid #8bbd9c;
}
#access table td {
  padding: 20px 30px;
  text-align: left;
  border-bottom: solid #8bbd9c;
}

  
/* footer */
#footer {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background: #8bbd9c;
}

/* sp */
@media screen and (max-width: 767px) {
  .wrapper {
    font-size: 0.9rem;
  }
  /* Header */
  #header {
    flex-direction: column;
    height: auto;
  }
  #header nav {
    flex-direction: column;
  }
  #header ul li {
    margin: 0 15px;
    text-align: center;
  }
  #header li {
    font-size: 1rem;
  }
  #header .instagram {
    width: 1.2rem;
  }

  /* main */
  /* #main img {
    height: 300px;
  } */

  /* concept */
  #concept img {
    height: 400px;
  }
  #concept .concept-content {
    width: 90%;
  }

  /* menu */
  #menu ul {
    flex-direction: column;
    width: 70%;
  }
  #menu ul li {
    width: 100%;
  }

  /* galler */
  #gallery ul {
    flex-direction: column;
  }
  #gallery ul li {
    width: 100%;
    text-align: center;
  }
  #gallery ul li img {
    width: 90%;
    cursor: pointer;
    transition: all 0.3s;
  }
  #gallery ul li img:hover {
    transform: scale(1.1);
    opacity: 0.7;
  }

  /* staff */
  #staff ul {
    flex-direction: column;
  }
  #staff ul li {
    width: 100%;
  }

  /* access */
  #access ul {
    flex-direction: column;
  }
  #access ul li {
    width: 100%;
  }
  #access ul li table {
    margin-top: 30px;
  }
}