@charset "UTF-8"; /**/
/*
## ごあいさつ
*/
.section-greeting .column {
  grid-column: span 1;
}

.section-greeting .text_box {
  grid-column: 1 / 2;
  grid-column: span 1;
  z-index: 1;
}

.section-greeting figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  overflow: visible;
  margin-right: var(--m-fix);
}

.section-greeting figure img {
  width: auto;
  height: 100%;
  object-fit: contain;
  margin-left: auto;
  border-radius: initial;
  -webkit-mask-image: linear-gradient(to left, #000000 60%, transparent 90%);
  mask-image: linear-gradient(to left, #000000 50%, transparent 97%);
}

/*
## プロフィール
*/
.section-profile {
}

.section-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #f6f3e7;
  z-index: -1;
  margin: 0 var(--m-fix);
}

.section-profile figure {
  grid-column: 1 / 1;
  grid-row: 2 / 4;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.section-profile figure img {
  height: 100%;
  object-fit: cover;
}

.section-profile .text_box {
  grid-column: 2 / -1;
}

.section-profile .text_box dl {
  margin-bottom: var(--m-s);
}

.section-profile .text_box dl dt {
  font-size: var(--f-xs);
}

.section-profile .text_box dl dd {
  font-size: var(--f-m);
  font-weight: bold;
}

.section-profile .text_box dl dd small {
  margin: 0 var(--m-s);
  display: inline-block;
  color: var(--c-accent);
  font-weight: normal;
  font-family: var(--f-cursive);
}

.text_box.profile-detail {
  grid-column: 1 / -1;
  background: #fff;
  padding: var(--m-r);
  border-radius: var(--m-xxs);
  grid-column: -1 / 2;
}

.text_box.profile-detail .catch {
  font-weight: var(--w-m);
  line-height: 1.8;
  margin-bottom: var(--m-s);
}

.text_box.profile-detail .list {
  gap: var(--m-xs);
  display: flex;
  flex-direction: column;
  font-size: var(--f-s);
}

.text_box.profile-detail .list li {
  display: flex;
  align-items: baseline;
  line-height: 1.3;
}

.text_box .note {
  border-left: 1px solid var(--c-accent);
  padding-left: 1rem;
  font-size: var(--f-s);
  font-weight: var(--w-b);
}

/*
## 営業日・時間
*/
.section-open:before {
  content: "";
  background: #ecf3f6;
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 var(--m-fix);
  z-index: -1;
}

.section-open .map {
  grid-column: 1 / -1;
  border-radius: var(--m-xs);
  overflow: hidden;
}

.section-open .map iframe {
  width: 100%;
  min-height: 500px;
  vertical-align: top;
}

.section-open figure {
  grid-column: span 1;
  aspect-ratio: 7 / 5;
  overflow: hidden;
}

.section-open figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-open .text_box {
  grid-column: span 1;
}

.section-open .detail {
  display: grid;
  grid-template-columns: fit-content(160px) auto;
  align-items: baseline;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.section-open .detail dt {
  font-weight: 600;
}

.section-open .detail dd a {
  display: inline-block;
}

.section-open .detail dd small {
  display: block;
}

.section-open .shop-pt a {
  border-radius: var(--m-xxs);
  grid-column: span 3;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 767px) {
  .section-greeting .column, .section-profile .column, .section-open .column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-greeting figure {
    all: initial;
    height: 400px;
    width: 100vw;
    margin: 0 var(--m-fix);
    position: relative;
    order: 0;
  }

  .section-greeting figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 80% center;
    -webkit-mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
  }

  .section-greeting .text_box {
    order: 2;
  }

  .profile-main figure {
    grid-column: 1;
    aspect-ratio: unset;
  }

  .profile-main .text_box {
    grid-column: 1;
  }

  .section-profile .profile-detail {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .section-open figure {
    grid-column: 1;
    aspect-ratio: unset;
  }

  .section-open .text_box {
    grid-column: 1;
  }

  .section-open .shop-pt a {
    grid-column: span 1!important;
  }

  .section-open .detail dt {
    font-weight: bold;
  }
}
