@charset "UTF-8";
/*ブレイクポイントを設定*/
/* noto-sans-jp-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v53-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v53-latin-500.woff2") format("woff2");
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v53-latin-700.woff2") format("woff2");
}
/* shippori-mincho-b1-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Shippori Mincho B1";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/shippori-mincho-b1-v22-latin-500.woff2") format("woff2");
}
/* PTsans-regular - latin */
@font-face {
  font-display: swap;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/pt-sans-v17-latin-regular.woff2") format("woff2");
}
/* PTsans-700 - latin */
@font-face {
  font-display: swap;
  font-family: "PT Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/pt-sans-v17-latin-700.woff2") format("woff2");
}
/* color */
.ifc {
  color: white;
}

.white {
  color: white;
}

.blue {
  color: #083057;
}

.blue2 {
  color: #89d6ff;
}

.red {
  color: #e04925;
}

.red2 {
  color: rgb(98, 12, 6);
}

.green {
  color: #47f27c;
}

.yellow {
  color: #faf8e5;
}

.acc {
  color: #ffc465;
}

.bgwh {
  background: white;
}

.bgblu {
  background: #083057;
}

.bgblu2 {
  background: #ccd2e0;
}

.bgred {
  background: #e04925;
}

.bggre {
  background: #47f27c;
}

.bgyel {
  background: #faf8e5;
}

.bgba {
  background: #faf8e5;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  position: relative;
  overflow: hidden;
  color: #0e0606;
  background: white;
  width: 100%;
  font-family: "noto sans JP", sans-serif;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch; /* iOSで慣性復活！ */
}
body.open {
  height: 100vh;
}
@media screen and (max-width: 591px) {
  body {
    font-size: 14px;
  }
}

.btnimg {
  display: block;
  width: min(80%, 480px);
  margin: auto;
  border-radius: 35px;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  height: auto;
  font-size: clamp(10px, 2vw, 20px);
}
.btnimg::before {
  content: "";
  display: block;
  position: absolute;
  width: 2em;
  height: 2em;
  background: url(../img/top/icon_btn.webp) no-repeat center center/contain;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
}
.btnimg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.9em;
  background: url(../img/top/btn_deco.webp) no-repeat center center/contain;
  top: -3em;
  left: 50%;
  transform: translateX(-50%);
}
.btnimg img {
  height: auto;
}

.btn {
  position: relative;
  width: min(90%, 280px);
  height: 65px;
  color: white;
  background: #0e0606;
  border: 1px solid white;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  display: grid;
  place-content: center;
  padding: 12px;
  margin: auto;
  transition: 0.2s;
}
.btn:after {
  content: "";
  display: block;
  width: 27px;
  height: 20px;
  background: url(../img/common/btn_arrow.svg) no-repeat center center/contain;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media screen and (max-width: 1000px) {
  .btn:after {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}
.btn:link {
  color: white;
}
.btn:visited {
  color: white;
}
.btn:hover {
  background: #1a1a1a;
  color: #0e0606;
  border: 1px solid #777;
  opacity: 1;
}
.btn:hover:after {
  transform: translate(8px, -50%);
  background: url(../img/common/btn_arrow_w.svg) no-repeat center center/contain;
}
.btn p {
  text-align: center;
}
.btn p.w-ch {
  font-family: "Noto Serif SC", serif;
  font-family: 400;
}
.btn p.w-ko {
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
}
@media screen and (max-width: 591px) {
  .btn {
    height: 45px;
  }
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

p {
  color: #0e0606;
  text-align: left;
}

.f18 {
  font-size: clamp(15px, 1.8vw, 18px);
  text-align: left;
  width: min(95%, 860px);
}

/*リンク表示方法*/
a {
  text-decoration: none;
}

a:link {
  color: #0e0606;
}

a:visited {
  color: #0e0606;
}

a:active {
  color: #0e0606;
}

a:hover {
  opacity: 0.7;
}
a:hover img {
  opacity: 1;
}

:has(> .lista) {
  position: relative;
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

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

.grid {
  display: grid;
  grid-template-columns: center;
}

.i-text {
  display: inline-block;
}

.bold {
  font-weight: 700;
}

section:has(> .inner.mar) {
  padding: min(10%, 120px) 0;
}

.active1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .active1200 {
    display: block;
  }
}

.active1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .active1000 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active768 {
  display: none;
}
@media screen and (max-width: 767px) {
  .active768 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active591 {
  display: none;
}
@media screen and (max-width: 591px) {
  .active591 {
    display: block;
  }
}

.active414 {
  display: none;
}
@media screen and (max-width: 414px) {
  .active414 {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .vanish1200 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 1000px) {
  .vanish1000 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 767px) {
  .vanish768 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

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

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

/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/
.pc,
.pc2 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc,
  .pc2 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

.sp,
.sp2,
.spTel {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp,
  .sp2,
  .spTel {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.pcTel {
  display: inline;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/
h2,
h3,
h4,
h5 {
  display: inline-block;
  line-height: 1.25;
}

.titwrap {
  text-align: center;
  margin: 3em auto;
}
@media screen and (max-width: 591px) {
  .titwrap {
    margin-bottom: 2em;
  }
}

.mainTit {
  font-size: clamp(14px, 1.8vw, 18px);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: normal;
  font-family: "noto sans JP", sans-serif;
}

.mainTit .en {
  font-size: clamp(30px, 6vw, 60px);
  display: block;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.mincho {
  font-family: "Shippori Mincho B1", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-style: normal;
  font-weight: 500;
}

.en {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.jp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/*-----------------------------------------------------------
モーダル
-----------------------------------------------------------*/
#modal {
  display: none;
}

/*-----------------------------------------------------------
ページトップ
-----------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 245px;
  right: 25px;
  z-index: 999;
  background: #1a1a1a;
  width: 60px;
  height: 60px;
  border-radius: 3px;
  transform: rotate(-90deg);
}
#pageTop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 591px) {
  #pageTop {
    display: none !important;
  }
}

/*-----------------------------------------------------------
スクロールバー
-----------------------------------------------------------*/
.scroll-pane {
  width: 100% !important;
  height: 300px; /*箱の高さ*/
  margin: 40px auto 0;
  overflow-y: auto;
}
.scroll-pane:focus {
  outline: none;
}

.cross {
  position: absolute;
  top: 15px; /* トップからの距離 */
  right: 40px; /* 右からの距離 */
  width: 25px; /* バツマークの幅 */
  height: 25px; /* バツマークの高さ */
  opacity: 0.7; /* 透明度 */
  cursor: pointer; /* マウスオーバー時のカーソルをポインターに */
  z-index: 1000;
}
.cross::before, .cross::after {
  position: absolute;
  left: 11px;
  content: " ";
  height: 25px; /* バツマークの高さ */
  width: 2px; /* バツマークの線の太さ */
  background-color: white; /* バツマークの色 */
}
.cross::before {
  transform: rotate(45deg);
}
.cross::after {
  transform: rotate(-45deg);
}
.modal-container-term,
.modal-container-discontinuation,
.modal-container-premium {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  display: none;
  transition: 1s;
}
.modal-container-term.active,
.modal-container-discontinuation.active,
.modal-container-premium.active {
  opacity: 1;
  display: table;
}
.modal-container-term .modal-background,
.modal-container-discontinuation .modal-background,
.modal-container-premium .modal-background {
  width: 100%;
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}
.modal-container-term .modal-background .modal,
.modal-container-discontinuation .modal-background .modal,
.modal-container-premium .modal-background .modal {
  position: relative;
  background: #281329;
  max-width: 800px;
  width: 95%;
  max-height: 80vh;
  margin-bottom: 2rem;
  padding: 50px;
  display: inline-block;
  border-radius: 3px;
  font-size: 1.3rem;
  font-weight: 300;
  position: relative;
  text-align: left;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .modal-container-term .modal-background .modal,
  .modal-container-discontinuation .modal-background .modal,
  .modal-container-premium .modal-background .modal {
    padding: 15px;
  }
  .modal-container-term .modal-background .modal h2,
  .modal-container-discontinuation .modal-background .modal h2,
  .modal-container-premium .modal-background .modal h2 {
    font-size: 1.3rem;
  }
  .modal-container-term .modal-background .modal h4,
  .modal-container-discontinuation .modal-background .modal h4,
  .modal-container-premium .modal-background .modal h4 {
    font-size: 1.2rem;
  }
}
.modal-container-term .modal-background .modal h2,
.modal-container-discontinuation .modal-background .modal h2,
.modal-container-premium .modal-background .modal h2 {
  font-size: clamp(17px, 2.3vw, 23px);
  font-weight: 600;
}
.modal-container-term .modal-background .modal h4,
.modal-container-discontinuation .modal-background .modal h4,
.modal-container-premium .modal-background .modal h4 {
  font-size: 1.2rem;
  line-height: 25px;
  margin-bottom: 5px;
  margin-top: 10px;
}
.modal-container-term .modal-background .modal p,
.modal-container-discontinuation .modal-background .modal p,
.modal-container-premium .modal-background .modal p {
  font-size: 1rem;
  line-height: 22px;
  padding: 1rem 0;
}
.modal-container-term .modal-background .modal li,
.modal-container-discontinuation .modal-background .modal li,
.modal-container-premium .modal-background .modal li {
  font-size: 1rem;
  margin-left: 1rem;
}
.modal-container-term .modal-background .modal .modal-svg,
.modal-container-discontinuation .modal-background .modal .modal-svg,
.modal-container-premium .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}
.modal-container-term .modal-background .modal .modal-svg rect,
.modal-container-discontinuation .modal-background .modal .modal-svg rect,
.modal-container-premium .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;
}
.modal-container-term .modal-background .modal .close-area,
.modal-container-discontinuation .modal-background .modal .close-area,
.modal-container-premium .modal-background .modal .close-area {
  position: relative;
  width: 100%;
  height: 30px;
  content: "";
  display: block;
}
.modal-container-term .update-memo,
.modal-container-discontinuation .update-memo,
.modal-container-premium .update-memo {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid white;
  font-size: 0.7rem;
}

.cancel-wrap {
  position: relative;
  background: #2a2a2a;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 2em;
  max-height: 80vh;
  overflow: scroll;
  display: inline-block;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .cancel-wrap {
    width: 90vw;
  }
  .cancel-wrap .scroll {
    width: 100%;
    margin: 0 auto;
    overflow-x: scroll;
  }
  .cancel-wrap .scroll table {
    width: 100%;
    min-width: 600px;
  }
  .cancel-wrap .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .cancel-wrap .scroll::-webkit-scrollbar-track {
    background-color: #d5d3d3;
  }
  .cancel-wrap .scroll::-webkit-scrollbar-thumb {
    background-color: #bd4c69;
  }
}
.cancel-wrap h2 {
  font-size: clamp(15px, 2.3vw, 23px);
  font-weight: bold;
  color: white;
}
.cancel-wrap .space {
  font-size: clamp(13px, 1.6vw, 16px);
  color: white;
  text-align: left;
}
.cancel-wrap .box {
  padding: 0.5em; /*内側余白*/
  border-radius: 50px; /*丸みを調整*/
  color: white;
  font-weight: bold;
  width: 100%;
  display: flex;
  line-height: 1;
  margin-top: 2rem;
  justify-content: center;
}
.cancel-wrap .box .subtitle {
  position: relative;
  text-align: center;
  padding: 0rem 2rem;
  font-size: 1.8rem;
  color: white;
}
@media screen and (max-width: 768px) {
  .cancel-wrap .box .subtitle {
    font-size: 1.2rem;
  }
}
.cancel-wrap .box .fontsize {
  font-size: clamp(12px, 1.4vw, 14px);
  align-self: flex-end;
}
.cancel-wrap .box.blue {
  background-color: #008fce; /*背景の色*/
}
.cancel-wrap .box.green {
  background-color: #67af1d; /*背景の色*/
}
.cancel-wrap .box.red {
  background-color: #bd4c69; /*背景の色*/
}
.cancel-wrap .box.deepblue {
  background-color: #006f83; /*背景の色*/
}
.cancel-wrap .table {
  position: relative;
  margin: 3px auto;
  width: 100%;
}
.cancel-wrap .table tr:first-child th:not(:last-child) {
  border-right: solid 2px #231716;
}
.cancel-wrap .table tr:not(:first-child) th {
  border-bottom: solid 2px #231716;
}
.cancel-wrap .table tr:last-child th {
  border-bottom: solid 2px #f8f8f8 !important;
}
.cancel-wrap .table th {
  text-align: center;
  padding: 0.5em;
  background-color: #d3949b;
  color: #232323;
}
.cancel-wrap .table th.none {
  background-color: transparent;
  border: none !important;
}
.cancel-wrap .table th.top {
  padding: 0.5em;
}
.cancel-wrap .table th.border {
  border: none;
}
.cancel-wrap .table td {
  text-align: center;
  border: solid 2px #f8f8f8;
  padding: 0.5em;
  background-color: #c65e70;
  position: relative;
  color: #f8f8f8;
}
.cancel-wrap .table td p {
  display: inline-block;
}
.cancel-wrap .table td .check-one {
  position: relative;
  color: #ffc465;
  font-weight: 700;
}
.cancel-wrap .table td .check-one::after {
  position: absolute;
  content: "※1";
  top: 0;
  right: 0;
  transform: translateX(100%);
  font-size: 0.8rem;
  vertical-align: top;
  color: orange;
}
.cancel-wrap .table td .check-two {
  position: relative;
}
.cancel-wrap .table td .check-two::after {
  position: absolute;
  content: "※2";
  top: 0;
  right: 0;
  transform: translateX(100%);
  font-size: 0.8rem;
  vertical-align: top;
  color: orange;
}
.cancel-wrap .table td .check-three {
  position: relative;
}
.cancel-wrap .table td .check-three::after {
  position: absolute;
  content: "※3";
  top: 0;
  right: 0;
  transform: translateX(100%);
  font-size: 0.8rem;
  vertical-align: top;
  color: orange;
}
.cancel-wrap .table td .complement {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .cancel-wrap .table td .complement {
    font-size: 0.8rem;
  }
}
.cancel-wrap .table td span {
  font-size: 1rem;
  vertical-align: top;
  color: red;
}
.cancel-wrap .table td.none {
  position: relative;
  text-align: center;
}
.cancel-wrap .table td.none::after {
  width: 50%;
  height: 50%;
  content: "";
  border-bottom: 1px #f8f8f8 solid;
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}
.cancel-wrap .table .float-box {
  position: relative;
  width: 100%;
}
.cancel-wrap .table .float-box .float {
  position: absolute;
  font-size: clamp(12px, 1.4vw, 14px);
  width: 40%;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
  background-color: #b33b5d;
  padding: 0.1rem 1rem;
  color: white;
  border: none;
  white-space: nowrap;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 591px) {
  .cancel-wrap .table .float-box .float {
    top: 5.5em;
  }
}
.cancel-wrap .table .float-box2 {
  position: relative;
}
.cancel-wrap .table .float-box2 .float {
  position: absolute;
  font-size: clamp(12px, 1.4vw, 14px);
  width: 40%;
  top: 50%;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -50%);
  background-color: #b33b5d;
  padding: 0.1rem 1rem;
  color: white;
  border: none;
  white-space: nowrap;
  padding: 0.3em 0.5em;
}
@media screen and (max-width: 591px) {
  .cancel-wrap .table .float-box2 .float {
    top: 5.5em;
  }
}
.cancel-wrap .text2 {
  margin-top: 3em;
  font-size: 1rem;
  color: #f8f8f8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .cancel-wrap .text2 {
    font-size: 10px;
  }
}
.cancel-wrap .title-black {
  text-align: center;
  color: rgb(29, 29, 29);
  font-size: 30px;
  margin: 3em 0em 0em;
}
@media screen and (max-width: 768px) {
  .cancel-wrap .title-black {
    font-size: 20px;
    margin: 1em 0em 0em;
  }
}
.cancel-wrap video {
  width: 960px;
  height: 550px;
  margin: 1em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cancel-wrap video {
    height: 250px;
    margin: 5px 5px 20px;
  }
}
.cancel-wrap .check-area {
  display: flex;
  justify-content: center;
}

.premium-wrap {
  width: 95%;
  height: 90%;
  max-width: 480px;
  margin: 0 auto;
  overflow-y: scroll;
}
.premium-wrap img {
  width: 100%;
}

.price-attention {
  overflow-x: hidden;
}
.price-attention .price-attention__content ul {
  padding: 0;
  margin-left: 1rem;
}
.price-attention .price-attention__content ul li {
  list-style: none;
  margin: 8px 0 0 0.5em;
  text-indent: -1.1em;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.price-attention .price-attention__content ul li::before {
  content: "※";
  font-size: 0.8rem;
  margin-right: 0.5em;
  color: #d3949b;
  vertical-align: middle;
}
.price-attention .price-attention__content ul li.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  padding-bottom: 0;
}
.price-attention .price-attention__content .more-btn {
  position: relative;
  z-index: 5;
  margin-top: 0.5rem;
  width: 100%;
  text-align: right;
  background-color: inherit;
  color: #fff;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  height: 32px;
  line-height: 32px;
}
.price-attention .price-attention__content .more-btn.is-btn-hidden {
  display: none !important;
}
.price-attention .price-attention__term {
  display: flex;
  column-gap: 4rem;
  justify-content: center;
  color: #ffc465;
  margin-top: 2rem;
  padding: 1.7rem 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.price-attention .price-attention__term a {
  color: #ffc465;
}
.price-attention .price-attention__term a:link, .price-attention .price-attention__term a:hover, .price-attention .price-attention__term a:visited {
  color: #ffc465;
}
.price-attention .price-attention__term .modal-btn {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ffc465;
  transition: 0.5s;
}
.price-attention .price-attention__term .modal-btn:hover {
  cursor: pointer;
  color: white;
}
.price-attention .price-attention__term .modal-btn:after {
  display: inline-block;
  content: ">";
  padding-left: 0.5rem;
}
@media screen and (max-width: 591px) {
  .price-attention .price-attention__term {
    font-size: clamp(12px, 1.3vw, 13px);
    line-height: 1;
    column-gap: 1.5em;
  }
  .price-attention .price-attention__term .modal-btn {
    border-bottom: none;
  }
}
@media screen and (max-width: 414px) {
  .price-attention .price-attention__term {
    flex-direction: column;
    padding: 1em 0;
  }
}
/*# sourceMappingURL=maps/modal.css.map */
