/* -- color --*/
/*-- fonts --*/
/* line 9, sass/_default.scss */
.en {
  font-family: "Familjen Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
/* line 14, sass/_default.scss */
.en.bold {
  font-weight: 700;
}

/* line 18, sass/_default.scss */
.caslon {
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-style: normal;
}

/*-- default --*/
/* line 26, sass/_default.scss */
html {
  font-size: 62.5%;
}

/* line 30, sass/_default.scss */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  font-style: normal;
  color: #222;
  position: relative;
  line-height: 1.6;
}

/* line 39, sass/_default.scss */
main {
  padding-top: 7.172rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 1024px) {
  /* line 44, sass/_default.scss */
  main {
    padding-top: 9vw;
    padding-bottom: 20vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 50, sass/_default.scss */
  body {
    font-size: 1.4rem;
  }

  /* line 53, sass/_default.scss */
  main {
    padding-top: 12vw;
    padding-bottom: 24vw;
  }
}
/* line 59, sass/_default.scss */
*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

/* line 62, sass/_default.scss */
caption, th, td {
  font-weight: 500;
}

/* line 66, sass/_default.scss */
a {
  text-decoration: none;
  color: #222;
}

/* line 71, sass/_default.scss */
img {
  max-width: 100%;
  height: auto;
}

/*-- common --*/
/* line 78, sass/_default.scss */
.flex {
  display: flex;
}

/* line 82, sass/_default.scss */
.center {
  text-align: center;
}

/* line 86, sass/_default.scss */
.right {
  text-align: right;
}

/* line 90, sass/_default.scss */
.left {
  text-align: left;
}

/* line 95, sass/_default.scss */
.bold {
  font-weight: 600;
}

/* line 100, sass/_default.scss */
.inner {
  width: 92%;
  max-width: 140rem;
  margin: 0 auto 0;
}

/* line 106, sass/_default.scss */
h2.title {
  color: #001c55;
  font-size: 1.8rem;
  margin-bottom: 10rem;
}
/* line 110, sass/_default.scss */
h2.title .en {
  font-size: 4.8rem;
}

/* line 115, sass/_default.scss */
.page-btn {
  text-align: center;
  margin-top: 6rem;
}
/* line 118, sass/_default.scss */
.page-btn a {
  display: inline-block;
  color: #fff;
  background: #222;
  padding: 1.4rem 6.8rem;
  position: relative;
}
/* line 124, sass/_default.scss */
.page-btn a::after {
  content: '';
  width: 1.6rem;
  height: .6rem;
  background: url(../img/common/arrow.png) no-repeat center center/cover;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* line 137, sass/_default.scss */
.more-link {
  color: #001c55;
  text-align: right;
  padding-right: 3.4rem;
  position: relative;
  margin-top: 1.6rem;
}
/* line 143, sass/_default.scss */
.more-link a {
  color: #001c55;
}
/* line 146, sass/_default.scss */
.more-link::after {
  content: '';
  width: 2.2rem;
  height: 2.2rem;
  background: url(../img/beginner/arrow.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  /* line 158, sass/_default.scss */
  .more-link {
    padding-right: 7vw;
    margin-top: 4vw;
  }
  /* line 161, sass/_default.scss */
  .more-link::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
/* ------------------------- 
            button
--------------------------- */
/* line 181, sass/_default.scss */
.pconly {
  display: block;
}

/* line 184, sass/_default.scss */
.sponly {
  display: none;
}

@media screen and (max-width: 1024px) {
  /* line 189, sass/_default.scss */
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  /* line 195, sass/_default.scss */
  .pconly {
    display: none;
  }

  /* line 198, sass/_default.scss */
  .sponly {
    display: block;
  }
}
/* ------------------------- 
            header
--------------------------- */
/* line 207, sass/_default.scss */
#header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3%;
  background: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  border-bottom: .1rem solid #eeeeee;
}
/* line 219, sass/_default.scss */
#header .logo {
  width: 5.2%;
}
/* line 222, sass/_default.scss */
#header .head-menu-area {
  width: 40%;
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* line 229, sass/_default.scss */
#header .head-menu-list {
  width: calc(100% - 8rem);
  justify-content: space-between;
  align-items: center;
}
/* line 234, sass/_default.scss */
#header .toggle {
  width: 3.4rem;
  height: 1.4rem;
  position: relative;
}
/* line 238, sass/_default.scss */
#header .toggle::before, #header .toggle::after {
  content: '';
  width: 100%;
  height: .2rem;
  background-color: #222;
  position: absolute;
  transition: .3s;
}
/* line 246, sass/_default.scss */
#header .toggle::before {
  top: 0;
  left: 0;
}
/* line 250, sass/_default.scss */
#header .toggle::after {
  bottom: 0;
  left: 0;
}
/* line 255, sass/_default.scss */
#header .toggle.open::before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
/* line 259, sass/_default.scss */
#header .toggle.open::after {
  transform: rotate(-45deg) translateY(-50%);
  bottom: auto;
  top: 50%;
}
/* line 266, sass/_default.scss */
#header .head-humb-area {
  width: 100%;
  height: calc(100vh - 7.172rem);
  background: #fff;
  padding: 10% 4%;
  position: absolute;
  top: 7.172rem;
  left: 0;
  display: none;
}
/* line 275, sass/_default.scss */
#header .head-humb-area .inner {
  justify-content: center;
}
/* line 279, sass/_default.scss */
#header .humb-item {
  display: flex;
}
/* line 281, sass/_default.scss */
#header .humb-item.humb-top {
  width: 15%;
}
/* line 284, sass/_default.scss */
#header .humb-item.humb-sec {
  width: 35%;
}
/* line 287, sass/_default.scss */
#header .humb-item.humb-third {
  width: 35%;
}
/* line 291, sass/_default.scss */
#header .humb-list {
  justify-content: space-between;
}
/* line 293, sass/_default.scss */
#header .humb-list a {
  color: #001c55;
  font-size: 2rem;
  font-weight: 600;
}
/* line 298, sass/_default.scss */
#header .humb-list .en {
  font-size: 4.8rem;
  line-height: 1.2;
}
/* line 302, sass/_default.scss */
#header .humb-list:nth-of-type(2) {
  margin-left: 14%;
}
/* line 306, sass/_default.scss */
#header .humb-list > li:not(:last-child) {
  margin-bottom: 3rem;
}
/* line 310, sass/_default.scss */
#header .humb-list .humb-list-child {
  margin-top: 2rem;
  padding-left: 1.2rem;
  border-left: 0.1rem solid #001c55;
}
/* line 315, sass/_default.scss */
#header .humb-list .humb-list-child li:not(:last-child) {
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 1024px) {
  /* line 323, sass/_default.scss */
  #header {
    padding: 1.8vw 4vw;
  }
  /* line 325, sass/_default.scss */
  #header .logo {
    width: 10%;
  }
  /* line 328, sass/_default.scss */
  #header .head-menu-area {
    width: auto;
  }
  /* line 331, sass/_default.scss */
  #header .head-menu-list {
    display: none;
  }
  /* line 334, sass/_default.scss */
  #header .head-humb-area {
    top: 8vw;
    overflow: scroll;
  }
  /* line 337, sass/_default.scss */
  #header .head-humb-area .inner {
    display: block;
  }
  /* line 341, sass/_default.scss */
  #header .humb-item {
    justify-content: flex-start;
  }
  /* line 343, sass/_default.scss */
  #header .humb-item.humb-top {
    width: 100%;
    margin-bottom: 4vw;
  }
  /* line 347, sass/_default.scss */
  #header .humb-item.humb-sec {
    width: 100%;
    margin-bottom: 4vw;
  }
  /* line 351, sass/_default.scss */
  #header .humb-item.humb-third {
    width: 100%;
  }
  /* line 355, sass/_default.scss */
  #header .humb-list {
    width: 50%;
  }
  /* line 357, sass/_default.scss */
  #header .humb-list:nth-of-type(2) {
    margin-left: 0;
  }
  /* line 361, sass/_default.scss */
  #header .humb-list > li:not(:last-child) {
    margin-bottom: 4vw;
  }
  /* line 365, sass/_default.scss */
  #header .humb-list a {
    font-size: 1.8rem;
  }
  /* line 368, sass/_default.scss */
  #header .humb-list .en {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 375, sass/_default.scss */
  #header {
    padding: 2vw 4vw;
  }
  /* line 377, sass/_default.scss */
  #header .logo {
    width: 18%;
  }
  /* line 380, sass/_default.scss */
  #header .toggle {
    width: 3rem;
  }
  /* line 383, sass/_default.scss */
  #header .head-humb-area {
    top: 5.1rem;
  }
  /* line 387, sass/_default.scss */
  #header .humb-list a {
    font-size: 1.3rem;
  }
  /* line 390, sass/_default.scss */
  #header .humb-list .en {
    font-size: 6.4vw;
  }
  /* line 393, sass/_default.scss */
  #header .humb-list .humb-list-child {
    margin-top: 2vw;
  }
  /* line 396, sass/_default.scss */
  #header .humb-list .humb-list-child li:not(:last-child) {
    margin-bottom: 1vw;
  }
}
/* ------------------------- 
            footer
--------------------------- */
/* line 409, sass/_default.scss */
#footer .top-bnr {
  background: #173c5f;
  padding: 6rem 0;
}
/* line 412, sass/_default.scss */
#footer .top-bnr .bnr-flex {
  justify-content: center;
}
/* line 415, sass/_default.scss */
#footer .top-bnr .bnr-item {
  margin: 0 1rem;
}
/* line 417, sass/_default.scss */
#footer .top-bnr .bnr-item a {
  display: block;
  transition: .3s;
}
/* line 420, sass/_default.scss */
#footer .top-bnr .bnr-item a:hover {
  opacity: .8;
}
/* line 426, sass/_default.scss */
#footer .btm-footer {
  color: #fff;
  padding: 13rem 0 7rem;
  background: #0b121e;
}
/* line 430, sass/_default.scss */
#footer .btm-footer .inner {
  justify-content: center;
  align-items: center;
}
/* line 434, sass/_default.scss */
#footer .btm-footer .footer-symbol {
  width: 22.4%;
  text-align: center;
  margin-right: 4rem;
}
/* line 438, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn {
  margin: 2.6rem 0 1rem;
}
/* line 440, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn a {
  font-size: 2.6rem;
  color: #fff;
  border: 0.1rem solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
/* line 448, sass/_default.scss */
#footer .btm-footer .footer-symbol .tel-btn a .icon {
  margin-right: 1.2rem;
}
/* line 454, sass/_default.scss */
#footer .btm-footer .sns-wrap {
  padding-top: 7rem;
}
/* line 457, sass/_default.scss */
#footer .btm-footer .sns-list {
  justify-content: center;
  align-items: center;
}
/* line 460, sass/_default.scss */
#footer .btm-footer .sns-list li {
  margin: 0 .4rem;
}
/* line 464, sass/_default.scss */
#footer .btm-footer .copy {
  padding-top: 3rem;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
  /* line 472, sass/_default.scss */
  #footer .top-bnr {
    padding: 4vw 0;
  }
  /* line 475, sass/_default.scss */
  #footer .btm-footer {
    padding: 12vw 0 6vw;
  }
  /* line 477, sass/_default.scss */
  #footer .btm-footer .footer-symbol {
    width: 40%;
    margin-right: 4vw;
  }
  /* line 480, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn {
    margin: 2.4vw 0 1vw;
  }
  /* line 482, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn a {
    font-size: 2rem;
  }
  /* line 487, sass/_default.scss */
  #footer .btm-footer .sns-wrap {
    padding-top: 6vw;
  }
  /* line 490, sass/_default.scss */
  #footer .btm-footer .copy {
    padding-top: 3vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 498, sass/_default.scss */
  #footer .top-bnr {
    padding: 8vw 0;
  }
  /* line 501, sass/_default.scss */
  #footer .btm-footer {
    padding: 18vw 0 10vw;
  }
  /* line 503, sass/_default.scss */
  #footer .btm-footer .inner {
    display: block;
  }
  /* line 506, sass/_default.scss */
  #footer .btm-footer .footer-symbol {
    width: 92%;
    margin: 0 auto 10vw;
  }
  /* line 509, sass/_default.scss */
  #footer .btm-footer .footer-symbol .tel-btn {
    width: 80%;
    margin: 8vw auto 4vw;
  }
  /* line 514, sass/_default.scss */
  #footer .btm-footer .footer-info {
    text-align: center;
  }
  /* line 517, sass/_default.scss */
  #footer .btm-footer .sns-wrap {
    padding-top: 10vw;
  }
  /* line 520, sass/_default.scss */
  #footer .btm-footer .copy {
    padding-top: 8vw;
  }
}
/* ------------------------- 
            CTA
--------------------------- */
/* ------------------------- 
        page under_FV
--------------------------- */
/* ------------------------- 
            404
--------------------------- */
@media screen and (max-width: 1024px) {
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
      page under_FV
  --------------------------- */
  /* ------------------------- 
          404
  --------------------------- */
}
@media screen and (max-width: 750px) {
  /* ------------------------- 
          header
  --------------------------- */
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
      page under_FV
  --------------------------- */
}
/* line 9, sass/price.scss */
#page-under.page-price .mainv .mainv-bg {
  background: url(../img/price/mainv-bg.jpg) no-repeat center center/cover;
}
/* line 13, sass/price.scss */
#page-under.page-price .tab {
  justify-content: center;
  position: relative;
  margin-bottom: 10rem;
}
/* line 17, sass/price.scss */
#page-under.page-price .tab::after {
  content: '';
  width: 100%;
  height: .2rem;
  background: #173c5f;
  position: absolute;
  left: 0;
  bottom: 0;
}
/* line 26, sass/price.scss */
#page-under.page-price .tab li {
  width: 50%;
  max-width: 50rem;
  border-bottom: none;
  color: #001c55;
  background: #fff;
  border-top: 0.2rem solid #173c5f;
  border-bottom: 0.2rem solid #173c5f;
  border-left: 0.2rem solid #173c5f;
  border-right: 0.2rem solid #173c5f;
  padding: 1.8rem;
}
/* line 37, sass/price.scss */
#page-under.page-price .tab li::before {
  content: none;
}
/* line 40, sass/price.scss */
#page-under.page-price .tab li.select {
  color: #fff;
  background: #173c5f;
}

/* line 50, sass/price.scss */
.page-price .hide {
  display: none;
}
/* line 53, sass/price.scss */
.page-price .intro {
  margin-bottom: 12rem;
}
/* line 57, sass/price.scss */
.page-price .tab-container {
  max-width: 100rem;
  margin: 0 auto;
}
/* line 61, sass/price.scss */
.page-price .item-ttl {
  color: #001c55;
  background: #e9eef3;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  padding: 1.2rem;
  margin-bottom: 6rem;
}
/* line 70, sass/price.scss */
.page-price .blue {
  color: #001c55;
  font-weight: 600;
}
/* line 74, sass/price.scss */
.page-price .item-exp-wrap {
  margin-bottom: 10rem;
}
/* line 77, sass/price.scss */
.page-price .btn-flex {
  justify-content: center;
  margin-top: 6rem;
}
/* line 80, sass/price.scss */
.page-price .btn-flex .page-btn {
  margin: 0 1rem;
}
/* line 84, sass/price.scss */
.page-price .genre-price {
  width: 100%;
  border: 0.1rem solid #173c5f;
}
/* line 87, sass/price.scss */
.page-price .genre-price th {
  color: #fff;
  background: #173c5f;
  width: 30%;
  font-size: 2.2rem;
  text-align: center;
}
/* line 94, sass/price.scss */
.page-price .genre-price td {
  width: 70%;
}
/* line 97, sass/price.scss */
.page-price .genre-price th, .page-price .genre-price td {
  padding: 1.6rem 3rem;
}
/* line 100, sass/price.scss */
.page-price .genre-price tr:not(:last-of-type) {
  border-bottom: .1rem solid #ccc;
}
/* line 104, sass/price.scss */
.page-price .price-item:not(:last-of-type) {
  margin-bottom: 10rem;
}
/* line 108, sass/price.scss */
.page-price .plan-item:not(:last-of-type) {
  margin-bottom: 5rem;
}
/* line 111, sass/price.scss */
.page-price .plan-item .plan-name-type {
  display: flex;
  align-items: center;
  border-bottom: 0.1rem solid #173c5f;
  margin-bottom: 3rem;
}
/* line 116, sass/price.scss */
.page-price .plan-item .plan-name-type .plan-type {
  width: 16%;
  color: #fff;
  background: #173c5f;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  margin-right: 3rem;
}
/* line 126, sass/price.scss */
.page-price .plan-item .plan-name-type .plan-name {
  color: #173c5f;
  font-size: 2.4rem;
  font-weight: 600;
}
/* line 132, sass/price.scss */
.page-price .plan-item .plan-detail {
  display: flex;
  align-items: flex-end;
}
/* line 135, sass/price.scss */
.page-price .plan-item .plan-detail .plan-menu {
  width: 80%;
}
/* line 138, sass/price.scss */
.page-price .plan-item .plan-detail .price {
  width: 20%;
  text-align: right;
  font-size: 2rem;
  font-weight: 600;
  color: #173c5f;
}
/* line 147, sass/price.scss */
.page-price .care-list {
  padding: 2rem;
  border: 0.1rem solid #173c5f;
  margin-top: 4rem;
}
/* line 151, sass/price.scss */
.page-price .care-list li {
  position: relative;
  padding-left: 1.8rem;
}
/* line 154, sass/price.scss */
.page-price .care-list li::before {
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  background: #001c55;
  border-radius: 10vw;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
/* line 167, sass/price.scss */
.page-price .drink-list {
  flex-flow: wrap;
}
/* line 169, sass/price.scss */
.page-price .drink-list li {
  width: 50%;
  display: flex;
  justify-content: space-between;
  padding: 1.6rem;
  border-top: .1rem solid #ccc;
}
/* line 175, sass/price.scss */
.page-price .drink-list li:nth-last-of-type(-n+2) {
  border-bottom: .1rem solid #ccc;
}
/* line 180, sass/price.scss */
.page-price .item-other {
  margin-bottom: 3rem;
}
/* line 182, sass/price.scss */
.page-price .item-other span {
  color: #fff;
  background: #173c5f;
  font-size: 2.2rem;
  font-weight: 600;
  padding: .2rem 1.8rem;
}
/* line 190, sass/price.scss */
.page-price .payment {
  max-width: 100rem;
  margin: 10rem auto 0;
}
/* line 193, sass/price.scss */
.page-price .payment .pay-img {
  margin-top: 5rem;
}
/* line 197, sass/price.scss */
.page-price .store-info {
  align-items: center;
  justify-content: center;
}
/* line 200, sass/price.scss */
.page-price .store-info .logo {
  margin-right: 4rem;
}
/* line 203, sass/price.scss */
.page-price .store-info .page-btn {
  margin-top: 3rem;
}
/* line 205, sass/price.scss */
.page-price .store-info .page-btn a {
  display: flex;
  align-items: center;
}
/* line 208, sass/price.scss */
.page-price .store-info .page-btn a .icon {
  margin-right: 2rem;
}
/* line 215, sass/price.scss */
.page-price .store-img-slide {
  padding-top: 18rem;
}
/* line 217, sass/price.scss */
.page-price .store-img-slide .splide__track {
  display: flex;
}
/* line 220, sass/price.scss */
.page-price .store-img-slide .splide__slide {
  margin: 0 1.6rem;
}

@media screen and (max-width: 1024px) {
  /* line 228, sass/price.scss */
  #page-under.page-price .tab {
    margin-bottom: 10vw;
  }
  /* line 230, sass/price.scss */
  #page-under.page-price .tab::after {
    content: none;
  }
  /* line 233, sass/price.scss */
  #page-under.page-price .tab li {
    padding: 1.8vw;
  }

  /* line 240, sass/price.scss */
  .page-price .intro {
    margin-bottom: 12vw;
  }
  /* line 243, sass/price.scss */
  .page-price .item-exp-wrap {
    margin-bottom: 10vw;
  }
  /* line 246, sass/price.scss */
  .page-price .item-ttl {
    font-size: 3vw;
    padding: 1.2vw;
    margin-bottom: 6vw;
  }
  /* line 251, sass/price.scss */
  .page-price .btn-flex {
    margin-top: 6vw;
  }
  /* line 255, sass/price.scss */
  .page-price .plan-item:not(:last-of-type) {
    margin-bottom: 5vw;
  }
  /* line 258, sass/price.scss */
  .page-price .plan-item .plan-name-type {
    margin-bottom: 3vw;
  }
  /* line 260, sass/price.scss */
  .page-price .plan-item .plan-name-type .plan-type {
    font-size: 2rem;
    width: 24%;
    margin-right: 3vw;
    padding: 1vw;
  }
  /* line 266, sass/price.scss */
  .page-price .plan-item .plan-name-type .plan-name {
    width: 76%;
    font-size: 2.2rem;
  }
  /* line 272, sass/price.scss */
  .page-price .plan-item .plan-detail .plan-menu {
    width: 75%;
  }
  /* line 275, sass/price.scss */
  .page-price .plan-item .plan-detail .price {
    width: 25%;
    font-size: 1.8rem;
  }
  /* line 281, sass/price.scss */
  .page-price .care-list {
    padding: 3vw;
    margin-top: 4vw;
  }
  /* line 286, sass/price.scss */
  .page-price .genre-price th, .page-price .genre-price td {
    padding: 1.6vw 3vw;
  }
  /* line 289, sass/price.scss */
  .page-price .genre-price th {
    font-size: 1.8rem;
  }
  /* line 294, sass/price.scss */
  .page-price .drink-list li {
    padding: 1.4vw;
  }

  /* line 299, sass/price.scss */
  .store-img-slide {
    padding-top: 18vw;
  }
}
@media screen and (max-width: 750px) {
  /* line 308, sass/price.scss */
  #page-under.page-price .tab li {
    border-top-width: .1rem;
    border-bottom-width: .1rem;
    border-right-width: .1rem;
    border-left-width: .1rem;
  }

  /* line 318, sass/price.scss */
  .page-price .intro {
    margin-bottom: 16vw;
  }
  /* line 321, sass/price.scss */
  .page-price .item-ttl {
    font-size: 4.2vw;
    margin-bottom: 8vw;
  }
  /* line 325, sass/price.scss */
  .page-price .btn-flex {
    display: block;
  }
  /* line 327, sass/price.scss */
  .page-price .btn-flex .page-btn {
    margin: 0 auto 2vw;
  }
  /* line 329, sass/price.scss */
  .page-price .btn-flex .page-btn a {
    display: block;
  }
  /* line 334, sass/price.scss */
  .page-price .item-exp-wrap {
    margin-bottom: 16vw;
  }
  /* line 338, sass/price.scss */
  .page-price .price-item:not(:last-of-type) {
    margin-bottom: 18vw;
  }
  /* line 343, sass/price.scss */
  .page-price .plan-item:not(:last-of-type) {
    margin-bottom: 8vw;
  }
  /* line 347, sass/price.scss */
  .page-price .plan-item .plan-name-type .plan-type {
    width: 28%;
    font-size: 1.6rem;
    margin-right: 4vw;
  }
  /* line 352, sass/price.scss */
  .page-price .plan-item .plan-name-type .plan-name {
    font-size: 1.6rem;
  }
  /* line 356, sass/price.scss */
  .page-price .plan-item .plan-detail {
    display: block;
  }
  /* line 358, sass/price.scss */
  .page-price .plan-item .plan-detail .plan-menu {
    width: 100%;
  }
  /* line 361, sass/price.scss */
  .page-price .plan-item .plan-detail .price {
    width: 100%;
    margin-top: 4vw;
    font-size: 1.6rem;
  }
  /* line 368, sass/price.scss */
  .page-price .care-list {
    margin-top: 10vw;
    padding: 4vw;
  }
  /* line 372, sass/price.scss */
  .page-price .care-list li::before {
    top: .5rem;
    transform: translateY(0);
  }
  /* line 379, sass/price.scss */
  .page-price .genre-price th {
    width: 35%;
    font-size: 1.4rem;
  }
  /* line 383, sass/price.scss */
  .page-price .genre-price td {
    width: 65%;
  }
  /* line 386, sass/price.scss */
  .page-price .genre-price th, .page-price .genre-price td {
    padding: 3vw;
  }
  /* line 390, sass/price.scss */
  .page-price .drink-list {
    display: block;
  }
  /* line 392, sass/price.scss */
  .page-price .drink-list li {
    width: 100%;
    padding: 3.4vw 0;
  }
  /* line 398, sass/price.scss */
  .page-price .item-other span {
    font-size: 1.8rem;
  }
  /* line 403, sass/price.scss */
  .page-price .payment .pay-img {
    margin-top: 6vw;
  }
  /* line 407, sass/price.scss */
  .page-price .store-info {
    display: block;
  }
  /* line 409, sass/price.scss */
  .page-price .store-info .logo {
    width: 60%;
    margin: 0 auto 6vw;
  }
  /* line 414, sass/price.scss */
  .page-price .store-info .page-btn a {
    padding: 3vw 12vw;
    justify-items: center;
  }
  /* line 420, sass/price.scss */
  .page-price .store-img-slide {
    padding-top: 20vw;
  }
  /* line 422, sass/price.scss */
  .page-price .store-img-slide .splide__slide {
    margin: 0 2vw;
  }
}
