@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "banana";
  font-style: normal;
  font-weight: 700;
  src: url("../../assets/fonts/bananaslipplus.woff2") format("woff2");
  font-display: swap;
}

:root {
  --head-size: 90px;
  --side-padding: 80px;
  --sec-padding: 100px;
  --sec-short: calc(var(--sec-padding) - 40px);
  --basic-margin: 70px;
}

@media all

/* 1080px */
  {
  :root {
    --head-size: 90px;
    --side-padding: 50px;
    --sec-padding: 80px;
    --sec-short: 60px;
    --basic-margin: 50px;
  }
}

@media all

/* 840px */
  {
  :root {
    --head-size: 80px;
    --side-padding: 40px;
    --sec-padding: 50px;
    --sec-short: 40px;
    --basic-margin: 40px;
  }
}

@media all

/* 560px */
  {
  :root {
    --head-size: 65px;
    --side-padding: 24px;
    --sec-padding: 30px;
    --sec-short: 30px;
    --basic-margin: 30px;
  }
}

.-pc {
  display: none !important;
}

.-sp {
  display: block !important;
}

html,
body {
  height: auto;
  position: relative;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #fff;
  color: #444;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  word-spacing: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(227, 117, 137, 0.6);
  -moz-tap-highlight-color: rgba(227, 117, 137, 0.6);
  tap-highlight-color: rgba(227, 117, 137, 0.6);
}

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

*::selection {
  background-color: #214359;
  color: #fff;
}

*::-moz-selection {
  background-color: #214359;
  color: #fff;
}

main {
  display: block;
}

div,
p,
ol,
ul,
li,
dl,
dt,
dd,
figure,
figcaption {
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media all

/* 840px */
  {

  div,
  p,
  ol,
  ul,
  li,
  dl,
  dt,
  dd,
  figure,
  figcaption {
    font-size: 1.4rem;
  }
}

@media all

/* 560px */
  {

  div,
  p,
  ol,
  ul,
  li,
  dl,
  dt,
  dd,
  figure,
  figcaption {
    font-size: 1.2rem;
  }
}

div,
p,
figure {
  margin: 0;
}

ul,
dl,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

strong {
  color: #e37589;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-touch-callout: none;
  cursor: pointer;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 1;
  }
}

img,
a img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-style: none;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
  }
}

/* ★ スプリット用のコンテナ基準 ★ */
.wrapper {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  /* これによりcqwが有効になります */
}

.resizeShow {
  display: none;
}

.resizeHide {
  display: inherit;
}

.ctaBtn {
  display: inline-block;
  width: auto;
  padding: 36px 90px;
  position: relative;
  background-color: #214359;
  border-radius: 3em;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
  transition: all 0.2s;

  &.-style01 {
    width: 30cqw;
    font-size: 1.5cqw;
    margin-top: 5cqw;
  }

  &.-style02 {
    width: 35cqw;
    font-size: 1.5cqw;
  }

  &.-style02Color {
    background-color: #a99b63;
  }
}

.ctaBtn.-head {
  padding: 0.6em 3em;
  font-size: 110%;
  box-shadow: none;
  margin-right: 1em;
}

.ctaBtn.-head::after {
  display: none;
}

.telBtn {
  display: inline-block;
  opacity: 1.0;
  transition: all 0.2s;
  width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .ctaBtn:hover {
    background-color: #fff;
    color: #214359;
    transform: translate3d(0, 6px, 0);

    &.-style02Color {
      color: #a99b63;
    }
  }

  .ctaBtn:hover::after {
    border-color: #fff;
  }

  .ctaBtn.-head:hover {
    background-color: #fff;
    color: #214359;
    transform: translate3d(0, 0, 0);

    &.-style02Color {
      color: #a99b63;
    }
  }

  .telBtn:hover {
    opacity: 0.8;
    transform: translate3d(0, 6px, 0);
  }
}

@media all

/* 840px */
  {
  .ctaBtn.-head {
    display: none;
  }
}

@media all

/* 560px */
  {
  .ctaBtn {
    padding: 1.216em 2em;
  }
}

.followCTA {
  display: none;
}

@media all

/* 840px */
  {
  .followCTA {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 12px 30px 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    text-align: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
    transition: transform 0.3s, opacity 0.3s;

    .cta-text {
      color: #214359;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 12px;
    }
  }

  .followCTA.is-scroll {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .followCTA .ctaBtn {
    width: 100%;
    max-width: 540px;
    font-size: 15px;
  }
}

.dial {
  display: block;
  margin-top: 1.8em;
  text-align: center;
}

.dial h4 {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
}

.dial p {
  display: inline-block;
  margin-top: 1em;
}

@media all

/* 1080px */
  {
  .dial {
    margin-top: 2em;
  }

  .dial h4 {
    font-size: 2.222cqw;
  }

  .dial p {
    margin-top: 0.6em;
  }
}

@media all

/* 840px */
  {
  .dial h4 {
    font-size: 2.857cqw;
  }

  .dial p {
    margin-top: 0.4em;
  }
}

@media all

/* 560px */
  {
  .dial h4 {
    font-size: 4cqw;
  }
}

.dialNum {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dialNum_icon {
  flex: 0 0 auto;
  width: 64px;
  margin-right: 1.4em;
}

.dialNum_number {
  flex: 0 0 auto;
}

.dialNum_number a {
  font-family: "banana", sans-serif;
  color: #e37589;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.05em;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .dialNum_number a:hover {
    color: #da4b65;
  }
}

@media all

/* 1080px */
  {
  .dialNum {
    align-items: center;
  }

  .dialNum_icon {
    width: 8.333cqw;
    margin-right: 1em;
  }

  .dialNum_number a {
    font-size: 5.556cqw;
  }
}

@media all

/* 840px */
  {
  .dialNum {
    margin-top: 0.4em;
  }

  .dialNum_icon {
    width: 7.143cqw;
    margin-top: 0.4em;
  }

  .dialNum_number a {
    font-size: 6.905cqw;
  }
}

@media all

/* 560px */
  {
  .dialNum_icon {
    width: 10.714cqw;
  }

  .dialNum_number a {
    font-size: 10.133cqw;
  }
}

.flagTitle {
  display: block;
  position: relative;
}

.flagTitle h2 {
  display: block;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
}

.flagTitle h2.reason {
  max-width: 900px;
}

.flagTitle h2.resolve {
  max-width: 750px;
}

.flagTitle h2.useful {
  max-width: 670px;
}

.flagTitle[data-target="on"] h2 {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
}

.flagTitle[data-target="on"] .flag.-left {
  animation: flagLeft 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

.flagTitle[data-target="on"] .flag.-right {
  animation: flagRight 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

@media all

/* 1080px */
  {
  .flagTitle {
    margin-top: 3.704cqw;
  }
}

@media all

/* 840px */
  {
  .flagTitle {
    margin-top: 4.762cqw;
  }
}

@media all

/* 560px */
  {
  .flagTitle {
    margin-top: 10.714cqw;
  }
}

.flag {
  display: block;
  width: 28%;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.flag.-left {
  left: 0;
  transform: translate3d(-38%, -10%, 0) rotate(-20deg);
}

.flag.-right {
  right: 0;
  transform: translate3d(38%, -10%, 0) rotate(20deg) scale(-1, 1);
}

@media all

/* 1080px */
  {
  .flag {
    width: 25%;
  }
}

@media all

/* 840px */
  {
  .flag.-left {
    transform: translate3d(-40%, -50%, 0) rotate(-20deg);
  }

  .flag.-right {
    transform: translate3d(40%, -50%, 0) rotate(20deg) scale(-1, 1);
  }
}

@media all

/* 560px */
  {
  .flag {
    width: 24%;
  }

  .flag.-left {
    transform: translate3d(0, -120%, 0) rotate(-20deg);
  }

  .flag.-right {
    transform: translate3d(0, -120%, 0) rotate(20deg) scale(-1, 1);
  }
}

@keyframes flagLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    top: -5%;
    left: -5%;
  }

  100% {
    opacity: 1;
    visibility: visible;
    top: 0;
    left: 0;
  }
}

@keyframes flagRight {
  0% {
    opacity: 0;
    visibility: hidden;
    top: -5%;
    right: -5%;
  }

  100% {
    opacity: 1;
    visibility: visible;
    top: 0;
    right: 0;
  }
}

.burstTitle {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}

.burstTitle p {
  margin-top: -0.6em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
}

@media all

/* 840px */
  {
  .burstTitle p {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .burstTitle p {
    font-size: 83.4%;
  }
}

@media all

/* 840px */
  {
  .burstTitle p {
    margin-top: 0.4em;
  }
}

@media all

/* 560px */
  {
  .burstTitle p {
    margin-top: 2em;
    text-align: left;
  }
}

.row2Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.row2Box_item h3 {
  color: #e37589;
  font-weight: 700;
  line-height: 1.5;
  font-size: min(2.4cqw, 2.8rem);
}

.row2Box_item img {
  margin-top: 1em;
}

.row2Box_item p {
  margin-top: 1em;
  font-size: 110%;
  text-align: justify;
}

.row2Box_item .note {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
}

@media all

/* 840px */
  {
  .row2Box_item .note {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .row2Box_item .note {
    font-size: 83.4%;
  }
}

.row2Box_item .note span {
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 1em;
  text-indent: -1em;
}

@media all

/* 1080px */
  {
  .row2Box_item h3 {
    font-size: 2.407cqw;
  }
}

@media all

/* 840px */
  {
  .row2Box_item h3 {
    font-size: 3.095cqw;
  }
}

@media all

/* 560px */
  {
  .row2Box {
    flex-direction: column;
  }

  .row2Box_item:not(:first-of-type) {
    margin-top: 7.143cqw;
  }

  .row2Box_item h3 {
    font-size: 5.333cqw;
  }
}

.row2Box_item {
  flex: 0 0 46%;
}

.row2Box_item:nth-last-of-type(-n + 2) {
  margin-top: 4em;
}

@media all

/* 1080px */
  {
  .row2Box_item {
    flex: 0 0 47%;
  }

  .row2Box_item:nth-last-of-type(-n + 2) {
    margin-top: 3.25em;
  }
}

@media all

/* 560px */
  {
  .row2Box_item {
    flex: 0 0 auto;
    width: 100%;
  }

  .row2Box_item:nth-last-of-type(-n + 2) {
    margin-top: 7.143cqw;
  }
}

.row3Box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.row3Box_item h3 {
  color: #e37589;
  font-weight: 700;
  line-height: 1.5;
  font-size: min(2.4cqw, 2.8rem);
}

.row3Box_item img {
  margin-top: 1em;
}

.row3Box_item p {
  margin-top: 1em;
  font-size: 110%;
  text-align: justify;
}

.row3Box_item .note {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
}

@media all

/* 840px */
  {
  .row3Box_item .note {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .row3Box_item .note {
    font-size: 83.4%;
  }
}

.row3Box_item .note span {
  display: block;
  margin: 0;
  padding: 0;
  padding-left: 1em;
  text-indent: -1em;
}

@media all

/* 1080px */
  {
  .row3Box_item h3 {
    font-size: 2.407cqw;
  }
}

@media all

/* 840px */
  {
  .row3Box_item h3 {
    font-size: 3.095cqw;
  }
}

@media all

/* 560px */
  {
  .row3Box {
    flex-direction: column;
  }

  .row3Box_item:not(:first-of-type) {
    margin-top: 7.143cqw;
  }

  .row3Box_item h3 {
    font-size: 5.333cqw;
  }
}

.row3Box_item {
  flex: 0 0 30%;
}

.row3Box_item p {
  font-size: 100%;
}

.row3Box_item.-spacer {
  display: none;
}

@media all

/* 1080px */
  {
  .row3Box_item {
    flex: 0 0 31%;
  }
}

@media all

/* 840px */
  {
  .row3Box_item {
    flex: 0 0 47%;
  }

  .row3Box_item.-spacer {
    display: inherit;
    opacity: 0;
    visibility: hidden;
  }

  .row3Box_item:nth-last-of-type(-n + 2) {
    margin-top: 2em;
  }
}

@media all

/* 560px */
  {
  .row3Box_item {
    flex: 0 0 auto;
    width: 100%;
  }

  .row3Box_item:nth-last-of-type(-n + 2) {
    margin-top: 7.143cqw;
  }

  .row3Box_item.-spacer {
    display: none !important;
  }
}

.radiusImg {
  border-radius: 2em;
}

@media all

/* 840px */
  {
  .radiusImg {
    border-radius: 1em;
  }
}

.waveS {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translate3d(-50%, 0, 0);
  min-width: 1600px;
  height: 82px;
  bottom: -81px;
}

@media all

/* 1080px */
  {
  .waveS {
    min-width: initial;
    width: 120%;
    height: 8.333cqw;
    bottom: -8.241cqw;
  }
}

@media all

/* 840px */
  {
  .waveS {
    width: 100%;
    height: 4.762cqw;
    bottom: -4.643cqw;
  }
}

@media all

/* 560px */
  {
  .waveS {
    width: 100%;
    height: 3.571cqw;
    bottom: -3.393cqw;
  }
}

.waveL {
  display: block;
  width: 100%;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translate3d(-50%, 0, 0);
  min-width: 1600px;
  height: 110px;
}

.waveL.-over {
  top: -109px;
}

.waveL.-under {
  bottom: -109px;
}

@media all

/* 1080px */
  {
  .waveL {
    min-width: initial;
    width: 150%;
    height: 10.185cqw;
  }

  .waveL.-over {
    top: -10.093cqw;
  }

  .waveL.-under {
    bottom: -10.093cqw;
  }
}

@media all

/* 840px */
  {
  .waveL {
    width: 120%;
    height: 5.952cqw;
  }

  .waveL.-over {
    top: -5.833cqw;
  }

  .waveL.-under {
    bottom: -5.833cqw;
  }
}

@media all

/* 560px */
  {
  .waveL {
    width: 100%;
    height: 5.357cqw;
  }

  .waveL.-over {
    top: -5.179cqw;
  }

  .waveL.-under {
    bottom: -5.179cqw;
  }
}

.siteNav {
  display: block;
  width: 100%;
  height: var(--head-size);
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  z-index: 100;
  transition: background-color 0.3s;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;

  .hamburgerMenu {
    display: none;

    @media all

    /* 840px */
      {
      display: inline-block;
      width: 30px;
      height: 24px;
      position: relative;
      cursor: pointer;
    }
  }

  .hamburgerMenu span {
    display: block;
    width: 130%;
    height: 2px;
    background-color: #333;
    position: absolute;
    right: 20px;
    border-radius: 2px;
  }

  .hamburgerMenu span:nth-child(1) {
    top: 0;
  }

  .hamburgerMenu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburgerMenu span:nth-child(3) {
    bottom: 0;
  }
}

.siteNav.is-scroll {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 1;
  visibility: visible;
}

@media all

/* 840px */
  {
  .siteNav.is-scroll {
    background-color: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    opacity: 1;
    visibility: visible;
  }

  .siteNav {
    display: block;
    width: 100%;
    height: var(--head-size);
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 100;
    transition: background-color 0.3s;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .siteNav .headLogo {
    display: none;
  }
}

.siteNav .hamburgerMenu span {
  background-color: #a99b63;
}

.headWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  padding-right: 0;
}

.headLogo {
  width: 180px;
  margin-right: auto;
}

@media all

/* 840px */
  {
  .headLogo {
    width: 110px;
  }
}

.headMom {
  width: auto;
  height: 100%;
  margin-left: 2em;
}

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

.siteBottom {
  margin-top: 110px;
  padding: 100px 0 60px;
  position: relative;
  background-color: #f8f3ee;
  text-align: center;
}

@media all

/* 1080px */
  {
  .siteBottom {
    margin-top: 10.185cqw;
  }
}

@media all

/* 560px */
  {
  .siteBottom {
    margin-top: 5.952cqw;
    padding: 30px 0 30px;
    padding-bottom: calc(30px + constant(safe-area-inset-bottom));
    padding-bottom: calc(30px + env(safe-area-inset-bottom));
  }
}

.footLogo {
  display: block;
  width: 310px;
  margin: 0 auto;
}

@media all

/* 1080px */
  {
  .footLogo {
    width: 28.704cqw;
  }
}

@media all

/* 840px */
  {
  .footLogo {
    width: 35.714cqw;
  }
}

.copy {
  font-size: 1.2rem;
}

@media all

/* 560px */
  {
  .copy {
    font-size: 1rem;
  }
}

@media all

/* 840px */
  {
  .footLinkWrap {
    display: inline-block;
  }
}

.footLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
  text-align: center;
}

.footLinks_item {
  display: 0 0 auto;
  margin: 0 1em;
  position: relative;
}

.footLinks_item:not(:first-of-type)::before {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  position: absolute;
  top: 50%;
  left: -1em;
  background-color: #444;
  transform: translate3d(0, -50%, 0);
}

.footLinks_item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.4em 1em;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .footLinks_item a:hover {
    text-decoration: underline;
  }
}

@media all

/* 1080px */
  {
  .footLinks {
    margin: 8.333cqw auto 7.407cqw;
  }
}

@media all

/* 840px */
  {
  .footLinks {
    flex-direction: column;
    align-items: stretch;
    width: auto;
    margin: 7.143cqw auto 7.143cqw;
  }

  .footLinks_item {
    flex: 0 1 auto;
  }

  .footLinks_item:not(:first-of-type)::before {
    display: none;
  }

  .footLinks_item a {
    padding: 0.8em 1.4em;
  }
}

@media all

/* 560px */
  {
  .footLinks {
    margin: 1.6em auto 2.8em;
  }
}

.pageTop {
  display: block;
  width: 98px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -30%, 0);
  transition: opacity 0.6s, transform 0.6s;
}

.pageTop.is-scroll {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.pageTop a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .pageTop a:hover {
    transform: translate3d(0, -10%, 0);
  }
}

@media all

/* 1080px */
  {
  .pageTop {
    width: 9.074cqw;
  }
}

@media all

/* 840px */
  {
  .pageTop {
    display: none;
  }
}

@media all

/* 840px */
  {
  .mainContents {
    padding-bottom: var(--side-padding);
  }
}

section {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.adjustWrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.secIntro {
  background-color: #dddddc;
}

.secIntro h3 {
  margin-top: var(--basic-margin);
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: min(3.15cqw, 3.6rem);
}

@media all

/* 1080px */
  {
  .secIntro h3 {
    font-size: 3.148cqw;
  }
}

@media all

/* 840px */
  {
  .secIntro h3 {
    font-size: 4.048cqw;
  }

  .secIntro h3 .resizeShow {
    display: inline;
  }
}

.introMain {
  width: 100%;
}

@media all

/* 840px */
  {
  .introMain {
    gap: 1em 1em;
    grid-template-areas: "title title""image award""image detail""note-sp note-sp""note note";
  }
}

.introMainImage {
  grid-area: image;
  opacity: 1;
  position: relative;
  width: 100cqw;
}

.introMainImage img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left center;
}

.introMainTitle {
  grid-area: title;
  opacity: 1;
}

.introMainAward {
  grid-area: award;
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  grid-template-rows: auto 1fr;
  gap: 0.4em 1em;
  grid-template-areas: "badge title""badge text";
  justify-content: center;
  padding-top: 1.6em;
  opacity: 1;
}

.introMainAward_badge {
  grid-area: badge;
}

.introMainAward h2 {
  grid-area: title;
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: min(2.4cqw, 3rem);
  text-align: left;
}

.introMainAward_textSet {
  grid-area: text;
}

.introMainAward_textSet h4 {
  margin-top: 0.4em;
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: min(1.56cqw, 2rem);
  text-align: left;
}

.introMainAward_textSet p {
  margin-top: 0.8em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
}

@media all

/* 840px */
  {
  .introMainAward_textSet p {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .introMainAward_textSet p {
    font-size: 83.4%;
  }
}

@media all

/* 1080px */
  {
  .introMainAward h2 {
    font-size: 2.407cqw;
  }

  .introMainAward_textSet h4 {
    font-size: 1.852cqw;
  }
}

@media all

/* 840px */
  {
  .introMainAward {
    grid-template-columns: 0.6fr 1.4fr;
    grid-template-rows: auto auto;
    gap: 1em 0.8em;
    padding-top: 0.6em;
  }

  .introMainAward h2 {
    padding-top: 0.2em;
    font-size: 4cqw;
  }

  .introMainAward h2 .resizeShow {
    display: inline;
  }

  .introMainAward_textSet {
    margin-top: -1em;
  }

  .introMainAward_textSet h4 {
    margin-top: 0;
    font-size: 2.987cqw;
  }

  .introMainAward_textSet p {
    display: none;
  }
}

.introMainDetail {
  grid-area: detail;
  display: flex;
  justify-content: space-between;
  opacity: 1;
}

.introMainDetail_item {
  flex: 0 0 49%;
}

.introMainNote {
  font-weight: 400;
  line-height: 1.4;
  opacity: 1;
  width: 50%;
  height: auto;
  position: absolute;
  top: 6cqw;
  text-align: center;
  font-size: medium;
  margin-top: 4cqw;

  &.-style02 {
    width: 100%;
    top: 0;
    height: 100vh;

    @media all

    /* 840px */
      {
      top: 10cqw;
    }
  }

  @media all

  /* 840px */
    {
    width: 100%;
    top: 30px;
  }

  .auraLogo {
    width: 10cqw;
    margin: auto;

    @media all

    /* 840px */
      {
      width: 22cqw;
      margin-top: 5cqw;
    }

    &.-style02 {
      @media all

      /* 840px */
        {
        width: 18cqw;
        margin-top: 0;
      }
    }
  }

  .mainCopy {
    width: 22cqw;
    margin: 3cqw auto;

    @media all

    /* 840px */
      {
      width: 65cqw;
      margin: 6cqw auto;
    }

    &.-style02 {
      margin: 2cqw auto;

      @media all

      /* 840px */
        {
        width: 75cqw;
        margin: 9cqw auto 6cqw;
      }
    }
  }

  .award {
    width: 14cqw;
    margin: auto;

    @media all

    /* 840px */
      {
      width: 32cqw;
      margin: auto;
      transform: translate(-16cqw, 0);
    }

    &.-style02 {
      width: 12cqw;
      margin: 0 4cqw 0;
      transform: translate(0, 4cqw);

      @media all

      /* 840px */
        {
        width: 25cqw;
        margin: auto;
        transform: translate(0, 0);
      }
    }
  }

  .bottom {
    width: 100%;

    @media all

    /* 840px */
      {
      margin-top: 57cqw;
    }

    &.-style02 {
      margin-top: 20cqw;

      @media all

      /* 840px */
        {
        margin-top: 65cqw;
      }
    }
  }

  .text {
    font-size: 0.8cqw;
    margin: 1cqw 4cqw 0;
    text-align: center;

    @media all

    /* 840px */
      {
      font-size: 2cqw;
      margin-bottom: 2cqw;
    }

    &.-style02 {
      color: #fff;
      margin: 1cqw 4cqw 0;
      text-align: left;
      transform: translate(0, 4cqw);

      @media all

      /* 840px */
        {
        margin: auto;
        text-align: center;
      }
    }
  }

  .ctaBtn {
    padding: 1.5cqw 4.5cqw;
    font-size: 1.4cqw;

    @media all

    /* 840px */
      {
      padding: 5cqw 4.5cqw;
    }
  }
}

.introMainNote.logo {
  width: 10cqw;
  right: 10%;
  top: -1cqw;

  @media all

  /* 840px */
    {
    left: 4cqw;
    width: 20cqw;
    top: 1cqw;
  }
}

@media all

/* 840px */
  {
  .introMainNote {
    font-size: 83.4%;
  }
}

.introMainNote.-sp {
  display: none;
}

@media all

/* 840px */
  {
  .introMainNote.-sp {
    grid-area: note-sp;
    display: inherit;
  }
}

.content-padding {
  max-width: 1000px;
  margin: auto;

  .-sectionFeature {
    background-color: #fff;
  }

  @media all

  /* 840px */
    {
    padding: 0;
  }
}

.section1 {
  position: relative;
  background: #dfe2e5;
  padding: 56px 0 0;

  .bannerArea {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 75px;

    @media all

    /* 840px */
      {
      display: block;
      margin-top: 24px;
      margin-bottom: 48px;
    }

    .banner {
      cursor: pointer;
      width: 45%;

      @media all

      /* 840px */
        {
        width: 100%;
        margin: 16px 0;
      }
    }
  }

  .detailArea {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;

    .detailServerImage {
      width: 354px;

      img {
        height: 100%;
      }
    }

    @media all

    /* 840px */
      {
      display: block;
    }

    .server {
      width: 100%;
      object-fit: contain;
      object-position: bottom;

      @media all

      /* 840px */
        {
        object-fit: contain;
        margin-top: 40px;
        width: 100%;
        height: 311px;
        margin: auto;
      }
    }

    .detailText {
      @media all

      /* 840px */
        {
        text-align: center;
      }

      .asterisk {
        font-size: 20px;
        vertical-align: top;

        @media all

        /* 840px */
          {
          font-size: 15px;
          transform: translate(0, -20px);
        }
      }

      .text1 {
        color: #424242;

        p {
          font-size: 38px;
          font-weight: 700;
          line-height: 54px;
        }
      }

      .text2 {
        color: #424242;
        margin: 50px 0;

        p {
          font-size: 22px;
          font-weight: 400;
          line-height: 38px;
        }

        @media all

        /* 840px */
          {
          margin: 24px 0;

          p {
            font-size: 16px;
            font-size: 16px;
            font-style: normal;
            font-size: 16px;
            font-style: normal;
            line-height: 26px;
          }
        }
      }

      .text3 {
        color: #424242;
        margin-top: 18px;
        margin-bottom: 24px;

        p {
          font-size: 10px;
          font-weight: 400;
          line-height: 16px;
        }

        @media all

        /* 840px */
          {
          margin: 16px 0 48px;

          p {
            font-size: 7px;
            line-height: 14px;
          }
        }
      }

      .text4Sp {
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
      }

      .text5Sp {
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 125% */
        text-align: left;
        margin-right: 6px;

        &.-big {
          font-size: 22px;
        }
      }

      .text6Sp {
        color: #424242;
        font-family: "Noto Sans JP";
        font-size: 48px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
        /* 100% */
      }

      .text7Sp {
        color: #424242;
        font-family: "Noto Sans JP";
        font-size: 20.5px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
        /* 100% */
      }

      .flex {
        display: flex;
        justify-content: center;
        align-items: end;
        gap: 2px;
        margin: 6px 0;

        @media all

        /* 840px */
          {
          margin: auto;
        }
      }

      .award {
        width: 45%;

        @media all

        /* 840px */
          {
          width: 65%;
          margin: auto;
          margin-top: 40px;
        }
      }
    }
  }
}

.section1_deco {
  width: 94px;
  position: absolute;
  top: 2%;
  left: 0;
}

.section1_deco.-right {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}

@media all

/* 840px */
  {
  .section1 {
    padding: 0 7.143cqw;
  }

  .section1 p {
    font-size: 100%;
  }

  .section1_deco {
    width: 7.143cqw;
    top: 5%;
  }
}

.ctaCenter {
  text-align: center;
  width: 70%;
  margin: auto;
}

@media all

/* 840px */
  {
  .ctaCenter .ctaBtn {
    width: calc(100% + 14.286cqw);
    margin-left: -7.143cqw;
    margin-top: 3cqw;
    font-size: 4cqw;
  }
}

.dialWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.section2Pc {
  display: flex;
  height: 740px;

  .left {
    position: relative;
    width: 52%;
  }

  .right {
    position: relative;
    width: 48%;
  }

  .left img,
  .right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .imageA img {
    height: 100%;
    object-fit: cover;
  }

  .imageB img {
    height: 440px;
    object-fit: cover;

    @media all

    /* 840px */
      {
      height: 250px;
    }
  }

  .imageC img {
    height: 300px;
    top: 440px;
    object-fit: cover;

    @media all

    /* 840px */
      {
      height: 150px;
      top: 250px;
    }
  }

  .left img.active,
  .right img.active {
    opacity: 1;
  }
}

.section2Sp {
  height: 348px;

  .top,
  .bottom {
    position: relative;
    width: 100%;
  }

  .bottom {
    display: flex;
    top: 178px;
  }

  .top img,
  .bottom img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .imageASp img {
    width: 100;
    height: 178px;
    object-fit: cover;
  }

  .imageBSp {
    width: 65%;

    p {
      position: relative;

      img {
        width: 100%;
        height: 170px;
        object-fit: cover;
      }
    }
  }

  .imageCSp {
    width: 35%;

    p {
      position: relative;

      img {
        width: 100%;
        height: 170px;
        top: 0px;
        object-fit: cover;
      }
    }
  }

  .top img.active,
  .bottom img.active {
    opacity: 1;
  }
}

.section3 {
  text-align: center;
  padding: 46px 178px 96px;
  background-color: #fff;

  @media all

  /* 840px */
    {
    padding: 32px 32px 96px;
  }

  .text1 {
    color: #444;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    @media all

    /* 840px */
      {
      text-align: center;
      font-family: "Noto Sans JP";
      font-size: 20px;
    }
  }

  .center {
    margin: 48px 0;

    @media all

    /* 840px */
      {
      margin: 32px 0;
    }
  }

  .text2 {
    color: #444;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;

    @media all

    /* 840px */
      {
      text-align: left;
      font-family: "Noto Sans JP";
      font-size: 12px;
      line-height: 26px;
      max-width: 600px;
      margin: auto;
    }
  }

  .text3 {
    color: #444;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    @media all

    /* 840px */
      {
      font-size: 10px;
    }
  }

  .nendo {
    width: 242px;
    margin: auto;
    margin-bottom: 25px;

    @media all

    /* 840px */
      {
      width: 170px;
      margin-bottom: 10px;
    }
  }
}

.sectionFeature {
  background-color: #fff;
  color: #444;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 1px;

  @media all

  /* 840px */
    {
    font-size: 18px;
    line-height: 18px;
    /* 100% */
    letter-spacing: 0.9px;
  }

  .featureTitle1 {
    background-color: #fff;
    display: flex;
    align-items: center;
    width: calc(100% - 80px);
    height: auto;
    gap: 32px;
    padding: 32px 40px;
    margin: 0 40px;

    @media all

    /* 840px */
      {
      display: block;
      width: 100%;
      padding: 16px;
      height: auto;
      margin: 0;
    }

    img {
      width: 200px;

      @media all

      /* 840px */
        {
        width: 120px;
      }
    }

    .text {
      @media all

      /* 840px */
        {
        margin-top: 8px;
      }

      .titleText1 {
        color: #444;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 8px;

        @media all

        /* 840px */
          {
          font-size: 16px;
          line-height: 18px;
          margin-bottom: 0px;
        }
      }

      .titleText2 {
        color: #444;
        font-family: "Noto Sans JP";
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 44px;

        @media all

        /* 840px */
          {
          font-size: 28px;
          line-height: 32px;
          margin-top: 8px;
        }
      }
    }
  }

  .featureTitle2 {
    background-color: #fff;
    width: 398px;
    padding: 40px;
    margin-bottom: 80px;

    @media all

    /* 840px */
      {
      display: block;
      padding: 16px;
      height: auto;
      width: 100%;
      margin-bottom: 0;
    }

    img {
      width: 156px;

      @media all

      /* 840px */
        {
        width: 120px;
      }
    }

    .text {
      padding-top: 10px;

      .titleText1 {
        color: #444;
        font-family: "Noto Sans JP";
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        margin-bottom: 8px;

        @media all

        /* 840px */
          {
          font-size: 16px;
          line-height: 18px;
          margin-bottom: 0;
        }
      }

      .titleText2 {
        color: #444;
        font-family: "Noto Sans JP";
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 44px;

        @media all

        /* 840px */
          {
          font-size: 28px;
          line-height: 32px;
          margin-top: 8px;
        }
      }
    }
  }

  .feature1 {
    background-color: #fff;
    text-align: left;
    margin-top: 32px;

    .detail1 {
      padding: 40px 0;
      background-color: #ecebe9;
      max-width: 1000px;
      margin: 0 auto 16px;

      @media all

      /* 840px */
        {
        padding: 16px 16px 32px;
        max-width: auto;
        margin: 0 auto 16px;
      }

      .text1 {
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 50px;
        /* 166.667% */
        letter-spacing: 1.5px;
        margin: 56px 0;

        @media all

        /* 840px */
          {
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px;
          /* 171.429% */
          letter-spacing: 0.7px;
          padding: 32px;
          margin: 0;
        }
      }

      .detail-img {
        width: 474px;
        margin: 0 auto 56px;

        @media all

        /* 840px */
          {
          width: 100%;
          margin: 0;
        }
      }

      .text2 {
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 200% */
        margin-bottom: 16px;

        @media all

        /* 840px */
          {
          font-family: "Noto Sans JP";
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 28px;
          /* 155.556% */
          letter-spacing: 0.9px;
          padding: 32px;
          margin-bottom: 0;
        }
      }

      .text3 {
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.8px;

        @media all

        /* 840px */
          {
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 22px;
          /* 183.333% */
          letter-spacing: 0.6px;
        }
      }
    }

    .detail2 {
      background-color: #ecebe9;
      max-width: 1000px;
      margin: 0 auto 16px;

      @media all

      /* 840px */
        {
        max-width: 100%;
        margin: 0 auto 16px;
      }

      .flex {
        padding: 32px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 120px;

        @media all

        /* 840px */
          {
          padding: 32px 55px 0;
          display: block;
        }
      }

      .text {
        width: 392px;
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";

        @media all

        /* 840px */
          {
          width: 100%;
        }

        .text1 {
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;

          @media all

          /* 840px */
            {
            font-size: 18px;
            line-height: 34px;
            /* 188.889% */
            letter-spacing: 0.9px;
          }
        }

        .text2 {
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 28px;
          margin-bottom: 64px;
          letter-spacing: 0.8px;

          @media all

          /* 840px */
            {
            font-size: 14px;
            line-height: 24px;
            /* 171.429% */
            letter-spacing: 0.7px;
            margin-bottom: 0;
          }
        }

        .text3 {
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 28px;
          letter-spacing: 0.8px;

          @media all

          /* 840px */
            {
            font-size: 12px;
            line-height: 22px;
            /* 183.333% */
            letter-spacing: 0.6px;
            padding: 32px 0;
          }
        }
      }

      img {
        width: 340px;

        @media all

        /* 840px */
          {
          width: 100%;
        }
      }
    }

    .detail3 {
      max-width: 1000px;
      margin: 0 auto 16px;

      .image {
        display: flex;
        gap: 16px;
        margin-bottom: 16px;

        @media all

        /* 840px */
          {
          margin-bottom: 0;
        }

        img {
          @media all

          /* 840px */
            {
            width: 100%;
          }
        }
      }

      .text {
        display: flex;
        text-align: center;
        margin-bottom: 96px;

        @media all

        /* 840px */
          {
          padding: 16px 0 40px;
          margin-bottom: 0;
        }

        .area {
          width: 50%;

          @media all

          /* 840px */
            {
            width: 100%;
          }
        }

        .text1 {
          color: #444;
          text-align: center;
          font-family: "Noto Sans JP";
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;
          /* 200% */
          margin-bottom: 8px;

          @media all

          /* 840px */
            {
            font-size: 18px;
            line-height: 20px;
            /* 111.111% */
            letter-spacing: 0.9px;
            margin-bottom: 0px;
          }
        }

        .text2 {
          color: #444;
          text-align: center;
          font-family: "Noto Sans JP";
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 28px;
          letter-spacing: 0.8px;

          @media all

          /* 840px */
            {
            font-size: 14px;
            line-height: 14px;
            /* 100% */
            letter-spacing: 0.7px;
            margin-top: 16px;
          }
        }
      }
    }
  }

  .feature2 {
    background-color: #fff;
    text-align: left;
    margin-bottom: 96px;

    @media all

    /* 840px */
      {
      margin-bottom: 64px;
    }

    .detail1 {
      padding: 40px;
      background-color: #ecebe9;

      @media all

      /* 840px */
        {
        padding: 16px 16px 32px;
      }

      .featureTitle1 {
        width: 100%;
        margin: 0;
      }

      .temperature {
        display: flex;
        justify-content: space-around;
        gap: 28px;
        margin: 40px 0;

        @media all

        /* 840px */
          {
          gap: 20px;
          margin: 24px 0;
        }

        div {
          img {
            margin-bottom: 16px;
            @media all

            /* 840px */
              {
              margin-bottom: 8px;
            }
          }

          text-align: center;
          color: #444;
          font-family: "Noto Sans JP";
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 24px;
          letter-spacing: 1.5px;

          @media all

          /* 840px */
            {
            width: 28%;
            font-size: 14px;
            line-height: 18px;
            /* 128.571% */
            letter-spacing: 0.7px;
          }
        }
      }

      .text1 {
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 1.5px;
        margin-bottom: 40px;

        @media all

        /* 840px */
          {
          font-size: 14px;
          line-height: 24px;
          /* 171.429% */
          letter-spacing: 0.7px;
          padding: 0;
          margin-bottom: 24px;
        }
      }

      .explanation {
        display: flex;
        justify-content: space-between;
        gap: 16px;

        @media all

        /* 840px */
          {
          display: block;
        }

        img {
          @media all

          /* 840px */
            {
            width: 100%;
            margin-top: 16px;
          }
        }
      }
    }
  }

  .feature3 {
    background-color: #fff;
    text-align: left;

    .detail1 {
      background-color: #ecebe9;
      max-width: 1000px;
      padding: 0 40px 40px;
      margin: 0 auto 16px;

      @media all

      /* 840px */
        {
        padding: 16px 16px 32px;
        max-width: auto;
        margin: 0 auto 16px;
      }

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

      .server {
        width: 347px;

        @media all

        /* 840px */
          {
          width: 80%;
          margin: auto;
        }
      }

      .text1 {
        color: #444;
        text-align: left;
        font-family: "Noto Sans JP";
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: 1.5px;

        @media all

        /* 840px */
          {
          font-size: 14px;
          line-height: 24px;
          /* 171.429% */
          letter-spacing: 0.7px;
          text-align: center;
          padding: 32px 0;
        }
      }

      .text2 {
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 200% */
        letter-spacing: 1.5px;
        margin-bottom: 8px;

        @media all

        /* 840px */
          {
          font-size: 18px;
          line-height: 24px;
          /* 133.333% */
          letter-spacing: 0.9px;
          padding: 0;
          margin-bottom: 0;
        }
      }

      .text3 {
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        /* 104.167% */
        letter-spacing: 1.2px;

        @media all

        /* 840px */
          {
          font-size: 14px;
          letter-spacing: 0.7px;
          padding: 8px 0 32px;
        }
      }
    }

    .detail2 {
      background-color: white;
      display: flex;
      gap: 16px;
      padding-bottom: 93px;
      margin: 0 auto;

      @media all

      /* 840px */
        {
        display: block;
        padding-bottom: 0;
        margin: 0;
      }

      .detail-img {
        width: 100%;
        background-color: #ecebe9;
      }

      img {
        width: 100%;
        margin-bottom: 16px;
      }

      .text1 {
        background-color: white;
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        /* 100% */
        letter-spacing: 1.5px;

        @media all

        /* 840px */
          {
          font-size: 18px;
          line-height: 20px;
          /* 111.111% */
          letter-spacing: 0.9px;
          padding-bottom: 8px;
        }
      }

      .text2 {
        background-color: white;
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        /* 104.167% */
        letter-spacing: 1.2px;
        margin-bottom: 8px;

        @media all

        /* 840px */
          {
          font-size: 14px;
          line-height: 14px;
          /* 100% */
          letter-spacing: 0.7px;
          margin-bottom: 0;
          padding-bottom: 8px;
        }
      }

      .text2.-end {
        @media all

        /* 840px */
          {
          padding-bottom: 64px;
        }
      }

      .text3 {
        background-color: white;
        color: #444;
        text-align: center;
        font-family: "Noto Sans JP";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: 0.6px;

        @media all

        /* 840px */
          {
          font-size: 7px;
          line-height: 12px;
          /* 171.429% */
          letter-spacing: 0.35px;
          padding-bottom: 40px;
        }
      }
    }
  }
}

.sectionDaily {
  background-color: #ecebe7;
  padding: 96px 0;

  @media all

  /* 840px */
    {
    padding: 32px 28px;
  }

  .text1 {
    color: #424242;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 100% */
    margin-bottom: 32px;

    @media all

    /* 840px */
      {
      font-size: 20px;
      line-height: 22px;
      /* 110% */
    }
  }

  .text2 {
    color: #444;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 183.333% */
    margin-bottom: 40px;

    @media all

    /* 840px */
      {
      font-size: 12px;
      line-height: 22px;
      /* 183.333% */
      margin-bottom: 30px;
    }
  }

  .dailyTextSp {
    background-color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 14px;
  }

  .dailyImage {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;

    @media all

    /* 840px */
      {
      margin-top: 32px;
      overflow-x: auto;
      gap: 10px;
      padding: 0 10px;
      margin-bottom: 0;
    }

    .card {
      background-color: #fff;

      @media all

      /* 840px */
        {
        flex: 0 0 100%;
        max-width: 100%;
        box-sizing: border-box;
      }

      .text {
        color: #444;
        font-family: "Noto Sans JP";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-align: center;
        padding: 16px 0;

        @media all

        /* 840px */
          {
          text-align: center;
          font-size: 14px;
          padding: 15px 0;
        }
      }
    }

    img {
      @media all

      /* 840px */
        {
        width: 100%;
        height: auto;
      }
    }
  }

  .rentalTextArea {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 24px;

    @media all

    /* 840px */
      {
      margin: 32px 0 16px;
    }

    .slash {
      color: #214359;
      font-size: 50px;
      font-weight: 400;

      @media all

      /* 840px */
        {
        font-size: 20px;
        line-height: 30px;
      }
    }

    .text1 {
      color: #214359;
      text-align: center;
      font-family: "Noto Sans JP";
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 60px;
      /* 166.667% */
      margin: 0 16px;

      @media all

      /* 840px */
        {
        font-size: 14px;
        line-height: 30px;
        margin: 0 20px;
      }
    }
  }

  .ctaCenter {
    margin-bottom: 24px;

    @media all

    /* 840px */
      {
      width: 100%;
      margin-bottom: 14px;
    }
  }

  .telCenter {
    width: 590px;
    margin: 0 auto;

    @media all

    /* 840px */
      {
      width: 100%;
      margin: 0;
    }
  }

  .ctaBtn {
    width: 590px;

    @media all

    /* 840px */
      {
      width: 100%;
      margin: 0;
    }
  }
}

.sectionIntroduction {
  background-color: #13212b;
  color: #dedede;

  .textArea1 {
    padding: 56px 0;

    @media all

    /* 840px */
      {
      padding: 48px 24px 24px;
    }
  }

  .textArea2 {
    padding-bottom: 56px;

    @media all

    /* 840px */
      {
      padding: 0 24px 56px;
      text-align: center;
    }
  }

  .cadoSlideContainer {
    margin-top: -70px;

    @media all

    /* 840px */
      {
      margin-top: -40px;
    }

    @media all

    /* 560px */
      {
      margin-top: -30px;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px;
    /* 100% */
    margin-bottom: 16px;

    @media all

    /* 840px */
      {
      font-size: 40px;
      line-height: 44px;
    }
  }

  .text2 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 150% */
    margin-bottom: 48px;

    @media all

    /* 840px */
      {
      margin: 16px 0;
    }
  }

  .text3 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 166.667% */

    @media all

    /* 840px */
      {
      font-size: 12px;
      line-height: 24px;
    }
  }

  .text4 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.8px;
    margin: 16px 0;

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: 20px;
      /* 111.111% */
      letter-spacing: 0.9px;
      margin: 24px 0;
    }
  }

  .text5 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    /* 175% */
    padding: 0 36px;
    text-align: left;

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

    @media all

    /* 840px */
      {
      font-size: 12px;
      line-height: 22px;
      padding: 0 12px;
      text-align: center;
    }
  }

  .sliderArea {
    display: flex;

    img {
      width: 25%;
    }
  }

  .imageArea {
    display: flex;
    gap: 16px;

    @media all

    /* 840px */
      {
      display: block;
    }

    img {
      width: 100%;

      @media all

      /* 840px */
        {
        width: 100%;
      }
    }
  }

  .awardImage {
    position: relative;

    @media all

    /* 840px */
      {
      position: static;
    }
  }

  .textArea3 {
    display: flex;
    gap: 16px;
    padding-bottom: 64px;

    >div {
      width: 100%;
    }

    @media all

    /* 840px */
      {
      position: static;
      display: block;
      padding: 0 24px 56px;
      margin-bottom: 0;
      text-align: center;
    }
  }

  .mond-area {
    width: 603px;
    margin: 0 auto;
    padding-bottom: 107px;

    @media all

    /* 840px */
      {
      width: 311px;
      padding-bottom: 40px;
    }

    .mond-img {
      margin-bottom: 32px;

      @media all

      /* 840px */
        {
        margin-bottom: 40px;
      }

      img {
        width: 100%;
      }
    }

    .mond-text {
      font-size: 24px;
      text-align: center;

      @media all

      /* 840px */
        {
        font-size: 16px;
      }
    }
  }
}

.sub {
  height: 200px;
  width: 100%;
  background: #ecebe7;
}

.sectionPrice.-styleB {
  background-image: url("../../img/pc/08_PRICE/02/price_bg.webp");
  height: 135.556cqw;

  @media all

  /* 840px */
    {
    background-image: none;
    height: auto;
  }
}

.sectionPrice {
  background-image: url("../../img/pc/08_PRICE/01/price_img02.webp");
  background-color: #ecebe7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 6.67cqw 0;
  height: 125.556cqw;

  .content-padding {
    width: 69.444cqw;

    @media all

    /* 840px */
      {
      width: 100%;
    }
  }


  @media all

  /* 840px */
    {
    padding: 48px 32px;
    background-image: none;
    background-color: #a9b4bc;
    height: auto;
  }

  .sectionTitle {
    font-size: 4.3056cqw;
    line-height: 4.3056cqw;
    margin-bottom: 1.1111cqw;

    @media all

    /* 840px */
      {
      font-size: 35px;
      line-height: 44px;
      margin-bottom: 16px;
    }
  }

  .title {
    width: 207px;
    margin: auto;
    margin-bottom: 16px;

    @media all

    /* 840px */
      {
      width: 115px;
    }
  }

  .more {
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2.0833cqw;
    font-weight: 700;
    margin-bottom: 1.11111cqw;

    @media all

    /* 840px */
      {
      font-size: 24px;
      margin-bottom: 0;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.1111cqw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1111cqw;
    margin-bottom: 3.3333cqw;

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: 20px;
      /* 111.111% */
      letter-spacing: 0.9px;
      margin-bottom: 20px;
    }
  }

  .text2 {
    font-family: "Noto Sans JP";
    font-size: 0.69444cqw;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    line-height: 1.1111cqw;
    margin-bottom: 3.333cqw;

    @media all

    /* 840px */
      {
      font-size: 8px;
      line-height: 12px;
    }
  }

  .images {
    display: flex;
    margin-bottom: 16px;
    gap: 16px;

    img {
      @media all

      /* 840px */
        {
        margin-bottom: 16px;
      }
    }
  }

  .image {
    margin-bottom: 1.11111cqw;

    img {
      object-fit: cover;
    }

    @media all

    /* 840px */
      {
      display: block;

      img {
        margin: 12px 0;
      }
    }
  }

  .ctaCenter {
    width: 30.9722cqw;
    margin-bottom: 1.66667cqw;
    @media all

    /* 840px */
      {
      width: 100%;
      margin-bottom: 14px;
    }
  }

  .telCenter {
    width: 30.9722cqw;
    margin: 0 auto;
    text-align: center;
    @media all

    /* 840px */
      {
      width: 100%;
    }
  }

  .banner-link:hover {
    opacity: 0.8;
  }

  .ctaBtn {
    width: 100%;
    margin: 0 auto;
    @media all

    /* 840px */
      {
      margin: 24px auto 0;
    }
  }
}

.sectionMoreover {
  background-color: #ecebe7;
  text-align: center;
  padding: 0;

  @media all

  /* 840px */
    {
    padding: 0 32px;
  }

  .more {
    width: 252px;
    margin: auto;
  }

  .textArea1 {
    padding: 40px 0;
  }

  .text1 {
    color: #444;
    font-family: "Noto Sans JP";
    font-size: 27.727px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    @media all

    /* 840px */
      {
      font-size: 14px;
    }
  }

  .text2 {
    color: #444;
    font-family: "Noto Sans JP";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    @media all

    /* 840px */
      {
      font-size: 16px;
      margin-top: 16px;
    }
  }

  .text3 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 187.5% */

    @media all

    /* 840px */
      {
      font-size: 10px;
      line-height: 18px;
    }
  }
}

.sectionLiving {
  background-color: #fff;
  padding: 96px;

  .sectionTitle {
    font-size: 4.3056cqw;
    line-height: 4.3056cqw;
    margin-bottom: 1.1111cqw;
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.1111cqw;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1111cqw;
    margin-bottom: 3.3333cqw;
  }

  @media all

  /* 840px */
    {
    padding: 48px 16px;

    .sectionTitle {
      font-size: 35px;
      line-height: 44px;
      margin-bottom: 16px;
    }

    .text1 {
      font-size: 18px;
      line-height: 20px;
      letter-spacing: 0.9px;
      margin-bottom: 20px;
    }
  }

  .title {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 56px;

    @media all

    /* 840px */
      {
      font-size: 22px;
      line-height: normal;
      margin-bottom: 16px;
    }
  }

  .cadoSlide {
    width: 100cqw;
    min-width: 1440px;
    margin: var(--basic-margin) calc(50% - 50cqw) 0;
  }

  .cadoSlide_wrapper.swiper-wrapper {
    transition-timing-function: linear;
  }

  @media all

  /* 1080px */
    {
    .cadoSlide {
      min-width: initial;
    }
  }

  @media screen and (max-width: 1px)

  /* PC disabled */
    {
    .sliderArea {
      max-width: 860px;
      margin: 0 auto;
      overflow: hidden;

      .swiper-wrapper {
        .swiper-slide {
          visibility: hidden;
        }

        .swiper-slide.swiper-slide-active {
          visibility: visible;
        }

        .swiper-slide.swiper-slide-next {
          visibility: visible;
        }
      }
    }
  }

  .sliderArea {
    .card {
      flex: 0 0 100%;
      max-width: 400px;
      box-sizing: border-box;
      border: solid 1px #ccc;
      padding: 28px;
      scroll-snap-align: start;

      @media all

      /* 560px */
        {
        padding: 24px 36px;
        max-width: 100%;
      }

      .nameArea {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 24px;

        p {
          font-size: 10px;

          @media all

          /* 560px */
            {
            font-size: 9px;
          }
        }

        .name {
          font-size: 16px;

          @media all

          /* 560px */
            {
            font-size: 12px;
          }
        }
      }

      .description {
        margin-top: 24px;

        .subTitle {
          font-family: "Noto Sans JP";
          font-size: 16px;
          font-weight: 700;

          @media all

          /* 560px */
            {
            font-size: 12px;
          }
        }

        .text {
          font-family: "Noto Sans JP";
          font-size: 10px;
          font-weight: 400;
          line-height: 20px;

          @media all

          /* 560px */
            {
            font-size: 11px;
          }
        }
      }
    }
  }
}

.sectionColor {
  background-color: #ecebe7;
  padding: 96px 0;

  @media all

  /* 840px */
    {
    padding: 48px 32px;
  }

  .title {
    width: 207px;
    margin: auto;
    margin-bottom: 16px;

    @media all

    /* 840px */
      {
      width: 160px;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16x;
    /* 125% */
    margin-bottom: 48px;

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: 20px;
      /* 111.111% */
      letter-spacing: 0.9px;
      margin-bottom: 56px;
    }
  }

  .card {
    display: flex;
    justify-content: center;
    gap: 112px;

    @media all

    /* 840px */
      {
      gap: 32px;
    }

    .image {
      width: 177px;
      min-width: 130px;

      @media all

      /* 840px */
        {
        width: 50px;
        min-width: 50px;
      }
    }

    .colorWhite {
      width: 162px;
      margin-bottom: 48px;

      @media all

      /* 840px */
        {
        width: 28cqw;
        margin-bottom: 16px;
      }
    }

    .colorMetalGray {
      width: 35cqw;
      margin-bottom: 48px;

      @media all

      /* 840px */
        {
        width: 60cqw;
        margin-bottom: 16px;
      }
    }

    .colorBlueBlack {
      width: 25cqw;
      margin-bottom: 48px;

      @media all

      /* 840px */
        {
        width: 60cqw;
        margin-bottom: 16px;
      }
    }

    .colorBlack {
      width: 15cqw;
      margin-bottom: 48px;

      @media all

      /* 840px */
        {
        width: 40cqw;
        margin-bottom: 16px;
      }
    }

    .description {
      display: flex;
      align-items: center;

      p {
        font-family: "Noto Sans JP";
        font-size: 20px;
        font-weight: 700;
        line-height: 40px;
        /* 225% */
        letter-spacing: 1px;

        @media all

        /* 840px */
          {
          font-size: 10px;
          line-height: 22px;
          /* 220% */
          letter-spacing: -0.1px;
        }
      }
    }
  }

  .marginTop {
    margin-top: 120px;

    @media all

    /* 840px */
      {
      margin-top: 56px;
    }
  }
}

.sectionSpec {
  background-color: #ecebe7;
  padding: 96px 0;

  @media all

  /* 840px */
    {
    padding: 48px 32px;
  }

  .title {
    width: 207px;
    margin: auto;
    margin-bottom: 16px;

    @media all

    /* 840px */
      {
      width: 115px;
    }
  }

  .asterisk {
    font-size: 8px;
    vertical-align: top;

    @media all

    /* 840px */
      {
      font-size: 6px;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 125% */
    margin-bottom: 48px;

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: 20px;
      /* 111.111% */
      letter-spacing: 0.9px;
      margin-bottom: 32px;
    }
  }

  .text2 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 48px;

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: normal;
      margin-bottom: 32px;
    }
  }

  .text3 {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    /* 162.5% */
    width: 30%;

    @media all

    /* 840px */
      {
      font-size: 10px;
      line-height: 16px;
    }
  }

  .text4 {
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 70%;

    @media all

    /* 840px */
      {
      font-size: 10px;
      line-height: 14px;
      /* 140% */
    }
  }

  .text5 {
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 150% */

    @media all

    /* 840px */
      {
      font-size: 8px;
      line-height: 14px;
      /* 175% */
      letter-spacing: -0.24px;
    }
  }

  .image {
    margin: 0 auto 48px;
    width: 440px;

    @media all

    /* 840px */
      {
      width: 80%;
      margin: 0 auto 32px;
    }
  }

  .line {
    display: flex;
    align-items: center;
    border-top: solid 1px #d1caad;
    padding: 10px 0;
  }
}

.sectionCTA {
  padding: 96px 0;
  background-color: #ecebe7;

  @media all

  /* 840px */
    {
    padding: 48px 24px;
  }

  .asterisk {
    font-size: 24px;
    vertical-align: top;

    @media all

    /* 840px */
      {
      font-size: 12px;
    }
  }

  .text1 {
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

    @media all

    /* 840px */
      {
      font-size: 14px;
      text-align: center;
    }
  }

  .text2 {
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 41px;

    @media all

    /* 840px */
      {
      font-size: 24px;
      line-height: 40px;
      text-align: center;
      margin-bottom: 0;
    }
  }

  .text3 {
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    /* 183.333% */

    @media all

    /* 840px */
      {
      font-size: 12px;
      line-height: 22px;
      /* 200% */
      text-align: center;
      margin: 0;
      padding: 20px 0;
    }
  }

  .text4 {
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;

    @media all

    /* 840px */
      {
      font-size: 8px;
      line-height: normal;
    }
  }

  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 160px;

    @media all

    /* 840px */
      {
      display: block;
    }

    .ctaImage {
      width: 350px;

      @media all

      /* 840px */
        {
        width: 60%;
        margin: auto;
      }
    }
  }

  .center {
    padding: 64px 0;

    @media all

    /* 840px */
      {
      padding: 56px 0;
    }

    img {
      @media all

      /* 840px */
        {
        width: 250px;
        margin: auto;
      }
    }
  }

  .banner {
    cursor: pointer;
  }

  .ctaCenter {
    width: 590px;
    margin: 0 auto 24px;
    padding: 0;

    @media all

    /* 840px */
      {
      width: 100%;
      margin: 0 auto 14px;
    }
  }

  .ctaBtn {
    width: 100%;
    margin: auto;
  }

  .telCenter {
    width: 590px;
    margin: 0 auto;
    padding: 0;
    text-align: center;

    @media all

    /* 840px */
      {
      width: 100%;
    }
  }

  .telBtn {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  .bottom {
    padding-top: 64px;

    @media all

    /* 840px */
      {
      padding: 32px 0 0;
    }

    .image {
      display: flex;
      gap: 64px;

      @media all

      /* 840px */
        {
        display: block;

        img {
          margin: 8px 0;
        }
      }
    }
  }
}

.sectionFlow {
  padding: 96px 0;
  background-color: #fff;

  @media all

  /* 840px */
    {
    padding: 48px 32px;
  }

  .title {
    width: 170px;
    margin: auto;
    margin-bottom: 16px;

    @media all

    /* 840px */
      {
      width: 120px;
      margin-bottom: 24px;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 125% */
    margin-bottom: 48px;

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: 20px;
      /* 111.111% */
      letter-spacing: 0.9px;
      margin-bottom: 32px;
    }
  }

  .text2 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;

    @media all

    /* 840px */
      {
      font-size: 13px;
    }

    img {
      margin-bottom: 16px;
    }
  }

  .flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    @media all

    /* 840px */
      {
      display: block;
      gap: 0;
    }

    .triangle {
      color: #e08e1c;
      font-size: 32px;

      @media all

      /* 840px */
        {
        text-align: center;
        transform: rotate(90deg) scale(0.75, 1.4);
      }
    }
  }
}

.sectionSupport {
  background-color: #f8f3ee;
  padding: 96px 0;

  @media all

  /* 840px */
    {
    padding: 48px 32px;
  }

  .title {
    width: 207px;
    margin: auto;
    margin-bottom: 16px;

    @media all

    /* 840px */
      {
      width: 160px;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 125% */

    @media all

    /* 840px */
      {
      font-size: 18px;
      line-height: 20px;
      /* 111.111% */
      letter-spacing: 0.9px;
    }
  }

  .text2 {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 8px;
    padding: 16px 12px 0;
  }

  .text3 {
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 0 12px 16px;
  }

  .text4 {
    font-family: "Noto Sans JP";
    font-size: 17.568px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.865px;

    @media all

    /* 840px */
      {
      font-size: 14px;
      font-weight: 400;
      line-height: 20.48px;
      /* 170.667% */
      margin: 16px 0 32px;
      text-align: center;
    }
  }

  .text6 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-top: 14px;

    @media all

    /* 840px */
      {
      font-size: 11px;
      line-height: 14px;
      /* 140% */
      width: 100px;
      letter-spacing: 0;
    }
  }

  .text7 {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    width: 720px;
    margin: auto;

    @media all

    /* 840px */
      {
      font-size: 8px;
      line-height: 14px;
      /* 175% */
      width: 100%;
    }
  }

  .text5 {
    color: #e08e1c;
    font-weight: bold;
  }

  .asterisk {
    font-size: 10px;
    vertical-align: top;

    @media all

    /* 840px */
      {
      font-size: 6px;
    }
  }

  .imageArea1 {
    display: flex;
    gap: 20px;
    padding: 48px 0;

    @media all

    /* 840px */
      {
      display: block;
      padding: 28px 0;
    }

    .card {
      width: 100%;
      background-color: #fff;
      @media all

      /* 840px */
        {
        margin-bottom: 16px;
      }
    }
  }

  .imageArea2 {
    display: flex;
    gap: 37px;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 14px;

    @media all

    /* 840px */
      {
      gap: 0;
      margin-bottom: 14px;

      img {
        width: 95px;
      }
    }
  }

  .plus {
    width: 86px;
    margin: auto;

    @media all

    /* 840px */
      {
      width: 34px;
    }
  }

  .option {
    width: 100px;
    margin: 44px auto;

    @media all

    /* 840px */
      {
      margin: 32px auto;
    }
  }

  .support {
    >img {
      width: 705px;
      margin: 0 auto;

      @media all

      /* 840px */
        {
        width: 100%;
      }
    }

    .flexText {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 25px;
      margin: 44px 0;

      @media all

      /* 840px */
        {
        display: block;
        margin: 12px 0;
      }

      .image {
        width: 200px;

        @media all

        /* 840px */
          {
          width: 170px;
          margin: auto;
        }
      }
    }
  }
}

.introBanner {
  display: flex;
  justify-content: space-between;
  margin-top: var(--basic-margin);
}

.introBanner a {
  flex: 0 0 48%;
  opacity: 1;
  transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .introBanner a:hover {
    opacity: 0.6;
  }
}

@media all

/* 840px */
  {
  .introBanner {
    flex-direction: column;
  }

  .introBanner a {
    flex: 0 0 auto;
    width: 100%;
  }

  .introBanner a:nth-of-type(2) {
    margin-top: 1.6em;
  }
}

.secAward {
  margin-bottom: 82px;
  padding-bottom: 20px;
  background-color: #fef4ef;
}

@media all

/* 1080px */
  {
  .secAward {
    margin-bottom: 7.407cqw;
  }
}

@media all

/* 840px */
  {
  .secAward {
    margin-bottom: 3.571cqw;
  }
}

.awardWrap {
  display: grid;
  grid-template-columns: 1.8fr 0.4fr 0.6fr 1.2fr;
  grid-template-rows: repeat(3, auto);
  gap: 4em 1em;
  grid-template-areas: "title . . award""list1 . list2 list2""note note note img";
}

@media all

/* 1080px */
  {
  .awardWrap {
    grid-template-columns: 1.9fr 0.2fr 0.4fr 1.5fr;
    gap: 2em 1em;
    grid-template-areas: "title . . award""list1 . list2 list2""note note img img";
  }
}

@media all

/* 840px */
  {
  .awardWrap {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1em 1em;
  }
}

.awardTitle {
  grid-area: title;
  opacity: 0;
  visibility: hidden;
}

.awardTitle[data-target="on"] {
  animation: popUp 0.8s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
}

@media all

/* 840px */
  {
  .awardTitle img {
    width: 100%;
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
  }

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

.awardBadge {
  grid-area: award;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.awardBadge_item {
  flex: 0 0 48%;
  opacity: 0;
  visibility: hidden;
}

.awardBadge_item img {
  max-height: 150px;
  object-fit: contain;
}

.awardBadge_item:nth-of-type(2) {
  margin-left: 1.4em;
}

.awardBadge[data-target="on"] .awardBadge_item:nth-of-type(1) {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

.awardBadge[data-target="on"] .awardBadge_item:nth-of-type(2) {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.6s both;
}

@media all

/* 1080px */
  {
  .awardBadge_item {
    flex: 0 0 42%;
  }

  .awardBadge_item:nth-of-type(2) {
    margin-left: 1em;
  }
}

@media all

/* 840px */
  {
  .awardBadge {
    flex-direction: column;
  }

  .awardBadge_item:nth-of-type(2) {
    margin-left: 0;
    margin-top: 1.2em;
  }
}

@keyframes badgeSlide {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }

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

.awardList.-list1 {
  grid-area: list1;
}

.awardList.-list2 {
  grid-area: list2;
}

.awardList_item {
  padding: 0.6em 1em;
  padding-left: 4.4em;
  position: relative;
  background-color: #ffdecd;
  border-radius: 3em;
  color: #1e445b;
  font-size: min(1.68cqw, 2rem);
  font-weight: 700;
  white-space: nowrap;
}

.awardList_item:nth-last-of-type(-n + 2) {
  margin-top: 0.4em;
}

.awardList_item::before {
  content: "";
  display: block;
  width: 2em;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 1.4em;
  background: url("../../img/award_medal.svg") center/contain no-repeat;
  transform: translate3d(0, -50%, 0);
}

@media all

/* 1080px */
  {
  .awardList {
    flex: 0 0 48%;
  }

  .awardList_item {
    font-size: 1.667cqw;
  }
}

@media all

/* 840px */
  {
  .awardList.-list1 {
    margin-top: 1em;
  }

  .awardList_item {
    font-size: 2.857cqw;
  }

  .awardList_item::before {
    left: 1.6em;
  }

  .awardList_item:nth-last-of-type(-n + 2) {
    margin-top: 0.6em;
  }
}

@media all

/* 560px */
  {
  .awardList.-list1 {
    margin-top: 1em;
  }

  .awardList.-list2 {
    margin-bottom: 0;
  }

  .awardList_item {
    font-size: 3.467cqw;
  }
}

.awardNotes {
  grid-area: note;
}

.awardNotes_head {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
}

@media all

/* 840px */
  {
  .awardNotes_head {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .awardNotes_head {
    font-size: 83.4%;
  }
}

.awardNotes_head:not(:first-of-type) {
  margin-top: 1em;
}

.awardNotes_detail {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
}

@media all

/* 840px */
  {
  .awardNotes_detail {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .awardNotes_detail {
    font-size: 83.4%;
  }
}

.awardImage {
  grid-area: img;
}

@media all

/* 560px */
  {
  .awardImage {
    padding-right: 2em;
  }
}

.secAnchor {
  padding-bottom: var(--sec-short);
}

@media all

/* 840px */
  {
  .secAnchor {
    padding-bottom: var(--sec-short);
  }
}

.anchorList {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: calc(var(--basic-margin) / 2);
}

.anchorList_item {
  flex: 0 0 26%;
  padding-bottom: 1.4em;
}

.anchorList_item a {
  display: block;
  position: relative;
}

.anchorList_item a img {
  opacity: 1;
  transition: all 0.3s;
}

.anchorList_item a::before {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  position: absolute;
  bottom: -2em;
  left: 50%;
  background-color: #e37589;
  clip-path: polygon(100% 32%, 0 32%, 50% 80%);
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .anchorList_item a:hover img {
    opacity: 0.6;
  }

  .anchorList_item a:hover::before {
    bottom: -2.4em;
  }
}

@media all

/* 840px */
  {
  .anchorList_item {
    flex: 0 0 30%;
  }
}

@media all

/* 560px */
  {
  .anchorList_item {
    flex: 0 0 32%;
  }

  .anchorList_item a::before {
    transform: translate3d(-50%, 0, 0);
  }
}

.secReason.-reason01 {
  padding-bottom: var(--sec-short);
  background-color: #fffde8;
}

.secReason.-reason01 .row2Box {
  height: auto;
  align-items: stretch;
  margin-top: var(--basic-margin);
}

.secReason.-reason01 .row2Box_item {
  display: flex;
  flex-direction: column;
}

.secReason.-reason01 .row2Box_item h3 {
  margin-bottom: auto;
}

.secReason.-reason02 .row3Box {
  height: auto;
  align-items: stretch;
  margin-top: var(--basic-margin);
}

.secReason.-reason02 .row3Box_item {
  display: flex;
  flex-direction: column;
}

.secReason.-reason02 .row3Box_item p {
  margin-bottom: auto;
}

.secReason.-reason03 {
  text-align: center;
  background-color: #fffde8;
}

.secReason.-reason03 .burstTitle {
  margin-top: var(--basic-margin);
}

@media all

/* 840px */
  {
  .secReason.-reason02 .row3Box_item h3 .resizeHide {
    display: none;
  }
}

.reasonTitle {
  display: block;
  width: 100%;
  max-width: 790px;
  position: relative;
  opacity: 0;
  visibility: hidden;
}

.reasonTitle[data-target="on"] {
  animation: reasonSlideIn 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
}

.reasonTitle[data-target="on"].-item3 span {
  animation: fadeIn 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

.reasonTitle.-item3 span {
  width: 29%;
  height: 94.6%;
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -50%, 0);
}

.reasonTitle.-item3 span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(110%, 0, 0);
}

@media all

/* 1080px */
  {
  .reasonTitle {
    max-width: 620px;
  }

  .reasonTitle.-item3 span {
    width: 25%;
  }
}

@media all

/* 840px */
  {
  .reasonTitle {
    max-width: 480px;
  }

  .reasonTitle.-item3 span {
    display: none;
  }
}

@keyframes reasonSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.mond {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5em 4.38em;
  grid-template-areas: "map detail1""map detail2";
  margin-top: var(--basic-margin);
}

@media all

/* 1080px */
  {
  .mond {
    gap: 2.5em 3em;
  }
}

@media all

/* 840px */
  {
  .mond {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 3em;
    grid-template-areas: "detail1""map""detail2";
  }
}

.mondDetail.-noframe {
  grid-area: detail1;
}

.mondDetail.-frame {
  grid-area: detail2;
  padding: 2em;
  background-color: #fff;
}

.mondDetail.-frame ul {
  margin-top: 2em;
  padding-left: 1em;
  list-style: disc;
}

.mondDetail h3 {
  color: #e37589;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  font-size: min(2.3cqw, 2.8rem);
}

.mondDetail h4 {
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  font-size: min(2cqw, 2.2rem);
}

.mondDetail p {
  margin-top: 1em;
  text-align: justify;
}

@media all

/* 1080px */
  {
  .mondDetail h3 {
    font-size: 2.407cqw;
  }

  .mondDetail h4 {
    font-size: 2.037cqw;
  }

  .mondDetail.-frame {
    padding: 1.6em;
  }
}

@media all

/* 840px */
  {
  .mondDetail.-frame {
    padding: 1.6em;
  }

  .mondDetail h3 {
    font-size: 3.095cqw;
  }

  .mondDetail h4 {
    font-size: 2.619cqw;
  }
}

@media all

/* 560px */
  {
  .mondDetail h3 {
    font-size: 5.067cqw;
  }

  .mondDetail h4 {
    font-size: 4.8cqw;
  }
}

.cado {
  margin-top: var(--basic-margin);
}

.cado_title {
  display: block;
  position: relative;
  color: #1e445b;
  text-align: center;
  font-size: min(2.8cqw, 3rem);
  font-weight: 700;
}

.cado_title::before,
.cado_title::after {
  content: "";
  display: block;
  width: 11.2%;
  max-width: 140px;
  height: 2px;
  position: absolute;
  top: 55%;
  background-color: #1e445b;
}

.cado_title::before {
  left: 3%;
}

.cado_title::after {
  right: 3%;
}

@media all

/* 1080px */
  {
  .cado_title {
    font-size: 2.778cqw;
  }
}

@media all

/* 840px */
  {
  .cado_title {
    font-size: 3.571cqw;
  }

  .cado_title::before,
  .cado_title::after {
    display: none;
  }
}

@media all

/* 560px */
  {
  .cado_title {
    font-size: 5.333cqw;
    line-height: 1.4;
  }

  .cado_title .resizeShow {
    display: inline;
  }
}

.cadoDetail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: repeat(2, auto);
  gap: 2em 4.38em;
  grid-template-areas: "product sheet""product image";
  margin-top: 2.5em;
}

.cadoDetail_product {
  grid-area: product;
  position: relative;
}

.cadoDetail_product::before {
  content: "";
  display: block;
  padding-top: 160%;
}

.cadoDetail_product.is-open .serverImage.-open {
  opacity: 1;
  visibility: visible;
}

.cadoDetail_sheet {
  grid-area: sheet;
}

.cadoDetail_sheet p {
  margin-top: 1em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
}

@media all

/* 840px */
  {
  .cadoDetail_sheet p {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .cadoDetail_sheet p {
    font-size: 83.4%;
  }
}

.cadoDetail_image {
  grid-area: image;
}

@media all

/* 1080px */
  {
  .cadoDetail {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2em 2em;
  }
}

@media all

/* 840px */
  {
  .cadoDetail {
    grid-template-columns: 0.7fr 1.3fr;
    grid-template-areas: "product sheet""image image";
  }
}

@media all

/* 560px */
  {
  .cadoDetail {
    grid-template-columns: 1fr;
    grid-template-areas: "product""sheet""image";
    gap: 1.6em 1.6em;
  }
}

.serverImage {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all 0.5s;
}

.serverImage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.serverImage.-close {
  opacity: 1;
  visibility: visible;
}

.serverImage.-open {
  opacity: 0;
  visibility: hidden;
}

@media all

/* 560px */
  {
  .serverImage {
    width: 92%;
    transform: translate3d(-53%, -50%, 0);
  }
}

.cadoTable {
  width: 100%;
  border: #fff thin solid;
  border-collapse: collapse;
}

.cadoTable th {
  padding: 0.6em 1em;
  background-color: #ffdecd;
  border: #fff thin solid;
  white-space: nowrap;
}

.cadoTable td {
  padding: 0.6em 1em;
  background-color: #fef4ef;
  border: #fff thin solid;
}

@media all

/* 1080px */
  {
  .cadoTable th {
    padding: 0.4em 0.6em;
  }

  .cadoTable td {
    padding: 0.4em 0.6em;
  }
}

.cadoSlide {
  width: 100cqw;
  min-width: 1600px;
  margin: var(--basic-margin) calc(50% - 50cqw) 0;
}

.cadoSlide_wrapper.swiper-wrapper {
  transition-timing-function: linear;
}

@media all

/* 1080px */
  {
  .cadoSlide {
    min-width: initial;
  }
}

.setPlan {
  margin-top: var(--basic-margin);
}

.setPlan p {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 1em;
}

@media all

/* 840px */
  {
  .setPlan p {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .setPlan p {
    font-size: 83.4%;
  }
}

@media all

/* 1080px */
  {
  .setPlan p .resizeShow {
    display: inline;
  }
}

@media all

/* 560px */
  {
  .setPlan p {
    text-align: left;
  }
}

.rentalPrice {
  margin-top: 40px;
}

.rentalPrice img {
  width: 100%;
  margin: 1em auto 0;
}

.rentalPrice p {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 1em;
  text-align: right;
}

@media all

/* 1080px */
  {
  .rentalPrice p {
    margin-top: 1.4em;
    font-size: 2.037cqw;
  }
}

@media all

/* 840px */
  {
  .rentalPrice p {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .rentalPrice p {
    font-size: 83.4%;
  }
}

.conditions {
  display: block;
  max-width: 780px;
  margin: var(--basic-margin) auto 0;
  padding: 2em;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  border: #e37589 2px dashed;
  text-align: left;
}

.conditions h4 {
  color: #e37589;
  font-weight: 700;
  line-height: 1.5;
  font-size: min(2.2cqw, 2.4rem);
}

.conditions h5 {
  margin-top: 0.6em;
  font-size: min(1.85cqw, 2rem);
  font-weight: 700;
}

.conditions p {
  margin-top: 0.6em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
}

@media all

/* 840px */
  {
  .conditions p {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .conditions p {
    font-size: 83.4%;
  }
}

.conditions_img {
  width: 33%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(15%, -52%, 0);
}

@media all

/* 1080px */
  {
  .conditions h4 {
    font-size: 2.407cqw;
  }

  .conditions h5 {
    font-size: 2.037cqw;
  }

  .conditions_img {
    transform: translate3d(0, -54%, 0);
  }
}

@media all

/* 840px */
  {
  .conditions h4 {
    font-size: 2.857cqw;
  }

  .conditions h5 {
    font-size: 2.381cqw;
  }

  .conditions_img {
    right: 0;
    transform: translate3d(20%, -54%, 0);
  }
}

@media all

/* 560px */
  {
  .conditions {
    margin: 10.714cqw 0;
    padding: 1.2em;
  }

  .conditions h4 {
    font-size: 4.8cqw;
  }

  .conditions h4 .resizeShow {
    display: inline;
  }

  .conditions h5 {
    font-size: 3.2cqw;
    line-height: 1.4;
  }

  .conditions h5 .resizeShow {
    display: inline;
  }

  .conditions_img {
    top: 0;
    transform: translate3d(-5%, 5%, 0);
  }
}

.howMuch {
  padding: 3.75em;
  background-color: #fef4ef;
  border-radius: 20px;
}

.howMuch h2 {
  display: block;
  width: 88%;
  max-width: 670px;
  margin: 0 auto;
}

.howMuch h3 {
  display: block;
  width: 72%;
  max-width: 304px;
  margin: 2em auto 1.6em;
  position: relative;
}

.howMuch h3::before,
.howMuch h3::after {
  content: "";
  width: 4.3em;
  height: 5.6em;
  position: absolute;
  top: 50%;
  background: url("../../img/howmuch_ex_deco.svg") center/contain no-repeat;
}

.howMuch h3::before {
  left: 0;
  transform: translate3d(-160%, -50%, 0);
}

.howMuch h3::after {
  right: 0;
  transform: translate3d(160%, -50%, 0);
}

.howMuch_calc {
  margin-top: 1.4em;
  padding: 2em;
  background-color: #fff;
  border: #e37589 2px dashed;
  border-radius: 30px;
  overflow: hidden;
}

@media all

/* 1080px */
  {
  .howMuch {
    padding: 2.4em 2em;
  }
}

@media all

/* 840px */
  {
  .howMuch {
    border-radius: 1em;
  }

  .howMuch h3 {
    width: 42%;
  }

  .howMuch h3::before,
  .howMuch h3::after {
    display: none;
  }

  .howMuch_calc {
    padding: 1em;
    border-radius: 1.6em;
  }
}

@media all

/* 560px */
  {
  .howMuch {
    padding: 2em 1.4em;
  }

  .howMuch h3 {
    width: 64%;
  }

  .howMuch_calc {
    padding: 0;
    border-radius: 1em;
  }
}

.howmuchEx {
  display: flex;
  justify-content: space-between;
}

.howmuchEx_item {
  flex: 0 0 48%;
}

@media all

/* 840px */
  {
  .howmuchEx {
    flex-direction: column;
  }

  .howmuchEx_item {
    flex: 0 0 auto;
  }

  .howmuchEx_item:nth-of-type(2) {
    margin-top: 2em;
  }
}

.premiunPlan {
  margin-top: var(--sec-padding);
  text-align: center;
}

.premiunPlan h2 {
  color: #1e445b;
  font-weight: 700;
  text-align: center;
  font-size: min(3.7cqw, 4rem);
  line-height: 1.4;
}

.premiunPlan p {
  margin-top: 1.4em;
  font-size: 110%;
}

.premiunPlan_image {
  display: block;
  width: 84.4%;
  max-width: 680px;
  margin: 2em auto 0;
}

@media all

/* 1080px */
  {
  .premiunPlan h2 {
    font-size: 3.704cqw;
  }
}

@media all

/* 840px */
  {
  .premiunPlan h2 {
    font-size: 4.524cqw;
  }
}

@media all

/* 560px */
  {
  .premiunPlan h2 {
    font-size: 5.333cqw;
  }

  .premiunPlan h2 .resizeShow {
    display: inline;
  }

  .premiunPlan p {
    text-align: justify;
  }

  .premiunPlan p .resizeHide {
    display: none;
  }
}

.lineUp {
  margin-top: var(--basic-margin);
  text-align: center;
}

.lineUp h3 {
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: 3.2rem;
}

.lineUp .row3Box {
  align-items: stretch;
  margin-top: 1.8em;
}

.lineUp .row3Box_item {
  display: flex;
  flex-direction: column;
  border: #fdde8f 1px solid;
  border-radius: 10px;
  overflow: hidden;
}

.lineUp .row3Box_item img {
  margin-top: 0;
}

.lineUp .row3Box_item p {
  margin-top: 0;
  margin-bottom: auto;
}

.lineUp .row3Box_item.-spacer {
  display: none;
}

.lineUp .modalBtn {
  width: 100%;
  margin-top: 1.4em;
}

.lineUp_note {
  margin-top: 1.6em;
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
  text-align: justify;
}

@media all

/* 840px */
  {
  .lineUp_note {
    font-size: 87.5%;
  }
}

@media all

/* 560px */
  {
  .lineUp_note {
    font-size: 83.4%;
  }
}

@media all

/* 1080px */
  {
  .lineUp h3 {
    font-size: 3.333cqw;
  }
}

@media all

/* 840px */
  {
  .lineUp h3 {
    font-size: 4.048cqw;
  }

  .lineUp_item.-spacer {
    display: inherit;
  }
}

@media all

/* 560px */
  {
  .lineUp {
    margin-top: 10.714cqw;
  }

  .lineUp h3 {
    font-size: 4.8cqw;
  }
}

.lineUpInner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4em;
  border-top: #fdde8f 1px solid;
}

@media all

/* 1080px */
  {
  .lineUpInner {
    padding: 1em;
  }
}

@media all

/* 560px */
  {
  .lineUpInner {
    padding: 1.4em 1.4em 1.6em;
  }
}

.serverPoint {
  display: flex;
  justify-content: space-between;
  margin: 1.4em 0 0;
}

.serverPoint_text {
  flex: 1 0 auto;
  padding-right: 1em;
  color: #e37589;
  font-weight: 700;
  white-space: nowrap;
}

.serverPoint_circle {
  flex: 0 1 auto;
}

@media all

/* 1080px */
  {
  .serverPoint {
    margin: 1em 0 0;
  }

  .serverPoint_text {
    flex: 0 0 auto;
    padding-right: 0.6em;
    font-size: 1.296cqw;
  }

  .serverPoint_circle {
    flex: 0 0 26%;
  }
}

@media all

/* 840px */
  {
  .serverPoint_text {
    font-size: 1.4rem;
  }
}

@media all

/* 560px */
  {
  .serverPoint {
    align-items: center;
  }

  .serverPoint_text {
    margin-top: auto !important;
  }
}

.secCTA {
  padding-bottom: 40px;
  background-color: #fffde8;
}

@media all

/* 560px */
  {
  .secCTA {
    padding-bottom: 20px;
  }
}

.ctaWrap {
  display: flex;
  justify-content: space-between;
  margin-top: var(--basic-margin);
}

.ctaWrap>div {
  flex: 0 0 47.6%;
  text-align: center;
}

.ctaWrap>div p {
  font-size: min(2.6cqw, 2.8rem);
  font-weight: 700;
  white-space: nowrap;
}

.ctaWrap>div .ctaBtn {
  width: 100%;
  margin-top: 0.8em;
  padding-bottom: 0.8em;
  border-radius: 4em;
  line-height: 1.2;
}

.ctaWrap_main p {
  color: #e37589;
}

.ctaWrap_main .ctaBtn {
  padding: 0.6em 1em;
}

.ctaWrap_sub p {
  color: #6cc5d5;
}

.ctaWrap_sub .ctaBtn {
  padding: 0.6em 1em;
  background-color: #6cc5d5;
  border: #40b2c7 2px solid;
  box-shadow: 0 6px 0 #40b2c7;
  font-size: min(2.58cqw, 2.8rem);
  transition: all 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .ctaWrap_sub .ctaBtn:hover {
    background-color: #6cc5d5;
    box-shadow: 0 0 0 #40b2c7;
    color: #fff;
    transform: translate3d(0, 6px, 0);
  }

  .ctaWrap_sub .ctaBtn:hover::after {
    border-color: #fff;
  }
}

@media all

/* 1080px */
  {
  .ctaWrap>div .ctaBtn {
    font-size: 2.407cqw;
  }
}

@media all

/* 840px */
  {
  .ctaWrap {
    flex-direction: column;
    align-items: center;
    max-width: 0 auto;
  }

  .ctaWrap>div {
    flex: 0 0 auto;
    width: 76%;
  }

  .ctaWrap>div p .resizeHide {
    display: none;
  }

  .ctaWrap>div .ctaBtn {
    margin-top: 0.4em;
    font-size: 3.333cqw;
  }

  .ctaWrap_sub {
    margin-top: 2.5em;
  }

  .ctaWrap_sub .ctaBtn {
    box-shadow: 0 4px 0 #40b2c7;
  }
}

@media all

/* 560px */
  {
  .ctaWrap>div {
    width: 100%;
  }

  .ctaWrap>div p {
    font-size: 1.4rem;
  }

  .ctaWrap>div .ctaBtn {
    font-size: 4.8cqw;
  }
}

.ctaBottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: var(--basic-margin);
}

.ctaBottom .dial {
  flex: 0 0 auto;
}

.ctaBottom_image {
  flex: 1 1 auto;
}

.ctaBottom_image.-boy {
  padding-left: 1.4rem;
}

.ctaBottom_image.-girl {
  padding-right: 1.4rem;
}

@media all

/* 1080px */
  {
  .ctaBottom {
    align-items: flex-end;
  }

  .ctaBottom_image.-boy {
    padding-left: 0;
  }

  .ctaBottom_image.-girl {
    padding-right: 0;
  }
}

@media all

/* 840px */
  {
  .ctaBottom {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ctaBottom .dial {
    order: 1;
    margin-bottom: 2em;
  }

  .ctaBottom_image {
    flex: 0 0 35%;
  }

  .ctaBottom_image.-boy {
    order: 3;
    margin-left: 5%;
  }

  .ctaBottom_image.-girl {
    order: 2;
    margin-right: 5%;
  }
}

@media all

/* 560px */
  {
  .ctaBottom_image {
    flex: 0 0 42%;
  }

  .ctaBottom_image.-boy {
    order: 3;
    margin-left: 7%;
  }

  .ctaBottom_image.-girl {
    order: 2;
    margin-right: 7%;
  }
}

@media all

/* 560px */
  {
  .secResolve {
    padding-bottom: calc(var(--basic-margin) * 2);
  }
}

.resolveDetail {
  margin-top: var(--basic-margin);
}

.resolveDetail:nth-last-of-type(-n + 2) {
  margin-top: calc(var(--basic-margin) + 40px);
}

.resolveDetail_head {
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  font-size: min(3.7cqw, 4rem);
}

.resolveDetail_img {
  display: flex;
  align-items: center;
  position: relative;
}

@media all

/* 1080px */
  {
  .resolveDetail_head {
    font-size: 3.704cqw;
  }
}

@media all

/* 840px */
  {
  .resolveDetail:nth-last-of-type(-n + 2) {
    margin-top: calc(var(--basic-margin) + 20px);
  }

  .resolveDetail_head {
    font-size: 4.524cqw;
  }
}

@media all

/* 560px */
  {
  .resolveDetail:nth-last-of-type(-n + 2) {
    margin-top: var(--basic-margin);
  }

  .resolveDetail_head {
    font-size: 4.8cqw;
  }

  .resolveDetail_img {
    flex-direction: column;
  }
}

.resolveImage {
  margin-top: 1.4em;
}

.resolveImage.-large {
  flex: 0 0 auto;
  width: 67%;
  opacity: 0;
  visibility: hidden;
}

.resolveImage.-large[data-target="on"] {
  animation: resolveBig-pc 0.8s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
}

.resolveImage.-small {
  width: 39%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -50%, 0);
  opacity: 0;
  visibility: hidden;
}

.resolveImage.-small[data-target="on"] {
  animation: resolveSmall-pc 0.8s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

@media all

/* 560px */
  {
  .resolveImage.-large {
    width: 100%;
  }

  .resolveImage.-large[data-target="on"] {
    animation: resolveBig-sp 0.8s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .resolveImage.-small {
    width: 100%;
    position: relative;
    top: auto;
    transform: translate3d(0, 0, 0);
  }

  .resolveImage.-small[data-target="on"] {
    animation: resolveBig-sp 0.8s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }
}

@keyframes resolveBig-pc {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@keyframes resolveSmall-pc {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(10%, -50%, 0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes resolveBig-sp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes resolveSmall-sp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(10%, -50%, 0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, -50%, 0);
  }
}

.secVoice {
  margin: 110px auto;
  position: relative;
  background-color: #fef4ef;
}

@media all

/* 1080px */
  {
  .secVoice {
    margin: 10.185cqw auto;
  }
}

@media all

/* 840px */
  {
  .secVoice {
    margin: 5.952cqw auto;
  }
}

@media all

/* 560px */
  {
  .secVoice {
    margin: 5.357cqw auto;
  }
}

.voiceDrop {
  width: 100%;
  max-width: 1080px;
  min-width: 1080px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

.voiceDrop img {
  width: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}

.voiceDrop img:nth-of-type(1) {
  top: 1px;
}

.voiceDrop img:nth-of-type(2) {
  top: 40%;
}

.voiceDrop img:nth-of-type(3) {
  bottom: 1px;
}

@media all

/* 1080px */
  {
  .voiceDrop {
    width: 100%;
    min-width: initial;
    max-width: initial;
  }
}

@media all

/* 840px */
  {
  .voiceDrop img:nth-of-type(2) {
    top: 41%;
  }
}

@media all

/* 560px */
  {
  .voiceDrop img:nth-of-type(1) {
    top: 1px;
  }

  .voiceDrop img:nth-of-type(2) {
    top: 41%;
  }

  .voiceDrop img:nth-of-type(3) {
    bottom: 2%;
  }
}

.voiceTitle {
  display: block;
  width: 89%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.voiceListWrap {
  margin-top: 2em;
  position: relative;
  z-index: 10;
}

.voiceListWrap_title {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.voiceListWrap_title.-premom {
  border: #ff8e5a 2px dashed;
}

.voiceListWrap_title.-mom {
  border: #6cc5d5 2px dashed;
}

.voiceListWrap:nth-of-type(2) {
  margin-top: calc(var(--basic-margin) * 2);
}

.voiceListWrap_image {
  position: absolute;
}

.voiceListWrap_image.-prePC {
  width: 21%;
  right: 0;
  bottom: 0;
  transform: translate3d(0, 20%, 0);
}

.voiceListWrap_image.-preSP {
  display: none;
}

.voiceListWrap_image.-mom {
  width: 30%;
  left: 0;
  bottom: 0;
  transform: translate3d(20%, 10%, 0);
}

@media all

/* 1080px */
  {
  .voiceListWrap_image.-prePC {
    width: 25%;
    right: 0;
    bottom: 0;
    transform: translate3d(-20%, 20%, 0);
  }

  .voiceListWrap_image.-mom {
    width: 42%;
    left: 0;
    bottom: 0;
    transform: translate3d(20%, 10%, 0);
  }
}

@media all

/* 840px */
  {
  .voiceListWrap:nth-of-type(2) {
    margin-top: calc(var(--basic-margin));
  }

  .voiceListWrap_image.-prePC {
    width: 28%;
    transform: translate3d(0, 15%, 0);
  }

  .voiceListWrap_image.-mom {
    width: 48%;
    left: 0;
    bottom: 0;
    transform: translate3d(5%, 10%, 0);
  }
}

@media all

/* 560px */
  {
  .voiceListWrap:nth-of-type(2) {
    padding-bottom: 39.286cqw;
  }

  .voiceListWrap_image.-prePC {
    display: none;
  }

  .voiceListWrap_image.-preSP {
    display: block;
    width: 35%;
    right: 0;
    bottom: 0;
    transform: translate3d(-10%, 10%, 0);
  }

  .voiceListWrap_image.-mom {
    width: 52%;
    transform: translate3d(5%, 15%, 0);
  }
}

.voiceList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2em;
  grid-template-areas: "a b c d""e f g h""i j k l";
  margin-top: var(--basic-margin);
  padding: 0 2em;
}

.voiceList_item {
  padding: 1em;
  background-color: #fff;
  border-radius: 20px;
}

.voiceList_item h4 {
  padding: 0.4em;
  padding-left: 2.4em;
  position: relative;
  border-radius: 6px;
  color: #fff;
  font-size: 87.5%;
  font-weight: 700;
  white-space: nowrap;
}

.voiceList_item h4::before {
  content: "";
  display: block;
  width: 1.3em;
  height: 1.1em;
  position: absolute;
  top: 50%;
  left: 0.6em;
  background: url("../../img/voice_icon.svg") center/contain no-repeat;
  transform: translate3d(0, -50%, 0);
}

.voiceList_item p {
  margin-top: 0.8em;
  text-align: justify;
}

.voiceList.-premom .voiceList_item {
  border: #ff8e5a 2px solid;
  opacity: 0;
  visibility: hidden;
}

.voiceList.-premom .voiceList_item[data-target="on"] {
  animation: voice15 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
}

.voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(3n) {
  animation: voice15 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

.voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(2n) {
  animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
}

.voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(4n) {
  animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.6s both;
}

.voiceList.-premom .voiceList_item h4 {
  background-color: #ff8e5a;
}

.voiceList.-mom .voiceList_item {
  border: #6cc5d5 2px solid;
  opacity: 0;
  visibility: hidden;
}

.voiceList.-mom .voiceList_item:nth-of-type(9) {
  grid-area: k;
}

.voiceList.-mom .voiceList_item:nth-of-type(10) {
  grid-area: l;
}

.voiceList.-mom .voiceList_item[data-target="on"] {
  animation: voice15 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
}

.voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(3n) {
  animation: voice15 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
}

.voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(2n) {
  animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
}

.voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(4n) {
  animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.6s both;
}

.voiceList.-mom .voiceList_item h4 {
  background-color: #6cc5d5;
}

@media all

/* 1080px */
  {
  .voiceList {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas: "a b c""d e f""g h i""j k l";
    gap: 1em;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(2n + 1) {
    animation: voice0 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(3n + 1) {
    animation: voice10 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(3n) {
    animation: voice10 0.4s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(9) {
    grid-area: i;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(10) {
    grid-area: l;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(4n + 1) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(4n) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(3n + 1) {
    animation: voice10 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(3n) {
    animation: voice10 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(9) {
    animation: voice10 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(10) {
    animation: voice10 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.4s both;
  }
}

@media all

/* 840px */
  {
  .voiceList {
    padding: 0 0;
  }
}

@media all

/* 560px */
  {
  .voiceList {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.4em;
    grid-template-areas: "a b""c d""e f";
    margin-top: 1.4em;
  }

  .voiceList_item {
    border-width: 1px;
    border-radius: 1em;
  }

  .voiceList_item.-img {
    display: none;
  }

  .voiceList.-premom .voiceList_item:nth-of-type(1) {
    grid-area: a;
  }

  .voiceList.-premom .voiceList_item:nth-of-type(3) {
    grid-area: c;
  }

  .voiceList.-premom .voiceList_item:nth-of-type(6) {
    grid-area: b;
  }

  .voiceList.-premom .voiceList_item:nth-of-type(9) {
    grid-area: d;
  }

  .voiceList.-premom .voiceList_item:nth-of-type(8) {
    grid-area: f;
  }

  .voiceList.-premom .voiceList_item:nth-of-type(11) {
    grid-area: e;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(1) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(3) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(6) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(9) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(8) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-premom .voiceList_item[data-target="on"]:nth-of-type(11) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(1) {
    grid-area: a;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(3) {
    grid-area: c;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(6) {
    grid-area: b;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(8) {
    grid-area: d;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(9) {
    grid-area: e;
  }

  .voiceList.-mom .voiceList_item:nth-of-type(10) {
    grid-area: f;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(1) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(3) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(6) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(8) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(9) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) both;
  }

  .voiceList.-mom .voiceList_item[data-target="on"]:nth-of-type(10) {
    animation: voice0 0.6s cubic-bezier(0.4, 0.25, 0.54, 0.93) 0.2s both;
  }
}

@keyframes voice15 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(-15%);
  }
}

@keyframes voice10 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(-10%);
  }
}

@keyframes voice0 {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.installService {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: calc(var(--basic-margin) + 30px) 0;
  padding: 1.8em 16.5% 1.8em 5%;
  position: relative;
  background-color: #fef4ef;
  border-radius: 20px;
}

.installService>h3 {
  display: none;
}

.installService_image {
  flex: 0 0 145px;
  height: 145px;
  border-radius: 50%;
  overflow: hidden;
}

.installService_text {
  flex: 0 1 calc(100% - 145px);
  padding-left: 5.4%;
}

.installService_text h3 {
  display: inherit;
  color: #e37589;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2.8rem;
}

.installService_text p {
  margin-top: 1em;
  text-align: justify;
}

.installService_deco {
  width: 7.8%;
  position: absolute;
  bottom: 0;
  right: 5.6%;
}

@media all

/* 1080px */
  {
  .installService {
    margin: calc(var(--basic-margin)) 0;
  }

  .installService_text {
    flex: 0 1 calc(100% - 145px);
    padding-left: 5%;
  }

  .installService_text h3 {
    font-size: 2.593cqw;
  }
}

@media all

/* 840px */
  {
  .installService {
    display: flex;
    align-items: center;
    padding: 1.6em 1.6em 1.6em 1.6em;
    border-radius: 1em;
  }

  .installService_image {
    flex: 0 0 16.667cqw;
    height: 16.667cqw;
  }

  .installService_text {
    flex: 0 1 calc(100% - 17.262cqw);
    padding-left: 5%;
  }

  .installService_text h3 {
    font-size: 3.333cqw;
  }

  .installService_text p {
    margin-top: 0.6em;
  }

  .installService_deco {
    display: none;
  }
}

@media all

/* 560px */
  {
  .installService>h3 {
    display: inherit;
    color: #e37589;
    font-weight: 700;
    line-height: 1.5;
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 0.6em;
    font-size: 5.333cqw;
  }

  .installService_image {
    flex: 0 0 25cqw;
    height: 25cqw;
  }

  .installService_text {
    flex: 0 1 calc(100% - 25cqw);
    margin-left: 0;
    padding-left: 1em;
  }

  .installService_text h3 {
    display: none;
  }

  .installService_text p {
    margin-top: 0;
  }
}

.appSupport h2 {
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: min(3.52cqw, 3.8rem);
}

.appSupport .row3Box {
  align-items: stretch;
  margin-top: 2.4em;
}

.appSupport .row3Box_item {
  display: flex;
  flex-direction: column;
}

.appSupport .row3Box_item h3 {
  font-size: 2.4rem;
}

.appSupport .row3Box_item p {
  margin-bottom: auto;
}

@media all

/* 1080px */
  {
  .appSupport h2 {
    font-size: 3.519cqw;
  }

  .appSupport .row3Box_item h3 {
    font-size: 2.407cqw;
  }
}

@media all

/* 840px */
  {
  .appSupport h2 {
    font-size: 4.524cqw;
  }

  .appSupport h2 .resizeShow {
    display: inline;
  }

  .appSupport .row3Box_item h3 {
    font-size: 3.095cqw;
  }
}

@media all

/* 560px */
  {
  .appSupport h2 {
    font-size: 6.4cqw;
  }

  .appSupport .row3Box_item h3 {
    font-size: 5.333cqw;
  }
}

.secPoint {
  margin-top: 110px;
  padding-top: 40px;
  background: #fef4ef;
  background: linear-gradient(0deg, rgba(254, 244, 239, 0) 0%, rgba(254, 244, 239, 0) 34%, #fef4ef 34%, #fef4ef 100%);
  text-align: center;
}

@media all

/* 1080px */
  {
  .secPoint {
    margin-top: 10.185cqw;
  }
}

@media all

/* 840px */
  {
  .secPoint {
    margin-top: 5.952cqw;
  }
}

@media all

/* 560px */
  {
  .secPoint {
    margin-top: 0;
    background: linear-gradient(0deg, rgba(254, 244, 239, 0) 0%, rgba(254, 244, 239, 0) 46%, #fef4ef 46%, #fef4ef 100%);
  }

  .secPoint .waveL {
    display: none;
  }
}

.pointTitle {
  display: inline-block;
  position: relative;
  color: #1e445b;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: min(3.52cqw, 3.8rem);
}

.pointTitle::before,
.pointTitle::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 115%;
  position: absolute;
  bottom: -10%;
  background-color: #1e445b;
}

.pointTitle::before {
  left: -8%;
  transform: rotate(-30deg);
}

.pointTitle::after {
  right: -8%;
  transform: rotate(30deg);
}

@media all

/* 1080px */
  {
  .pointTitle {
    font-size: 3.519cqw;
  }
}

@media all

/* 840px */
  {
  .pointTitle {
    font-size: 4.524cqw;
  }

  .pointTitle .resizeShow {
    display: inline;
  }

  .pointTitle::before {
    left: -8%;
    transform: rotate(-20deg);
  }

  .pointTitle::after {
    right: -8%;
    transform: rotate(20deg);
  }
}

@media all

/* 560px */
  {
  .pointTitle {
    font-size: 5.333cqw;
  }

  .pointTitle::before,
  .pointTitle::after {
    width: 2px;
    height: 60%;
    bottom: -2%;
  }

  .pointTitle::before {
    left: -6%;
    transform: rotate(-20deg);
  }

  .pointTitle::after {
    right: -6%;
    transform: rotate(20deg);
  }
}

.pointDetail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 930px;
  margin: 2em auto 0;
}

.pointDetail_icon {
  flex: 0 0 175px;
}

.pointDetail p {
  flex: 1 1 auto;
  width: 0;
  margin-left: 4.3%;
  font-size: 110%;
  text-align: justify;
}

@media all

/* 1080px */
  {
  .pointDetail_icon {
    flex: 0 0 15.741cqw;
  }
}

@media all

/* 840px */
  {
  .pointDetail_icon {
    flex: 0 0 20.238cqw;
  }

  .pointDetail p {
    margin-left: 3.6%;
  }
}

@media all

/* 560px */
  {
  .pointDetail_icon {
    flex: 0 0 25cqw;
  }
}

.pointImage {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}

.pointImage_item {
  flex: 0 0 23%;
}

@media all

/* 560px */
  {
  .pointImage {
    flex-wrap: wrap;
  }

  .pointImage_item {
    flex: 0 0 48%;
  }

  .pointImage_item:nth-last-of-type(-n + 2) {
    margin-top: 1em;
  }
}

@media all

/* 840px */
  {
  .sectionNotes {
    padding-bottom: var(--side-padding);
  }
}

.noteBlock {
  padding: 80px 0 0;
  background-color: #fff;
  @media all

  /* 840px */
    {
    padding: 48px 16px 32px;
  }

  .title {
    width: 207px;
    margin: 0 auto;
    @media all

    /* 560px */
      {
      width: 100px;
    }
  }

  .text1 {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1.2px;
    @media all

    /* 560px */
      {
      font-size: 18px;
      line-height: 20px;
      letter-spacing: 0.9px;
    }
  }
}

.noteBlock h2 {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: 3.8rem;
}

@media all

/* 1080px */
  {
  .noteBlock h2 {
    font-size: 3.519cqw;
  }
}

@media all

/* 840px */
  {
  .noteBlock h2 {
    font-size: 4.762cqw;
  }
}

.accMenu {
  margin-top: 1em;
}

.accMenu[open] .accToggle::after {
  transform: translate3d(0, -20%, 0) rotate(-135deg);
}

.accMenu:first-of-type {
  margin-top: 2em;
}

.accToggle {
  display: block;
  padding: 0.6em 1.6em;
  position: relative;
  background-color: #907b5d;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.accToggle span {
  display: inline-block;
  margin-right: 0.6em;
}

.accToggle::-webkit-details-marker {
  display: none;
}

.accToggle::after {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 50%;
  right: 1.4em;
  border-bottom: #fff 2px solid;
  border-right: #fff 2px solid;
  transform: translate3d(0, -60%, 0) rotate(45deg);
  transition: all 0.3s;
}

@media all

/* 840px */
  {
  .accToggle {
    padding: 0.6em 2.2em 0.6em 2.7em;
    font-size: 3.6cqw;
    line-height: 1.3;
  }

  .accToggle.-note {
    padding: 0.6em 2.2em 0.6em 1.2em;
  }

  .accToggle::after {
    right: 1em;
  }

  .accToggle span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0.8em;
    transform: translate3d(0, -50%, 0);
  }
}

.accInner {
  display: flex;
  padding: 2em;
  position: relative;
  background-color: #fffbfa;
  z-index: 1;
  overflow: hidden;
}

.accInner_head {
  flex: 0 0 auto;
  margin-right: 1em;
  color: #1e445b;
  font-size: 2rem;
  font-weight: 700;
}

.accInner_detail p {
  color: #1e445b;
  text-align: justify;
}

.accInner_detail p:not(:first-of-type) {
  margin-top: 1.4em;
}

.accInner_detail p.note {
  font-size: 75%;
  font-weight: 400;
  line-height: 1.4;
  font-size: 87.5%;
}

@media all

/* 840px */
  {
  .accInner_detail p.note {
    font-size: 83.4%;
  }
}

.accInner_detail p a {
  transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .accInner p a:hover {
    text-decoration: underline;
  }
}

@media all

/* 840px */
  {
  .accInner {
    padding: 1.2em 1.2em 1.2em 0.8em;
  }

  .accInner.-note {
    padding: 1.2em 1.2em 1.2em 1.2em;
  }

  .accInner_head {
    margin-right: 0.8em;
    font-size: 3.6cqw;
  }
}

.tableWrap {
  margin-top: 1.4em;
}

.costTable {
  width: 100%;
  max-width: 860px;
  background-color: #fff;
  border: #d9d9d9 thin solid;
  border-collapse: collapse;
  text-align: center;
}

.costTable th {
  padding: 0.4em;
  background-color: #a3a3a3;
  border: #d9d9d9 thin solid;
  color: #fff;
  font-weight: 400;
}

.costTable td {
  padding: 0.4em;
  border: #d9d9d9 thin solid;
  color: #1e445b;
}

@keyframes mmslideIn {
  from {
    opacity: 0;
    transform: translateY(5%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-5%);
  }
}

/* サイドメニュー全体 */
.sideMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.sideMenu.open {
  right: 0;
}

.sideMenu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.sideMenu li {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.sideMenu a {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
}

.sideMenu a span {
  color: #444;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.6px;
}

.closeBtn {
  display: flex;
  justify-content: end;
  margin-right: 8px;
  font-size: 32px;
  font-weight: lighter;
  cursor: pointer;
  color: #333;
}

.closeBtn:hover {
  color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  .head {
    background-color: #214359;
    height: 64px;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    h2 {
      @media all

      /* 840px */
        {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
      }
    }
  }

  .modalContent {
    position: fixed;
    left: 0;
    right: 0;
    margin: 30px auto;
    max-width: 700px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    @media all

    /* 840px */
      {
      width: 90%;
    }

    .detail {
      padding: 60px;
      max-height: calc(100vh - 124px);
      overflow-y: auto;
      @media all

      /* 840px */
        {
        padding: 30px 1.5rem;
      }

      img {
        margin: 0 auto 72px;
        width: 80%;
        @media all

        /* 840px */
          {
          width: 100%;
          margin: 0 auto 24px;
        }
      }

      .text1 {
        font-family: "Noto Sans JP";
        font-size: 14.473px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.724px;
        text-align: left;
        margin-bottom: 48px;
        @media all

        /* 840px */
          {
          font-size: 12px;
          line-height: 18px;
          margin-bottom: 20px;
        }
      }

      .text2 {
        font-family: "Noto Sans JP";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-align: center;
        padding: 10px;
        @media all

        /* 840px */
          {
          font-size: 10px;
          font-weight: 700;
          line-height: normal;
          padding: 5px;
        }
      }

      .text3 {
        color: #000;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.7px;
        text-align: left;
        @media all

        /* 840px */
          {
          font-size: 10px;
          line-height: 14px;
        }
      }
    }

    .box {
      display: flex;
      text-align: left;
      gap: 5px;
      margin: 5px 0;

      .title {
        background-color: #214359;
        width: 30%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .description {
        background-color: #e9f1f7;
        width: 80%;
        display: flex;
        align-items: center;
        padding: 16px;
      }
    }
  }

  .modalCloseBtn {
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
    right: 10px;
    top: 10px;
    cursor: pointer;
    background-color: #fff;
    height: 40px;
    width: 40px;
    border-radius: 90px;
    font-size: 25px;
  }
}

.sliderArea {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 47%;
  z-index: 10;
  width: 120px;
  height: 120px;
  background: #214359;
  border-radius: 50%;
  color: white;
  transform: scale(0.5);
  @media all

  /* 840px */
    {
    top: 40%;
    transform: scale(0.4);
    width: 100px;
    height: 100px;
  }
}

.swiper-button-next {
  right: -30px;

  &.daily {
    right: -50px;
  }
}

.swiper-button-prev {
  left: -30px;

  &.daily {
    left: -50px;
  }
}

.swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50px);
  text-align: center;
  z-index: 10;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 22px;
}

.sectionTitle {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 62px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
  margin-bottom: 16px;
  @media all

  /* 840px */
    {
    font-size: 35px;
    line-height: 44px;
  }
}

.bannerArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 64px;
  margin-bottom: 75px;
  max-width: 1000px;
}

@media all

/* 840px */
  {
  .bannerArea {
    display: block;
  }
}

.bannerArea .banner {
  display: block;
  cursor: pointer;
  width: 45%;
}

.sectionCTA .bottom .image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 64px;
  max-width: 1000px;
  margin-bottom: 32px;
}

.sectionCTA .bottom .image>div {
  width: 45%;
}

@media all

/* 840px */
  {
  .sectionCTA .bottom .image {
    display: block;
    margin-bottom: 16px;
  }

  .sectionCTA .bottom .image>div {
    width: 100%;
  }

  .sectionCTA .bottom .image img {
    margin: 8px 0;
  }
}

.footer .some-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.footer .some-container .text2 {
  text-align: center;
}

.comparison {
  width: 100%;
  background-color: var(--aura-dark-bg);
  text-align: center;
  padding-block: 93px;
  display: none;
}

.comparison .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison .sectionTitle {
  color: var(--aura-gold);
}

.comparison .sectionsubtitle {
  text-align: center;
  color: var(--aura-gold);
}

.aura-table-wrapper {
  overflow-x: auto;
  padding: 40px 0 10px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Yu Mincho", serif;
}

.aura-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
}

.aura-table thead th {
  padding: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--aura-gold);
  vertical-align: bottom;
}

.aura-table thead th.highlight-col {
  color: var(--aura-gold);
  font-size: 1.2em;
  font-family: 'Times New Roman', serif;
  text-shadow: 0 0 10px rgba(191, 168, 117, 0.3);
}

.aura-table tbody th {
  text-align: center;
  padding: 20px;
  font-weight: normal;
  color: var(--aura-gold-light);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.aura-table tbody td {
  padding: 20px 0 20px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
  text-align: left;
}

.aura-table .highlight-col {
  background-color: rgba(191, 168, 117, 0.08);
  position: relative;
}

.aura-table tbody td.highlight-col {
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid var(--border-color);
}

.aura-table tbody tr:last-child td.highlight-col {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.aura-table thead tr th.highlight-col {
  border-radius: 8px 8px 0 0;
  background-color: rgba(191, 168, 117, 0.15);
}

.comparison .desc {
  color: #fff;
  font-size: 12px;
  text-align: left;
}

@media all

/* 678px */
  {
  .comparison {
    padding-inline: 28px;
  }

  .comparison .sectionsubtitle {
    margin-bottom: 3rem;
  }

  .aura-table {
    font-size: 13px;
  }

  .aura-table th,
  .aura-table td {
    padding: 12px 8px;
  }

  .aura-table tbody th {
    white-space: normal;
    font-size: 12px;
    padding: 5px;
  }

  .aura-table thead th {
    padding: 15px;
  }

  .aura-table tbody td {
    padding: 30px;
  }

  .aura-table-wrapper {
    padding: 20px 0;
  }

  .aura-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 600px;
    width: 100%;
  }

  .aura-table th,
  .aura-table td {
    white-space: nowrap;
  }

  .aura-table td.highlight-col {
    white-space: normal;
  }
}

.movie {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 96px 0;
  position: relative;
  box-sizing: border-box;
}

.movie .text1 {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.1111cqw;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1111cqw;
  margin-bottom: 3.3333cqw;
}

.movie-slider-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.movie-prev,
.movie-next {
  display: none;
}

@media all

/* 840px */
  {
  .movie {
    padding: 48px 32px;
  }

  .movie .text1 {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.9px;
    margin-bottom: 20px;
  }

  .movie .movie-prev,
  .movie .movie-next {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #fff;
  }

  .movie .movie-prev {
    left: 1.5cqw;
  }

  .movie .movie-next {
    right: 1.5cqw;
  }

  .movie .movie-prev::after,
  .movie .movie-next::after {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
  }
}

/* ========================================================================
   ★ スプリット（中央配置）レイアウト用追記 (PC環境 841px以上) ★
   ======================================================================== */
@media screen and (min-width: 841px) {

  /* 全体のベース背景を白にする */
  body {
    background-color: #fff !important;
  }

  /* 左側の固定背景：画面左端から、中央スマホUI（430px）の左端まで */
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: calc(50% - 215px);
    height: 100vh;
    background: url("./img/horse.jpg") no-repeat center center;
    background-size: cover;
    z-index: 0;
  }

  /* メインコンテンツ（スマホUI）を中央に配置し、幅を 430px に固定 */
  .wrapper {
    margin: 0 auto;
    width: 430px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
  }

  .siteNav {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 430px !important;
  }

  .siteNav .hamburgerMenu {
    display: none !important;
  }

  .followCTA {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate3d(0, 0, 0) !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 430px !important;
  }

  .pageTop {
    right: calc(50% - 215px - 70px) !important;
  }

  /* ----------------------------------------------------
     ▼ PC時の右側グローバルナビゲーション（スタイリッシュ版） ▼
     ---------------------------------------------------- */
  .sideMenu {
    right: auto !important;
    left: calc(50% + 250px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 220px !important;
    height: auto !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    z-index: 100 !important;
    display: block !important;
    overflow: visible !important;
    /* ★余計なスクロールバーを消去 */
  }

  .sideMenu .closeBtn {
    display: none !important;
  }

  .sideMenu ul {
    padding: 0 !important;
    margin: 0 !important;
  }

  .sideMenu li {
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 16px 0 !important;
  }

  .sideMenu li:first-child {
    border-top: 1px solid #e0e0e0 !important;
  }

  .sideMenu a {
    display: block !important;
    text-align: center !important;
    color: #907b5d !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }

  .sideMenu a span {
    display: block !important;
    color: #907b5d !important;
    opacity: 0.8 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    margin-top: 5px !important;
    letter-spacing: 0.08em !important;
    transition: all 0.3s ease !important;
  }

  /* ホバー時のリアクション */
  .sideMenu a:hover {
    color: #214359 !important;
    transform: translateX(4px) !important;
  }

  .sideMenu a:hover span {
    color: #214359 !important;
    opacity: 1 !important;
  }
}