p {
  font-family: var(--familyNotoSans);
  font-size: var(--fontMax16Min14);
  font-weight: 300;
  line-height: 2.22;
  color: var(--colorBase);
}

b {
  display: block;
  font-weight: 700;
}

.kikukaWinery {
  padding-block-end: 120px;
}

.pageContainer {
  padding-top: 14.1vw;
}

@media (width <= 767px) {
  .pageContainer {
    padding-top: 80px;
  }
}

/* Taxi */
.wineryTaxi__price {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.buttonTaxi {
  position: relative;
  display: inline-block;
  justify-content: center;
  padding: 26px 76px 27px 126px;
  font-family: var(--familyShipporiMincho);
  font-size: 20px;
  font-weight: 700;
  color: var(--colorBase);
  background-color: #ffde17;
}

.buttonTaxi::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 120px;
  height: 120px;
  content: "";
  background: url("../../images/winery/img__taxi.png") no-repeat center center / cover;
  transform: translateY(-50%);
}

.buttonTaxi::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9.76px;
  height: 19.51px;
  content: "";
  background: url("../../images/icons/icon-chevron-right_black.svg") no-repeat center center / cover;
  transform: translateY(-50%);
}

@media (width <= 767px) {
  .buttonTaxi {
    padding: 16px 44px 17px 90px;
    font-size: 16px;
    line-height: 1.4;
  }

  .buttonTaxi::before {
    width: 80px;
    height: 80px;
  }

  .buttonTaxi::after {
    width: 7px;
    height: 12px;
  }
}

@media (width <= 640px) {
  .kikukaWinery {
    padding-block-end: 80px;
  }
}

/* Heading Default */
.heading {
  display: grid;
  justify-items: center;
  margin-bottom: 1.84em;
  font-size: 49px;
  color: var(--colorBase);
}

.heading__en {
  font-family: var(--familyCormorantGaramond);
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
}

.heading__ja {
  font-family: var(--familyYuMincho);
  font-size: 0.347em;
  font-weight: 600;
}

/* Heading Ghost */
.heading--ghost {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-size: 17px;
  text-align: center;

  .heading__en {
    display: inline-block;
    font-size: 2.529em;
    color: #707070;
    opacity: 0.14;
  }

  .heading__en img {
    width: auto;
    max-height: 52px;
    object-fit: contain;
  }

  .heading__jp {
    margin-top: -13px;
    font-family: var(--familyYuMincho);
    font-size: var(--fontMax18Min16);
    font-weight: 600;
    line-height: 1.28;
    color: #30363d;
  }
}

/* Heading Underline */
.heading--line {
  font-family: var(--fontSipporiMincho);
  font-size: var(--fontMax24Min18);
  line-height: 0;
  border-bottom: 1px solid #707070;
}

.heading--line span {
  display: inline-block;
  padding-block: 8px 18px;
  padding-inline: 10px 20px;
  margin-inline-end: 16px;
  font-size: 0.75em;
  border-bottom: 4px solid #707070;
}

@media (width <= 640px) {
  .heading {
    font-size: 36px;
  }

  .heading--ghost {
    display: flex;
  }
}

/* Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button--md {
  min-width: 349px;
  height: 68px;
}

.button--outline {
  display: inline-flex;
  font-family: var(--familyYuMincho);
  color: var(--colorBase);
  border: 1px solid;
  transition:
    background-color 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.button--outline:hover {
  color: #ffffff;
  background-color: var(--colorBase);
  border: 1px solid var(--colorBase);
}

@media (width <= 640px) {
  .button--md {
    min-width: auto;
    height: 56px;
    font-size: 15px;
  }
}

/* Main Visual */
@media (width <= 767px) {
  .wineryTopimg__kv {
    object-position: left;
  }
}

/* 2column layout */
.columnContainer {
  display: grid;
  grid-template-columns: auto 487px;
  gap: 40px;
  justify-content: space-between;
}

.columnContainer__body {
  margin-top: 64px;
}

.columnContainer__link {
  margin-top: 56px;
}

@media (width <= 992px) {
  .columnContainer {
    grid-template-columns: 1fr;
    margin-top: 80px;
  }

  .columnContainer__text {
    order: 2;
  }

  .columnContainer__body {
    margin-top: 32px;
  }

  .columnContainer__link {
    margin-top: 32px;
  }

  .columnContainer__link a {
    width: 100%;
    max-width: 100%;
  }
}

/* Chef */
.chef__container {
  display: grid;
  grid-template-columns: 25.125rem auto;
  gap: 76px;
  align-items: center;
  margin-top: 200px;
}

.chef__lead {
  font-family: var(--familyYuMincho);
  font-size: var(--fontMax24Min18);
  font-weight: 600;
  line-height: 1.875;
}

.chef__title {
  margin-top: 56px;
  font-family: var(--familyYuMincho);
}

.chef__body {
  margin-top: 24px;
}

.chef__body span {
  display: block;
}

@media (width <= 992px) {
  .chef__container {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 100px;
  }

  .chef__image {
    aspect-ratio: 5 / 3;
    object-fit: cover;
    object-position: top;
  }
}

@media (width <= 640px) {
  .chef__image {
    aspect-ratio: auto;
    object-position: unset;
  }
}

/* Menu */
.menu {
  margin-top: 200px;
}

.menuItem {
  margin-top: 90px;
}

.menu__price {
  display: flex;
  gap: 60px;
  justify-content: center;
  font-family: var(--familyYuMincho);
  font-size: var(--fontMax24Min18);
  font-weight: 600;
}

.menuList__item small {
  font-size: var(--fontMax16Min14);
}

.menu__food {
  margin-top: 36px;
  font-weight: 300;
  text-align: center;
}

.menu__note {
  font-size: var(--fontMax13Min11);
  font-weight: 300;
  text-align: center;
}

@media (width <= 640px) {
  .menu {
    margin-top: 100px;
  }
}

/* Reservation */
.reservation {
  margin-top: 220px;
}

.reservation__heading {
  font-family: var(--familyYuMincho);
  font-size: var(--fontMax24Min18);
  font-weight: 600;
  text-align: center;
}

.reservation__text {
  display: block;
  margin-top: 32px;
  font-size: var(--fontMax18Min16);
  font-weight: 300;
}

.reservation__canscel .reservation__text {
  width: fit-content;
  margin-inline: auto;
  font-size: var(--fontMax18Min16);
}

.opening {
  margin-top: 148px;
}

.openingTime {
  max-width: 575px;
  padding-block-end: 16px;
  margin-block-start: 80px;
  margin-inline: auto;
  overflow-x: auto;
}

.openingTime__list {
  display: grid;
  width: 575px;
}

.openingTime__item {
  display: grid;
  grid-template-columns: 86px 108px auto;
  gap: 48px;
  align-items: center;
  height: 70px;
  padding-inline: 16px;
  font-weight: 300;
  border-top: 1px solid #707070;
}

.openingTime__item:last-child {
  border-bottom: 1px solid #707070;
}

.openingTime__item p {
  line-height: 1.5625;
}

.openingTime__day {
  text-align: center;
}

.openingTime__note {
  margin-top: 16px;
  text-align: center;
}

.reservation__canscel {
  display: grid;
  margin-top: 132px;
}

.reservation__other {
  margin-top: 96px;
}

@media (width <= 640px) {
  .reservation {
    margin-top: 100px;
  }

  .opening {
    margin-top: 80px;
  }

  .openingTime {
    margin-top: 40px;
  }

  .openingTime__list {
    width: 500px;
  }

  .openingTime__item {
    gap: 24px;
  }
}

/* Contact */
.contact {
  margin-top: 124px;
}

.contact__lead {
  font-family: var(--familyShipporiMincho);
  font-size: var(--fontMax24Min18);
  font-weight: 600;
  text-align: center;
}

.contact__tel {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact__tel a {
  font-family: var(--familyShipporiMincho);
  font-size: var(--fontMax44Min30);
  font-weight: 600;
  color: var(--colorBase);
  text-align: center;
}

.contact__time {
  margin-top: 8px;
  font-weight: 300;
  text-align: center;
}

.contact__button {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

@media (width <= 640px) {
  .contact {
    margin-top: 80px;
  }

  .contact__button {
    margin-top: 20px;
  }

  .contact__button a {
    width: 100%;
    min-width: auto;
  }
}

/* Access */
.access {
  margin-top: 240px;
}

.access__name {
  margin-top: 90px;
  font-family: var(--familyShipporiMincho);
  font-size: var(--fontMax39Min28);
  font-weight: 600;
  line-height: 2.44;
  text-align: center;
  letter-spacing: 0.1em;
}

.access__wrap {
  display: flex;
  column-gap: 21px;
  max-width: 760px;
  margin-inline: auto;
}

.access__place {
  font-family: var(--familyYuMincho);
  font-size: var(--fontMax18Min16);
  font-weight: 600;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.1em;
}

.access__address {
  font-family: var(--familyYuMincho);
  font-size: var(--fontMax18Min16);
  font-weight: 300;
  line-height: 2;
  text-align: center;
}

.access__tel {
  font-family: var(--familyYuMincho);
  font-size: var(--fontMax27Min18);
  font-weight: 600;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.02em;
}

.access__list {
  gap: 2px;
  max-width: 460px;
  margin-block-start: 48px;
  margin-inline: auto;
}

.access__list--time {
  display: grid;
  gap: 32px;
}

.access__item {
  display: grid;
  grid-template-columns: 96px auto;
  gap: 16px;
  font-family: var(--familyNotoSans);
  font-weight: 300;
  line-height: 1.5625;
}

.access__item--column span {
  display: grid;
  grid-template-columns: 210px auto;
}

.access__map {
  margin-top: 75px;
  text-align: center;
}

.access__map iframe {
  width: 100%;
  height: 620px;
}

.access__means {
  display: flex;
  max-width: 845px;
  margin-inline: auto;
  font-family: var(--familyNotoSans);
  font-size: var(--fontMax18Min16);
  font-weight: 300;
  line-height: 1.44;
  letter-spacing: 0.1em;
}

.dotted-line {
  position: relative;
  display: block;
  width: 100%;
  margin-right: 10px;
  margin-left: 10px;
}

.dotted-line::before {
  position: absolute;
  top: 13px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-width: 23px;
  height: 1px;
  content: "";
  background: var(--colorBlack);
  background: linear-gradient(90deg, var(--colorBlack) 1px, transparent 1px);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: 3px 1px;
}

.access__means--title {
  display: flex;
  width: 310px;
  white-space: nowrap;
}

.mt-30 {
  margin-top: 30px;
}

@media (width <= 767px) {
  .access {
    margin-top: 100px;
  }

  .access__place {
    margin-top: 30px;
  }

  .access__item--column {
    display: grid;
    gap: 20px;
  }

  .access__item--column span {
    grid-template-columns: 1fr;
  }

  .access__map {
    margin-top: 35px;
  }

  .access__map iframe {
    width: 100%;
    max-width: 845px;
    height: 300px;
  }

  .access__means {
    flex-direction: column;
    gap: 15px;
  }

  .dotted-line::before {
    max-width: 180px;
  }

  .access__means--title {
    width: 100%;
  }
}

.about {
  margin-block-start: 120px;
}

.about__lead {
  margin-bottom: 32px;
}

.about b {
  margin-block: 20px 8px;
}

@media (width <= 640px) {
  .about {
    margin-block-start: 80px;
  }
}
