@charset "utf-8";

body {
  color: #2F1B00;
}



/* ----- common ----- */
.sec {
  padding: 40px 4%;
}
.sec-ttl {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2F1B00;
}
@media screen and (min-width: 768px) {
  .sec {
    padding: 60px 30px;
  }
  .sec-ttl {
    margin-bottom: 30px;
    font-size: 4rem;
  }
  .sec-inner {
    margin-inline: auto;
    max-width: 1000px;
  }
}

.rounded {
  border-radius: 20px;
}

.arrowBtn {
  position: relative;
  display: block;
  width: fit-content;
  padding-right: 1em;
  color: #008FDB;
}
.arrowBtn:after {
  content: '';
  position: absolute;
  top: 40%;
  right: 0;
  display: block;
  width: .4em;
  height: .4em;
  border-top: 2px solid #008FDB;
  border-right: 2px solid #008FDB;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .arrowBtn:after {
    transition: translate .3s;
  }
  .arrowBtn:hover:after {
    translate: 5px 0;
  }
}
@media screen and (max-width: 767px) {
  .arrowBtn:after {
    top: 30%;
  }
}

/* ========== anounce ========== */
.anounce {
  padding: 1em 4%;
  line-height: 1.25;
  font-size: 1.4rem;
  font-weight: 400;
  color: #ff0000;
}
@media screen and (min-width: 768px) {
  .anounce {
    margin-inline: auto;
    max-width: calc(1000px + 30px * 2);
    padding: 1em 30px;
    font-size: 1.6rem;
  }
}


/* ----- mv ----- */
.mv {
  position: relative;
}
.mv-logo {
  position: absolute;
  z-index: 1;
  top: 5%;
  left: 4%;
  width: 100%;
  max-width: 36vw;
}
.mv-illust {
  position: absolute;
  z-index: 1;
  top: 45%;
  display: block;
}
.mv-illust._man {
  left: 25%;
  max-width: 30vw;
}
.mv-illust._woman {
  left: 5%;
  max-width: 23vw;
}
.mv-lead {
  position: absolute;
  z-index: 1;
  bottom: 4%;
  left: 4%;
  width: 96%;
}
.mv-lead p {
  margin-bottom: 1%;
  width: fit-content;
  padding: 2% 2%;
  background-color: #fff;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .1);
  font-size: 3.2vw;
}
.mv-lead p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .mv {
    padding-top: 80px;
  }
  .mv-logo {
    top: calc(80px + 5%);
    left: 17%;
    max-width: 16vw;
  }
  .mv-illust {
    top: 66%;
  }
  .mv-illust._man {
    left: 73%;
    max-width: 12vw;
  }
  .mv-illust._woman {
    left: 66%;
    max-width: 9vw;
  }
  .mv-lead {
    width: 53%;
    left: 17%;
    bottom: 5%;
  }
  .mv-lead p {
    margin-bottom: 0.5%;
    font-size: 1.6vw;
  }
}

  .mv-slider {
  position: relative;
  width: 90%;
  height: auto;
  max-width: 686px;
  aspect-ratio: 169 / 214;
}
.mv-slider .mv-sliderSlide {
  position: absolute;
  width: 100%;
  border-radius: 0 0 30px 0;
  overflow: hidden;
  animation-name: slider_1;
  animation-iteration-count: infinite;
  animation-duration: 21s;
}
.mv-slider .mv-sliderSlide:nth-child(1) {
  animation-delay: -1s;
}
.mv-slider .mv-sliderSlide:nth-child(2) {
  animation-delay: 6s;
  opacity: 0;
}
.mv-slider .mv-sliderSlide:nth-child(3) {
  animation-delay: 13s;
  opacity: 0;
}
@keyframes slider_1 {
  0% {
    opacity: 0;
  }
  4.76% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  42.85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media screen and (min-width: 768px) {
  .mv-slider {
    width: 95%;
    max-width: none;
    aspect-ratio: 113 / 50;
  }
  .mv-slider .mv-sliderSlide {
    border-radius: 0 0 80px 0;
  }
}


/* ----- anchorLink ----- */
.anchorLink {
  margin: 30px auto;
  width: 92%;
  max-width: 980px;
  display: flex;
  justify-content: space-between;
}
.anchorLink-btn {
  width: 32%;
  background-color: #008FDB;
  border-radius: calc(1px / 0);
}
.anchorLink-btn a {
  height: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: max(1.1rem, 2vw);
  color: #fff;
}
.anchorLink-btn a:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  rotate: 45deg;
}
@media (hover: hover) {
  .anchorLink-btn a:after {
    transition: translate .3s;
  }
  .anchorLink-btn a:hover:after {
    translate: 0 3px;
  }
}

  
@media screen and (min-width: 768px) {
  .anchorLink {
    justify-content: center;
    gap: 20px;
  }
  .anchorLink-btn {
    width: 24%;
  }
  .anchorLink-btn a {
    padding: 10px;
    gap: 5px;
    font-size: 1.6rem;
  }
}



/* ----- pickup ----- */
.pickup {
  position: relative;
  background-color: #F0F7F9;
  overflow: hidden;
}
.pickup::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  display: block;
  width: 25%;
  height: 10px;
  background-color: #008FDB;
}
.pickup-ttl {
  position: relative;
  margin-inline: auto;
  width: fit-content;
  text-align: center;
}
.pickup-ttl::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 100%;
  translate: 0 -60%;
  display: block;
  width: calc(53px / 2);
  height: auto;
  aspect-ratio: 53 / 71;
  background: center/contain no-repeat url(../img/soratoshiba/pickup-ttl-icon.webp);
}

@media screen and (min-width: 768px) {
  .pickup-ttl::before {
    width: calc(53px / 1);
  }
}

/* -- pickup slider -- */
.pickupSlide-img {
  margin-bottom: 15px;
  display: block;
}
.pickupSlide-ttl {
  line-height: 1.5;
  font-weight: 600;
}
.pickupSlide-txt {
  line-height: 1.75;
  font-size: 1.3rem;
}
.pickupSlide-price {
  margin-top: 10px;
  text-align: right;
  font-size: 1.3rem;
}
.pickupSlide-price + .pickupSlide-price {
  margin-top: 0;
}
.pickupSlide-price span {
  padding-inline-start: .5em;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 2em;
}
.pickupSlide-price span::before {
  content: '¥';
  padding-inline-end: .3em;
  font-size: .7em;
}
.pickupSlide-price span::after {
  padding-inline-start: .2em;
  font-family: initial;
  content: '(税込）';
  font-weight: 400;
  font-size: .5em;
}
@media screen and (min-width: 768px) {
  .pickupSlide-ttl {
    font-size: 2rem;
  }
  .pickupSlide-txt {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  .pickupSlide-price {
    font-size: 1.6rem;
  }
}

.swiper-slide {
  scale: 1;
  opacity: 1;
  transition: scale 1s, opacity 1s;
}
.swiper-slide:not(.swiper-slide-active) {
  scale: 0.8;
  opacity: .6;
}
@media screen and (min-width: 768px) {
  .pickup .swiper {
    overflow: visible;
    max-width: 1000px;
  }
  .swiper-slide {
    scale: 1;
    opacity: 1;
    transition: scale 1s, opacity 1s;
  }
  .swiper-slide:not(.swiper-slide-active) {
    scale: 0.8;
    opacity: .6;
  }
}



/* ----- beer ----- */
.beer-ttl {
  text-align: center;
}
.beer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.beer-chart {
  margin-bottom: 10px;
  display: block;
  aspect-ratio: 16 / 9;
}
.beer-name {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #2F1B00;
}
.beer-name .-inside {
  display: block;
  width: fit-content;
  padding: 3px 15px;
  background-color: #008FDB;
  border-radius: calc(1px / 0);
  font-weight: 400;
  font-size: .8em;
  color: #fff;
}
.beer-price {
  padding-inline-start: 1em;
  font-family: "Oswald", sans-serif;
  font-size: 1.2em;
}
.beer-price::before {
  content: '¥';
  padding-inline-end: .3em;
  font-size: .7em;
}
.beer-price::after {
  padding-inline-start: .2em;
  font-family: initial;
  content: '(税込）';
  font-weight: 400;
  font-size: .5em;
}
.beer-priceName {
  font-size: .8em;
}
.beer-priceName + .beer-price {
  padding-inline-start: .5em;
}
.beer-style {
  display: block;
  line-height: 1;
  font-weight: 400;
  font-size: .8em;
}
.beer-style::before {
  content: 'STYLE';
  padding-inline-end: .5em;
}
.beer-txt {
  line-height: 1.5;
  font-size: 1.4rem;
}
.beer-link {
  margin: 0.5em auto 0;
}


@media screen and (min-width: 768px) {
  .beer-list {
    margin-inline: auto;
    max-width: 1000px;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .beer-item {
    width: calc((100% - 40px) / 2);
  }
  .beer-name {
    font-size: 2rem;
  }
  .beer-name .-inside {
    font-size: .6em;
  }
  .beer-style {
    font-size: .7em;
  }
  .beer-txt {
    font-size: 1.6rem;
  }
}



/* ----- menu ----- */
.menu {
  padding-bottom: 60px;
}
.menu-ttl {
  text-align: center;
}
.menu-subTtl {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #DDD7CF;
  text-align: center;
}
.menu-food {
  margin-bottom: 40px;
}
.menu-imgList {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  container: imgList / inline-size;
}
.menu-imgList li {
  width: 100%;
}
@container imgList (600px < width) {
  .menu-imgList li {
    width: calc((100% - 20px) / 2);
  }
}
.menu-img {
  margin-bottom: 10px;
  display: block;
  aspect-ratio: 3 / 2;
}
.menu-name {
  line-height: 1.5;
}
.menu-price {
  line-height: 1.25;
  text-align: right;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
}
.menu-price::before {
  content: '¥';
  padding-inline-end: .3em;
  font-size: .7em;
}
.menu-price::after {
  display: inline-block;
  padding-inline-start: .2em;
  font-family: initial;
  content: '(税込）';
  font-weight: 400;
  font-size: .5em;
}

.menu-txtListWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-txtList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-item._txt {
  width: 100%;
  border-bottom: 2px solid #DDD7CF;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.menu-item._txt .menu-name {
  width: 75%;
  font-size: 1.4rem;
}
.menu-item._txt .menu-price {
  width: 25%;
  line-height: 1;
  font-size: 1.8rem;
}

.menu-drink .menu-subTtl {
  margin-bottom: 10px;
}
.drink-subSec + .drink-subSec {
  margin-top: 20px;
}
.drink-subSecTtl {
  margin-bottom: 10px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 2px solid #333;
}


@media screen and (min-width: 768px) {
  .menu {
    padding-bottom: 80px;
  }
  .menu-subTtl {
    font-size: 2.4rem;
  }
  .menu-food {
    margin-bottom: 60px;
    margin-inline: auto;
    max-width: 1000px;
  }
  .menu-imgList {
    margin-bottom: 30px;
    gap: 30px;
  }
  .menu-imgList li {
    width: calc((100% - 30px * 2) / 3);
  }
  .menu-name {
    font-size: 1.8rem;
  }
  .menu-price {
    font-size: 3rem;
  }
  
  .menu-txtListWrapper {
    flex-direction: row;
    gap: 40px;
  }
  .menu-txtListWrapper > li {
    width: calc((100% - 40px) / 2);
  }
  .menu-txtList {
    gap: 20px;
  }
  .menu-item._txt {
    width: 100%;
    border-bottom: 2px solid #DDD7CF;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .menu-item._txt .menu-name {
    font-size: 1.6rem;
  }
  .menu-item._txt .menu-price {
    font-size: 2.4rem;
  }
  
  .menu-drink {
    margin-inline: auto;
    max-width: 1000px;
  }
  .drink-subSec + .drink-subSec {
    margin-top: 30px;
  }
  .drink-subSecTtl {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}

.allergy-allBtn {
  margin: 50px auto 0;
  padding-inline-end: 20px;
  font-size: 1.6rem;
}
.allergy-allBtn::after {
  width: 7px;
  height: 7px;
}
@media screen and (min-width: 768px) {
  .allergy-allBtn {
    font-size: 2rem;
  }
}

  .food-menu {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
  position: relative;
}
.food-menu-modal-open-button {
  width: 80px;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, .5));
  background-color: transparent;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.food-menu-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: rgba(0, 0, 0, .8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: .3s;
}
.food-menu-modal._passive {
  visibility: hidden;
  opacity: 0;
}
.food-menu-modal-content {
  width: 100%;
  max-width: 800px;
  position: relative;
}
.food-menu-modal._ajust .food-menu-modal-content {
  width: auto;
  height: 80%;
}
.menu-modal-close-button {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  position: absolute;
  top: -50px;
  right: 0;
}
.menu-modal-close-button span {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  rotate: 45deg;
}
.menu-modal-close-button span:nth-child(2) {
  rotate: -45deg;
}
.food-menu-modal._ajust .food-menu-modal-image {
  height: 100%;
}
.food-menu-modal._ajust .food-menu-modal-image img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .food-menu {
    margin-top: 60px;
  }
}


/* ----- about ----- */
.about {
  background-color: #F1F6F0;
}
.about-ttl {
  text-align: center;
}
.about-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.about-point {
  max-width: 600px;
}
.about-img {
  margin-bottom: 5px;
  display: block;
  aspect-ratio: 3 / 2;
}
.about-name {
  margin-bottom: 5px;
  line-height: 1.5;
  font-size: 1.8rem;
}
.about-txt {
  line-height: 1.5;
  font-size: 1.4rem;
}


@media screen and (min-width: 768px) {
  .about-list {
    margin-inline: auto;
    max-width: 1000px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .about-point {
    width: calc((100% - 20px * 2) / 3);
  }
  .about-name {
    font-size: 2rem;
  }
  .about-txt {
    font-size: 1.6rem;
  }
}



/* ----- info ----- */
.info-ttl {
  position: relative;
  border-bottom: 2px solid #D4D9DD;
  line-height: 1.5;
}
.info-ttl::before {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -2px;
  left: 0;
  display: block;
  width: 15%;
  height: 2px;
  background-color: #008FDB;
}
.info-item {
  padding-block: 20px;
  border-bottom: 2px solid #DDD7CF;
}
.info-item:first-of-type {
  padding-block-start: 0;
}
.info-dt {
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: 600;
}
.info-dd {
  line-height: 1.5;
  font-size: 1.4rem;
}


@media screen and (min-width: 768px) {
  .info-ttl {
    border-width: 4px;
  }
  .info-ttl::before {
    bottom: -4px;
    height: 4px;
  }
  .info-dt {
    font-size: 2rem;
  }
  .info-dd {
    font-size: 1.6rem;
  }
}