@charset "UTF-8";
/* A Modern CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Liter&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://fonts.googleapis.com/css2?family=Liter&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+Display:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --bk: #000;
  --wh: #fff;
  --text-color-dark: #222;
  --accent-color: #84cac6;
  --sub-color: #a8d7d4;
}

@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}
/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: var(--text-color-dark);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
  background-color: #f9f9f7;
  position: relative;
}

.inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
.inner-w {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #222;
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
Slider
==================================================== */
.text-slider {
  overflow: hidden;
  white-space: nowrap;
  margin: 0 0 4rem;
}
@media screen and (max-width: 834px) {
  .text-slider {
    margin: 0 0 3rem;
  }
}
@media screen and (max-width: 640px) {
  .text-slider {
    margin: 0 0 2rem;
  }
}
.text-slider__inner {
  display: inline-block;
  animation: scroll-left 240s linear infinite;
  white-space: nowrap;
}
.text-slider__item {
  display: inline-block;
  font-size: 96px;
  font-family: "Noto Serif Display", serif;
  color: rgba(195, 228, 226, 0.4);
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .text-slider__item {
    font-size: 64px;
  }
}
@media screen and (max-width: 640px) {
  .text-slider__item {
    font-size: 48px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ====================================================
Controller
==================================================== */
.shop__controller {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1300px) {
  .shop__controller {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .shop__controller {
    gap: 0.5rem;
  }
}
.shop__controller-item {
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  padding: 0 5rem;
  border-radius: 100vmax;
  border: 1px solid #c1bfbc;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 16px;
}
@media screen and (max-width: 834px) {
  .shop__controller-item {
    height: 44px;
    font-size: 15px;
  }
}
@media screen and (max-width: 640px) {
  .shop__controller-item {
    height: 40px;
    padding: 0 2.5rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 499px) {
  .shop__controller-item {
    height: 36px;
    padding: 0 1.5rem;
    font-size: 13px;
  }
}
@media screen and (max-width: 376px) {
  .shop__controller-item {
    height: 32px;
    padding: 0 1rem;
    font-size: 12px;
  }
}
.shop__controller-item.active {
  background-color: #84cac6;
  color: var(--wh);
  border: none;
}
.shop__controller-item.active a {
  color: var(--wh);
}
.shop__controller-item:hover {
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .shop__controller .h-roll__link {
    height: 15.5px;
    line-height: 1;
  }
}
@media screen and (max-width: 640px) {
  .shop__controller .h-roll__link {
    line-height: 1.3;
  }
}

.area__controller {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 1300px) {
  .area__controller {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .area__controller {
    gap: 0;
  }
}
.area__controller-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  white-space: nowrap;
  font-size: 20px;
  font-family: "Liter", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .area__controller-item {
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .area__controller-item {
    font-size: 18px;
  }
}
.area__controller-item a.h-roll__link {
  line-height: 1.3;
  height: 22px;
}
.area__controller-item.active {
  color: var(--accent-color);
}
.area__controller-item.active a {
  color: var(--accent-color);
}
.area__controller-item:hover {
  cursor: pointer;
}
.area__controller-item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: var(--text-color-dark);
  transform: rotate(45deg);
  margin-right: 3rem;
}
@media screen and (max-width: 834px) {
  .area__controller-item:not(:last-of-type)::after {
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .area__controller-item:not(:last-of-type)::after {
    margin-right: 1.5rem;
  }
}

/* ====================================================
Pagination
==================================================== */
.pagination {
  font-size: 20px;
  font-family: "Liter", sans-serif;
}

/* ====================================================
Under
==================================================== */
.under .ttl-en {
  font-family: "Liter", sans-serif;
  font-size: 16px;
  position: relative;
  padding-left: 1.2em;
  line-height: 1;
}
.under .ttl-en::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 11px;
  height: 11px;
  background: url(../img/common/ast.webp) no-repeat center/contain;
}

:root {
  --bk: #000;
  --wh: #fff;
  --text-color-dark: #222;
  --accent-color: #84cac6;
  --sub-color: #a8d7d4;
}

@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
.under .price__container {
  margin-top: 5rem;
}
.under .price__content-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row dense;
  grid-auto-rows: min-content;
  align-items: start;
  justify-content: flex-start;
  max-height: none;
  gap: 2rem 6rem;
}
@media screen and (max-width: 1200px) {
  .under .price__content-inner {
    gap: 2rem 3rem;
  }
}
@media screen and (max-width: 834px) {
  .under .price__content-inner {
    flex-wrap: nowrap;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}
.under .price__caution {
  font-size: 12px;
  color: var(--accent-color);
  padding: 12rem 0 1rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .under .price__caution {
    padding: 8rem 0 1rem;
  }
}
@media screen and (max-width: 834px) {
  .under .price__caution {
    padding: 6rem 0 1rem;
  }
}
@media screen and (max-width: 640px) {
  .under .price__caution {
    padding: 5rem 0 1rem;
  }
}
.under .price__table {
  font-size: 14px;
}
.under .price__table-heading {
  font-size: 32px;
  font-family: "Noto Serif Display", serif;
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 834px) {
  .under .price__table-heading {
    font-size: 28px;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .under .price__table-heading {
    padding-bottom: 5px;
    margin-bottom: 1.5rem;
  }
}
.under .price__table table {
  width: 100%;
  border: none;
}
.under .price__table th,
.under .price__table td {
  border: none;
}
.under .price__table td:nth-of-type(1) {
  width: calc(100% - 100px);
}
@media screen and (max-width: 640px) {
  .under .price__table td:nth-of-type(1) {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
.under .price__table td:nth-of-type(2) {
  width: 100px;
  font-family: "Liter", sans-serif;
}
@media screen and (max-width: 640px) {
  .under .price__table td:nth-of-type(2) {
    display: block;
    width: 100%;
    text-align: right;
    padding-top: 0;
  }
}
.under .price__table-block {
  width: 100%;
  padding-top: 6rem;
}
@media screen and (max-width: 1200px) {
  .under .price__table-block {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .under .price__table-block {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .under .price__table-block {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 499px) {
  .under .price__table-block {
    padding-top: 2rem;
  }
}/*# sourceMappingURL=price.css.map */