@charset "UTF-8";
/*
  現時点最強のflex-box 要素横並び
  必ず親要素に「display: flex;」「flex-wrap: wrap;」を指定すること！！！
  タブレットの時はPCと同じ数
  flex(PCのときの個数, 縦横の間隔, タブレットのときの個数, 縦横の間隔, スマホのときの個数, 縦横の間隔)
*/
/*
  px から vw に変換
  @param: $size 変換前のサイズ(px) $std_width 基本となるViewPort
*/
/*
  背景画像 縦横比保ったまま縮む
  背景画像（background-image）は自分で指定してね
*/
/*
  天地中央
*/
/*
  ブラウザハック
  特定のブラウザだけでCSSを使うときのやつ 万が一の時用
*/
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 600;
  src: url("../webfonts/NotoSerifJP-SemiBold.woff") format("woff"), url("../webfonts/NotoSerifJP-SemiBold.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Gen Jyuu Gothic";
  font-style: normal;
  font-weight: 100;
  src: url("../webfonts/GenJyuuGothic-ExtraLight.woff") format("woff"), url("../webfonts/GenJyuuGothic-ExtraLight.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gen Jyuu Gothic";
  font-style: normal;
  font-weight: 200;
  src: url("../webfonts/GenJyuuGothic-Light.woff") format("woff"), url("../webfonts/GenJyuuGothic-Light.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gen Jyuu Gothic";
  font-style: normal;
  font-weight: 300;
  src: url("../webfonts/GenJyuuGothic-Medium.woff") format("woff"), url("../webfonts/GenJyuuGothic-Medium.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gen Jyuu Gothic";
  font-style: normal;
  font-weight: 500;
  src: url("../webfonts/GenJyuuGothic-Bold.woff") format("woff"), url("../webfonts/GenJyuuGothic-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Gen Jyuu Gothic";
  font-style: normal;
  font-weight: 900;
  src: url("../webfonts/GenJyuuGothic-Heavy.woff") format("woff"), url("../webfonts/GenJyuuGothic-Heavy.ttf") format("truetype");
  font-display: swap;
}

/* common
---------------------------------------------------------------------------- */
html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1406px) {
  html {
    font-size: 10px;
    font-size: 0.71124vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
    font-size: 2.66667vw;
  }
}

main {
  font-size: 1.6rem;
  background-image: url(../images/common/main_img_upper.svg);
  background-repeat: no-repeat;
  background-position-x: 50%;
  background-size: 344rem;
}

@media screen and (max-width: 768px) {
  main {
    background-position: 59% -0.6rem;
    background-size: 146rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1519px) {
  html {
    font-size: 10px;
    font-size: 0.65833vw;
  }
}

main {
  padding: 24.7rem 0 21.4rem 0;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 9rem;
    padding-bottom: 10rem;
  }
}

.kv {
  text-align: center;
}

.kv__ill {
  display: inline-block;
  width: 30.1rem;
  margin: 8rem 0 2.5rem 2em;
}

@media screen and (max-width: 768px) {
  .kv__ill {
    width: 15.4rem;
    margin: 2rem 0 0 0;
  }
}

.kv__ttl {
  font-size: 3.9rem;
  color: #ad8a78;
  text-align: center;
  background-image: url(../images/common/h1_back02.svg);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  padding-bottom: 6.8rem;
  background-size: 344rem;
  letter-spacing: 0.5rem;
}

@media screen and (max-width: 768px) {
  .kv__ttl {
    font-size: 2rem;
    background-image: url(../images/common/h1_back01SP.svg);
    background-position: 50% 100%;
    padding-bottom: 3.8rem;
    background-size: 100%;
    letter-spacing: 0.2rem;
  }
}

.price {
  position: relative;
  overflow: hidden;
}

.price__inner {
  max-width: 783px;
  margin: 68px auto 0 auto;
}

@media screen and (max-width: 768px) {
  .price__inner {
    width: 90%;
  }
}

.price section {
  position: relative;
  background-color: #99dcd0;
  border-radius: 0 35px 0 0;
  margin: 0 0 0 auto;
  width: 706px;
  padding: 20px 23px 17px 23px;
  margin-bottom: 92px;
}

@media screen and (max-width: 768px) {
  .price section {
    width: 100%;
    margin-bottom: 4.2rem;
    padding: 1.3rem 2rem 0 2rem;
  }
}

.price h2 {
  position: absolute;
  top: 0;
  left: -72px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 22px;
  font-weight: 400;
  color: #99dcd0;
  letter-spacing: -5px;
  border: solid 4px #99dcd0;
  width: 59px;
  line-height: 2.3em;
  padding: 14px 0 20px 0;
  border-radius: 22px 0 0 0;
}

@media screen and (max-width: 768px) {
  .price h2 {
    display: none;
  }
}

.price h3 {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 22px;
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .price h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
}

.price h4 {
  color: #fff;
  background-color: #99dcd0;
  font-weight: 300;
  font-size: 17px;
  text-align: center;
  display: inline-block;
  padding: 7px 40px 4px 42px;
  border-radius: 13px 0 0 0;
}

@media screen and (max-width: 768px) {
  .price h4 {
    font-size: 1.3rem;
    padding: 0.6rem 2.8rem 0.3rem 3rem;
  }
}

.price__box {
  background-color: #fff;
  border-radius: 0 15px 0 0;
  padding: 20px 30px;
}

@media screen and (max-width: 768px) {
  .price__box {
    padding: 2rem 1rem 0.1rem 1rem;
  }
}

.price__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.price__list::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #99dcd0;
  width: 100%;
  height: 3px;
  border-radius: 2px 2px 0 0;
}

@media screen and (max-width: 768px) {
  .price__list::after {
    height: 0.3rem;
    border-radius: 0.3rem;
  }
}

.price__item {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  min-height: 44px;
  padding: 3px 0 8px 0;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .price__item {
    font-size: 1.45rem;
  }
}

@media screen and (max-width: 768px) {
  .price__item:nth-of-type(1) {
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  .price__item:nth-of-type(2) {
    width: 65%;
  }
}

.price__item--twoS {
  width: 204px;
  height: 100px;
  padding-top: 38px;
}

@media screen and (max-width: 768px) {
  .price__item--twoS {
    height: 7.5rem;
    padding-top: 2.2rem;
  }
}

.price__item--twoM {
  width: 385px;
  height: 100px;
  padding-top: 22px;
}

@media screen and (max-width: 768px) {
  .price__item--twoM {
    height: 7.5rem;
    padding-top: 1.2rem;
  }
}

.price__item--threeS {
  width: 140px;
}

.price__item--threeM {
  width: 200px;
}

.price__item--threeL {
  width: 240px;
}

@media screen and (max-width: 768px) {
  .price__item--sp:nth-of-type(1) {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .price__item--sp:nth-of-type(2) {
    width: 30%;
  }
}

.price__item--line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #99dcd0;
  width: 3px;
  height: 100%;
  border-radius: 2px 2px 0 0;
}

@media screen and (max-width: 768px) {
  .price__item--line::after {
    width: 0.3rem;
    border-radius: 0.3rem 0.3rem 0 0;
  }
}

.price__item--small {
  font-size: 13px;
  display: contents;
}

@media screen and (max-width: 768px) {
  .price__item--small {
    font-size: 1rem;
  }
}

.price__line {
  position: relative;
  background-color: #99dcd0;
  width: 100%;
  height: 3px;
  border-radius: 2px 2px 0 0;
  margin-bottom: 14px;
}

@media screen and (max-width: 768px) {
  .price__line {
    height: 0.3rem;
    border-radius: 0.3rem;
  }
}

.price__read {
  position: absolute;
  bottom: 6px;
  right: 73px;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .price__read {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.1;
    right: 1rem;
  }
}

.price__balloon {
  position: absolute;
  top: -37px;
  left: 6px;
}

@media screen and (max-width: 768px) {
  .price__balloon {
    width: 8rem;
  }
}

.price__coutionBox {
  padding: 15px 15px;
}

@media screen and (max-width: 768px) {
  .price__coutionBox {
    padding: 1.5rem 1rem;
  }
}

.price__coutionItem {
  font-size: 14px;
  margin-bottom: 6px;
  padding-left: 0.8em;
  text-indent: -0.8em;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .price__coutionItem {
    font-size: 1.1rem;
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
}

.price__coutionItem::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 6px;
  height: 6px;
  margin: 0 5px 2px 0;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .price__coutionItem::before {
    opacity: 0.4;
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 0.8rem 0 0;
  }
}

.price__sttl {
  position: relative;
  font-size: 1.45rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 0.6rem;
}

.price__sttl::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #99dcd0;
  width: 100%;
  height: 3px;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .price__sttl::after {
    height: 0.3rem;
    border-radius: 0.3rem;
  }
}

.price__bbqh2 {
  position: absolute;
  top: 0;
  left: -72px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 60px;
}

@media screen and (max-width: 768px) {
  .price__bbqh2 {
    display: none;
  }
}

.price__menuUL {
  position: relative;
}

@media screen and (max-width: 768px) {
  .price__menuUL {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.price__menu {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  min-height: 44px;
  padding: 3px 0 8px 0;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .price__menu {
    font-size: 1.45rem;
    width: 100%;
  }
}

.price__menu--line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #99dcd0;
  width: 3px;
  height: 100%;
  border-radius: 2px 2px 0 0;
}

@media screen and (max-width: 768px) {
  .price__menu--line::after {
    display: none;
  }
}

.price__menu:nth-of-type(1) {
  padding-bottom: 0;
}

.price__menuWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.price__menuName {
  margin-left: 55px;
  width: 140px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .price__menuName {
    width: 11.8rem;
    margin-left: 6rem;
  }
}

.price__menuName span {
  font-size: 13px;
}

.price__menuPrice {
  width: 67px;
  text-align: right;
  margin-right: 37px;
}

@media screen and (max-width: 768px) {
  .price__menuPrice {
    width: 5.6rem;
    margin-right: 4.2rem;
  }
}

.price__dotted {
  background-image: url("/images/price/price_dotted.svg");
  background-repeat: no-repeat;
  background-position: 70% 50%;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .price__dotted {
    display: none;
  }
}

.price__sales {
  position: absolute;
  top: 2px;
  left: 414px;
  width: 79px;
  height: 79px;
}

@media screen and (max-width: 768px) {
  .price__sales {
    left: 21rem;
    top: 2.5rem;
    width: 5.7rem;
    height: 5.7rem;
  }
}

.price__recom {
  position: absolute;
  top: 1px;
  left: -14px;
  width: 61px;
  height: 25px;
}

@media screen and (max-width: 768px) {
  .price__recom {
    width: 6rem;
    top: 0.1rem;
    left: -0.6rem;
  }
}

.price__turi h4 {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .price__turi h4 {
    margin-top: 3rem;
  }
}

.price__yamame01 {
  top: 66px;
  right: -46px;
}

.price__yamame02 {
  top: 454px;
  left: -46px;
}

.price__yamame03 {
  top: 1204px;
  right: -40px;
}

.price__yamame04 {
  top: 1342px;
  left: 54px;
}

.price__yamame05 {
  top: 2140px;
  right: 7px;
}

.price__yamame06 {
  top: 2369px;
  left: -6px;
}

.price__yamame07 {
  top: 2969px;
  right: -101px;
}

@media screen and (max-width: 768px) {
  .icn__yamame {
    display: none;
  }
}
