@charset "UTF-8";
/*
common.css
*/
/* basis */
html {
  font-size: 62.5%;
}

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

body {
  font-size: 1.4rem;
  line-height: 1.6;
  background: #f4f2eb;
  color: #301a00;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.inner {
  margin: 0 auto;
  padding: 0 15px;
}

@media screen and (max-width: 320px) {
  html {
    font-size: 58%;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
  }
  .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

@media screen and (min-width: 768px) {
  .sp-show {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc-show {
    display: none;
  }
}

.section {
  margin-bottom: 50px;
}

.bg01 {
  padding: 50px 0;
}

.bg02 {
  padding: 50px 0;
  background: #ece8de;
}

@media screen and (max-width: 767px) {
  .bg01 {
    padding: 40px 0;
  }
  .bg02 {
    padding: 40px 0;
  }
}

.txt_co01 {
  color: #e45827;
}

.txt_caution {
  font-size: 1.4rem;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .flex {
    flex-wrap: wrap;
  }
  .flex_item {
    width: 100%;
  }
}

/* header */
@media screen and (min-width: 768px) {
  .header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.logo {
  display: block;
}

.logo img {
  width: auto;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 15px 15px 10px;
  }
  .logo {
    margin-bottom: 10px;
  }
  .logo img {
    width: 230px;
    margin: auto;
  }
}

.gnav ul {
  padding-top: 15px;
}

.gnav_item:not(:last-child) {
  margin-right: 30px;
}

.gnav_link {
  color: #301a00 !important;
  text-decoration: none;
  font-weight: bold;
}

.gnav_link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .gnav ul {
    padding-top: 10px;
    justify-content: center;
  }
}

.ttl_bel01 {
  margin-bottom: 40px;
}

.ttl_bel01_h {
  margin-bottom: 20px;
}

.ttl_bel01 img {
  width: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .ttl_bel01 {
    margin-bottom: 30px;
  }
  .ttl_bel01_h img {
    height: 13px;
  }
}

.ttl_bel02 {
  margin-bottom: 40px;
}

.ttl_bel02 h2 {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}

.ttl_bel02 img {
  width: auto;
  margin: 0 auto;
}

.ttl_bel02 img.ttl_bel02_sub {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .ttl_bel02 {
    margin-bottom: 30px;
  }
  .ttl_bel02 h2 {
    font-size: 2rem;
  }
  .ttl_bel02 img {
    width: auto;
    margin: 0 auto;
  }
  .ttl_bel02 img.ttl_bel02_sub {
    height: 13px;
  }
}

.ttl_bel03 {
  margin-bottom: 40px;
}

.ttl_bel03_sub {
  margin: 0 auto 20px;
}

.ttl_bel03_h {
  font-size: 1.8rem;
  margin: 20px 0 0;
  text-align: center;
  font-weight: bold;
}

.ttl_bel03 img {
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .ttl_bel03 {
    margin-bottom: 30px;
  }
  .ttl_bel03_sub {
    height: 15px;
  }
  .ttl_bel03_h {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .bel_img {
    height: 18px;
  }
}

.about_text {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .about_text {
    text-align: left;
    font-size: 4.0625vw;
    margin-bottom: 30px;
    width: 90%;
    margin: 0 auto 30px;
  }
}

/* point3 */
.point3_list {
  padding-top: 20px;
}

.point3_list dt {
  display: table;
  margin: 0 auto 20px;
  position: relative;
  text-align: center;
  font-weight: bold;
  padding-left: 35px;
}

.point3_list dt::before {
  position: absolute;
  background: #351d00;
  color: #fff;
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.point3_list dl:nth-child(1) dt::before {
  content: '1';
}

.point3_list dl:nth-child(2) dt::before {
  content: '2';
}

.point3_list dl:nth-child(3) dt::before {
  content: '3';
}

@media screen and (min-width: 768px) {
  .point3_list {
    align-items: flex-start;
  }
  .point3_list .flex_item {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .point3_list .flex_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .point3_list dd {
    width: 85%;
    margin: auto;
  }
}

.point3 .link {
  box-sizing: border-box;
  display: block;
  background: #493211;
  border-radius: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  max-width: 1500px;
}

.point3 .link:hover {
  opacity: .8;
}

.point3 .link span {
  font-size: 26px;
  margin-left: .8em;
}

.point3 .link::after {
  content: '';
  display: inline-block;
  background: url(../img/icon_arrow.png) right center no-repeat;
  background-size: 38px;
  margin-left: .6em;
  vertical-align: middle;
  height: 38px;
  width: 38px;
}

@media screen and (max-width: 767px) {
  .point3 .link {
    font-size: 20px;
    padding: 15px 40px 15px 0;
    position: relative;
  }

  .point3 .link span {
    font-size: 16px;
    display: block;
    margin-left: 0;
  }

  .point3 .link::after {
    position: absolute;
    left: calc(50% + 5.4em);
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.commitment_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 70px;
}

.commitment_ttl img {
  width: auto;
  margin-right: 10px;
}

.commitment_ttl span {
  padding-top: 3px;
}

.commitment h3 {
  font-weight: bold;
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.commitment_block01 {
  margin-bottom: 70px;
}

.commitment_block01 p:not(:last-child) {
  margin-bottom: 20px;
}

.commitment_block02 p:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .commitment_block01 {
    align-items: flex-start;
  }
  .commitment_block01 .flex_item:nth-child(1) {
    width: 500px;
  }
  .commitment_block01 .flex_item:nth-child(2) {
    width: 500px;
  }
  .commitment_block01 .flex_item:nth-child(2) img {
    margin: auto;
    width: auto;
  }
  .commitment_block02 {
    align-items: flex-start;
  }
  .commitment_block02 .flex_item:nth-child(1) {
    width: 475px;
  }
  .commitment_block02 .flex_item:nth-child(2) {
    width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .commitment_ttl {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .commitment_ttl img {
    width: 250px;
    margin-right: 10px;
  }
  .commitment_ttl span {
    width: 100%;
    text-align: center;
    padding-top: 7px;
  }
  .commitment h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  .commitment_block01 {
    width: 85%;
    margin: 0 auto 40px;
  }
  .commitment_block01 p:not(:last-child) {
    margin-bottom: 20px;
  }
  .commitment_block01 img {
    width: 80%;
    margin: 20px auto 0;
  }
  .commitment_block02 {
    width: 85%;
    margin: auto;
    flex-direction: column-reverse;
  }
  .commitment_block02 p:not(:last-child) {
    margin-bottom: 20px;
  }
  .commitment_block02 img {
    margin-top: 20px;
  }
}

.insta_area_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 30
}

.insta_area_ttl img {
  display: block;
  margin-right: 20px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .insta_area_ttl {
    font-size: 1.8rem;
  }
  .insta_area_ttl img {
    height: 20px;
    margin-right: 10px;
  }
}

.country + .ttl_bel03 {
  margin-top: 60px;
}

.country_item {
  position: relative;
  font-size: 2rem;
  background: #ece8de;
  align-items: flex-start;
  padding: 70px 30px;
}

.country_item::before,
.country_item::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  background-size: contain;
}

.country_item::before {
  top: 0;
}

.country_item::after {
  bottom: 0;
}

/* bg  */
.bg_guatemala::before,
.bg_guatemala::after {
  background-image: url(../img/product/bg_guatemala.png);
}
.bg_ethiopia::before,
.bg_ethiopia::after {
  background-image: url(../img/product/bg_ethiopia.png);
}
.bg_columbia::before,
.bg_columbia::after {
  background-image: url(../img/product/bg_columbia.png);
}
.bg_tanzania::before,
.bg_tanzania::after {
  background-image: url(../img/product/bg_tanzania.png);
}
.bg_brazil::before,
.bg_brazil::after {
  background-image: url(../img/product/bg_brazil.png);
}
.bg_indonesia::before,
.bg_indonesia::after {
  background-image: url(../img/product/bg_indonesia.png);
}
.bg_decaf::before,
.bg_decaf::after {
  background-image: url(../img/product/bg_decaf.png);
}

.bg_house::before,
.bg_house::after {
  background-image: url(../img/product/bg_blend01.png);
}
.bg_dark::before,
.bg_dark::after {
  background-image: url(../img/product/bg_blend02.png);
}
.bg_american::before,
.bg_american::after {
  background-image: url(../img/product/bg_blend03.png);
}
.bg_ethical::before,
.bg_ethical::after {
  background-image: url(../img/product/bg_blend04.png);
}


.bg_blend::before{
  background-image: url(../img/product/bg_blend01.png);
}
.bg_blend::after {
  background-image: url(../img/product/bg_blend02.png);
}
.country_item .flex_item {
  width: 50%;
}
.country_item .flex_item:nth-child(1) {
  margin-right: 50px;
}
.bg_blend .flex_item:nth-child(1) {
  margin-right: 0;
}
.bg_blend .country_price {
  text-align: center;
  margin: auto;
}
.bg_blend .country_text {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.country_name {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.country_name img {
  width: 100%;
  max-width: 85px;
}

.country_name span {
  font-size: 2.2rem;
  font-weight: bold;
  margin-left: 30px;
}

.country_main {
  align-items: flex-start;
}

.country_info {
  width: 100%;
  margin-bottom: 30px;
  border-top: 1px dashed #301a00;
}

.country_info li {
  display: table;
  padding: 10px 0;
  font-size: 1.6rem;
  width: 100%;
  border-bottom: 1px dashed #301a00;
}

.country_info li span {
  display: table-cell;
  vertical-align: middle;
}

.country_info li span:nth-child(1) {
  width: 120px;
}

.country_data img {
  width: auto;
  margin: 0 auto 0 0;
}

.country_img {
  max-width: 447px;
}

.country h3 {
  font-size: 2.2rem;
  font-weight: bold;
  padding-top: 30px;
  margin-bottom: 30px;
}

.country h3 + p {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.country_price th {
  text-align: right;
  padding-right: 15px;
}

.country_price td {
  padding-right: 20px;
}

.country_caution {
  width: 80%;
  margin: 20px auto;
}

.service_pack {
  display: flex;
  justify-content: center;
  padding: 30px;
}

.service_pack img {
  width: 60%;
}

.country_caution.text-center {
  text-align: center;
}

.country_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.country_flex .country_item {
  box-sizing: border-box;
}

.country_flex .country_item .country_image {
  margin-bottom: 20px;
}

.country_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.js_slider {
  font-size: 0;
  line-height: 0;
}

.js_slider .slick-slide {
  height: auto;
}

.js_slider .slick-track {
  display: flex;
  align-items: center;
}

.slick-list {
  padding: 0 !important;
}

.slider_thumb {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.666666666666667%;
}

.slider_thumb li {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23%;
  margin-right: 2.666666666666667%;
}

.slider_thumb li.current {
  opacity: 0.6;
}

.slider_thumb li:nth-child(4n) {
  margin-right: 0;
}

.slider_thumb li:nth-child(n + 5) {
  margin-top: 2.666666666666667%;
}

@media screen and (min-width: 768px) {
  .country_flex .country_item {
    width: 48%;
  }
  .country_flex .country_item:nth-child(n + 3) {
    margin-top: 4%;
  }
}


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

  .country + .ttl_bel03 {
    margin-top: 50px;
  }
  .country_item {
    font-size: 1.4rem;
    padding: 50px 20px;
  }
  .country_item::before,
  .country_item::after {
    height: 30px;
  }

  .country_item .flex_item {
    width: 100%!important;
  }
  .bg_blend .flex_item {
    width: 50%!important;
  }
  .country_item .flex_item:nth-child(1) {
    margin-right: 0;
  }
  .country_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .country_name {
    margin-bottom: 20px;
    flex-wrap: nowrap;
  }
  .country_name img {
    max-width: 65px;
  }
  .country_name span {
    font-size: 1.7rem;
    margin-left: 15px;
    letter-spacing: -0.01em;
  }
  .country_info {
    margin-bottom: 20px;
  }
  .country_info li {
    font-size: 1.2rem;
  }
  .country_info li span:nth-child(1) {
    width: 90px;
  }
  .country_data img {
    width: 100%;
  }
  .country h3 {
    font-size: 1.7rem;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-top: 0;
  }
  .country h3 + p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .country_caution {
    width: 90%;
    margin: 10px auto;
  }
  .country_caution.text-center {
    text-align: justify;
  }
  .service_pack img {
    width: 100%;
  }
  .country_flex .country_item {
    width: 100%;
  }
  .country_flex .country_item:not(:last-child) {
    margin-bottom: 25px;
  }
}

/* shop */
.shop_area_ttl {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 35px;
}

.shop_list {
  align-items: flex-start;
  flex-wrap: wrap;
}

.shop_list_item {
  width: 485px;
  margin-bottom: 30px;
}

.shop_list_main {
  background: #f9f8f5;
  font-size: 1.8rem;
  padding: 0 25px;
  border-left: 2px solid #563927;
  border-right: 2px solid #563927;
  border-bottom: 2px solid #563927;
}

.shop_list_main table {
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
  white-space: normal;
}

.shop_list_main table td {
  padding: 10px 0;
  vertical-align: middle;
  height: 95px;
}

.shop_list_main table td .td_map {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-left: 1px solid #563927;
  margin-left: 20px;
  text-decoration: none;
}

.shop_list_main table td .td_map > a {
  width: 100%;
}

.shop_list_main table td .td_outlet {
  display: flex;
  justify-content: center;
  border-left: 1px solid #563927;
  border-right: 1px solid #563927;
}

.shop_list_main table .td_center {
  text-align: center;
}

.shop_list_main table tr:not(:last-child) td {
  border-bottom: 1px solid #563927;
}

.shop_list_menu {
  position: relative;
  padding-left: 40px;
  margin-right: 20px;
}

.shop_list_menu:before {
  content: "";
  margin: auto;
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #563927;
  border-top: 2px solid #563927;
}

.shop_list_menu:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .shop_area_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .shop_list_main {
    font-size: 1.4rem;
    padding: 0 15px;
  }
  .shop_list_main table td {
    height: 65px;
  }
  .shop_list_main table td .td_map {
    margin-left: 10px;
  }
  .shop_list_item:last-child {
    margin-bottom: 0;
  }
}

.title {
  font-size: 2.4rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
  color: #C69E62;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title {
    font-size: 4rem;
  }
}

/* mainImage */
.mainImage {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mainImage__ttl {
  position: absolute;
  top: 45%;
  margin: auto;
  left: 0;
  right: 0;
  max-width: 500px;
  width: 50%;
  opacity: 0;
  transform: translateY(25%);
  transition: all 2s ease;
}

.mainImage__ttl.active {
  opacity: 1;
  transform: translateY(0);
}

.mainImage__scroll {
  position: absolute;
  border-bottom: 5px solid #fff;
  transform: rotate(90deg);
  transform-origin: 100% 100%;
  width: 90px;
  left: -90px;
  right: 0;
  bottom: 0;
  margin: auto;
}

.menu .mainImage h1 {
  color: #f4f2eb;
  font-weight: bold;
  font-size: 2.8rem;
  letter-spacing: 0.2em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.menu .mainImage h1 > img {
  width: auto;
  margin: 0 auto 25px;
}

.menu .mainImage h1 > span b {
  padding-left: 20px;
  font-size: 2.6rem;
  font-family: 'American Typewriter';
}

@media screen and (min-width: 767px) {
  .mainImage {
    min-width: 1000px;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  .mainImage > img {
    position: absolute;
    /*width: auto !important;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: inherit !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;*/
  }
}

@media screen and (max-width: 767px) {
  .mainImage {
    margin-top: 10px;
  }

  .mainImage > img{
    display:block;
    width:100%;
    height:auto;
  }
  .mainImage__scroll {
    border-bottom: 3px solid #fff;
    width: 40px;
    left: -40px;
    font-size: 1rem;
  }
  .menu .mainImage h1 {
    font-size: 2rem;
    width: 100%;
  }
  .menu .mainImage h1 > img {
    height: 60px;
    margin: 0 auto 10px;
  }
  .menu .mainImage h1 > span {
    font-size: 1.8rem;
    display: block;
  }
  .menu .mainImage h1 > span b {
    font-size: 1.5rem;
    padding-left: 10px;
    letter-spacing: 0.09em;
  }
}

/* bx-slider */
.shop .bx-wrapper .bx-pager {
  bottom: 15px;
  padding: 0;
}

.shop .bx-wrapper .bx-pager.bx-default-pager a {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  margin: 0 8px;
}

/* ===== mainImage 上書き：縦横比維持＆画像見切れ防止 ===== */
@media screen and (min-width: 767px) {
  .mainImage {
    min-width: 0;        /* 既存の min-width:1000px を無効化 */
    width: 100%;
    height: auto;        /* 既存の height:500px を無効化（見切れの原因） */
    overflow: visible;   /* 既存の overflow:hidden を無効化 */
  }

  .mainImage > img {
    position: static;    /* 既存の absolute を無効化 */
    display: block;
    width: 100%;
    height: auto;        /* 縦横比を保持して幅に追従 */
  }

  /* 文字/装飾が画像の上に確実に乗るように（保険） */
  .mainImage__ttl,
  .mainImage__scroll,
  .menu .mainImage h1 {
    z-index: 2;
  }
 }
/* ===== mainImage 上書き：スマホも縦横比維持＆画像見切れ防止 ===== */
@media screen and (max-width: 767px) {
  .mainImage > img {
    display: block;
    width: 100%;
    height: auto;
  }
}



/* menu */
.drink_ttl {
  color: #cb7538;
  font-weight: bold;
  font-size: 2.5rem;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  font-family: 'Crete Round', serif;
}
.drink_ttl > span{
  color: initial;
  font-family: initial;
  font-size: 2.2rem;
  padding-left: 15px;
}

.drink_ttl > img {
  width: auto;
  margin-right: 20px;
}

.drink_list {
  position: relative;
  align-items: flex-start;
}

.drink_list .flex_item:nth-child(2) {
  padding-left: 20px;
}

.drink_list .flex_item:nth-child(1) {
  padding-right: 20px;
}

.drink_list table {
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
  white-space: normal;
  margin-bottom: 50px;
}

.drink_list table th, .drink_list table td {
  padding: 5px 0;
  vertical-align: middle;
}

.drink_list table th {
  font-size: 2rem;
  text-align: left;
  width: 260px;
  letter-spacing: -0.06em;
}

.drink_list table .td_text {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 10px;
  margin-top: 10px;
}

.drink_list table .th_right {
  text-align: right;
  padding-right: 30px;
}

.drink_list table .td_regular {
  padding-bottom: 10px;
  width: 120px;
}

.drink_list table .td_regular img {
  width: auto;
  margin: auto;
}

.drink_list table .td_large {
  padding-bottom: 10px;
}

.drink_list table .td_large img {
  width: auto;
  margin: auto;
}

.drink_list table .td_yen {
  text-align: center;
  font-size: 2rem;
}

.drink_list table .td_add {
  letter-spacing: -0.05em;
  margin-right: -20px;
  margin-left: -10px;
  font-size: 1.3rem;
}

.drink_list table .td_add li:not(:last-child) {
  margin-bottom: 5px;
}

.drink_text {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.drink_plus {
  font-size: 1.7rem;
}

.drink_plus:not(:first-child) {
  margin-top: 0px;
}

.drink_caution {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .drink_ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .drink_ttl > img {
    margin-right: 0;
    margin-bottom: 5px;
    height: 18px;
  }
  .drink_ttl span {
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  .drink_list .flex_item:nth-child(2) {
    padding-left: 0;
  }
  .drink_list .flex_item:nth-child(1) {
    padding-right: 0;
  }
  .drink_list table {
    margin-bottom: 30px;
  }
  .drink_list table th, .drink_list table td {
    padding: 5px 0;
    line-height: 1.2;
  }
  .drink_list table th {
    font-size: 1.6rem;
    width: auto;
  }
  .drink_list table .td_text {
    font-size: 1.1rem;
  }
  .drink_list table .th_right {
    padding-right: 20px;
  }
  .drink_list table .td_regular {
    width: 75px;
  }
  .drink_list table .td_regular img {
    height: 17px;
  }
  .drink_list table .td_large {
    width: 50px;
  }
  .drink_list table .td_large img {
    height: 17px;
  }
  .drink_list table .td_add {
    margin-right: 0;
    margin-left: 0;
    font-size: 1.2rem;
  }
  .drink_list table .td_yen {
    font-size: 1.6rem;
  }
  .drink_caution {
    font-size: 1.2rem;
    margin-top: 20px;
    width: 100%;
    position: inherit;
    text-align: right;
  }
  .drink_text {
    font-size: 1.5rem;
  }
  .drink_plus {
    font-size: 1.4rem;
  }
  .drink_plus:not(:first-child) {
    margin-top: 10px;
  }
  .toast_tbl th {
    width: 170px !important;
  }
  .toast_tbl td:nth-child(1) {
    width: 50px !important;
  }
}

/* footer */
.footer_main {
  background: #351d00;
  color: #fff;
  padding: 50px 0;
}

.footer_main .flex {
  align-items: flex-start;
}

.footer_logo {
  width: auto;
  margin-bottom: 20px;
}

.footer_nav {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.footer_nav li:not(:last-child) {
  margin-right: 25px;
}

.footer_nav a {
  color: #fff;
  text-decoration: none;
}

.footer_nav a:hover {
  text-decoration: underline;
}

.footer_instagram {
  width: auto;
}

.footer_sub {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer_sub img {
  width: auto;
}

@media screen and (max-width: 767px) {
  .footer_instagram {
    display: block;
    margin: 30px auto 0;
  }
  .footer_main {
    padding: 30px 0;
  }
  .footer_main .flex {
    justify-content: center;
  }
  .footer_copy {
    text-align: center;
    font-size: 1.2rem;
  }
  .footer_logo {
    width: 210px;
    margin: 0 auto 20px;
  }
  .footer_sub {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .footer_sub img {
    height: 20px;
    margin: auto;
  }
}



.tax_area {
  padding: 60px 0 60px;
}

@media screen and (max-width: 767px) {
  .tax_area {
    padding: 35px 0 40px;
  }
}

.tax_area_ttl {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .tax_area_ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.tax_area .txt p {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .tax_area .txt p {
    font-size: 4.0625vw;
  }
}

.tax_area .txt p + p {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .tax_area .txt p + p {
    margin-top: 20px;
  }
}

.tax_area ul {
  margin: 60px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .tax_area ul {
    justify-content: space-between;
    margin-top: 30px;
  }
}

.tax_area ul li {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .tax_area ul li {
    width: 31%;
    margin-right: 3.5%;
  }
  .tax_area ul li:nth-child(3n) {
    margin-right: 0;
  }
  .tax_area ul li:nth-child(n+4) {
    margin-top: 3.5%;
  }
  .tax_area ul li:last-child {
    margin-right: 0;
  }
  .tax_area ul li a {
    -webkit-transition: all 0.4s ease;
      transition: all 0.4s ease;
  }
.tax_area ul li a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .tax_area ul li {
    width: 48%;
  }
  .tax_area ul li:nth-child(n+3) {
    margin-top: 4%;
  }
}
