@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  color: #333;
  font-size: 1.6rem;
  font-family: "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

img {
  display: block;
  width: 100%;
}

.header {
  margin-top: 3vw;
  margin-bottom: 170px;
}
@media only screen and (max-width: 768px) {
  .header {
    margin-bottom: 25vw;
  }
}
.header .inner {
  width: 90%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .site-title {
  width: 206px;
}
@media only screen and (max-width: 768px) {
  .header .site-title {
    width: 30vw;
  }
}

.header__nav {
  position: relative;
}
.header__nav .menu__button {
  width: 100px;
  height: 100px;
  border: none;
  outline: none;
  background: #002471;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header__nav .menu__button {
    width: 15vw;
    height: 15vw;
  }
}
.header__nav .menu__button .line {
  display: block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin-top: 7px;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 768px) {
  .header__nav .menu__button .line {
    width: 7.6vw;
  }
}
.header__nav .menu__button .line:first-child {
  margin-top: 0;
}
.header__nav .nav__lists {
  width: 175px;
  padding: 1em;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  transform: translateY(99%);
  background: #002471;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
  .header__nav .nav__lists {
    right: 0;
    left: unset;
  }
}
@media only screen and (max-width: 768px) {
  .header__nav .nav__lists {
    width: 9em;
    padding: 1em 0.5em;
    font-size: 12px;
    font-size: 3.0769230769vw;
  }
}
.header__nav .nav__lists .list__item {
  padding-left: 1.5em;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .header__nav .nav__lists .list__item {
    line-height: 1.8;
  }
}
.header__nav .nav__lists .list__item:hover::before {
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  background: url(../images/menu/bg_ball.png) no-repeat center top/100% 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header__nav .nav__lists a {
  color: #fff;
}
.header__nav .nav__lists a:hover {
  opacity: 1;
}
.header__nav.active {
  transition: all 1s ease;
}
.header__nav.active .line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.header__nav.active .line:nth-child(2) {
  transform: translateX(100%);
  opacity: 0;
}
.header__nav.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.main {
  padding-bottom: 200px;
}
@media only screen and (max-width: 768px) {
  .main {
    padding-bottom: 30vw;
  }
}

.map__wrap {
  width: 100%;
  height: 470px;
}
@media only screen and (max-width: 768px) {
  .map__wrap {
    height: 40vw;
  }
}
.map__wrap iframe {
  width: 100%;
  height: 100%;
}

.footer {
  padding-top: 50px;
  padding-bottom: 75px;
  background: url(../images/module/footer_bg.png) repeat center center;
  background-color: #002471;
  color: #fff;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding-top: 7vw;
    padding-bottom: 5vw;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.footer .info__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media only screen and (max-width: 768px) {
  .footer .info__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer .info__wrap .logo {
  width: 210px;
  margin-right: 25px;
}
@media only screen and (max-width: 768px) {
  .footer .info__wrap .logo {
    width: 35vw;
    margin: 0 auto;
  }
}
.footer .info__wrap .footer-info {
  line-height: 2.2;
  letter-spacing: 0.09em;
}
@media only screen and (max-width: 768px) {
  .footer .info__wrap .footer-info {
    margin-top: 1em;
    text-align: center;
  }
}
.footer .link__lists {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .footer .link__lists {
    margin-top: 1em;
    justify-content: center;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.footer .link__lists .list__item:nth-child(2) {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #fff;
}
.footer .link__lists .list__item a {
  color: #fff;
}

.tel-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 495px;
  height: 185px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
  padding-left: 40px;
  box-sizing: border-box;
  background: url(../images/module/bg_tel.png) no-repeat center center/100% 100%;
  color: #002471;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
  .tel-link {
    width: 81.41vw;
    height: 28.85vw;
    padding-left: 1em;
    padding-bottom: 0;
    line-height: 1;
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.tel-link span {
  color: #333;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .tel-link span {
    font-size: 15px;
    font-size: 3.8461538462vw;
  }
}

.takeout-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 491px;
  height: 141.5px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 60px;
  box-sizing: border-box;
  background: url(../images/module/bg_takeout.png) no-repeat center center/100% 100%;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}
@media only screen and (max-width: 768px) {
  .takeout-link {
    width: 81.41vw;
    height: 23.44vw;
    padding-right: 2em;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}

.content__inner {
  width: 90%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.drink-menu .content__inner {
  max-width: 705px;
}

.page-takeout .content__inner,
.page-check .content__inner,
.page-thanks .content__inner,
.page-tokushoho .content__inner,
.page-privacy-policy .content__inner {
  max-width: 840px;
}

.page-menu .section__title,
.page-takeout .section__title,
.page-check .section__title,
.page-thanks .section__title,
.page-checkout .section__title,
.page-cart .section__title,
.woocommerce .section__title {
  margin-bottom: 3em;
  color: #002471;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-menu .section__title,
.page-takeout .section__title,
.page-check .section__title,
.page-thanks .section__title,
.page-checkout .section__title,
.page-cart .section__title,
.woocommerce .section__title {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.page-menu .section__title span,
.page-takeout .section__title span,
.page-check .section__title span,
.page-thanks .section__title span,
.page-checkout .section__title span,
.page-cart .section__title span,
.woocommerce .section__title span {
  position: relative;
}
.page-menu .section__title span::after,
.page-takeout .section__title span::after,
.page-check .section__title span::after,
.page-thanks .section__title span::after,
.page-checkout .section__title span::after,
.page-cart .section__title span::after,
.woocommerce .section__title span::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background: #002471;
  position: absolute;
  left: 0;
  bottom: -17px;
}
@media only screen and (max-width: 768px) {
  .page-menu .section__title span::after,
.page-takeout .section__title span::after,
.page-check .section__title span::after,
.page-thanks .section__title span::after,
.page-checkout .section__title span::after,
.page-cart .section__title span::after,
.woocommerce .section__title span::after {
    height: 4px;
    bottom: -0.5em;
  }
}

.page-privacy-policy .page__title,
.page-tokushoho .page__title {
  margin-bottom: 80px;
  color: #002471;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .page-privacy-policy .page__title,
.page-tokushoho .page__title {
    font-size: 18px;
    font-size: 4.6153846154vw;
    margin-bottom: 2em;
    font-weight: 300;
  }
}

.page-top .section__title {
  color: #002471;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-top .section__title {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.page-top .section__title span {
  position: relative;
}
.page-top .section__title span::after {
  display: block;
  content: "";
  width: 100%;
  height: 6px;
  background: #002471;
  position: absolute;
  left: 0;
  bottom: -17px;
}

.page-top .header {
  display: none;
}
.page-top .header__nav {
  position: absolute;
  top: 85px;
  right: 75px;
}
@media only screen and (max-width: 768px) {
  .page-top .header__nav {
    top: 0;
    right: 0;
  }
  .page-top .header__nav .menu__button {
    width: 10vw;
    height: 10vw;
  }
  .page-top .header__nav .menu__button .line {
    width: 5vw;
  }
  .page-top .header__nav .nav__lists {
    left: 0;
    right: unset;
  }
}
.page-top .sec_kv {
  width: 100%;
  min-height: 100vh;
  padding-top: 184px;
  padding-bottom: 184px;
  box-sizing: border-box;
  background: url(../images/top/top_bg.jpg) no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .page-top .sec_kv {
    height: 100vw;
    min-height: unset;
    padding: 18vw;
  }
}
.page-top .sec_kv .inner {
  width: 80%;
  max-width: 1400px;
  height: 710px;
  margin-right: auto;
  margin-left: auto;
  background: url(../images/top/inner_bg.png) repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page-top .sec_kv .inner {
    width: 100%;
    max-width: unset;
    height: 100%;
  }
}
.page-top .sec_kv .img__wrap {
  width: 46%;
  max-width: 645px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .page-top .sec_kv .img__wrap {
    width: 72%;
    max-width: unset;
  }
}
.page-top .sec__insta {
  margin-top: 140px;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__insta {
    margin-top: 30px;
  }
}
.page-top .sec__insta .content__inner {
  max-width: 980px;
}
.page-top .sec__insta .section__title {
  margin-bottom: 150px;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__insta .section__title {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-top .sec__insta .pc-content {
    display: none;
  }
}
.page-top .sec__insta .sp-content {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .page-top .sec__insta .sp-content {
    display: block;
  }
}
.page-top .sec__insta .link-ico {
  display: block;
  width: 55px;
  margin: 57px auto 0;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__insta .link-ico {
    width: 10vw;
    margin-top: 15px;
  }
}
.page-top .sec__about {
  margin-top: 140px;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__about {
    margin-top: 10vw;
  }
}
.page-top .sec__about .card__lists {
  margin-top: 155px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__about .card__lists {
    margin-top: 10vw;
    flex-direction: column;
  }
}
.page-top .sec__about .card__lists .list__item {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__about .card__lists .list__item {
    width: 100%;
  }
  .page-top .sec__about .card__lists .list__item:nth-child(2) {
    margin-top: 30px;
  }
}
.page-top .sec__about .card__lists .list__item p {
  margin-top: 12px;
  letter-spacing: 0.13em;
  line-height: 1.6875;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__about .card__lists .list__item p {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-top .sec__contact {
  margin-top: 140px;
  padding-bottom: 170px;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__contact {
    margin-top: 40px;
    padding-bottom: 50px;
  }
}
.page-top .sec__contact .list__item:nth-child(2) {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .page-top .sec__contact .list__item:nth-child(2) {
    margin-top: 25px;
  }
}

.page-menu .main {
  padding-bottom: 470px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .page-menu .main {
    padding-bottom: 20vw;
  }
}
.page-menu .main::after {
  display: block;
  content: "";
  width: 165px;
  height: 165px;
  background: url(../images/menu/bg_ball.png) no-repeat center top/100% 100%;
  position: absolute;
  bottom: 11.6vw;
  left: 20.2vw;
  transform: rotate(-10deg);
}
@media only screen and (max-width: 1024px) {
  .page-menu .main::after {
    width: 12vw;
    height: 12vw;
    bottom: -10vw;
    left: 5vw;
    position: relative;
  }
}
.page-menu .article__wrap {
  margin-top: 196px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap {
    margin-top: 40px;
    flex-direction: column;
  }
}
.page-menu .article__wrap .img__wrap {
  width: 46.35%;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .img__wrap {
    width: 100%;
  }
}
.page-menu .article__wrap > .txt__wrap {
  width: 51%;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap > .txt__wrap {
    width: 100%;
    margin-top: 7vw;
  }
}
.page-menu .article__wrap .title__wrap {
  color: #002471;
  border: 6px solid #002471;
  text-align: center;
  position: relative;
}
.page-menu .article__wrap .title__wrap .catch {
  width: 180px;
  position: absolute;
  top: -35px;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .title__wrap .catch {
    width: 30%;
    top: -5vw;
  }
}
.page-menu .article__wrap .title__wrap .menu__title {
  padding-top: 15px;
  padding-bottom: 16px;
  font-size: 2.8rem;
  font-weight: 700;
  border-bottom: 2px solid #002471;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .title__wrap .menu__title {
    font-size: 23px;
    font-size: 5.8974358974vw;
  }
}
.page-menu .article__wrap .title__wrap .price {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.9rem;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .title__wrap .price {
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
.page-menu .article__wrap .types__wrap {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  margin-top: 15px;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .types__wrap {
    justify-content: center;
  }
}
.page-menu .article__wrap .types__wrap .catch {
  width: 110px;
  transform: translateX(-10px);
}
@media only screen and (max-width: 768px) {
  .page-menu .article__wrap .types__wrap .catch {
    width: 25%;
    transform: none;
  }
}
.page-menu .article__wrap .types__wrap .txt__wrap {
  width: calc(100% - 110px);
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-flow: row wrap;
  color: #002471;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .types__wrap .txt__wrap {
    width: 70%;
    margin-top: 0;
    margin-left: 5%;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-menu .article__wrap .types__wrap .txt__wrap span {
  width: 46%;
}
.page-menu .article__wrap .txt {
  margin-top: 0.5em;
  margin-left: 7px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 1024px) {
  .page-menu .article__wrap .txt {
    margin-top: 1em;
    margin-left: auto;
    font-size: 16px;
    font-size: 4.1025641026vw;
    text-align: center;
  }
}
.page-menu .cols__wrap {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap {
    margin-top: 30px;
  }
}
.page-menu .cols__wrap .col__item {
  width: 32%;
  padding: 95px 25px 25px;
  box-sizing: border-box;
  background: #F4F4F4;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .col__item {
    width: 100%;
    margin-top: 10px;
    padding: 3vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.page-menu .cols__wrap .col__title {
  color: #002471;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .col__title {
    font-size: 22px;
    font-size: 5.641025641vw;
    width: 4em;
    padding-top: 15vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.page-menu .cols__wrap .col__title::before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  background: url(../images/menu/ico_ball.png) no-repeat center top/100% auto;
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .col__title::before {
    width: 10vw;
    height: 10vw;
    top: 0;
    transform: translateX(-55%);
  }
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .detail__wrap {
    margin-left: 1em;
  }
}
.page-menu .cols__wrap .col__head {
  margin-top: 0.5em;
  color: #002471;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .col__head {
    font-weight: 600;
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.page-menu .cols__wrap .txt {
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .txt {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-menu .cols__wrap .memo {
  width: 100%;
  margin-top: 30px;
  color: #002471;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .memo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 2em;
    font-size: 16px;
    font-size: 4.1025641026vw;
    font-weight: 600;
  }
}
.page-menu .cols__wrap .memo .break-sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .page-menu .cols__wrap .memo .break-sp {
    display: block;
  }
}
.page-menu .drink-menu {
  margin-top: 225px;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu {
    margin-top: 15vw;
  }
}
.page-menu .drink-menu .section__title {
  font-size: 3rem;
  font-weight: 800;
  position: relative;
}
.page-menu .drink-menu .section__title::after {
  display: block;
  content: "";
  width: 190px;
  height: 190px;
  background: url(../images/menu/bg_ball.png) no-repeat center top/100% 100%;
  position: absolute;
  top: -111px;
  left: -252px;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .section__title::after {
    width: 12.8vw;
    height: 12.8vw;
    top: -28vw;
    left: -1vw;
  }
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .section__title {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.page-menu .drink-menu .img__wrap {
  width: 100%;
  max-width: 700px;
  margin: 190px auto 30px;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .img__wrap {
    margin-top: 40px;
  }
}
.page-menu .drink-menu .menu-desc {
  color: #002471;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .menu-desc {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.page-menu .drink-menu .menu-desc::after {
  display: block;
  content: "";
  width: 130px;
  height: 130px;
  background: url(../images/menu/bg_ball.png) no-repeat center top/100% 100%;
  position: absolute;
  bottom: -280px;
  right: -288px;
  transform: rotate(49deg);
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .menu-desc::after {
    width: 17vw;
    height: 17vw;
    bottom: 3vw;
    right: -1vw;
    transform: none;
  }
}
.page-menu .drink-menu .menu-desc span {
  display: block;
}
.page-menu .drink-menu .menu-desc span:nth-child(2) {
  font-size: 1.8rem;
  margin-top: 0.5em;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .menu-desc span:nth-child(2) {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-menu .drink-menu .menu-desc span:nth-child(3) {
  text-align: right;
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .menu-desc span:nth-child(3) {
    margin-top: 1em;
    text-align: left;
  }
}
.page-menu .drink-menu .menu__lists {
  margin-top: 80px;
  padding: 20px 25px;
  background: #F4F4F4;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.8;
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .menu__lists {
    margin-top: 40px;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-menu .drink-menu .menu__lists .list__item {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
}
.page-menu .drink-menu .menu__lists .list__item .menu-name {
  font-weight: 600;
}
.page-menu .drink-menu .menu__lists .list__item .menu-name span {
  font-weight: 300;
}
.page-menu .drink-menu .menu__lists .list__item .space {
  display: block;
}
.page-menu .drink-menu .menu__lists .list__item .space:after {
  background: radial-gradient(circle farthest-side, #707070, #707070 30%, transparent 30%, transparent);
  background-size: 10px 2px;
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  transform: translateY(-2px);
}
@media only screen and (max-width: 1024px) {
  .page-menu .drink-menu .menu__lists .list__item .space:after {
    display: none;
  }
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(1) .space {
  width: calc(100% - 16em);
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(1) .menu-price {
  padding-right: 1em;
  box-sizing: border-box;
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(2) .space {
  width: calc(100% - 17em);
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(3) .space {
  width: calc(100% - 14em);
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(4) .space {
  width: calc(100% - 9em);
}
@media only screen and (max-width: 768px) {
  .page-menu .drink-menu .menu__lists .list__item:nth-child(5) .menu-name {
    width: 12em;
  }
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(5) .space {
  width: calc(100% - 24em);
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(5) .menu-price {
  padding-right: 1em;
  box-sizing: border-box;
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(6) .space {
  width: calc(100% - 15em);
}
.page-menu .drink-menu .menu__lists .list__item:nth-child(6) .menu-price {
  padding-right: 1em;
  box-sizing: border-box;
}
.page-menu .tel-link {
  margin-top: 150px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .page-menu .tel-link {
    margin-top: 30px;
  }
}

.page-takeout .main,
.page-check .main,
.page-thanks .main {
  padding-bottom: 300px;
}
@media only screen and (max-width: 768px) {
  .page-takeout .main,
.page-check .main,
.page-thanks .main {
    padding-bottom: 40vw;
  }
}
.page-takeout .page__title,
.page-check .page__title,
.page-thanks .page__title {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .page-takeout .page__title,
.page-check .page__title,
.page-thanks .page__title {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.page-takeout .form__wrap,
.page-check .form__wrap,
.page-thanks .form__wrap {
  margin-top: 140px;
}
@media only screen and (max-width: 768px) {
  .page-takeout .form__wrap,
.page-check .form__wrap,
.page-thanks .form__wrap {
    margin-top: 5vw;
  }
}
.page-takeout .takeout-item-list .list__item,
.page-check .takeout-item-list .list__item,
.page-thanks .takeout-item-list .list__item {
  margin-top: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 768px) {
  .page-takeout .takeout-item-list .list__item,
.page-check .takeout-item-list .list__item,
.page-thanks .takeout-item-list .list__item {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .takeout-item-list .list__item .takeout-item-name,
.page-check .takeout-item-list .list__item .takeout-item-name,
.page-thanks .takeout-item-list .list__item .takeout-item-name {
  width: 42%;
}
@media only screen and (max-width: 768px) {
  .page-takeout .takeout-item-list .list__item .takeout-item-name,
.page-check .takeout-item-list .list__item .takeout-item-name,
.page-thanks .takeout-item-list .list__item .takeout-item-name {
    width: 50%;
  }
}
.page-takeout .takeout-item-list .list__item .takeout-item-price,
.page-check .takeout-item-list .list__item .takeout-item-price,
.page-thanks .takeout-item-list .list__item .takeout-item-price {
  width: 40%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .page-takeout .takeout-item-list .list__item .takeout-item-price,
.page-check .takeout-item-list .list__item .takeout-item-price,
.page-thanks .takeout-item-list .list__item .takeout-item-price {
    width: 4em;
  }
}
.page-takeout .takeout-item-list .list__item input[type=number],
.page-check .takeout-item-list .list__item input[type=number],
.page-thanks .takeout-item-list .list__item input[type=number] {
  width: 3.5em;
  height: 50px;
  padding: 0.2em;
  box-sizing: border-box;
  font-size: 2.4rem;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .page-takeout .takeout-item-list .list__item input[type=number],
.page-check .takeout-item-list .list__item input[type=number],
.page-thanks .takeout-item-list .list__item input[type=number] {
    height: auto;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .total-price-wrap,
.page-check .total-price-wrap,
.page-thanks .total-price-wrap {
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-takeout .total-price-wrap .head,
.page-check .total-price-wrap .head,
.page-thanks .total-price-wrap .head {
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  .page-takeout .total-price-wrap .head,
.page-check .total-price-wrap .head,
.page-thanks .total-price-wrap .head {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .total-price-wrap .total-price-num,
.page-check .total-price-wrap .total-price-num,
.page-thanks .total-price-wrap .total-price-num {
  width: 30%;
  font-size: 2.4rem;
  text-align: right;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .page-takeout .total-price-wrap .total-price-num,
.page-check .total-price-wrap .total-price-num,
.page-thanks .total-price-wrap .total-price-num {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .total-price-wrap .total-price-num input[type=number],
.page-check .total-price-wrap .total-price-num input[type=number],
.page-thanks .total-price-wrap .total-price-num input[type=number] {
  width: calc(100% - 2em);
  padding: 0;
  box-sizing: border-box;
  font-size: 2.4rem;
  text-align: right;
  border: none;
}
@media only screen and (max-width: 768px) {
  .page-takeout .total-price-wrap .total-price-num input[type=number],
.page-check .total-price-wrap .total-price-num input[type=number],
.page-thanks .total-price-wrap .total-price-num input[type=number] {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout input,
.page-check input,
.page-thanks input {
  width: 100%;
  padding: 0.5em;
  box-sizing: border-box;
}
.page-takeout .cutomer-info,
.page-check .cutomer-info,
.page-thanks .cutomer-info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 200px;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info,
.page-check .cutomer-info,
.page-thanks .cutomer-info {
    margin-top: 40px;
  }
}
.page-takeout .cutomer-info .section__title,
.page-check .cutomer-info .section__title,
.page-thanks .cutomer-info .section__title {
  width: 100%;
  margin-bottom: 100px;
  color: #000;
  font-size: 25px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info .section__title,
.page-check .cutomer-info .section__title,
.page-thanks .cutomer-info .section__title {
    margin-bottom: 40px;
    font-size: 18px;
    font-size: 4.6153846154vw;
    font-weight: 500;
  }
}
.page-takeout .cutomer-info .cutomer-info-item,
.page-check .cutomer-info .cutomer-info-item,
.page-thanks .cutomer-info .cutomer-info-item {
  width: 100%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info .cutomer-info-item,
.page-check .cutomer-info .cutomer-info-item,
.page-thanks .cutomer-info .cutomer-info-item {
    margin-bottom: 20px;
  }
}
.page-takeout .cutomer-info .cutomer-info-item:first-child,
.page-check .cutomer-info .cutomer-info-item:first-child,
.page-thanks .cutomer-info .cutomer-info-item:first-child {
  margin-top: 0;
}
.page-takeout .cutomer-info .cutomer-info-item.takeout-date,
.page-check .cutomer-info .cutomer-info-item.takeout-date,
.page-thanks .cutomer-info .cutomer-info-item.takeout-date {
  width: 45%;
  margin-right: 5%;
}
.page-takeout .cutomer-info .cutomer-info-item.takeout-date input,
.page-check .cutomer-info .cutomer-info-item.takeout-date input,
.page-thanks .cutomer-info .cutomer-info-item.takeout-date input {
  width: 100%;
}
.page-takeout .cutomer-info .cutomer-info-item.takeout-time,
.page-check .cutomer-info .cutomer-info-item.takeout-time,
.page-thanks .cutomer-info .cutomer-info-item.takeout-time {
  width: 50%;
}
.page-takeout .cutomer-info .cutomer-info-item.takeout-time input,
.page-check .cutomer-info .cutomer-info-item.takeout-time input,
.page-thanks .cutomer-info .cutomer-info-item.takeout-time input {
  width: 5em;
}
.page-takeout .cutomer-info .head,
.page-check .cutomer-info .head,
.page-thanks .cutomer-info .head {
  font-size: 1.6rem;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info .head,
.page-check .cutomer-info .head,
.page-thanks .cutomer-info .head {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .cutomer-info .input,
.page-check .cutomer-info .input,
.page-thanks .cutomer-info .input {
  margin-bottom: 50px;
}
.page-takeout .cutomer-info input,
.page-check .cutomer-info input,
.page-thanks .cutomer-info input {
  font-size: 2.4rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info input,
.page-check .cutomer-info input,
.page-thanks .cutomer-info input {
    font-size: 16px;
    font-size: 4.1025641026vw;
    height: auto;
  }
}
.page-takeout .cutomer-info .mwform-tel-field,
.page-takeout .cutomer-info .mwform-zip-field,
.page-check .cutomer-info .mwform-tel-field,
.page-check .cutomer-info .mwform-zip-field,
.page-thanks .cutomer-info .mwform-tel-field,
.page-thanks .cutomer-info .mwform-zip-field {
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info .mwform-tel-field,
.page-takeout .cutomer-info .mwform-zip-field,
.page-check .cutomer-info .mwform-tel-field,
.page-check .cutomer-info .mwform-zip-field,
.page-thanks .cutomer-info .mwform-tel-field,
.page-thanks .cutomer-info .mwform-zip-field {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .cutomer-info .mwform-tel-field input[type=text],
.page-takeout .cutomer-info .mwform-zip-field input[type=text],
.page-check .cutomer-info .mwform-tel-field input[type=text],
.page-check .cutomer-info .mwform-zip-field input[type=text],
.page-thanks .cutomer-info .mwform-tel-field input[type=text],
.page-thanks .cutomer-info .mwform-zip-field input[type=text] {
  width: 163px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info .mwform-tel-field input[type=text],
.page-takeout .cutomer-info .mwform-zip-field input[type=text],
.page-check .cutomer-info .mwform-tel-field input[type=text],
.page-check .cutomer-info .mwform-zip-field input[type=text],
.page-thanks .cutomer-info .mwform-tel-field input[type=text],
.page-thanks .cutomer-info .mwform-zip-field input[type=text] {
    width: 30%;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-takeout .cutomer-info .takeout-time input[type=number],
.page-check .cutomer-info .takeout-time input[type=number],
.page-thanks .cutomer-info .takeout-time input[type=number] {
    width: 3.5em;
  }
}
.page-takeout .privacy-check,
.page-check .privacy-check,
.page-thanks .privacy-check {
  display: flex;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 768px) {
  .page-takeout .privacy-check,
.page-check .privacy-check,
.page-thanks .privacy-check {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .privacy-check .mwform-checkbox-field-text,
.page-check .privacy-check .mwform-checkbox-field-text,
.page-thanks .privacy-check .mwform-checkbox-field-text {
  display: none;
}
.page-takeout .privacy-check input[type=checkbox],
.page-check .privacy-check input[type=checkbox],
.page-thanks .privacy-check input[type=checkbox] {
  width: 16px;
  height: 16px;
}
.page-takeout .privacy-check a,
.page-check .privacy-check a,
.page-thanks .privacy-check a {
  color: #000;
  text-decoration: underline;
}
.page-takeout .btn-wrap,
.page-check .btn-wrap,
.page-thanks .btn-wrap {
  margin-top: 195px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .page-takeout .btn-wrap,
.page-check .btn-wrap,
.page-thanks .btn-wrap {
    margin-top: 60px;
  }
}
.page-takeout .btn-wrap::after,
.page-check .btn-wrap::after,
.page-thanks .btn-wrap::after {
  display: block;
  content: "";
  width: 135.5px;
  height: 100px;
  background: url(../images/takeout/submit_pic.png) no-repeat center top/cover;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 120%);
}
.page-takeout .btn-wrap input[type=submit],
.page-check .btn-wrap input[type=submit],
.page-thanks .btn-wrap input[type=submit] {
  display: block;
  width: auto;
  margin: 0 auto;
  border: none;
  outline: none;
  background: none;
  color: #1A326E;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  cursor: pointer;
}
.page-takeout .btn-wrap input[type=submit]:hover,
.page-check .btn-wrap input[type=submit]:hover,
.page-thanks .btn-wrap input[type=submit]:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .page-takeout .btn-wrap input[type=submit],
.page-check .btn-wrap input[type=submit],
.page-thanks .btn-wrap input[type=submit] {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.page-takeout .btn-wrap input[type=submit].btn-back,
.page-check .btn-wrap input[type=submit].btn-back,
.page-thanks .btn-wrap input[type=submit].btn-back {
  background: #efefef;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 30px;
}
.page-takeout .btn-wrap a.submit-btn,
.page-check .btn-wrap a.submit-btn,
.page-thanks .btn-wrap a.submit-btn {
  display: block;
  width: auto;
  margin: 0 auto;
  border: none;
  outline: none;
  background: none;
  color: #1A326E;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.07em;
}
.page-takeout .btn-wrap a.submit-btn:hover,
.page-check .btn-wrap a.submit-btn:hover,
.page-thanks .btn-wrap a.submit-btn:hover {
  opacity: 0.8;
}

.page-check .check-text {
  display: none;
}
.page-check .form-wrap {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .page-check .form-wrap {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}

.page-tokushoho .txt {
  line-height: 2.5;
}

.page-privacy-policy .head {
  color: #002471;
  line-height: 1.875;
  margin-top: 1em;
}
.page-privacy-policy .head:first-child {
  margin-top: 0;
}
.page-privacy-policy .txt {
  line-height: 1.875;
}

.woocommerce.post-type-archive-product .entry-title,
.woocommerce.post-type-archive-product .page-title,
.woocommerce.post-type-archive-product .woocommerce-notices-wrapper,
.woocommerce.post-type-archive-product .woocommerce-result-count,
.woocommerce.post-type-archive-product .woocommerce-ordering {
  display: none !important;
}
.woocommerce.post-type-archive-product .section__title {
  margin-bottom: 3em;
}
.woocommerce.post-type-archive-product ul.products {
  width: 840px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  float: none !important;
  display: flex !important;
  justify-content: center !important;
}
.woocommerce.post-type-archive-product ul.products li.product {
  width: 50% !important;
  margin: 0 auto !important;
  text-align: center !important;
}
.woocommerce .section__title {
  margin-bottom: 80px;
}
.woocommerce div.product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
}
.woocommerce div.product .product_meta {
  display: none !important;
}
.woocommerce div.product button.button.alt {
  background: #002471 !important;
}

.woocommerce-checkout .entry-content {
  width: 860px;
  margin-right: auto;
  margin-left: auto;
}
.woocommerce-checkout #payment ul.payment_methods li img {
  width: auto !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #002471 !important;
}/*# sourceMappingURL=style.css.map */