@charset "UTF-8";
#mv {
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
}
#mv .logo {
  width: 16vw;
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #mv .logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  #mv .logo {
    width: 50%;
    top: 25%;
  }
}
#mv .btn {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  text-align: center;
  z-index: 1;
}
#mv .btn::after {
  width: 1px;
  height: 20px;
  background-color: #fff;
  content: "";
  display: block;
  margin: auto;
  animation-name: expansion; /*順方向に再生する*/
  animation-duration: 1s; /*時間*/
  animation-timing-function: ease-in; /*加速度*/
  animation-delay: 0.1s; /*開始までの時間*/
  animation-iteration-count: infinite; /*回数*/
  animation-direction: normal; /*順方向に再生する*/
  animation-fill-mode: forwards; /*前後にスタイルを適用*/
  animation-play-state: running; /*再生・停止設定*/
}
@keyframes expansion {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, 10px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
#mv .slider_pc,
#mv .slider_sp {
  position: relative;
  z-index: 0;
}
#mv .slider_pc {
  display: block;
}
#mv .slider_pc > div img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #mv .slider_pc {
    display: none;
  }
}
#mv .slider_sp {
  display: none;
}
#mv .slider_sp > div img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #mv .slider_sp {
    display: block;
  }
}

#concept {
  padding: 6rem 0 8rem 0;
}
@media screen and (max-width: 767px) {
  #concept {
    padding: 4rem 0 4rem 0;
    background-image: url(../img/index/concept_bg.webp);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center center;
  }
}
#concept .inner {
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  #concept .inner {
    max-width: 90%;
  }
}
#concept .inner h2 {
  margin-bottom: 4rem;
  letter-spacing: 4px;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #concept .inner h2 {
    margin-bottom: 3rem;
  }
}
#concept .inner h2 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
}
#concept .inner .row {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 60px;
}
@media screen and (max-width: 767px) {
  #concept .inner .row {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #concept .inner .row > img {
    display: none;
  }
}
#concept .inner .row .txt {
  text-align: left;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767px) {
  #concept .inner .row .txt {
    text-align: center;
    font-size: 2.8vw;
  }
}
#concept .inner .row .txt span {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  display: block;
  margin-bottom: 1.5rem;
  line-height: 2;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  #concept .inner .row .txt span {
    text-align: center;
  }
}
#concept .inner .row .txt p br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #concept .inner .row .txt p br.sp {
    display: block;
  }
}
#concept .inner .btn {
  text-align: right;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #concept .inner .btn {
    text-align: center;
  }
}
#concept .inner .btn a {
  font-family: "Shippori Mincho", serif;
  color: #000;
}

#menu {
  padding: 4rem 0 2rem 0;
  background-image: url(../img/index/menu_bg.webp);
}
@media screen and (max-width: 767px) {
  #menu {
    padding: 2rem 0 2rem 0;
  }
}
@media screen and (max-width: 767px) {
  #menu .inner {
    max-width: 80%;
  }
}
#menu .inner h2 {
  margin-bottom: 2rem;
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #menu .inner h2 {
    margin-bottom: 3rem;
  }
}
#menu .inner h2 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: bold;
  letter-spacing: 2px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 8px;
}
#menu .inner > p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #menu .inner > p {
    display: none;
  }
}
#menu .inner .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media screen and (max-width: 767px) {
  #menu .inner .row {
    display: block;
  }
}
#menu .inner .row .col {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #menu .inner .row .col {
    margin-bottom: 1rem;
  }
}
#menu .inner .row .col .img {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #menu .inner .row .col .img img {
    width: 300px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#menu .inner .row .col .txt {
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  text-align: left;
}
#menu .inner .row .col .txt h3 {
  font-family: "Shippori Mincho", serif;
  color: #000;
}
@media screen and (max-width: 767px) {
  #menu .inner .row .col .txt h3 {
    font-size: 0.6rem;
  }
}
#menu .inner .row .col .txt h3 span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #menu .inner .row .col .txt h3 span {
    font-size: 1.1rem;
  }
}
#menu .inner .row .col .txt p:nth-of-type(1) {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  #menu .inner .row .col .txt p:nth-of-type(2) {
    font-size: 0.8rem;
  }
}
#menu .inner .row .col .btn {
  text-align: right;
  padding: 1rem 1.5rem;
}
#menu .inner .row .col .btn a {
  display: inline-block;
}
#menu .inner .btn {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  #menu .inner .btn {
    margin-top: 0.5rem;
  }
}

#profile {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  #profile {
    padding: 3rem 0;
  }
}
#profile .inner {
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  #profile .inner {
    max-width: 80%;
  }
}
#profile .inner .row {
  display: grid;
  grid-template-columns: 1fr 55%;
  grid-gap: 10px;
}
@media screen and (max-width: 767px) {
  #profile .inner .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  #profile .inner .row img {
    order: 1;
    margin-bottom: 1rem;
  }
}
#profile .inner .row .txt {
  text-align: left;
}
@media screen and (max-width: 767px) {
  #profile .inner .row .txt {
    order: 2;
  }
}
#profile .inner .row .txt h2 {
  margin-bottom: 2rem;
  font-size: 0.8rem;
}
#profile .inner .row .txt h2 span {
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}
#profile .inner .row .txt p {
  margin-bottom: 1.5rem;
}
#profile .inner .row .txt .btn a {
  line-height: 1.2;
  padding: 0.5rem 0;
  border-bottom: 1px solid #999;
  text-decoration: none;
}

#instagram {
  padding: 3rem 0 5rem 0;
  background-image: url(../img/index/insta_bg.webp);
}
#instagram .inner {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  #instagram .inner {
    max-width: 90%;
  }
}
#instagram .inner h2 {
  font-size: 0.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #instagram .inner h2 {
    margin-bottom: 3rem;
  }
}
#instagram .inner h2 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 4px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
#instagram .inner .row {
  margin-bottom: 4rem;
}
#instagram .inner .row a {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0px;
}
@media screen and (max-width: 767px) {
  #instagram .inner .row a {
    grid-template-columns: repeat(2, 1fr);
  }
}
#instagram .inner .btn a {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #999;
}
#instagram .inner .btn a::after {
  content: ">";
  display: inline-block;
  padding-left: 20px;
}
#instagram .inner .btn a span {
  padding: 0 0.2rem;
}