@charset "UTF-8";

/*! assets/css/style */
/* ↑にはビルド生成されるファイル名（拡張子を除く）を下記ルールで記載してください */
/* 
	・コメントアウト最初には ! を付けてください（/*! ...）
	・プロジェクトルート（vite.configの"base"、このリポジトリのTOPページとなるHTMLファイルの場所）からの相対パス
	例: assets/css/style
	→ <outDir(dist)>/<base>/assets/css/style.css として排出される
*/
body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

p,
dl,
dt,
dd {
  color: #36404B;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.bg_container {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #f4f4f4 70%, #F8F8F8 100%);
}

@media (max-width: 768px) {
  .bg_container {
    padding: 3rem 0;
  }
}

.title-42 {
  font-size: clamp(26px, 4.1015625vw, 42px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .title-42 {
    font-size: 26px;
  }
}

.title-36 {
  font-size: clamp(24px, 3.515625vw, 36px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .title-36 {
    font-size: 24px;
  }
}

.title-30 {
  font-size: clamp(24px, 2.9296875vw, 30px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .title-30 {
    font-size: 24px;
  }
}

.title-24 {
  font-size: clamp(20px, 2.34375vw, 24px);
  font-weight: 600;
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .title-24 {
    font-size: 20px;
  }
}

.fz-28 {
  font-size: 28px !important;
}

.fz-22 {
  font-size: 22px !important;
}

.fz-18 {
  font-size: clamp(18px, 1.7578125vw, 18px);
}

@media screen and (max-width: 1024px) {
  .fz-18 {
    font-size: 18px;
  }
}

.fz-16 {
  font-size: clamp(16px, 1.5625vw, 16px);
}

@media screen and (max-width: 1024px) {
  .fz-16 {
    font-size: 16px;
  }
}

.fz-14 {
  font-size: clamp(14px, 1.3671875vw, 14px);
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .fz-14 {
    font-size: 14px;
  }
}

.fz-12 {
  font-size: clamp(12px, 1.171875vw, 12px);
  line-height: 1.6em;
}

@media screen and (max-width: 1024px) {
  .fz-12 {
    font-size: 14px;
  }
}

.fz-10 {
  font-size: 10px !important;
  line-height: 1.6em;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.text-black {
  color: #36404b !important;
}

.text-white {
  color: #fff !important;
}

.text-gray {
  color: #596a7d !important;
}

.text-red {
  color: #f34b4b !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/* ホバー */
a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  justify-content: end;
}

.bluelink {
  position: relative;
  color: #094c97;
  border-bottom: 1px solid #094c97;
  padding-right: 0.6em;
  font-size: small;
  font-weight: 500;
}

.bluelink::after {
  content: '';
  width: 7px;
  height: 7px;
  display: block;
  border-top: solid 2px #094c97;
  border-right: solid 2px #094c97;
  transform: rotate(45deg);
  position: absolute;
  bottom: 30%;
  right: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .bluelink {
    font-size: small;
  }
}

.mt-0 {
  margin-top: 0px !important;
}

@media screen and (max-width: 1024px) {
  .mt-0 {
    margin-top: 0px !important;
  }
}

.mb-0 {
  margin-bottom: 0px !important;
}

@media screen and (max-width: 1024px) {
  .mb-0 {
    margin-bottom: 0px !important;
  }
}

.ml-0 {
  margin-left: 0px !important;
}

@media screen and (max-width: 1024px) {
  .ml-0 {
    margin-left: 0px !important;
  }
}

.mr-0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 1024px) {
  .mr-0 {
    margin-right: 0px !important;
  }
}

.m-4 {
  margin: 4px !important;
}

@media screen and (max-width: 1024px) {
  .m-4 {
    margin: 4px !important;
  }
}

.mt-4 {
  margin-top: 4px !important;
}

@media screen and (max-width: 1024px) {
  .mt-4 {
    margin-top: 4px !important;
  }
}

.mb-4 {
  margin-bottom: 4px !important;
}

@media screen and (max-width: 1024px) {
  .mb-4 {
    margin-bottom: 4px !important;
  }
}

.ml-4 {
  margin-left: 4px !important;
}

@media screen and (max-width: 1024px) {
  .ml-4 {
    margin-left: 4px !important;
  }
}

.mr-4 {
  margin-right: 4px !important;
}

@media screen and (max-width: 1024px) {
  .mr-4 {
    margin-right: 4px !important;
  }
}

.m-8 {
  margin: 8px !important;
}

@media screen and (max-width: 1024px) {
  .m-8 {
    margin: 8px !important;
  }
}

.mt-8 {
  margin-top: 8px !important;
}

@media screen and (max-width: 1024px) {
  .mt-8 {
    margin-top: 8px !important;
  }
}

.mb-8 {
  margin-bottom: 8px !important;
}

@media screen and (max-width: 1024px) {
  .mb-8 {
    margin-bottom: 8px !important;
  }
}

.ml-8 {
  margin-left: 8px !important;
}

@media screen and (max-width: 1024px) {
  .ml-8 {
    margin-left: 8px !important;
  }
}

.mr-8 {
  margin-right: 8px !important;
}

@media screen and (max-width: 1024px) {
  .mr-8 {
    margin-right: 8px !important;
  }
}

.m-16 {
  margin: 16px !important;
}

@media screen and (max-width: 1024px) {
  .m-16 {
    margin: 16px !important;
  }
}

.mt-16 {
  margin-top: 16px !important;
}

@media screen and (max-width: 1024px) {
  .mt-16 {
    margin-top: 16px !important;
  }
}

.mb-16 {
  margin-bottom: 16px !important;
}

@media screen and (max-width: 1024px) {
  .mb-16 {
    margin-bottom: 16px !important;
  }
}

.ml-16 {
  margin-left: 16px !important;
}

@media screen and (max-width: 1024px) {
  .ml-16 {
    margin-left: 16px !important;
  }
}

.mr-16 {
  margin-right: 16px !important;
}

@media screen and (max-width: 1024px) {
  .mr-16 {
    margin-right: 16px !important;
  }
}

.m-24 {
  margin: 24px !important;
}

@media screen and (max-width: 1024px) {
  .m-24 {
    margin: 24px !important;
  }
}

.mt-24 {
  margin-top: 24px !important;
}

@media screen and (max-width: 1024px) {
  .mt-24 {
    margin-top: 24px !important;
  }
}

.mb-24 {
  margin-bottom: 24px !important;
}

@media screen and (max-width: 1024px) {
  .mb-24 {
    margin-bottom: 24px !important;
  }
}

.ml-24 {
  margin-left: 24px !important;
}

@media screen and (max-width: 1024px) {
  .ml-24 {
    margin-left: 24px !important;
  }
}

.mr-24 {
  margin-right: 24px !important;
}

@media screen and (max-width: 1024px) {
  .mr-24 {
    margin-right: 24px !important;
  }
}

.m-32 {
  margin: 32px !important;
}

@media screen and (max-width: 1024px) {
  .m-32 {
    margin: 32px !important;
  }
}

.mt-32 {
  margin-top: 32px !important;
}

@media screen and (max-width: 1024px) {
  .mt-32 {
    margin-top: 32px !important;
  }
}

.mb-32 {
  margin-bottom: 32px !important;
}

@media screen and (max-width: 1024px) {
  .mb-32 {
    margin-bottom: 32px !important;
  }
}

.ml-32 {
  margin-left: 32px !important;
}

@media screen and (max-width: 1024px) {
  .ml-32 {
    margin-left: 32px !important;
  }
}

.mr-32 {
  margin-right: 32px !important;
}

@media screen and (max-width: 1024px) {
  .mr-32 {
    margin-right: 32px !important;
  }
}

.m-40 {
  margin: 40px !important;
}

@media screen and (max-width: 1024px) {
  .m-40 {
    margin: 40px !important;
  }
}

.mt-40 {
  margin-top: 40px !important;
}

@media screen and (max-width: 1024px) {
  .mt-40 {
    margin-top: 40px !important;
  }
}

.mb-40 {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 1024px) {
  .mb-40 {
    margin-bottom: 40px !important;
  }
}

.ml-40 {
  margin-left: 40px !important;
}

@media screen and (max-width: 1024px) {
  .ml-40 {
    margin-left: 40px !important;
  }
}

.mr-40 {
  margin-right: 40px !important;
}

@media screen and (max-width: 1024px) {
  .mr-40 {
    margin-right: 40px !important;
  }
}

.m-64 {
  margin: 64px !important;
}

@media screen and (max-width: 1024px) {
  .m-64 {
    margin: 56px !important;
  }
}

.mt-64 {
  margin-top: 64px !important;
}

@media screen and (max-width: 1024px) {
  .mt-64 {
    margin-top: 56px !important;
  }
}

.mb-64 {
  margin-bottom: 64px !important;
}

@media screen and (max-width: 1024px) {
  .mb-64 {
    margin-bottom: 56px !important;
  }
}

.ml-64 {
  margin-left: 64px !important;
}

@media screen and (max-width: 1024px) {
  .ml-64 {
    margin-left: 56px !important;
  }
}

.mr-64 {
  margin-right: 64px !important;
}

@media screen and (max-width: 1024px) {
  .mr-64 {
    margin-right: 56px !important;
  }
}

.pt-104 {
  padding-top: 104px !important;
}

@media screen and (max-width: 1024px) {
  .pt-104 {
    padding-top: 72px !important;
  }
}

.pb-104 {
  padding-bottom: 104px !important;
}

@media screen and (max-width: 1024px) {
  .pb-104 {
    padding-bottom: 72px !important;
  }
}

.bluelink:hover::after {
  right: -0.5em;
}

.bluelink:hover {
  border-bottom: 1px solid transparent;
}

.btn {
  transition: background 300ms;
  border: 1px solid #094c97;
  background: #094c97;
}

.btn:hover {
  background: #147bd1;
}

.btn,
.btn-second,
.btn-cta {
  display: block;
  position: relative;
  border-radius: 4px;
  line-height: 1em;
  cursor: pointer;
  color: #fff !important;
  padding: 16px 20px;
  width: 288px;
  font-size: clamp(16px, 1.5625vw, 16px);
}

@media screen and (max-width: 1024px) {

  .btn,
  .btn-second,
  .btn-cta {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {

  .btn,
  .btn-second,
  .btn-cta {
    text-align: center;
    width: 100%;
    padding: 18px 20px;
  }
}

.btn::after,
.btn-second::after,
.btn-cta::after {
  content: '';
  width: 7px;
  height: 7px;
  display: block;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
}

.btn-cta {
  display: block;
  position: relative;
  border-radius: 4px;
  line-height: 1em;
  cursor: pointer;
  color: #fff !important;
  padding: 16px 20px;
  width: 288px;
  font-size: clamp(16px, 1.5625vw, 16px);
  margin: 32px auto 0;
  text-align: left;
}

.btn-cta {
  z-index: 1;
  border: 1px solid #ff7b23;
  background: #ff7b23;
  box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.15);
  font-weight: 600;
}

.btn-cta::before {
  width: 100%;
  height: 100%;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 300ms;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff7b23 0%, #f34b4b 100%);
}

.btn-cta:hover::before {
  opacity: 0;
}

.btn-cta::after {
  content: '';
  width: 7px;
  height: 7px;
  display: block;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
}

.btn-l {
  padding: 16px 20px;
  width: 360px;
}

.m-auto {
  margin: auto;
}

.btn-second {
  transition: background 300ms;
  color: #094c97 !important;
  border: 1px solid #094c97;
  background: #fff;
  margin: auto;
  margin-top: 64px;
  font-weight: 500;
  text-align: left;
}

.btn-second::after {
  border-color: #094c97;
}

.btn-second:hover {
  background: #e5f5fd;
}

@media screen and (min-width: 768px) {
  .btn-l {
    width: 360px;
  }
}

@media screen and (max-width: 767px) {
  .btn-l {
    width: 100%;
    max-width: 320px;
    margin: 32px auto 0;
    font-size: 3.5vw;
  }
}

.header {
  background-color: #231816;
  height: 75px;
  left: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 5000;
}

.header__inner {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1920px;
  padding-left: 0.9375rem;
  width: 100%;
}

.header__name {
  margin-right: auto;
}

.header__logo-img {
  width: 10.75rem;
}

.header__nav {
  height: inherit;
}

.header__items {
  align-items: center;
  display: flex;
  height: inherit;
  justify-content: end;
}

.header__item {
  display: inline-block;
  /* height: inherit; */
  transition: transform 0.3s ease-in-out;
}

.header__item:last-child {
  margin: 0 0.6rem;
  width: 15rem;
}

@media (any-hover: hover) {
  .header__item:hover {
    transform: scale(0.9);
  }
}

.header__item .btn-cta {
  margin: 0;
  width: 100%;
}

.header__link {
  align-items: center;
  color: #000000;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  height: inherit;
  justify-content: center;
  padding: 0.625rem 1.25rem;
}

.header__link--contact {
  background-color: #FF370D;
  color: #FFFFFF;
  font-size: 1.125rem;
  padding: 0.625rem 1.5rem 0.625rem 0.625rem;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .header__link--contact:hover {
    opacity: 0.7;
  }
}

.header__link.md-none {
  color: #FFFFFF;
  position: relative;
}

.header__link.md-none::after {
  content: '';
  width: 8px;
  height: 8px;
  display: block;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(135deg);
  position: absolute;
  bottom: 40%;
  right: 5px;
  transition: all 0.3s ease;
  z-index: 10;
}

@media (max-width: 768px) {
  .header {
    height: 50px;
  }

  .header__inner {
    padding-left: 0.3125rem;
  }

  .header__logo-img {
    width: 7.125rem;
  }

  .header__link--contact {
    font-size: 0.6875rem;
  }

  .header__link.md-none {
    display: none;
  }

  .header__item .btn-cta {
    margin: 0;
    font-size: 14px;
    padding: 5%;
  }
}

@media (max-width: 480px) {
  .header__item:last-child {
    width: 12rem;
  }
}

.l-mv {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-mv__inner {
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* .no-webp  */
.l-mv__inner {
  background-image: url("/portal/omakase/assets/images/common/mv_bg_pc.png");
}

/* .webp  */
.l-mv__inner {
  background-image: url("/portal/omakase/assets/images/common/mv_bg_pc.webp");
}

.l-mv__content {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1920px;
}

.l-mv__content img {
  height: 100%;
  object-fit: scale-down;
  transform: translateX(-0.3%);
}

.l-mv__title {
  position: absolute;
  top: 15px;
  left: 24px;
  font-size: min(1.5vw, 0.875rem);
  font-size: min(1.5dvw, 0.875rem);
  display: inline-block;
  overflow: hidden;
  font-weight: normal;
  color: #36404B;
}

.l-mv__title>span {
  display: block;
  margin-right: -0.05em;
  letter-spacing: 0.05em;
}

.mv-l-title {
  position: absolute;
  top: 31%;
  left: 9%;
  letter-spacing: 3px;
  font-size: 60px;
  font-weight: bold;
  color: #ED1B24;
  text-shadow: 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff;
}

.mv-l-title span {
  font-size: 170%;
  font-weight: 800;
}

.mv-l-title-2 {
  position: absolute;
  top: 15%;
  left: 11%;
  font-size: 1.8rem;
  font-weight: 100;
  display: inline-block;
  overflow: hidden;
  color: #383838;
  padding-bottom: 45px;
}

.mv-l-title-2 span {
  font-weight: 800;
  font-size: 150%;
}

.mv-l-title-2:after {
  content: "";
  background-image: url(/portal/omakase/assets/images/common/title_underline.svg);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: -70px;
}

.omakase-content {
  position: absolute;
  font-weight: 900;
  color: #fff;
  top: 70%;
  font-size: 120%;
}

.internet {
  left: 15.3%;
}

.tell {
  left: 29%;
}

.cashless {
  left: 38%;
}

.regi {
  left: 12%;
  top: 93%;
}

.camera {
  left: 23%;
  top: 93%;
}

.bgm {
  left: 34.7%;
  top: 93%;
}

.energy {
  left: 46%;
  top: 93%;
}

@media (max-width: 1920px) {
  .mv-l-title {
    font-size: 3.2vw;
  }

  .mv-l-title-2 {
    font-size: 1.5vw;
  }

  .mv-l-title-2:after {
    bottom: -65%;
  }

  .l-mv__inner {
    background-size: contain;
  }

  .omakase-content {
    font-size: 1vw;
  }
}

.l-mv__merits {
  position: absolute;
  top: min(75%, 520px);
  left: 0;
  right: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 206px);
  gap: 0 8px;
  width: fit-content;
  height: auto;
}

.l-mv__merit {
  display: grid;
  position: relative;
  grid-template-columns: auto 1fr;
  gap: 8px 5px;
  align-items: start;
  padding: 25px 8px 12px 14px;
  background-color: #E6F7FF;
  outline: 8px solid rgb(255, 255, 255);
  outline-offset: -4px;
  outline-width: 1px;
}

.l-mv__merit::before {
  content: "";
  grid-row: 1/3;
  display: block;
  width: 30px;
  height: 24px;
  background: no-repeat left top/contain url("/portal/omakase/assets/images/common/mv_check.svg");
}

.l-mv__merit dt {
  color: #35ADEB;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.1428572;
}

.l-mv__merit dd {
  font-size: 1.0625rem;
  line-height: 1.5294118;
}

.l-mv__download.c-download {
  margin-top: max(-24vw + 200px, -96px);
  margin-top: max(-24dvw + 200px, -96px);
  bottom: -75px;
  margin-bottom: 5rem;
}

.merit_01::after,
.merit_02::after,
.merit_03::after,
.merit_04::after {
  content: "";
  position: absolute;
  display: block;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 45px;
}

.merit_01::after {
  background: no-repeat left top/contain url("/portal/omakase/assets/images/common/merit_01_icon.svg");
}

.merit_02::after {
  background: no-repeat left top/contain url("/portal/omakase/assets/images/common/merit_02_icon.svg");
}

.merit_03::after {
  background: no-repeat left top/contain url("/portal/omakase/assets/images/common/merit_03_icon.svg");
}

.merit_04::after {
  background: no-repeat left top/contain url("/portal/omakase/assets/images/common/merit_04_icon.svg");
}

@media (max-width: 1024px) {
  .l-mv__merits {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 6px;
    width: 76%;
  }

  /* .l-mv__merit {
    padding: 12px 8px;
  } */
  .l-mv__merit::before {
    width: 23px;
    height: 18px;
  }

  .l-mv__merit dt {
    font-size: 1.0625rem;
    line-height: 1;
  }

  .l-mv__merit dd {
    font-size: 0.875rem;
  }

  .l-mv__download.c-download {
    margin-top: max(-32vw + 200px, -64px);
    margin-top: max(-32dvw + 200px, -64px);
  }
}

@media (max-width: 768px) {

  /* .no-webp  */
  .l-mv__inner {
    background-image: none;
  }

  /* .webp  */
  /* .l-mv__inner {
    background-image: url("/portal/omakase/assets/images/common/mv_bg_sp.webp");
  } */

  .l-mv__content {
    width: min(100%, 1280px);
    height: 100%;
  }

  .l-mv__content img {
    height: 100%;
    object-fit: scale-down;
    transform: none;
  }

  .l-mv__title {
    display: none;
  }

  .mv-l-title-2 {
    font-size: 4.2vw;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }

  .mv-l-title-2 span {
    font-size: 110%;
  }

  .mv-l-title {
    font-size: 14.5vw;
    letter-spacing: 0px;
    line-height: 115%;
    top: 20%;
    left: 51%;
    transform: translateX(-50%);
    width: 90%;
    text-shadow: 0px 0px 15px #fff, 0px 0px 15px #fff, 0px 0px 15px #fff, 0px 0px 15px #fff;
  }

  .mv-l-title span {
    font-size: 100%;
  }

  .omakase-content {
    font-size: 3.3vw;
  }

  .internet {
    left: 13.3%;
    top: 68.5%;
  }

  .tell {
    left: 46%;
    top: 71%;
  }

  .cashless {
    left: 64%;
    top: 68.5%;
  }

  .regi {
    left: 13%;
    top: 89%;
  }

  .camera {
    left: 34%;
    top: 92.7%;
  }

  .bgm {
    left: 56.7%;
    top: 89%;
  }

  .energy {
    left: 80%;
    top: 92.7%;
  }

  .l-mv__merits {
    top: 66.719611%;
    /* grid-template-columns: repeat(2, 1fr);
    gap: 2.6666667vw 0;
    gap: 2.6666667dvw 0;
    width: 100%; */
    padding: 2.9333334% 4% 2.4%;
    /* background-color: #E6F7FF; */
    grid-template-columns: repeat(2, 50%);
    gap: 40px 8px;
    width: 80%;
  }

  .l-mv__merit {
    /* gap: 0 1.3333334vw;
    gap: 0 1.3333334dvw;
    align-items: center;
    padding: 0;
    background-color: transparent; */
    padding: 10% 17%;
  }

  .l-mv__merit::before {
    /* grid-row: 1/2;
    width: 6.1333334vw;
    width: 6.1333334dvw;
    height: 4.8vw; */
    height: 4.8dvw;
  }

  .l-mv__merit dt {
    /* color: #383838;
    font-size: 5.3333334vw;
    font-size: 5.3333334dvw; */
    line-height: 1.5;
    font-size: 85%;
  }

  .l-mv__merit dd {
    font-size: 75%;
  }

  .l-mv__download.c-download {
    margin-bottom: 2rem;
  }

  .l-mv .l-mv__download.c-download {
    margin-top: -8rem;
  }
}

@media (max-width: 480px) {

  .l-mv__merits {
    top: 70.719611%;
    width: 94%;
  }

  .l-mv__merit {
    padding: 14% 10% 7%;
  }

  .l-mv__merit dt {
    font-size: 3.8vw;
    line-height: 1.2;
  }

  .l-mv__merit dd {
    font-size: 75% !important;
  }

  .l-mv__download.c-download {
    margin-top: min(-14dvw + 102px, 32px) !important;
    margin-bottom: 2rem;
  }

  .c-download.l-mv__download a {
    width: 120%;
  }

  .l-mv .c-download.l-mv__download a {
    width: 110%;
  }

  .plan .l-mv__download.c-download {
    bottom: -25px;
  }

  .mv-l-title-2:after {
    top: 50%;
  }
}

/* .footer {
  display: grid;
  align-content: end;
  margin-top: max(-12vw + 152px, 0px);
  margin-top: max(-12dvw + 152px, 0px);
  height: 138px;
  padding-bottom: 1rem;
  background-color: #000000;
  position: relative;
}
.footer__download.c-download {
  position: absolute;
  top: -98px;
  left: 0;
  right: 0;
}
.footer__copyright {
  color: #FFFFFF;
  display: block;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.454;
}
@media (max-width: 768px) {
  .footer {
    margin-top: min(-20vw + 76px, 0px);
    margin-top: min(-20dvw + 76px, 0px);
    height: 114px;
  }
  .footer__download.c-download {
    top: -73px;
  }
  .footer__copyright {
    font-size: 0.5625rem;
    line-height: 1.444;
  }
} */

.c-download {
  display: grid;
  gap: 0.375rem 0;
  justify-items: center;
  margin: 0 auto;
  width: fit-content;
  padding: 0 1.25rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  /* bottom: -75px; */
}

.c-download h2 {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0 0.875rem;
  align-items: center;
  font-weight: 700;
  font-size: 1.75rem;
  color: #596A7D;
}

.c-download h2::before,
.c-download h2::after {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 2.125rem;
  border-radius: 0.1875rem;
  background-color: currentColor;
}

.c-download h2::before {
  transform: rotateZ(-28deg);
}

.c-download h2::after {
  transform: rotateZ(28deg);
}

.c-download a {
  display: block;
  width: min(100%, 620px);
  transition: transform 0.5s ease-in-out;
}

@media (any-hover: hover) {
  .c-download a:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 768px) {
  .c-download {
    gap: 4px 0;
  }

  .c-download h2 {
    gap: 0 0.625rem;
    font-size: 1.4375rem;
  }

  .c-download h2::before,
  .c-download h2::after {
    margin-top: 0.125rem;
    height: 1.6875rem;
  }

  .c-download a {
    width: min(100%, 380px);
  }
}

.heading {
  align-items: center;
  color: #000000;
  display: flex;
  font-size: 1.875rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.466;
  padding-bottom: 0.3125rem;
  text-align: center;
}

.heading::before,
.heading::after {
  background-color: #596A7D;
  content: "";
  height: 1.875rem;
  width: 0.1875rem;
}

.heading::before {
  margin-right: 1.25rem;
  transform: rotate(-25deg);
}

.heading::after {
  margin-left: 0.9375rem;
  transform: rotate(25deg);
}

.plusmark {
  position: relative;
}

.plusmark::before,
.plusmark::after {
  background-color: #7A8CA0;
  content: "";
  display: inline-block;
  height: 1.8125rem;
  position: absolute;
  width: 0.4375rem;
}

.plusmark::after {
  transform: rotate(90deg);
}

.plan-item__plus {
  margin-bottom: 2.5rem;
  margin-left: 1.25rem;
  margin-right: 3.125rem;
}

.md-show {
  display: none;
}

.sm-show {
  display: none;
}

.voice-top {
  margin-top: 0.25rem;
  padding-top: 6rem;
  padding-bottom: 104px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #f4f4f4 50%, #F8F8F8 100%);
}

.voice-top p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7777;
}

@media (max-width: 768px) {
  .voice-top {
    padding-bottom: 4.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .voice-top p {
    font-size: 1rem;
    line-height: 2;
  }

  .voice__title .title-36 {
    font-size: 5.5vw;
  }
}

.voice {
  background: linear-gradient(180deg, #FFFFFF 0%, #f4f4f4 70%, #F8F8F8 100%);
  padding-bottom: 2.5rem;
  padding-top: 6rem;
  position: relative;
}

.voice__title {
  text-align: center;
}

.voice__title .title-36 {
  font-size: 36px;
  color: #36404B;
}

.voice__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 43.75rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  width: 100%;
}

/* .voice::before,
.voice::after {
  border-color: transparent transparent transparent #E7F9FB;
  border-style: solid;
  border-width: 6.25rem 0 0 100vw;
  bottom: -0.125rem;
  content: "";
  height: 0;
  position: absolute;
} */

/* 右上がり */
/* .voice::before {
  border-color: transparent #D0F3F7 transparent transparent;
  border-width: 9.375rem 100vw 0 0;
}
 */

.voice::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -60px;
  border: 60px solid transparent;
  border-top: 60px solid #F8F8F8;
  z-index: 1;
}

.voice__title span {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.441;
  position: relative;
  color: #596A7D;
}

/* .voice__title span::after {
  background-color: #35ADEB;
  bottom: -0.5rem;
  content: "";
  display: block;
  height: 0.1875rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  transition: width 0.8s ease-in-out;
  width: 0;
} */

.voice__title span.visible::after {
  width: 6.5rem
}

.voice__content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 0.625rem;
  margin-top: 2.0625rem;
  text-align: left;
}

.voice__text-wrap {
  margin-left: 0.625rem;
}

.voice__text-wrap .voice__text:not(:first-child) {
  margin-top: 1.25rem;
}

.voice__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  padding-left: 2.0625rem;
  position: relative;
}

.voice__text span.color-red {
  color: #ED1B24;
}

.voice__text span.dotted {
  border-bottom: 0.125rem dotted #7E7E7E;
  padding-bottom: 0.25rem;
}

.voice__text::before {
  border-bottom: 0.1875rem solid #35ADEB;
  border-left: 0.1875rem solid #35ADEB;
  content: "";
  display: inline-block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  top: 0.9rem;
  transform: rotate(-45deg);
  width: 0.75rem;
  z-index: 1;
}

.voice__text::after {
  background-color: #E6F7FF;
  border-radius: 32px;
  content: "";
  height: 2rem;
  left: -0.6125rem;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 2rem;
}

.voice__content img {
  -o-object-fit: cover;
  aspect-ratio: 122/208;
  max-width: 7.625rem;
  object-fit: cover;
  width: 100%;
}

.voice-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #f4f4f4 70%, #F8F8F8 100%);
  padding: 6rem 0;
}

.voice-card__inner {
  text-align: center;
  width: 100%;
}

.voice-card__heading-wrap {
  position: relative;
}

.voice-card__heading-wrap img {
  -o-object-fit: cover;
  aspect-ratio: 187/242;
  max-width: 10.125rem;
  object-fit: cover;
  position: absolute;
  right: 3%;
  top: -3%;
  width: 13vw;
}

.voice-card__heading-top {
  background-color: #E6F7FF;
  color: #35ADEB;
  display: inline-block;
  letter-spacing: 0.05em;
  padding: 0.625rem 1.25rem;
  text-align: center;
  vertical-align: middle;
}

.voice-card__heading-top span.small {
  color: #36404B;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.25rem;
  vertical-align: middle;
}

.voice-card__heading-top span.large {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.voice-card__heading-bottom {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 1.5625rem;
  color: #36404B;
}

.voice-card__heading-bottom span {
  color: #ED1B24;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.voice-card__heading-bottom span::after {
  background-color: #ED1B24;
  bottom: -0.625rem;
  content: "";
  display: block;
  height: 0.1875rem;
  left: 0;
  position: absolute;
  transition: width 0.8s ease-in-out;
  width: 0;
}

.voice-card__heading-bottom span.visible::after {
  width: 100%;
}

.voice-card__text {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.818;
  margin-top: 1.875rem;
}

.voice-card__items {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem 1.5rem;
  justify-content: center;
  margin: 5rem auto 4.5rem;
  text-align: center;
}

.voice-card__item {
  max-width: 14.5rem;
  width: 21vw;
  position: relative;
}

.item_01::after,
.item_02::after,
.item_03::after,
.item_04::after {
  content: "";
  position: absolute;
  display: block;
  color: #35ADEB;
  background-color: #E6F7FF;
  border-radius: 50% 50% 0 0;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 25%;
  padding-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.item_01::after {
  content: "01";
}

.item_02::after {
  content: "02";
}

.item_03::after {
  content: "03";
}

.item_04::after {
  content: "04";
}

.voice-card__content {
  background-color: #E6F7FF;
  border-radius: 0.625rem 0.625rem 0 0;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  padding-bottom: 0.75rem;
  padding-top: 1.3125rem;
}

.voice-card__content p {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.857;
}

.voice-card__content h3 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.59;
  margin-top: 0.375rem;
  color: #36404B;
}

.voice-card__item img {
  -o-object-fit: cover;
  aspect-ratio: 232/159;
  border-radius: 0 0 0.625rem 0.625rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {

  .voice__title .title-36 {
    font-size: 5.5vw;
  }
}


.merit-title {
  font-size: 36px;
}

.merit-content {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.merit-card {
  background: #fff;
  border: 1px solid #35ADEB;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 0.5rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
}

.merit01,
.merit02 {
  width: 48%;
}

.merit03,
.merit04,
.merit05 {
  width: 31%;
}


.merit-tag {
  width: 150px;
  color: #35ADEB;
  font-weight: bold;
  font-size: 20px;
  background: #E6F7FF;
  border-radius: 20px;
  padding: 2px 22px;
  margin: auto;
}

.merit-tag span {
  font-size: 120%;
}

.merit-catch {
  font-size: 30px;
  font-weight: bold;
}

.merit-text {
  text-align: left;
  line-height: 30px;
  flex-grow: 1;
}

.merit-card img {
  height: 110px;
  width: auto;
  margin: auto;
}

@media (max-width: 768px) {
  .merit-title {
    font-size: 5.5vw;
  }

  .merit-content {
    width: 95%;
    margin: auto;
    flex-direction: column;
    gap: 16px;
  }

  .merit-card {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 16px;
  }

  .merit-tag {
    width: 30%;
    font-size: 2.5vw;
    padding: 5px 0;
    margin: 0;
  }

  .merit-catch {
    font-size: 4vw;
  }

  .merit-card img {
    height: 55px;
    margin: 0 0 0 auto;
  }
}

@media (max-width: 480px) {
  .merit-title {
    font-size: 5.5vw;
  }

  .merit-content {
    width: 95%;
    margin: auto;
    flex-direction: column;
    gap: 16px;
  }

  .merit-card {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 5%;
    column-gap: 0;
  }

  .merit-tag {
    width: 30%;
    font-size: 3.5vw;
    padding: 5px 0;
    margin: 0;
  }

  .merit-catch {
    font-size: 5vw;
    margin-left: 2%;
  }

  .merit-card img {
    height: 40px;
  }
}

/* .plan {
  padding-top: 6rem;
} */
.plan__title {
  align-items: center;
  display: inline-block;
  display: flex;
  font-size: 2.875rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  padding-bottom: 0;
  position: relative;
  text-align: center;
  color: #36404B;
}

/* .plan__title::before {
  background-color: #35ADEB;
  border-radius: 0.125rem;
  bottom: -0.625rem;
  content: "";
  display: inline-block;
  height: 0.3125rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 6.5rem;
} */

.plan__title-img1 {
  left: 1.5625rem;
  max-width: 9rem;
  object-fit: cover;
  position: absolute;
  top: -5px;
}

.plan__title-img2 {
  max-width: 17.5rem;
  object-fit: cover;
  position: absolute;
  right: 1.25rem;
  top: -5px;
  width: 100%;
}

.plan__title-img3 {
  display: none;
}

.plan-name {
  color: #596A7D;
  font-size: 30px;
  text-align: center;
  margin-top: 64px;
}

.plan__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.90625rem min(2.5vw, 2rem);
  gap: 1.90625rem min(2.5dvw, 2rem);
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 2.9375rem;
  text-align: center;
}

.plan__list.is-sm {
  font-size: 0.875rem;
}

.plan__item {
  grid-column-start: span var(--plan_item_column_pc, 2);
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: #fff;
  border: 1px solid #E6F7FF;
  border-radius: 8px;
}

.plan__category {
  padding: 9px 12px;
  background-color: #E6F7FF;
  color: #36404B;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  border-radius: 8px 8px 0 0;
}

.plan__product,
.plan__product--multiple {
  padding: 25px 8px 17px;
}

.plan__product--multiple {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 var(--plan_product_gap_pc, 25px);
  place-content: center;
}

.plan__product--multiple .plan__detail:first-of-type {
  position: relative;
}

.plan__product--multiple .plan__detail:first-of-type::after {
  content: "";
  display: block;
  position: absolute;
  top: 35px;
  left: calc(100% + var(--plan_product_plus_pc, -6px));
  width: 29px;
  height: 29px;
  background-image: linear-gradient(0deg, rgba(235, 80, 110, 0) 37.9310345%, #35ADEB 37.9310345% 62.0689656%, rgba(235, 80, 110, 0) 62.0689656%), linear-gradient(90deg, rgba(235, 80, 110, 0) 37.9310345%, #35ADEB 37.9310345% 62.0689656%, rgba(235, 80, 110, 0) 62.0689656%);
}

.recommend-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px;
  background: #fff;
  border-radius: 4px;
}

.recommend-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52%;
  gap: 24px;
}

.recommend-catch {
  width: 100%;
  text-align: center;
  background: #F65878;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 6px;
}

.recommend-store {
  color: #F65878;
  font-size: 30px;
  font-weight: bold;
}

.recommend-text {
  text-align: center;
  line-height: 30px;
}

.recommend-right {
  width: 38%;
  margin-left: auto;
}

.recommend-bottom {
  width: 100%;
  text-align: center;
}

.recommend-guideline {
  background: #FFEBEF;
  padding: 6px;
  font-size: 18px;
  font-weight: bold;
}

.recommend-guideline span {
  color: #F65878;
}


.omakase-standard .plan__item {
  border-color: #FFEBEF;
}

.omakase-standard .plan__category {
  background-color: #FFEBEF;
}



.omakase-simple .plan__item {
  border-color: #E9FFFC;
}

.omakase-simple .plan__category {
  background-color: #E9FFFC;
}

.omakase-plus .plan__item {
  border-color: #F6F2FF;
}

.omakase-plus .plan__category {
  background-color: #F6F2FF;
}

.omakase-more .plan__o_item {
  border-color: #DDE2E7;
}

.omakase-more .plan__item-title {
  background-color: #DDE2E7;
}

.omakase-simple,
.omakase-plus {
  padding-top: 0;
}

.omakase-simple {
  .recommend-catch {
    background: #168E82;
  }

  .recommend-store {
    color: #168E82;
  }


  .recommend-guideline {
    background: #E9FFFC;
  }

  .recommend-guideline span {
    color: #168E82;
  }
}

.omakase-plus {
  .recommend-catch {
    background: #6744C8;
  }

  .recommend-store {
    color: #6744C8;
  }


  .recommend-guideline {
    background: #F6F2FF;
  }

  .recommend-guideline span {
    color: #6744C8;
  }
}

.plan__product--multiple .plan__detail:first-of-type::after {
  background-image: linear-gradient(0deg, rgba(235, 80, 110, 0) 37.9310345%, #7A8CA0 37.9310345% 62.0689656%, rgba(235, 80, 110, 0) 62.0689656%), linear-gradient(90deg, rgba(235, 80, 110, 0) 37.9310345%, #7A8CA0 37.9310345% 62.0689656%, rgba(235, 80, 110, 0) 62.0689656%);
}

.plan__detail {
  display: grid;
  gap: 12px 0;
  align-content: center;
  place-items: center;
}

.plan__detail img {
  width: auto;
  height: 100px;
  object-fit: contain;
}

.plan__detail figcaption {
  font-weight: 500;
}

.plan__img-wrap {
  align-items: center;
  background-color: #FFF;
  border-radius: 0 0 0.5rem 0.5rem;
  display: flex;
  height: 11.5625rem;
  justify-content: center;
  padding-bottom: 1.0625rem;
  padding-top: 1.25rem;
}

.plan__img-wrap.img-tab {
  align-items: flex-start;
}

.plan__img-wrap img {
  margin-left: auto;
  margin-right: auto;
  max-width: 8.25rem;
  object-fit: scale-down;
  height: 100px;
}

.plan__img-box {
  display: grid;
  justify-items: center;
}

@media (max-width: 1024px) {
  .plan__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9375rem;
    padding-top: 1.25rem;
    padding-bottom: 1.5625rem;
  }

  .plan__item {
    order: var(--plan_item_order_sp, 0);
    grid-column-start: span var(--plan_item_column_sp, var(--plan_item_column_pc, 2));
  }

  .plan__category {
    padding: 9px 4px 8px;
    font-size: 1rem;
    line-height: 1.1875;
  }

  .plan__product,
  .plan__product--multiple {
    padding: 24px 4px 25px;
  }

  .plan__product--multiple {
    gap: 0 var(--plan_product_gap_sp, 40px);
  }

  .plan__product--multiple .plan__detail:first-of-type::after {
    left: calc(100% + 2px);
  }

  .plan__detail {
    gap: 10px 0;
  }

  .plan__detail figcaption {
    font-size: 0.875rem;
    line-height: 1.2142858;
  }

  .plan__detail figcaption.is-sm-sp {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .plan__title {
    font-size: 6.8vw;
    line-height: 1.25;
    padding-bottom: 0;
  }

  .plan__title::before {
    bottom: -0.375rem;
  }

  .plan__title-img1 {
    display: none;
  }

  .plan__title-img2 {
    display: none;
  }

  .plan__title-img3 {
    display: block;
    max-width: 3.75rem;
    object-fit: cover;
    position: absolute;
    right: 0rem;
    top: 0rem;
    width: 100%;
  }

  .plan__list {
    width: min(100%, 600px);
  }


  .recommend-inner {
    padding: 16px;
    gap: 16px
  }

  .recommend-left {
    width: 100%;
  }

  .recommend-right {
    width: 100%;
  }

  .omakase-plus .recommend-guideline {
    font-size: 4.5vw;
  }
}

@media (max-width: 600px) {
  .plan__title-img3 {
    max-width: 3.75rem;
    right: 0rem;
    top: 0rem;
  }

  .plan__category {
    display: grid;
    place-items: center;
    height: var(--plan_cat_height_sp);
  }

  .plan__category>span {
    display: block;
  }
}

.plan__text {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.plan__items {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 1.875rem;
  justify-content: center;
  padding-bottom: 2.9375rem;
  padding-top: 1.5rem;
  text-align: center;
}

.plan__o_item.wide {
  width: 63%;
}

.plan__o_item {
  width: 30%;
  border: 1px solid #E6F7FF;
  border-radius: 8px;
}

.plan__o_item.item1 {
  width: 65.6%;
}

.plan__item-title {
  background-color: #E6F7FF;
  color: #36404B;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.5625rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px 8px 0 0;
}

.plan__img-wrap .plan-item08 {
  margin-left: auto;
  margin-right: auto;
  max-width: 5.625rem;
}

.plan__img-wrap .plan-item09 {
  margin-left: auto;
  margin-right: auto;
  max-width: 4.0625rem;
}

.plan__o_item .plan__img-wrap .plan-item02 {
  margin-left: auto;
  margin-right: auto;
  max-width: 4.4375rem;
}

.plan__o_item .plan__img-wrap .plan-item06 {
  margin-left: auto;
  margin-right: auto;
  max-width: 2.1875rem;
}

.plan__img-box p {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.75rem;
}

.plan__img-box p.text2 {
  margin-top: 0;
}

.plan__heading {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4666;
  margin-top: 2.5rem;
  padding-bottom: 0;
  color: #596A7D;
}

/* .plan__heading::before,
.plan__heading::after {
  height: 2.375rem;
  margin-top: 0.625rem;
}

.plan__heading::before {
  margin-right: 1.25rem;
  transform: rotate(-20deg);
}

.plan__heading::after {
  margin-left: 1.25rem;
  transform: rotate(20deg);
} */

.plan__heading-benefits {
  display: none;
}

.plan__container {
  border-radius: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 62.5rem;
  padding-left: min(3.59375vw, var(--plan_container_px_pc, 2.875rem));
  padding-right: min(3.59375vw, var(--plan_container_px_pc, 2.875rem));
  position: relative;
  width: 100%;
}

.plan__container:nth-of-type(1) {
  margin-top: 3rem;
}

@media (max-width: 480px) {
  .plan__container:nth-of-type(1) {
    margin-top: 1rem;
  }
}

.plan__container:nth-of-type(2) {
  margin-bottom: 3rem;
  margin-top: 5.6875rem;
}

.plan__container:nth-of-type(4) {
  margin-top: 3rem;
  position: relative;
}

.plan__items .plan__img-wrap {
  height: 13.125rem;
}

.plan__heading-title {
  color: #FFFFFF;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.423;
  margin-top: -1.875rem;
  text-align: center;
  white-space: nowrap;
}

.plan__heading-title span {
  background-color: #35ADEB;
  display: inline-block;
  padding: 0.3125rem 0.625rem 0.625rem;
  position: relative;
  width: 25rem;
}

.plan__heading-title span::after {
  border: 0.625rem solid transparent;
  border-top: 0.9375rem solid #35ADEB;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  width: 0;
}

.plan__heading-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5555;
  margin-top: 1.875rem;
  text-align: center;
  white-space: nowrap;
}

.plan__heading-text span {
  color: #35ADEB;
}

.plan__plus {
  margin-bottom: 2.125rem;
  margin-top: -0.625rem;
  text-align: center;
}

.plan__plus1 {
  margin-right: 6px;
}

.plan__plus2 {
  margin-right: 4px;
}

.plan__container-title-top {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.466;
  margin-top: 2.0625rem;
  text-align: center;
  color: #36404B
}

.plan__container-title {
  color: #ED1B24;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.125rem;
  text-align: center;
}

.plan__container-title span {
  font-size: 4.75rem;
}

.plan__container-title span.yen {
  font-size: 1.875rem;
  font-weight: 500;
}

.plan__item-content {
  background-color: #DDE2E7;
  border-radius: 0.5rem;
  padding: 6.345% 0;
}

.plan__text-wrap {
  margin: auto;
  width: 60%;
}

.plan__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.25;
  text-align: left;
}

.plan__content {
  margin-bottom: 2.0625rem;
  margin-top: -0.3125rem;
}

.plan__content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7777;
  margin-bottom: 0.9375rem;
}

.plan__content dl {
  border-top: 0.0625rem solid #ccc;
  display: flex;
  padding: 0.9375rem 0;
}

.plan__content dt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  padding-bottom: 0.3125rem;
  width: 16.27%;
}

.plan__content dd {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.714;
  width: 83.73%;
}

.cta {
  margin-top: var(--cta_mt_pc, 0);
  padding: 3.3125rem 0 4.1875rem;
  background-color: #FF370D;
  color: #FFF;
}

@media (max-width: 768px) {
  .cta {
    margin-top: 0;
    padding: 3rem 0;
  }
}

.merit {
  background: linear-gradient(180deg, #FFFFFF 0%, #f4f4f4 70%, #F8F8F8 100%);
  padding-bottom: 6rem;
  padding-top: 6rem;
}

.merit__title {
  align-items: center;
  display: inline-block;
  display: flex;
  font-size: 2.875rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  position: relative;
  text-align: center;
}

.merit__title:before {
  background-color: #35ADEB;
  bottom: -1.5rem;
  content: "";
  display: inline-block;
  height: 0.3125rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 6.5rem;
}

.merit__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  justify-content: center;
  margin: 5rem 0;
  text-align: center;
}

.merit__item.wide {
  max-width: 30.3125rem;
  width: 45vw;
}

.merit__item {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  margin-left: auto;
  margin-right: auto;
  max-width: 19.5625rem;
  padding: 2.5rem 1.875rem 1.875rem;
  width: 29vw;
  border: 1px solid #35ADEB;
}

.merit__item-heading span {
  background-color: #E6F7FF;
  border-radius: 1.25rem;
  color: #35ADEB;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.85;
  padding: 0.1875rem 1.3125rem;
  text-align: center;
}

.merit__item-title {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.4666;
  margin-top: 0.625rem;
  text-align: center;
}

.merit__img-wrap {
  margin-top: 1.25rem;
}

.merit__img-wrap img {
  -o-object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  width: 100%;
}

.merit__img1 {
  margin-bottom: 1.875rem;
  max-width: 6.25rem;
  padding-left: 1.25rem;
}

.merit__img2 {
  margin-bottom: 1.875rem;
  max-width: 6.75rem;
  padding-left: 1.25rem;
}

.merit__img3 {
  margin-bottom: 1.875rem;
  max-width: 4.8125rem;
}

.merit__img4 {
  margin-bottom: 1.25rem;
  max-width: 6.4375rem;
}

.merit__img5 {
  margin-bottom: 1.875rem;
  max-width: 5.875rem;
}

.merit__item-text {
  flex-grow: 1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  text-align: left;
}

.my-page {
  background: #FFFFFF;
  padding-bottom: 6rem;
  padding-top: 6rem;
  position: relative;
  z-index: 11;
}

.my-page__heading-top {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.my-page__heading-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.my-page__heading-wrap .circle {
  background-color: #35ADEB;
  color: #FFFFFF;
  font-weight: 600;
}

.my-page__heading {
  text-align: center;
}

.my-page__heading span {
  align-items: center;
  display: inline-block;
  display: flex;
  font-size: 2.875rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  position: relative;
}

.my-page__heading span::after {
  background-color: #35ADEB;
  bottom: -1.5rem;
  content: "";
  display: inline-block;
  height: 0.3125rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 6.5rem;
}

.my-page__container {
  align-items: center;
  display: flex;
  gap: 4.8125rem;
  margin-top: 5rem;
}

.my-page__container img {
  -o-object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  max-width: 20.625rem;
  object-fit: cover;
  width: 100%;
}

.my-page__content {
  flex: 1;
}

.my-page__content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  margin-bottom: 2rem;
}

.my-page__check-text {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  padding-left: 2.1875rem;
  position: relative;
}

.my-page__check-text:not(:first-child) {
  margin-top: 1.25rem;
}

.my-page__check-text::before {
  border-bottom: 0.1875rem solid #35ADEB;
  border-left: 0.1875rem solid #35ADEB;
  content: "";
  display: inline-block;
  height: 0.5rem;
  left: 0;
  position: absolute;
  top: 0.9rem;
  transform: rotate(-45deg);
  width: 0.75rem;
  z-index: 1;
}

.my-page__check-text::after {
  background-color: #E6F7FF;
  border-radius: 32px;
  content: "";
  height: 2rem;
  left: -0.6125rem;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 2rem;
}

.my-page__check-text span {
  border-bottom: 0.125rem dotted #7E7E7E;
  padding-bottom: 0.25rem;
}

.my-page__border {
  margin-top: 1.25rem;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s, transform 0.5s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.circle {
  background: #FFFFFF;
  border-radius: 50%;
  color: #FF370D;
  display: inline-block;
  font-size: 1.125rem;
  height: 3.75rem;
  line-height: 3.75rem;
  margin-right: 0.3125rem;
  text-align: center;
  width: 3.75rem;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1050px;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
  color: #36404B;
}

@media screen and (max-width: 1024px) {
  .plan__container:nth-of-type(4) .plan__o_item {
    width: 26vw;
  }
}

@media (max-width: 1000px) {
  html {
    font-size: 1.6vw;
  }
}

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

  .heading::before {
    margin-right: 0.9375rem;
  }

  .heading::after {
    margin-left: 0.625rem;
  }

  .plan-item__plus {
    margin-left: 0.625rem;
    margin-right: 1.875rem;
  }

  .pc-show {
    display: none;
  }

  .md-none {
    display: none;
  }

  .md-show {
    display: block;
  }

  .voice {
    padding-bottom: 2.125rem;
    padding-top: 4.75rem;
  }

  .voice__inner {
    max-width: 32.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .voice::before,
  .voice::after {
    bottom: -1.25rem;
  }

  .voice__title {
    text-align: center;
    /* margin-bottom: 4rem; */
  }

  .voice__title span {
    font-size: 5.8vw;
    line-height: 1.3846;
  }

  .voice__content {
    display: block;
  }

  .voice__text {
    font-size: 1rem;
    line-height: 1.625;
  }

  .voice__text::before {
    height: 0.625rem;
    left: -0.125rem;
    top: 0.375rem;
    width: 1.125rem;
  }

  .voice__text::after {
    height: 1.25rem;
    width: 1.25rem;
  }

  .voice__content img {
    aspect-ratio: 95/162;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.6875rem;
    max-width: 6rem;
  }

  .voice-card {
    padding-bottom: 4rem;
  }

  .voice-card__text {
    font-size: 0.975rem;
  }

  .voice-card__heading-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 32.5rem;
    text-align: left;
  }

  .voice-card__heading-wrap img {
    aspect-ratio: 130/168;
    max-width: 7.5rem;
    right: 3%;
    top: 5%;
    width: 32vw;
  }

  .voice-card__heading-top {
    padding: 0.5rem 1.125rem;
  }

  .voice-card__heading-top span.small {
    font-size: 0.875rem;
  }

  .voice-card__heading-top span.large {
    font-size: 1.8125rem;
  }

  .voice-card__heading-bottom {
    font-size: 1.875rem;
  }

  .voice-card__heading-bottom span {
    font-size: 2.5rem;
    line-height: 1.6;
  }

  .voice-card__items {
    margin-top: 5rem;
    gap: 4.5rem 0.5rem;
    max-width: 37.5rem;
  }

  .item_01::after,
  .item_02::after,
  .item_03::after,
  .item_04::after {
    top: -35px;
    width: 3.3rem;
    height: 20%;
  }

  .voice-card__item {
    width: 45vw;
  }

  .voice-card__content p {
    letter-spacing: 0;
    line-height: 1.428;
  }

  .voice-card__content h3 {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-top: 0.625rem;
  }

  .voice-card__item img {
    aspect-ratio: 160/106;
  }

  .plan-name {
    font-size: 5vw;
  }

  /* .plan {
    padding-top: 4rem;
  } */
  .plan__text {
    font-size: 0.875rem;
    line-height: 1.714;
    margin-bottom: 1.75rem;
    margin-top: 1rem;
  }

  .plan__items {
    gap: 0.9375rem 0.9375rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 37.5rem;
    padding-bottom: 1.5625rem;
    padding-top: 1.25rem;
  }

  .plan__o_item.wide {
    width: 98.7%;
  }

  .plan__o_item {
    width: 94%;
  }

  .plan__item-title {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.125;
    padding: 0.4375rem;
  }

  .plan__img-wrap {
    height: 11rem;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
  }

  .plan__img-wrap img {
    max-width: 7.875rem;
  }

  .plan__img-wrap .plan-item08 {
    max-width: 5.625rem;
  }

  .plan__img-wrap .plan-item09 {
    max-width: 4.0625rem;
  }

  .plan__o_item .plan__img-wrap .plan-item02 {
    max-width: 4.4375rem;
  }

  .plan__o_item .plan__img-wrap .plan-item06 {
    max-width: 2.1875rem;
  }

  .plan__o_item .plan__img-wrap .plan-item05 {
    margin-top: 1.25rem;
  }

  .plan__o_item .plan__img-wrap .plan-item03 {
    margin-top: 0.625rem;
  }

  .plan__img-box p {
    font-size: 0.875rem;
  }

  .plan__img-box p.text1 {
    margin-top: 1.5625rem;
  }

  .text1.font-small,
  .text2.font-small,
  p.font-small {
    font-size: 0.75rem;
  }

  .plan__heading {
    font-size: 1.625rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0.75rem;
  }

  .plan__heading::before {
    margin-right: 0.9375rem;
  }

  .plan__heading::after {
    margin-left: 0.9375rem;
  }

  .plan__heading-benefits {
    align-items: center;
    color: #596A7D;
    display: flex;
    font-size: 1.875rem;
    font-weight: 500;
    justify-content: center;
    line-height: 1.466;
    margin-top: 1.8125rem;
    text-align: center;
  }

  .plan__heading-benefits::before,
  .plan__heading-benefits::after {
    background-color: #596A7D;
    content: "";
    height: 2.375rem;
    width: 0.1875rem;
  }

  .plan__heading-benefits::before {
    margin-right: 0.9375rem;
    transform: rotate(-20deg);
  }

  .plan__heading-benefits::after {
    margin-left: 0.9375rem;
    transform: rotate(20deg);
  }

  .plan__container {
    margin-bottom: 0;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 37.5rem;
  }

  .plan__container:nth-of-type(2) {
    margin-bottom: 3rem;
    margin-top: 4.375rem;
  }

  .plan__container:nth-of-type(4) .plan__o_item {
    width: 47%;
  }

  .plan__heading-title {
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .plan__heading-text {
    font-size: 0.875rem;
    line-height: 1.714;
  }

  .plan__plus {
    margin-top: 0;
  }

  .plan__plus.plusmark.md-show {
    margin-bottom: 2.8125rem;
  }

  .plan__container-title-top {
    font-size: 1.315rem;
    line-height: 1.44;
    margin-top: 0.9rem;
  }

  .plan__container-title {
    font-size: 1.875rem;
    line-height: 1.4666;
    margin-bottom: 0.5625rem;
    position: relative;
  }

  .plan__container-title {
    margin-left: auto;
    margin-right: auto;
    width: 50vw;
  }

  .plan__container-title span {
    font-size: 4.375rem;
    line-height: 1.442;
  }

  .plan__container-title span.yen {
    font-size: 1.5rem;
    line-height: 1.458;
  }

  .plan__item-content {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.8125rem;
    padding-top: 1rem;
    width: 98.7%;
  }

  .plan__item.md-show .plan__item-content {
    margin: auto;
    width: 60vw;
  }

  .plan__text-wrap1 {
    width: 100%;
  }

  .plan__text-wrap2 {
    margin-left: 3.125rem;
    width: 100%;
  }

  .plan__text-wrap {
    display: flex;
    width: 70%;
  }

  .plan__item-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.857;
  }

  .plan__item-content.md-show.plan__item-text {
    font-weight: 500 !important;
  }

  .plan__item-content.md-show.plan__item-text {
    font-size: 0.875rem;
    line-height: 1.857;
  }

  .plan__content {
    margin-bottom: 0;
    margin-top: 2.3125rem;
  }

  .plan__content dl {
    flex-direction: column;
  }

  .plan__content dt {
    width: 100%;
  }

  .plan__content dd {
    width: 100%;
  }

  .item-padding {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .merit {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

  .merit__title {
    font-size: 2rem;
    line-height: 1.1875;
    padding-bottom: 0.625rem;
  }

  .merit__title:before {
    bottom: -0.5rem;
  }

  .merit__items {
    display: block;
    margin: 3rem 0;
  }

  .merit__item.wide {
    max-width: 37.5rem;
    width: 100%;
  }

  .merit__item {
    display: flex;
    max-width: 37.5rem;
    padding: 1.25rem 0.9375rem 0.9375rem;
    width: 100%;
  }

  .merit__item-left {
    margin-top: 0.3125rem;
    padding-right: 0.625rem;
    width: 40%;
  }

  .merit__item-right {
    width: 60%;
  }

  .merit__item:not(:first-child) {
    margin-top: 1rem;
  }

  .merit__item-heading span {
    border-radius: 1.0625rem;
    font-size: 0.875rem;
    line-height: 1.857;
    padding: 0.25rem 0.9375rem;
  }

  .merit__item-title {
    font-size: 1rem;
    line-height: 1.5;
  }

  .merit__img-wrap {
    margin-top: 1.125rem;
  }

  .merit__img1 {
    margin-bottom: 0;
    max-width: 4.4375rem;
    padding-left: 0;
  }

  .merit__img2 {
    margin-bottom: 0;
    max-width: 4.875rem;
    padding-left: 0;
  }

  .merit__img3 {
    margin-bottom: 0;
    max-width: 3.875rem;
  }

  .merit__img4 {
    margin-bottom: 0;
    max-width: 4.6875rem;
  }

  .merit__img5 {
    margin-bottom: 0;
    max-width: 4.4375rem;
  }

  .merit__item-text {
    font-size: 0.875rem;
    line-height: 1.571;
  }

  .my-page {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

  .my-page__heading-top {
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .my-page__heading-wrap .circle {
    font-size: 1.125rem;
    height: 3.75rem;
    line-height: 3.75rem;
    width: 3.75rem;
  }

  .my-page__heading span {
    font-size: 2rem;
    line-height: 1.1875;
  }

  .my-page__heading span::after {
    bottom: -0.9375rem;
  }

  .my-page__container {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.75rem;
    max-width: 37.5rem;
  }

  .my-page__container img {
    align-items: flex-start;
    flex-direction: column;
    max-width: 17.5625rem;
  }

  .my-page__content {
    margin-top: 2rem;
  }

  .my-page__content p {
    font-size: 0.875rem;
    line-height: 1.714;
  }

  .my-page__check-text {
    font-size: 1rem;
    line-height: 1.625;
    margin-left: 0.625rem;
    padding-left: 1.9375rem;
  }

  .my-page__check-text::before {
    top: 0.1875rem;
  }

  .my-page__check-text::after {
    height: 1.1875rem;
    width: 1.1875rem;
  }

  .my-page__check-text.check-text3::after {
    top: 50%;
  }

  .circle {
    font-size: 0.75rem;
    height: 2.4375rem;
    line-height: 2.4375rem;
    width: 2.4375rem;
  }

  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  .sm-show {
    display: block;
  }

  /* .voice__title span::after {
    background: #000000;
    bottom: -0.5rem;
    content: "";
    display: block;
    height: 0.1875rem;
    left: 0;
    position: absolute;
    transition: width 0.9s ease-in-out;
    width: 0;
  } */
  .voice__text-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 20.3125rem;
  }

  .voice__text {
    margin-left: 1.875rem;
    padding-left: 0;
  }

  .voice__text:not(:nth-child(2)) {
    border-bottom: 0.125rem dotted #7E7E7E;
    padding-bottom: 0.25rem;
  }

  .voice__text span.dotted {
    border-bottom: none;
  }

  .voice__text span.dotted-sm {
    border-bottom: 0.125rem dotted #7E7E7E;
    padding-bottom: 0.25rem;
  }

  .voice__text::before {
    left: -1.625rem;
  }

  .voice__text::after {
    left: -1.875rem;
  }

  .voice__text:not(:nth-child(2))::after {
    top: 27%;
  }

  .voice-card__heading-wrap {
    max-width: 23.4375rem;
  }

  .voice-card__heading-wrap img {
    right: -3%;
    top: 25%;
  }

  .voice-card__item {
    width: 42.6vw;
  }

  .plan__item-title.item-title {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .plan__heading::before,
  .plan__heading::after {
    height: 3.75rem;
  }

  .plan__container {
    max-width: 90vw;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .plan__container:nth-of-type(4) .plan__item-title {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .plan__container:nth-of-type(4) .plan__item-title.tab {
    padding: 0.4375rem;
  }

  .plan__heading-title span {
    width: 18.75rem;
  }

  .plan__plus {
    margin-bottom: 1.5rem;
    margin-top: -0.625rem;
  }

  .plan__container-title {
    width: 80vw;
  }

  .plan__text-wrap2 {
    margin-left: 2.8125rem;
    width: 100%;
  }

  .plan__text-wrap {
    display: flex;
    width: 88%;
  }

  .my-page__heading-wrap {
    align-items: flex-start;
    margin-left: -3.875rem;
  }

  .my-page__check-text {
    margin-left: 0.4375rem;
    padding-left: 0;
  }

  .my-page__check-text::before {
    left: -1.8375rem;
    top: 0.775rem;
  }

  .my-page__check-text::after {
    left: -2.0625rem;
    top: 34%;
  }

  .my-page__check-text.check-text3::before {
    top: 0.4625rem;
  }

  .my-page__check-text span {
    border-bottom: none;
  }

  .my-page__border {
    border-bottom: 0.125rem dotted #7E7E7E;
    margin-left: auto;
    padding-bottom: 0.625rem;
    width: 82vw;
  }
}

@media screen and (max-width: 480px) {

  .voice-card__items {
    margin-bottom: -3.5rem;
  }

  .plan__container {
    margin-bottom: 0;
  }

  .merit__items {
    margin: 3rem 0 -3rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (max-width: 374px) {
  .voice-card__item {
    width: 41.7vw;
  }
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cta1 {
  padding: 3rem 0rem;
}

@media (max-width: 768px) {
  .cta1 {
    padding: 1rem 0rem;
  }
}

.voice-card__inner {
  text-align: center;
  width: 100%;
}


footer.footer dt,
footer.footer p {
  color: #fff;
}

.column-recommend {
  display: flex;
  /* gap: 32px; */
  justify-content: space-between;
}

.column-card {
  display: flex;
  flex-direction: column;
  width: 23%;
  gap: 16px;
}

.column-text {
  flex-grow: 1;
  font-weight: bold;
}

.column-card .bluelink {
  /* margin-top: 16px; */
  width: fit-content;
  font-size: 14px;
  font-weight: bold;
}


@media (max-width: 768px) {
  .column-info .title-36 {
    text-align: center;
  }

  .column-recommend {
    row-gap: 32px;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .column-card {
    width: 47%;
  }
}

/* ========================================================================
     Component: Contact
 ========================================================================== */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-pc {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .flex-pc {
    display: initial;
  }
}

.flex-sp {
  display: initial;
}

@media screen and (max-width: 767px) {
  .flex-sp {
    display: flex;
    flex-wrap: wrap;
  }
}

.flex-row {
  flex-direction: row;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-y-stretch {
  align-items: stretch;
}

.flex-y-center {
  align-items: center;
}

.flex-y-start {
  align-items: flex-start;
}

.flex-y-end {
  align-items: flex-end;
}

.flex-y-baseline {
  align-items: baseline;
}

.flex-x-start {
  justify-content: start;
}

.flex-x-center {
  justify-content: center;
}

.flex-x-between {
  justify-content: space-between;
}

.flex-x-around {
  justify-content: space-around;
}

.flex-x-evenly {
  justify-content: space-evenly;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.column {
  display: flex;
  justify-content: space-between;
  width: 1024px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

@media screen and (max-width: 1064px) {
  .column {
    width: calc(100vw - 40px);
  }
}

@media screen and (max-width: 767px) {
  .column {
    display: inherit;
  }
}

.column>[class*="col-"] {
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .column>[class*="col-"] {
    margin-bottom: 32px;
  }

  .column>[class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

.col-496 {
  max-width: 496px;
  width: 46.616541353383454vw;
}

@media screen and (max-width: 767px) {
  .col-496 {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {

  .column>.col-584:nth-child(2n+1):nth-last-child(-n+2),
  .column>.col-496:nth-child(2n+1):nth-last-child(-n+2),
  .column>.col-408:nth-child(2n+1):nth-last-child(-n+2),
  .column>.col-584:nth-child(2n+1):nth-last-child(-n+2)~*,
  .column>.col-496:nth-child(2n+1):nth-last-child(-n+2)~*,
  .column>.col-408:nth-child(2n+1):nth-last-child(-n+2)~* {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {

  .column>.col-496:nth-child(3n+1):nth-last-child(-n+3),
  .column>.col-320:nth-child(3n+1):nth-last-child(-n+3),
  .column>.col-232:nth-child(3n+1):nth-last-child(-n+3),
  .column>.col-496:nth-child(3n+1):nth-last-child(-n+3)~*,
  .column>.col-320:nth-child(3n+1):nth-last-child(-n+3)~*,
  .column>.col-232:nth-child(3n+1):nth-last-child(-n+3)~* {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {

  .column>.col-232:nth-child(4n+1):nth-last-child(-n+4),
  .column>.col-232:nth-child(4n+1):nth-last-child(-n+4)~* {
    margin-bottom: 0;
  }
}

.contact {
  position: relative;
}

.contact::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/portal/omakase/assets/images/common/contact_bg.png");
  background-size: cover;
  background-position: 50%;
  width: 100%;
  height: 100%;
  z-index: -2;
}

@media screen and (max-width: 767px) {
  .contact::before {
    background-image: url("/portal/omakase/assets/images/common/contact_bg_sp.png");
  }
}

.contact-card {
  position: relative;
  margin: 0;
  padding: 40px;
}

@media screen and (max-width: 767px) {
  .contact-card {
    padding: 40px 17px;
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 768px) {
  .contact-card {
    display: flex;
    justify-content: center;
  }
}

.contact-card:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #333;
  mix-blend-mode: multiply;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact-card a[class*="btn"] {
  margin: auto;
}

@media screen and (max-width: 767px) {
  .contact-card-title {
    letter-spacing: -0.03em;
  }
}

.contact-card-tel {
  color: #c9d1d9;
}

.contact-card-tel-inner {
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .contact-card-tel-inner {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .contact-card-tel-inner {
    text-align: center;
  }
}

.contact-card-tel a {
  display: inline-block;
  font-size: 20px;
  margin-right: 10px;
  color: #c9d1d9;
}

.contact::before {
  background-position: 100%;
}

.webp .contact::before {
  background-image: url("/portal/omakase/assets/images/common/contact_bg@2x.png.webp");
}

.no-webp .contact::before {
  background-image: url("//portal/omakase/assets/images/common/contact_bg@2x.png");
}

@media screen and (max-width: 1023px) {
  .contact::before {
    background-position: bottom right 32%;
  }

  .webp .contact::before {
    background-image: url("/portal/omakase/assets/images/common/contact_bg@2x.png.webp");
  }

  .no-webp .contact::before {
    background-image: url("/portal/omakase/assets/images/common/contact_bg@2x.png");
  }
}

@media screen and (max-width: 767px) {
  .webp .contact::before {
    background-image: url("/portal/omakase/assets/images/common/contact_bg@2x.png.webp");
  }

  .no-webp .contact::before {
    background-image: url("/portal/omakase/assets/images/common/contact_bg@2x.png");
  }
}

.contact-card::before {
  border-radius: 16px;
}

@media screen and (max-width: 1024px) {
  .contact-card-title {
    flex-grow: 1;
  }
}

@media screen and (max-width: 1024px) {
  .contact-card-inner {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 767px) {
  .contact .btn-left {
    margin-right: 32px !important;
  }
}

.contact .col-1024 {
  width: 1024px;
}

@media screen and (max-width: 767px) {
  .contact .col-1024 {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .contact .col-1024 .btn-second {
    margin-top: 16px;
  }
}

@media screen and (min-width: 767px) {
  .contact .flex-footer-showroom {
    display: flex;
    width: 110%;
  }
}

.footer-showroom-img {
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .contact .flex-footer-showroom {
    display: flex;
    width: unset;
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .contact .footer-showroom-img {
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .contact .footer-showroom-img img {
    width: 100%;
  }

  .contact .btn-cta,
  .contact .btn,
  .contact .btn-second {
    width: 100%;
    text-align: center;
  }

}

@media screen and (min-width: 1025px) {
  .contact .footer-showroom-text {
    margin-left: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .contact .footer-showroom-text {
    margin-top: 16px;
    text-align: center;
  }
}

.contact .footer-showroom-text .showroom-tag span {
  display: inline-block;
  border: 1px solid;
  border-radius: 4px;
  padding: 2px 4px;
  margin: 2px;
  font-size: smaller;
}

@media screen and (max-width: 1024px) {
  .contact .grow-lg {
    flex-grow: 1;
  }
}