@charset "utf-8";

ul {
  padding: 0;
}
li {
  list-style: none;
}

@media screen and (max-width: 1190px) {
  /*ipad対応*/
  main .inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  main .inner {
    padding: 0 20px;
  }
}
.container_drink {
  width: 1190px;
  padding: 0;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 500;
  font-weight: bold;
}
.container_drink img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
@media screen and (max-width: 1190px) {
  /*ipad対応*/
  .container_drink {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .container_drink {
    width: 100%;
  }
}

.sp {
  display: none !important;
}
.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}

h2 {
  font-size: 80px;
  color: #e60012;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
h2.self {
  color: #41ab00;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 55px;
  }
}

.mv {
  width: 70%;
  margin: 0 auto;
}

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

.selfPage_logo {
  width: 310px;
  text-align: center;
}

.selfPage_point ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.selfPage_point ul li {
  width: 48%;
  font-size: 36px;
  color: #fff;
  background-color: #000;
  border-radius: 10px;
  text-align: center;
  padding: 5px;
}

.selfPage_heading {
  font-size: 22px;
  line-height: 1.5;
  margin: 1em 0 0;
}

@media screen and (max-width: 1180px) {
  .mv {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1040px) {
  .mv {
    width: inherit;
    margin: 0 auto;
  }
  .selfPage_logo {
    width: 300px;
  }
}

@media screen and (max-width: 824px) {
  h2.self {
    font-size: 70px;
    line-height: 1;
  }

  .selfPage_point {
    width: 80%;
    margin: 0 auto;
  }

  .selfPage_logo {
    width: 260px;
    margin: 0 auto;
  }

  .selfPage_point ul li {
    font-size: 35px;
  }
}

@media screen and (max-width: 767px) {
  .flx_box {
    display: flex;
    flex-direction: column;
  }

  .selfPage_logo {
    width: 80%;
    margin: 0 auto 25px;
  }

  .selfPage_point {
    width: inherit;
  }

  .selfPage_point ul li {
    font-size: 20px;
    border-radius: 5px;
  }
  .selfPage_heading {
    width: inherit;
    font-size: 18px;
    margin: 0.5em 0 0;
  }
}

/*drinkMv*/
.drinkMv {
  width: 500px;
  margin: 40px auto 80px;
}
.drinkMv img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .drinkMv {
    width: 100%;
    margin: 20px auto 10px;
  }
}
/*************************************
タブ
*************************************/
/*---------------------

---------------------*/
@media screen and (max-width: 767px) {
  .tabBox {
    overflow: hidden;
  }
}

/*tab_menu*/
.tab_menu {
  display: flex;
  text-align: center;
}
.tab_menu .tab {
  width: 20%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 13px;
  margin: 0 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  box-shadow: 4px 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.5;
  position: relative;
  z-index: 1;
  cursor: pointer;
  /* flex: 1; */
  transition: all 0.3s ease 0s;
}
.tab_menu .tab:hover {
  opacity: 1;
}
.tab_menu #tab01 {
  background-color: #920783;
  position: relative;
}
.tab_menu #tab01_1 {
  background-color: #8e0c0c;
  position: relative;
}
.tab_menu #tab02 {
  background-color: #f08300;
}
.tab_menu #tab03 {
  background-color: #e83828;
}
.tab_menu #tab04 {
  background-color: #abcf4b;
}
.tab_menu #tab05 {
  background-color: #009ada;
}
.tab_menu #tab06 {
  background-color: #e60c7d;
}
.tab_menu #tab07 {
  background-color: #009ada;
}
.tab_menu .tab.active {
  opacity: 1;
}
.tab_menu .tab.active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 16px 0 16px;
  display: block;
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -15px;
  filter: drop-shadow(2px 5px 3px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease 0s;
}
.tab_menu #tab01.active::after {
  border-color: #920783 transparent transparent transparent;
}

.tab_menu #tab01_1.active::after {
  border-color: #8e0c0c transparent transparent transparent;
}

.tab_menu #tab02.active::after {
  border-color: #f08300 transparent transparent transparent;
}

.tab_menu #tab03.active::after {
  border-color: #e83828 transparent transparent transparent;
}

.tab_menu #tab04.active::after {
  border-color: #abcf4b transparent transparent transparent;
}

.tab_menu #tab05.active::after {
  border-color: #009ada transparent transparent transparent;
}

.tab_menu #tab06.active::after {
  border-color: #e60c7d transparent transparent transparent;
}

.tab_menu #tab07.active::after {
  border-color: #009ada transparent transparent transparent;
}
@media screen and (max-width: 1190px) {
  .tab_menu .tab {
    padding: 10px 13px;
  }
  /*ipad対応*/
  .tab_menu #tab01 img,
  .tab_menu #tab06 img {
    width: 80px;
    left: -27px;
    top: -55px;
  }
}
@media screen and (max-width: 1120px) {
  /*ipad対応*/
  .tab_menu .tab {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .tab_menu {
    padding: 10px 0 23px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .tab_menu .tab {
    width: auto;
    font-size: 24px;
    white-space: nowrap;
  }
  .tab_menu #tab01 img,
  .tab_menu #tab06 img {
    display: none;
    /* width: 60px;
        left: -10px;
        top: -40px; */
  }
}

/*tab_contents*/
.tab_contents {
  border: solid 5px #920783;
  border-radius: 30px;
  padding: 50px;
  margin-top: 30px;
}
.tab_contents .content {
  display: none;
  position: relative;
  animation: fadeIn 1s ease;
}
.tab_contents .content.show {
  display: block;
}

.tab_contents#select-PREMIUM {
  border: solid 5px #920783;
}
.tab_contents#select-BOTTLE {
  border: solid 5px #8e0c0c;
}
.tab_contents#select-VALUE {
  border: solid 5px #f08300;
}
.tab_contents#select-CASUAL {
  border: solid 5px #e83828;
}
.tab_contents#select-LEMON {
  border: solid 5px #abcf4b;
}
.tab_contents#select-STANDARD {
  border: solid 5px #009ada;
}
.tab_contents#select-ALCOHOL {
  border: solid 5px #e60c7d;
}
@media screen and (max-width: 767px) {
  .tab_contents {
    padding: 30px 20px 20px;
    margin-top: 5px;
  }
  .tab_contents .content {
  }
}

/*各コースの見出し部分*/
.courseSubttl {
  font-size: 17px;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 700;
  text-align: left;
  padding-left: 10px;
}
#PREMIUM .courseSubttl {
  color: #920783;
}
#BOTTLE .courseSubttl {
  color: #8e0c0c;
}
#VALUE .courseSubttl {
  color: #f08300;
}
#CASUAL .courseSubttl {
  color: #e83828;
}
#LEMON .courseSubttl {
  color: #abcf4b;
}
#STANDARD .courseSubttl {
  color: #009ada;
}
#ALCOHOL .courseSubttl {
  color: #e60c7d;
}
@media screen and (max-width: 767px) {
  .courseSubttl {
    font-size: 14px;
    position: relative;
  }
}
#PREMIUM .courseSubttl img,
#ALCOHOL .courseSubttl img {
  width: 140px;
  position: absolute;
  right: -35px;
  top: -80px;
}
@media screen and (max-width: 1024px) {
  #PREMIUM .courseSubttl img,
  #ALCOHOL .courseSubttl img {
    top: -74px;
  }
}
@media screen and (max-width: 767px) {
  #PREMIUM .courseSubttl img,
  #ALCOHOL .courseSubttl img {
    width: 80px;
    position: absolute;
    right: -32px;
    top: -50px;
  }
}
@media screen and (max-width: 433px) {
  #PREMIUM .courseSubttl img,
  #ALCOHOL .courseSubttl img {
    width: 65px;
    position: absolute;
    right: -24px;
    top: -61px;
  }
}
.courseTtl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  line-height: 1;
  padding: 0 10px 10px;
  margin: 20px 0 20px;
  position: relative;
}
#STANDARD .courseTtl {
  margin: 20px 0 50px;
}
.courseTtl:before {
  content: "";
  width: 100%;
  height: 30px;
  background-color: #efefef;
  position: absolute;
  left: 0;
  bottom: 0;
}
.courseTtl p {
  margin: 0;
}
.courseTtl_name {
  font-size: 24px;
  position: relative;
  z-index: 2;
}
.courseTtl_name .en {
  font-size: 53px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
.courseTtl_name .jp {
  display: block;
  color: #e60012;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 900;
  margin-bottom: 10px;
}
#ALCOHOL .courseTtl_name .jp {
  color: #6fb92c;
}
.courseTtl_kinds {
  font-size: 26px;
  padding: 0 0 6px 20px;
  position: relative;
  z-index: 2;
}
.courseTtl_kinds strong {
  font-size: 53px;
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  margin-right: 2px;
}
.courseTtl_ex {
  color: #aa2939;
  padding-bottom: 6px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}
.courseTtl_ex .price {
  font-size: 41px;
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  font-style: normal;
}
.courseTtl_ex .time {
  font-size: 20px;
}
.caption {
  font-size: 14px;
  font-weight: 500;
  margin-top: 1em;
  margin-bottom: 50px;
}
.caption-right {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .courseTtl {
    margin-bottom: 60px;
  }
  .common_drink .courseTtl {
    margin-bottom: 20px;
  }
  /* #BOTTLE .courseTtl {
    margin-bottom: 20px;
  } */
  #STANDARD .courseTtl {
    margin-bottom: 20px;
  }
  .courseTtl_name {
    font-size: 18px;
  }
  .courseTtl_name .en {
    font-size: 30px;
  }
  .courseTtl_kinds {
    font-size: 15px;
    padding: 0 0 6px 10px;
  }
  .courseTtl_kinds strong {
    font-size: 30px;
  }
  .courseTtl_ex {
    width: 100%;
    transform: translateY(60px);
    padding-left: 20px;
  }
  .courseTtl_ex .price {
    font-size: 25px;
  }
  .courseTtl_ex .time {
    font-size: 16px;
  }
  .caption {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 376px) {
  .courseTtl_name .en {
    font-size: 28px;
  }
  .courseTtl_kinds strong {
    font-size: 23px;
  }
}
.coursePoint {
  margin: 0 0 50px;
}
.coursePoint ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.coursePoint ul li {
  list-style: none;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 700;
  background-color: #000333;
  padding: 10px 17px 13px;
  border-radius: 10px;
  margin: 0.6em 0;
}
.coursePoint ul li {
  margin-right: 15px;
}

.coursePoint ul li:last-child {
  margin-right: none;
}

.coursePoint .point_ice {
  position: relative;
}
.coursePoint .point_ice img {
  width: 88px;
  position: absolute;
  right: -77px;
  top: 50%;
  transform: translateY(-50%);
}
.coursePoint .caption {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .coursePoint {
    margin: 30px 0;
  }
  .coursePoint ul li {
    font-size: 10px;
    padding: 10px 10px 13px;
    margin-right: 5px;
    border-radius: 7px;
  }
  .coursePoint .point_ice {
    padding-right: 13px;
  }
  .coursePoint .point_ice img {
    width: 57px;
    right: -45px;
  }
}
@media screen and (max-width: 767px) {
  .coursePoint ul li:nth-child(3) {
    margin-left: 0;
  }
  .coursePoint ul li:nth-child(n + 3) {
    margin-top: 5px;
  }
}

/*courseBox*/
.courseBox.cBox {
  width: 106%;
  margin-left: -3%;
}
.courseBox.cBox + .cBox {
  margin-top: 30px;
}
.cBox_img {
  width: 100%;
  margin-bottom: 30px;
  padding: 0 3%;
  box-sizing: border-box;
}
.cBox_img img {
  width: 100%;
}
.inner + .cBox_img {
  margin-top: 30px;
}
.courseBox .inner {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .courseBox .inner {
    justify-content: space-between;
  }

  .courseBox.cBox {
    width: 100%;
    margin-left: 0;
  }
  .cBox_img {
    padding: 0;
  }
}
/*cBox_cnt*/
.cBox_cnt {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0 3%;
  position: relative;
}
.cBox_cnt:nth-child(odd):after {
  content: "";
  width: 2px;
  height: 100%;
  border-right: dashed 2px #c4c4c4;
  position: absolute;
  right: 0;
  top: 0;
}
.view-bottle .cBox_cnt:nth-child(odd):after {
  display: none;
}
.cBox_cnt:nth-child(n + 3) {
  padding-top: 50px;
}
.cBox_cnt-wide {
  width: 100% !important;
}
.cBox_cnt-wide:after {
  content: none !important;
}

.cBox_cnt-small {
  width: 25%;
}
.cBox_cnt-small:nth-child(n + 3) {
  padding-top: 0;
}
.cBox_cnt-small:after {
  content: "";
  width: 2px;
  height: 100%;
  border-right: dashed 2px #c4c4c4;
  position: absolute;
  right: 0;
  top: 0;
}
.cBox_cnt-small:last-child:after {
  content: none;
}

.cBox_cnt-self {
  display: block;
  width: 25%;
  padding: 0 2%;
}
.cBox_cnt-self:nth-child(n + 3) {
  padding-top: 0;
}
.cBox_cnt-self:nth-child(n + 5) {
  margin-top: 20px;
}
.cBox_cnt-self:after {
  content: none !important;
}
.cBox_cnt-self .drink_img {
  width: 100%;
  margin-right: 0;
  margin-bottom: 10px;
}
.cBox_cnt-self .drink_list {
  width: 100%;
}
.bottle_img {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .cBox_cnt {
    width: 100%;
    padding: 0;
  }
  .cBox_cnt:nth-child(odd):after {
    content: none;
  }
  .cBox_cnt:nth-child(n + 2) {
    margin-top: 30px;
  }
  .cBox_cnt:nth-child(n + 3) {
    padding-top: 0;
  }
  .cBox_cnt-small:after {
    content: none;
  }
  .cBox_cnt-self {
    width: 48%;
  }
  .cBox_cnt-self:nth-child(n + 2) {
    margin-top: 0;
  }
  .cBox_cnt-self:nth-child(n + 3) {
    margin-top: 20px;
  }
}
.drink_img {
  width: 45%;
  background-color: #efefef;
  margin-right: 4%;
  box-sizing: border-box;
}
.drink_img img {
  width: 100%;
}
.drink_img.drink_img-wide {
  width: 100%;
}
@media screen and (max-width: 767px) {
}
.drink_list {
  width: 51%;
}
.drink_list-wide {
  width: 100%;
}
.drink_list_ttl {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  padding: 6px 10px 8px 6px;
  border-radius: 7px;
}
.drink_list_ttl:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 25px;
  background-image: url(../img/ttl_icon.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 5px;
}
.cBox_cnt-small .drink_list_ttl:before {
  background-image: url(../img/ttl_icon-blue.svg);
}
.drink_list_ttl-bottle {
  background-color: #8e0c0c;
}
.drink_list_ttl-premium {
  background-color: #920783;
}
.drink_list_ttl-value {
  background-color: #f08300;
}
.drink_list_ttl-casual {
  background-color: #e83828;
}
.drink_list_ttl-standard {
  background-color: #009ada;
}
.drink_list_ttl-free {
  color: #009ada;
  border: solid 2px #009ada;
}
.drink_list_ttl-self {
  background-color: #e60c7d;
}
.drink_list_name {
  display: flex;
}
.drink_list_name ul {
  width: 100%;
}
.drink_list_name ul:nth-child(n + 2) {
  margin-left: 30px;
}
.drink_list_name ul li {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.drink_list_name ul li.space {
  height: 1em;
}
.drink_list_name ul li .name {
  margin: 0;
}
.drink_list_name ul li .price {
  color: #aa2939;
  margin: 0;
}
.drink_list_name ul li .price .yen:before {
  content: "¥";
  margin-right: 0.1em;
}
@media screen and (max-width: 767px) {
  .drink_list_ttl {
    font-size: 14px;
    padding: 3px 10px;
  }
  .drink_list_name ul {
  }
  .drink_list_name ul li {
    font-size: 12px;
  }
}

/*reserveBox*/
.reserveBox {
  margin: 100px 0 0;
  padding-bottom: 50px;
}
.reserveBox_btn {
  width: 470px;
  margin: 0 auto;
  font-family: "M PLUS 2", sans-serif;
  font-weight: 700;
  position: relative;
}
.reserveBox_btn:before {
  content: "＼ アプリ予約なら、事前注文も可能！ ／";
  color: #e60012;
  font-size: 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  text-align: center;
}
.reserveBox_btn a {
  display: block;
  font-size: 40px;
  color: #fff;
  line-height: 1;
  text-align: center;
  background-color: #e60012;
  border-radius: 50px;
  padding: 0.7em 2em;
  transition: 0.2s;
}
.reserveBox_btn a:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .reserveBox_btn {
    width: 90%;
  }
  .reserveBox_btn:before {
    font-size: 15px;
  }
  .reserveBox_btn a {
    font-size: 26px;
  }
}
