@charset "UTF-8";
/*===========================
変数設定
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap");
html {
  font-size: 62.5%; /* ルートのフォントサイズを10pxに設定 */
  font-family: "Lato", "Helvetica Neue", Arial, "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

body {
  font-size: 1.6rem; /* bodyのフォントサイズを1.6em（16px）に設定 */
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h1 {
  font-size: 5rem; /* 50px */
}

h2 {
  font-size: 2rem; /* 32px */
  font-weight: bold;
  font-family: "ABeeZee";
  text-align: center;
  margin: 5% 0;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 3rem;
    margin: 5% 0;
  }
}

h3 {
  font-size: 2rem; /* 20px */
}

p {
  font-size: 1.6rem; /* 16px */
}

.wrapper {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

img {
  width: 100%;
  height: auto;
}

.bold {
  font-weight: bold;
}

.cetenr {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.underline {
  text-decoration: underline;
}

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

.pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pc {
    display: inline;
  }
}


footer {
  text-align: center;
  background: #333;
  color: #666666;
  font-weight: normal;
  letter-spacing: 0.1em;
  padding: 4% 0 6%;
  font-size: 1.2rem;
}
@media only screen and (min-width: 768px) {
  footer {
    font-size: 0.7rem;
    padding: 2% 0 4%;
  }
}

header {
  height: 70px;
  background: #fff;
  z-index: 1000;
  position: sticky;
  top: 0;
}
header h1 {
  max-width: 600px;
  width: 100%;
}
header h1 img {
  position: fixed;
  top: 22px;
  left: 54px;
  width: 80px;
}
@media only screen and (min-width: 768px) {
  header h1 img {
    width: 85px;
  }
}
header ul li {
  font-family: "Lato", "Noto Sans JP", sans-serif;
}
header .nav_sns {
  text-align: right;
}
header .nav_sns ul {
  position: fixed;
  top: 23px;
  right: 10px;
  width: 120px;
}
@media only screen and (min-width: 768px) {
  header .nav_sns ul {
    width: 400px;
  }
}
header .nav_sns ul li {
  display: inline;
  width: 40%;
}
header .nav_sns ul li img {
  width: 22px;
  margin: 0 4%;
}
@media only screen and (min-width: 768px) {
  header .nav_sns ul li img {
    width: 26px;
    margin: 0 1%;
  }
}
header .menu-btn {
  position: fixed;
  top: 15px;
  left: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: none;
}
header .menu-btn span,
header .menu-btn span:before,
header .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}
header .menu-btn span:before {
  bottom: 8px;
}
header .menu-btn span:after {
  top: 8px;
}
header #menu-btn-check {
  display: none;
}
header #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
header #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #fff;
}
header #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}
header .menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3584bb;
}
header .menu-content .menu_list ul {
  padding: 70px 10px 0;
}
header .menu-content .menu_list ul li a {
  display: block;
  width: 90%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 40px 10px;
  position: relative;
}
header .menu-content .menu_list ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
header .menu-content {
  max-width: 100%;
  width: 280px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #333333;
}
header #menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}
header .arrow-up-right {
  display: inline-block;
  width: 7%;
  height: auto;
  margin: 0 10% 0.5%;
  vertical-align: middle;
}
header .menu-reserve {
  text-align: center;
  color: #fff;
  padding: 4% 0;
}
header .menu-reserve h3 {
  font-size: 1.2rem;
  margin-top: 8%;
}
header .menu-reserve ul {
  padding: 2% auto;
}
header .menu-reserve li {
  border: #fff solid 1px;
  margin: 4% 16%;
  padding: 4% 0;
  line-height: 1;
}

.main_visual {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding-top: 120%;
}
@media only screen and (min-width: 768px) {
  .main_visual {
    padding-top: 50%;
  }
}
.main_visual .box {
  position: absolute;
  width: 50%;
  height: 0;
  border: solid 3px #333;
  margin: 0 auto;
  padding-top: 47%;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -55%);
}
@media only screen and (min-width: 768px) {
  .main_visual .box {
    width: 25%;
    height: 0;
    padding-top: 25%;
  }
}
.main_visual .box img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_visual figcaption {
  font-size: 1.2rem;
  padding: 0 2%;
  letter-spacing: 0.4em;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .main_visual figcaption {
    font-size: 1.2vw;
  }
}
.main_visual .main_visual01 {
  text-align: right;
  width: 60%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .main_visual .main_visual01 {
    width: 36%;
    top: 0;
    right: 5%;
  }
}
.main_visual .cap01 {
  padding: 1% 1% 0;
}
.main_visual .main_visual02 {
  text-align: left;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .main_visual .main_visual02 {
    width: 50%;
    bottom: 3%;
    left: 0;
  }
}
@media only screen and (min-width: 768px) {
  .main_visual .main_visual02 {
    width: 26%;
    bottom: 0;
    right: 19%;
  }
}
.main_visual .cap02 {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .main_visual .cap02 {
    top: -20px;
    left: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .main_visual .cap02 {
    transform: rotate(270deg);
    bottom: 21%;
    left: -22%;
    padding: 2%;
  }
}
.main_visual .main_visual03 {
  text-align: right;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .main_visual .main_visual03 {
    width: 42%;
    bottom: -6%;
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .main_visual .main_visual03 {
    width: 30%;
    top: 8%;
    left: 0;
  }
}
.main_visual .cap03 {
  transform: rotate(270deg);
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .main_visual .cap03 {
    bottom: 55px;
    left: -77px;
  }
}
@media only screen and (min-width: 768px) {
  .main_visual .cap03 {
    top: 10%;
    right: -28%;
    padding: 2%;
  }
}

.v_line {
  margin: 20% auto 0;
  width: 2px;
  height: 50px;
  background: #333;
}
@media only screen and (min-width: 768px) {
  .v_line {
    margin: 5% auto 0;
  }
}

.hair_gallary {
  margin-bottom: 10%;
  padding: 5% 0;
}
@media only screen and (min-width: 768px) {
  .hair_gallary {
    padding: 0 0 8%;
    margin-bottom: 0;
  }
}
.hair_gallary .wrapper {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .hair_gallary .wrapper {
    max-width: 800px;
  }
}
.hair_gallary ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .hair_gallary ul {
    flex-wrap: nowrap;
  }
}
.hair_gallary li {
  width: 45%;
  margin: 1%;
}

.stylist {
  background: #EDEDED;
  padding: 5% 0;
  width: 95%;
}
@media only screen and (min-width: 768px) {
  .stylist {
    width: 100%;
    padding: 1% 0 8%;
  }
}
@media only screen and (min-width: 768px) {
  .stylist ul {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .stylist li {
    width: 35%;
  }
}
.stylist figure {
  display: flex;
  flex-wrap: wrap;
  margin: 5% 5% 5% 10%;
  justify-content: left;
}
@media only screen and (min-width: 768px) {
  .stylist figure {
    justify-content: center;
    margin: 0;
  }
}
.stylist figure img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .stylist figure img {
    width: 140px;
    height: 140px;
  }
}
.stylist figure figcaption {
  width: 30%;
  display: flex;
  margin-left: 5%;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .stylist figure figcaption {
    margin-left: 10%;
    font-size: 2rem;
  }
}
.stylist figure figcaption .stylist_name02 {
  padding: 5% 0;
}

.menu {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .menu .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.menu .v_line {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .menu .v_line {
    top: -5%;
  }
}
.menu ul {
  display: flex;
  width: 70%;
  padding-top: 20%;
  margin: 0 10% 0 auto;
}
@media only screen and (min-width: 768px) {
  .menu ul {
    width: 50%;
    margin: 0 0 0 auto;
    justify-content: right;
    padding-top: 10%;
  }
}
.menu li {
  margin-left: 4%;
}
@media only screen and (min-width: 768px) {
  .menu li {
    width: 30%;
  }
}
.menu li:first-child {
  margin-top: 16%;
}
@media only screen and (min-width: 768px) {
  .menu li:first-child {
    margin-top: 10%;
  }
}
.menu .btn_area {
  margin: 0 10% 0 auto;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .menu .btn_area {
    width: 50%;
    margin: 0 0 0 0;
    text-align: left;
    padding-left: 5%;
  }
}
.menu .menu_ttl {
  font-size: 2rem;
  font-weight: bold;
  font-family: "ABeeZee";
  margin: 5% 0 2%;
}
@media only screen and (min-width: 768px) {
  .menu .menu_ttl {
    font-size: 3rem;
  }
}
.menu .button {
  display: inline-block;
  border: solid 1px #333;
  padding: 2% 0;
  position: relative;
  outline: none;
  max-width: 300px;
  width: 60%;
}
@media only screen and (min-width: 768px) {
  .menu .button {
    max-width: 100%;
    width: 60%;
  }
}
.menu .button a {
  display: block;
  font-size: 1.8rem;
  text-align: center;
}
.menu .button:after {
  position: absolute;
  content: "→";
  display: inline-block;
  font-size: 1rem;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
}

.blog {
  padding: 13% 0;
}
@media only screen and (min-width: 768px) {
  .blog {
    padding: 1% 0 8%;
  }
}
.blog .flex_box {
  margin: 0 10% 0 auto;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .blog .flex_box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .blog .blog_img {
    order: 2;
    width: 50%;
  }
}
.blog .blog_img img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .blog .blog_img img {
    width: 80%;
  }
}
@media only screen and (min-width: 768px) {
  .blog .btn_area {
    width: 50%;
    padding-right: 5%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.blog .button {
  display: inline-block;
  border: solid 1px #333;
  padding: 2% 0;
  position: relative;
  outline: none;
  max-width: 300px;
  width: 60%;
  margin: 3% 0 0 5%;
}
@media only screen and (min-width: 768px) {
  .blog .button {
    max-width: 100%;
    width: 60%;
    margin: 0;
  }
}
.blog .button a {
  display: block;
  font-size: 1.8rem;
  text-align: center;
}
.blog .button:after {
  position: absolute;
  content: "→";
  display: inline-block;
  font-size: 1rem;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
}

.reserve {
  margin-bottom: 13%;
}
.reserve .wrapper {
  color: #fff;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .reserve .wrapper {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  .reserve .reserve_flex {
    display: flex;
    position: relative;
  }
}
.reserve h2 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 0;
  margin: 2% 0 0;
  font-size: 1.6rem;
  z-index: 1;
}
.reserve dl {
  width: 100%;
  background: #333;
  padding: 8% 5%;
}
@media only screen and (min-width: 768px) {
  .reserve dl {
    width: 50%;
    order: 2;
    padding: 5%;
  }
}
.reserve dt {
  font-weight: normal;
  font-size: 1.2rem;
}
.reserve dd {
  display: inline-block;
  margin-right: 4%;
}
.reserve dd img {
  width: 25px;
  color: #fff;
}
.reserve .tel {
  font-size: 2rem;
}
.reserve .web_reserve {
  margin: 5% auto 2%;
}
.reserve .reserve_img {
  width: 100%;
  order: 1;
}
@media only screen and (min-width: 768px) {
  .reserve .reserve_img {
    width: 50%;
  }
}

.info {
  background: #333;
  color: #fff;
  padding: 8% 0;
}
@media only screen and (min-width: 768px) {
  .info {
    padding: 5% 0 0;
  }
}
.info .wrapper {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .info .wrapper {
    max-width: 1140px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .info .flex_box {
    display: flex;
    justify-content: center;
  }
}
.info .inner {
  width: 80%;
  margin: 5% auto;
}
@media only screen and (min-width: 768px) {
  .info .inner {
    width: 40%;
    margin: 5% 0 5% 10%;
  }
}
.info h2:after {
  content: "ヘアーサロン レア";
  font-size: 1rem;
  display: block;
}
.info dd {
  font-size: 1.2rem;
  margin-bottom: 5%;
}
.info dd:last-of-type {
  margin-bottom: 15%;
}
.info .tel {
  font-size: 1.8rem;
  line-height: 1;
}
.info .googlemap {
  position: relative;
  height: 0;
  padding-bottom: 100%; /* 縦横比の指定 */
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .info .googlemap {
    padding-bottom: 40%; /* 縦横比の指定 */
    margin: 0 5%;
  }
}
@media only screen and (max-width: 767px) {
  .info .googlemap iframe,
  .info .googlemap object,
  .info .ggooglemap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* ポップアップここから------------------------------------------  */
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  align-self: center;
  width: 92%;
  max-width: 800px;
  padding: 10% 4% 5%;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  height: auto;
  overflow: scroll;
}
@media only screen and (min-width: 768px) {
  .popup_content {
    padding: 6% 4%;
  }
}

.close_btn {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
}

.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn {
  color: #fff;
}

.popup_dl {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.6;
}
.popup_dl dt {
  margin-bottom: 5%;
  padding-bottom: 2%;
  text-align: center;
  font-size: 1.5rem;
  border-bottom: solid #333 1px;
}
.popup_dl dd {
  font-weight: normal;
  margin-bottom: 5%;
}
.popup_dl dd:last-child {
  margin-top: 10%;
}

.stylist .open_btn {
  color: #333;
}

.stylist_area .popup_wrap input {
  display: none;
}
.stylist_area .popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.stylist_area .popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.stylist_area .popup_content {
  position: relative;
  align-self: center;
  width: 92%;
  max-width: 800px;
  padding: 10% 4% 5% 6%;
  box-sizing: border-box;
  background: rgba(51, 51, 51, 0.9);
  line-height: 1.4em;
  transition: 0.5s;
  height: auto;
  overflow: scroll;
}
@media only screen and (min-width: 768px) {
  .stylist_area .popup_content {
    padding: 5%;
  }
}
.stylist_area .close_btn {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}
.stylist_area .popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.stylist_area .popup_profile {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .stylist_area .popup_profile {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 5%;
  }
}
@media only screen and (min-width: 768px) {
  .stylist_area .popup_profile .flex_box_inner {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 5%;
  }
}
.stylist_area .popup_profile img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 10%;
}
.stylist_area .popup_profile .stylist_name {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: left;
  color: #fff;
  margin-bottom: 2%;
}
.stylist_area .popup_profile .stylist_prifile {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .stylist_area .popup_profile .stylist_prifile {
    justify-content: left;
  }
}
@media only screen and (min-width: 768px) {
  .stylist_area .popup_profile dt {
    width: 30%;
  }
}
.stylist_area .popup_profile dd {
  font-size: 1.4rem;
  margin-bottom: 10%;
}
@media only screen and (min-width: 768px) {
  .stylist_area .popup_profile dd {
    margin-bottom: 0;
  }
}
.stylist_area .popup_profile .name {
  font-size: 3rem;
  margin-bottom: 1%;
  line-height: 1.1;
  letter-spacing: 0.2em;
}
.stylist_area .popup_profile .stylist_note {
  margin: 7% 0;
}

/* ポップアップココまで ------------------------------------------ */
/*Menu.htmlここから ------------------------------------------ */
.menu_main_visual {
  max-width: 100%;
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding-top: 90%;
}
@media only screen and (min-width: 768px) {
  .menu_main_visual {
    max-width: 100%;
    width: 100%;
    padding-top: 50%;
  }
}
.menu_main_visual .menu_h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.menu_main_visual .box {
  position: absolute;
  width: 50%;
  height: 0;
  border: solid 3px #333;
  margin: 0 auto;
  padding-top: 47%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -55%);
}
@media only screen and (min-width: 768px) {
  .menu_main_visual .box {
    width: 25%;
    height: 0;
    padding-top: 25%;
  }
}
.menu_main_visual figcaption {
  font-size: 1.2vw;
  padding: 0 2%;
  letter-spacing: 0.4em;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .menu_main_visual figcaption {
    font-size: 1.2vw;
  }
}
.menu_main_visual .main_visual01 {
  text-align: right;
  width: 60%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .menu_main_visual .main_visual01 {
    width: 36%;
    top: 0;
    right: 5%;
  }
}

.price .wrapper {
  max-width: 500px;
  width: 82%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .price .wrapper {
    max-width: 800px;
  }
}
@media only screen and (min-width: 768px) {
  .price .block {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}
.price h3 {
  font-size: 1.6rem;
  margin: 4% 0 6%;
}
@media only screen and (min-width: 768px) {
  .price h3 {
    width: 20%;
    margin: 0 10% 0 0;
    line-height: 1.2;
  }
}
.price table {
  font-size: 1.2rem;
  table-layout: fixed;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .price table {
    font-size: 1.4rem;
    width: 80%;
  }
}
.price tr {
  line-height: 1.5;
}
.price td {
  padding-bottom: 5%;
}
.price td:first-of-type {
  table-layout: fixed;
  width: 70%;
}
.price td:last-of-type {
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .price td:last-of-type {
    padding-right: 5%;
    table-layout: fixed;
    width: 30%;
  }
}
.price .note {
  font-size: 1.2rem;
  padding: 3% 0 5%;
}
@media only screen and (min-width: 768px) {
  .price .note {
    position: absolute;
    width: 75%;
    bottom: -30%;
    right: 0;
    padding: 0 3%;
  }
}
.price hr {
  margin: 6% 0 8%;
}
@media only screen and (min-width: 768px) {
  .price hr {
    width: 75%;
    margin-left: auto;
    margin-top: 5%;
  }
}
.price hr:nth-of-type(3) {
  margin-top: 5%;
}
@media only screen and (min-width: 768px) {
  .price hr:nth-of-type(3) {
    margin-top: 15%;
  }
}
.price hr:last-of-type {
  margin-bottom: 20%;
}
@media only screen and (min-width: 768px) {
  .price hr:last-of-type {
    margin-bottom: 15%;
  }
}/*# sourceMappingURL=main.css.map */