@charset "UTF-8";
/* ----------------------------------------
   PC・SP切り替え
---------------------------------------- */
.spOnly {
  display: none;
}

.fromspOnly {
  display: none;
}

@media screen and (max-width: 768px) {
  .spOnly {
    display: block;
  }
  .pcOnly {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .topcOnly {
    display: none;
  }
  .fromspOnly {
    display: block;
  }
}
.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 480px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

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

.mt40 {
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .mt40 {
    margin-top: 35px;
  }
}

/* ----------------------------------------
   キービジュアル
---------------------------------------- */
.page-header {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .page-header__sp-area {
    height: 65px;
    background: #fff;
  }
}
.page-header__pc-area {
  padding: 15px 20px;
  background-color: #ebf8fc;
}
@media screen and (max-width: 480px) {
  .page-header__pc-area {
    padding: 10px;
    overflow: hidden;
  }
}

.page-header__kv-frame {
  margin: 0 auto;
  padding: 0 20px;
  border: solid 10px #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .page-header__kv-frame {
    border: solid 5px #fff;
  }
}

.page-header__kv-inner {
  margin: 0 auto;
  padding: 60px 0px;
  max-width: 1310px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .page-header__kv-inner {
    padding: 10px 0px 15px;
  }
}

/* ---- ロゴ ---- */
.page-header__logo {
  position: absolute;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .page-header__logo {
    left: 30px;
    top: 26px;
    width: 11.4166666667vw;
  }
}
@media screen and (max-width: 768px) {
  .page-header__logo {
    left: 30px;
    top: 26px;
    width: 110px;
  }
}
@media screen and (max-width: 480px) {
  .page-header__logo {
    width: 130px;
    position: static;
    display: block;
  }
}

/* ---- タイトルセット ---- */
.page-header__kv {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .page-header__kv {
    display: block;
    width: 82%;
  }
}

.page-header__kv-center {
  width: 40.92%;
  overflow: visible;
}
@media screen and (max-width: 480px) {
  .page-header__kv-center {
    width: 100%;
    position: relative;
    z-index: 2;
  }
}

.page-header__kv-cap {
  margin: 13px auto 5px;
}
@media screen and (max-width: 480px) {
  .page-header__kv-cap {
    margin: 10px auto 0px;
  }
}

.page-header__kv-dir {
  margin: 15px auto 0;
}
@media screen and (max-width: 480px) {
  .page-header__kv-dir {
    margin: 10px auto 0;
  }
}

.page-header__kv-deco01 {
  width: 24.73%;
}
@media screen and (max-width: 480px) {
  .page-header__kv-deco01 {
    position: absolute;
    top: -23px;
    left: -75px;
    width: 33vw;
  }
}

.page-header__kv-deco02 {
  width: 27.33%;
}
@media screen and (max-width: 480px) {
  .page-header__kv-deco02 {
    position: absolute;
    top: -22px;
    right: -75px;
    width: 35vw;
  }
}

.page-header__kv-bubble .topcOnly {
  display: none;
}
@media (min-width: 768px) {
  .page-header__kv-bubble .topcOnly {
    display: block;
    width: 120%;
    max-width: none;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.can-sample__text sup {
  font-size: 0.5em;
}

/* -----------------------------
   KVアニメーション（Step1）
   page-header__kv-center-box：最初は縮小＋透明 → ボヨンと登場
----------------------------- */
/* 初期状態（非表示・縮小） */
.page-header__kv-center-box {
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

/* 表示状態（クラス付与後） */
.page-header__kv-center-box.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* kv-dir：最初は少し下＋透明 */
.page-header__kv-dir {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  will-change: transform, opacity;
}

/* 表示状態 */
.page-header__kv-dir.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* kv-deco01 / kv-deco02：最初は少し下＋透明 */
.page-header__kv-deco01,
.page-header__kv-deco02 {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  will-change: transform, opacity;
}

/* 表示状態（下からふわっと） */
.page-header__kv-deco01.is-show,
.page-header__kv-deco02.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ----------------------------------------
   ミューナビとは？
---------------------------------------- */
.bg-green {
  background-color: #f0f4c9;
}

.bg-blue {
  background-color: #ebf8fc;
}

.section-inner {
  margin: 0 auto;
  padding: 100px 20px 240px;
  max-width: 1040px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-inner {
    padding: 40px 10px 100px;
  }
}

.section-inner.wide {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  max-width: none;
}

.u-arch-top {
  margin-top: -10rem;
  margin-inline: -30rem;
  padding-top: 9rem;
  position: relative;
  border-top-right-radius: 50% 10vw;
  border-top-left-radius: 50% 10vw;
}
@media screen and (max-width: 768px) {
  .u-arch-top {
    margin-inline: -5.3333333333vw;
    padding-top: 8vw;
    border-top-right-radius: 50% 7vw;
    border-top-left-radius: 50% 7vw;
  }
}
@media screen and (max-width: 480px) {
  .u-arch-top {
    margin-top: -4rem;
    padding-top: 4rem;
    border-top-right-radius: 50% 6.5vw;
    border-top-left-radius: 50% 6.5vw;
  }
}

.u-arch-top--pre-pic {
  margin-top: -20.5rem;
}
@media screen and (max-width: 768px) {
  .u-arch-top--pre-pic {
    margin-top: -8.5rem;
  }
}
@media screen and (max-width: 480px) {
  .u-arch-top--pre-pic {
    margin-top: -2.5rem;
  }
}

/* ★ 新設：レイアウト制御用のコンテナ */
.arch-container {
  max-width: 1440px;
  margin-inline: auto;
  width: 100vw;
}

.section-inner {
  padding: 45px 20px 220px;
}
@media screen and (max-width: 480px) {
  .section-inner {
    padding: 20px 20px 80px;
  }
}

/* ---- セクションタイトル ---- */
.section-title {
  margin: 0 auto;
  padding: 15px 2.5em;
  font-family: "M PLUS Rounded 1c", sans-serif;
  border: solid 2px #000;
  background: #fff;
  -webkit-box-shadow: 15px 15px 0px 0px rgb(182, 211, 9);
          box-shadow: 15px 15px 0px 0px rgb(182, 211, 9);
  display: table;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 480px) {
  .section-title {
    padding: 0.3em 1.4em;
    line-height: 1.4;
    border: solid 1px #000;
    -webkit-box-shadow: 8px 8px 0px 0px rgb(182, 211, 9);
            box-shadow: 8px 8px 0px 0px rgb(182, 211, 9);
  }
}

@media screen and (max-width: 480px) {
  .section-title.sp-wide {
    padding: 0.3em 2.5em;
  }
}
.section-title.blue {
  -webkit-box-shadow: 15px 15px 0px 0px rgb(1, 192, 244);
          box-shadow: 15px 15px 0px 0px rgb(1, 192, 244);
}
@media screen and (max-width: 480px) {
  .section-title.blue {
    -webkit-box-shadow: 7px 7px 0px 0px rgb(1, 192, 244);
            box-shadow: 7px 7px 0px 0px rgb(1, 192, 244);
  }
}

.section-title.wide {
  padding: 15px 4em;
}
@media screen and (max-width: 480px) {
  .section-title.wide {
    padding: 0.3em 2em;
    line-height: 1.4;
    border: solid 1px #000;
  }
}

.section-title.thin {
  padding: 15px 1em;
}

.qa-box .section-title {
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.qa-box .section-title .char-main {
  font-size: 5rem;
}

/* アニメ対象の共通クラス */
.section-title .char {
  display: inline-block;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ============================
   Block: section-title
   ============================ */
.section-title {
  /* ===== main ===== */
  /* ===== sub ===== */
  /* ====================================
     Modifier: fz-rev（フォント反転）
     main ↔ sub を入れ替える
     ==================================== */
}
.section-title .char-main {
  font-size: 4.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .section-title .char-main {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 480px) {
  .section-title .char-main {
    font-size: 5.3vw;
    letter-spacing: 0.1em;
  }
}
.section-title .char-sub {
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section-title .char-sub {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 480px) {
  .section-title .char-sub {
    font-size: 4vw;
  }
}
.section-title.fz-rev {
  /* main を小さく → sub のサイズへ */
  /* sub を大きく → main のサイズへ */
}
.section-title.fz-rev .char-main {
  font-size: 3rem; /* 元 .char-sub */
  font-weight: normal;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section-title.fz-rev .char-main {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 480px) {
  .section-title.fz-rev .char-main {
    font-size: 4vw;
  }
}
.section-title.fz-rev .char-sub {
  font-size: 4.3rem; /* 元 .char-main */
  font-weight: 800;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .section-title.fz-rev .char-sub {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 480px) {
  .section-title.fz-rev .char-sub {
    font-size: 5.3vw;
  }
}

/* ビューポートに入ったらアニメ開始 */
.section-title.is-inview .char {
  -webkit-animation-name: muniJumpWave;
          animation-name: muniJumpWave;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s; /* ★ 0.6s → 0.8s にしてゆっくり */
  -webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
          animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: calc(var(--wave-index) * 0.12s);
          animation-delay: calc(var(--wave-index) * 0.12s); /* ★ 波遅延も少し伸ばす */
}

/* 真ん中からピョン → 少し戻って → 元の位置 */
@-webkit-keyframes muniJumpWave {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0.2deg);
            transform: translateY(0) rotate(0.2deg);
  }
  45% {
    opacity: 1;
    -webkit-transform: translateY(-16px) rotate(-1deg);
            transform: translateY(-16px) rotate(-1deg); /* 上に跳ねる */
  }
  70% {
    -webkit-transform: translateY(5px) rotate(0.4deg);
            transform: translateY(5px) rotate(0.4deg); /* ちょっと下に振り返す */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); /* 元の位置に戻る */
  }
}
@keyframes muniJumpWave {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0.2deg);
            transform: translateY(0) rotate(0.2deg);
  }
  45% {
    opacity: 1;
    -webkit-transform: translateY(-16px) rotate(-1deg);
            transform: translateY(-16px) rotate(-1deg); /* 上に跳ねる */
  }
  70% {
    -webkit-transform: translateY(5px) rotate(0.4deg);
            transform: translateY(5px) rotate(0.4deg); /* ちょっと下に振り返す */
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg); /* 元の位置に戻る */
  }
}
/* ---- イントロテキスト ---- */
.section-intro {
  margin-top: 60px;
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 2px;
}
@media screen and (max-width: 480px) {
  .section-intro {
    margin-top: 30px;
    font-size: 3.5vw;
    line-height: 2;
    letter-spacing: -1px;
  }
}

.section-intro__marker {
  margin-right: 5px;
  padding: 0.2em 0.6em 0.2em 1em;
  font-weight: 600;
  color: #ee5958;
  background: #fff;
  display: inline;
  line-height: 2.3;
}
@media screen and (max-width: 480px) {
  .section-intro__marker {
    padding: 0.3em 0.5em 0.2em 1em;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) no-repeat;
    background: linear-gradient(#fff, #fff) no-repeat;
    /* 行の高さより少し低めの帯にする */
    background-size: 100% 1.6em; /* 帯の高さ（ここを調整） */
    background-position: 0 0.3em; /* 帯の縦位置（ここも微調整） */
    font-size: 4vw;
    letter-spacing: 1.5px;
  }
}

.section-intro__marker .small {
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .section-intro__marker .small {
    font-size: 2.8vw;
    letter-spacing: 1px;
  }
}

/* ----------------------------------------
   ミューナビとは？
---------------------------------------- */
.wrapper {
  overflow-x: hidden;
}

.section-h.blue {
  -webkit-box-shadow: 15px 15px 0px 0px rgb(1, 192, 244);
          box-shadow: 15px 15px 0px 0px rgb(1, 192, 244);
}

.section-h.wide {
  padding: 15px 4em;
}
@media screen and (max-width: 480px) {
  .section-h.wide {
    padding: 0.3em 2em;
    line-height: 1.4;
    border: solid 1px #000;
  }
}

.section-h.thin {
  padding: 15px 1em;
}

.section-about {
  background: #f0f4c9;
}

.section-in-area {
  margin: 0 auto;
  padding: 100px 20px 260px;
  max-width: 1040px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-in-area {
    padding: 40px 10px 100px;
  }
}

.section-ttl img {
  margin: 0 auto;
  width: auto;
  height: 94px;
}
@media screen and (max-width: 768px) {
  .section-ttl img {
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .section-ttl img {
    height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .section-service .section-ttl {
    padding: 0 15px;
  }
  .section-service .section-ttl img {
    width: 100%;
    height: auto;
  }
  .section-service.movie .section-ttl img {
    width: 70vw;
    height: auto;
  }
  .section-can.try .section-ttl img {
    width: 75vw;
    height: auto;
  }
  .section-service.qa .section-ttl img {
    width: 37vw;
    height: auto;
  }
}
.section-about-intro {
  margin-top: 60px;
  font-size: 2rem;
  line-height: 2.2;
}
@media screen and (max-width: 480px) {
  .section-about-intro {
    margin-top: 30px;
    font-size: 4vw;
    line-height: 2;
  }
}

.section-about-intro .marker {
  margin-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  font-weight: 600;
  color: #ee5958;
  background: #fff;
  display: inline;
}
@media screen and (max-width: 480px) {
  .section-about-intro .marker {
    padding-left: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) no-repeat;
    background: linear-gradient(#fff, #fff) no-repeat;
    /* 行の高さより少し低めの帯にする */
    background-size: 100% 1.6em; /* 帯の高さ（ここを調整） */
    background-position: 0 0.3em; /* 帯の縦位置（ここも微調整） */
  }
}

/* ----------------------------------------
   どんなことができますか？
---------------------------------------- */
.bg-blue.u-arch-top {
  position: relative;
  overflow: hidden;
}

.arch-container {
  position: relative;
}

/* ▼ 背景用ラッパ（セクション内で 0 番レイヤー） */
.can-sample-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ▼ セクション内の中身は前面 */
.section-inner.wide {
  position: relative;
  z-index: 1;
}

/* =====================================================
   ▼ 共通：SVG のベース設定
   ===================================================== */
/* まず「全部いったん隠す」→ どのデバイスで何を見せるかは後で指定 */
.bg-blue.u-arch-top .can-sample-bg__svg {
  position: absolute !important;
  left: 0;
  top: 0;
  display: none; /* ★ ここを block ではなく none に */
  width: 100%;
  height: auto;
  -webkit-transform: translateY(130px);
          transform: translateY(130px); /* PC ベースの位置（SP では後で上書き） */
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

/* ▼ PC / タブレットのデフォルト：--pc だけ表示 */
.bg-blue.u-arch-top .can-sample-bg__svg--pc {
  display: block;
}

/* ▼ 重なり順：五線譜 → 音符（PC基準） */
.bg-blue.u-arch-top .can-sample-bg__svg--staff {
  z-index: 1;
  -webkit-transform: translateY(220px);
          transform: translateY(220px);
}

.bg-blue.u-arch-top .can-sample-bg__svg--notes {
  z-index: 2;
}

/* =====================================================
   ▼ タブレットレイアウト調整（PC 用 SVG に対して）
   ===================================================== */
@media screen and (max-width: 768px) {
  /* 五線譜（PC） */
  .bg-blue.u-arch-top .can-sample-bg__svg--staff.can-sample-bg__svg--pc {
    -webkit-transform: translateY(200px) scaleY(1.8);
            transform: translateY(200px) scaleY(1.8);
    left: -4vw;
    width: 108vw;
  }
  /* 音符（PC） */
  .bg-blue.u-arch-top .can-sample-bg__svg--notes.can-sample-bg__svg--pc {
    -webkit-transform: translateY(350px);
            transform: translateY(350px);
    left: 4vw;
    width: 92vw;
  }
}
/* =====================================================
   ▼ アニメーション制御（PC / SP 共通）
   ===================================================== */
/* 最初はアニメ停止 */
.can-sample-bg__svg--staff .staff-line,
.can-sample-bg__svg--notes .bg-notes path {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

/* .is-animate が付いたら再生開始 */
.can-sample-bg.is-animate .can-sample-bg__svg--staff .staff-line,
.can-sample-bg.is-animate .can-sample-bg__svg--notes .bg-notes path {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

/* =====================================================
   ★ ここから SP 関連（修正版）
   ===================================================== */
/* PC / タブレット時は SP 用 SVG（--sp）を隠しておく（保険） */
.bg-blue.u-arch-top .can-sample-bg__svg--sp {
  display: none;
}

/* ---------- SP 専用（mixin.mq("sp")：max-width:767px 想定） ---------- */
@media screen and (max-width: 480px) {
  /* 1) SP では PC 用 SVG（--pc）を必ず隠す */
  .bg-blue.u-arch-top .can-sample-bg__svg--pc {
    display: none !important;
  }
  /* 2) SP 全体での SVG ベースをリセット */
  .bg-blue.u-arch-top .can-sample-bg__svg {
    left: 0;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
  /* 3) SP 用（--sp）だけ表示＋基本位置 */
  .bg-blue.u-arch-top .can-sample-bg__svg--sp {
    display: block !important;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 80px);
            transform: translate(-50%, 80px);
  }
  /* 4) SP 五線譜：上段・下段ともに横を少し広げて両端からはみ出させる */
  .bg-blue.u-arch-top .can-sample-bg__svg--staff-sp-top,
  .bg-blue.u-arch-top .can-sample-bg__svg--staff-sp-bottom {
    width: 120vw;
  }
  /* 5) 下段の位置だけさらに下へずらす（値は調整済みならそのままでOK） */
  .bg-blue.u-arch-top .can-sample-bg__svg--staff-sp-bottom {
    -webkit-transform: translate(-50%, 1500px);
            transform: translate(-50%, 1500px);
  }
  /* 6) SP 音符：少し内側にして端ベタ付きを防ぐ */
  .bg-blue.u-arch-top .can-sample-bg__svg--notes-sp {
    width: 91vw;
  }
}
/* =========================================
  section-can（親セクション）※ここはブロック扱い
========================================= */
.section-can::before {
  margin-bottom: -140px;
  display: block;
  height: 140px;
  top: -140px;
  width: 100%;
  content: "";
  position: relative;
}
@media screen and (max-width: 480px) {
  .section-can::before {
    margin-bottom: -60px;
    height: 60px;
    top: -60px;
  }
}
.section-can__inner {
  margin: 0 auto;
  padding: 0 0 170px;
  max-width: none;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-can__inner {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 480px) {
  .section-can__inner {
    padding: 0 0 70px;
  }
}

/* =========================================
  can-sample ブロック
========================================= */
.can-sample {
  margin: -20px auto 0;
  padding-top: 30px;
  padding-bottom: 220px;
  max-width: 1440px;
  background-size: cover;
  /* ---- サンプル画像リスト ---- */
  /* ---- 画像 ---- */
  /* ---- テキスト ---- */
  /* ---- キャプション ---- */
}
@media screen and (max-width: 480px) {
  .can-sample {
    margin: 30px auto 0;
    padding-top: 0;
    padding-bottom: 80px;
    background-size: cover;
  }
}
.can-sample__inner {
  margin: 75px auto 0;
  padding: 0 20px;
  max-width: 1040px;
}
@media screen and (max-width: 480px) {
  .can-sample__inner {
    margin: 0 auto;
  }
}
.can-sample__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}
@media screen and (max-width: 480px) {
  .can-sample__list {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.can-sample__list--type1 {
  gap: 0 90px;
}
@media screen and (max-width: 768px) {
  .can-sample__list--type1 {
    gap: 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .can-sample__list--type1 {
    gap: 35px 0;
  }
}
.can-sample__list--type2 {
  margin: 90px auto 0;
  gap: 0 25px;
}
@media screen and (max-width: 480px) {
  .can-sample__list--type2 {
    margin: 30px auto 0;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.can-sample__list--type3 {
  margin: 117px auto 0;
  /*gap: 0 124px;*/
	gap: 0 60px;
}
@media screen and (max-width: 768px) {
  .can-sample__list--type3 {
    gap: 0 50px;
  }
}
@media screen and (max-width: 480px) {
  .can-sample__list--type3 {
    margin: 40px auto 0;
    width: 80vw;
    gap: 50px 0;
  }
}

/*20260317*/
.can-sample__list--type-sm {
	margin: 90px auto 0;
}

@media screen and (max-width: 480px) {
.can-sample__list--type-sm {
	margin: 40px auto 0;
}
	
.can-sample__list--type-sm .can-sample__image--vertical {
	max-width: 180px;
	}
}


.can-sample__item {
  /* 共通 li 用。必要ならここに共通指定 */
  /* SP幅調整（元 sp-wide1 / sp-wide2） */
}
.can-sample__item--align-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.can-sample__item--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 480px) {
  .can-sample__item--wide-sp1 {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .can-sample__item--wide-sp2 {
    width: 55%;
  }
}
.can-sample .can-sample__list--type2 .can-sample__text {
  margin-top: 10vw;
  margin-left: 40px;
}
@media screen and (max-width: 480px) {
  .can-sample .can-sample__list--type2 .can-sample__text {
    margin: 35px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .can-sample .can-sample__list--type2 .can-sample__item--text {
    width: 100%;
  }
}
.can-sample__image {
  margin: 0 auto;
}
.can-sample__image--vertical {
  max-width: 220px;
}
@media screen and (max-width: 480px) {
  .can-sample__list--type1 .can-sample__image--vertical {
    max-width: 180px;
  }
}
.can-sample__image--landscape {
  max-width: 310px;
}
@media screen and (max-width: 480px) {
  .can-sample__image--landscape {
    max-width: 60vw;
  }
}
.can-sample__image--landscape2 {
  text-align: left;
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  .can-sample__image--landscape2 {
    max-width: 60vw;
  }
}
.can-sample__image--landscape2 img {
  max-width: 75%;
}
@media screen and (max-width: 480px) {
  .can-sample__image--landscape2 img {
    max-width: 80%;
  }
}
.can-sample__image--landscape3 {
  text-align: left;
  max-width: 391px;
}
@media screen and (max-width: 480px) {
  .can-sample__image--landscape3 {
    max-width: 60vw;
  }
}
.can-sample__image--landscape3 img {
  width: 100%;
}
.can-sample__text {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .can-sample__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .can-sample__text {
    font-size: 5.5vw;
  }
}
.can-sample__text-small {
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 1px;
  position: relative;
  top: -0.4rem;
}
@media screen and (max-width: 768px) {
  .can-sample__text-small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .can-sample__text-small {
    font-size: 3.5vw;
  }
}
.can-sample__notes {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 480px) {
  .can-sample__notes {
    font-size: 2.5vw;
  }
}
.can-sample__caption-area {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.can-sample__caption-area-sm {
	margin: 0 auto;
  padding-bottom: 15px;
	max-width: 220px;
}
.can-sample__caption-text {
  width: 50%;
  font-size: 1.1rem;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 480px) {
  .can-sample__caption-text {
    font-size: 2vw;
    letter-spacing: normal;
  }
}

/* ==============================
   Block: balloon（SVG背景バージョン）
   ============================== */
.balloon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 吹き出し全体のサイズ・比率 */
  min-width: 130px;
  aspect-ratio: 130.02/46.75;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* SVG 背景 */
  background-image: url("../images/balloon_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  margin: 0 auto;
}

/* テキスト部分 */
.balloon__text-red {
  display: inline-block;
  margin: 0;
  padding: 0 1.4em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FF0000;
  letter-spacing: 1px;
  white-space: nowrap;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.balloon__text {
  display: inline-block;
  margin: 0;
  padding: 0 1.4em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  letter-spacing: 1px;
  white-space: nowrap;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

/* SP 調整 */
@media screen and (max-width: 480px) {
  .balloon {
    width: 22vw;
    min-width: 0;
  }
  .balloon__text {
    font-size: 2.5vw;
    padding: 0 1em;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .balloon__text-red {
    font-size: 2.5vw;
    padding: 0 1em;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
/* =========================================
   吹き出し専用アニメーション（Scroll_Up の後に動く）
   ========================================= */
/* 初期状態：少し下に隠しておく */
.Scroll_Up .balloon {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* ← 下から */
  -webkit-transition: 0.45s ease-out;
  transition: 0.45s ease-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s; /* ← Scroll_Up 本体より遅らせる */
}

/* Scroll_Up に「on」が付いたら → 吹き出しが遅れてスッ */
.Scroll_Up.on .balloon {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* =========================================
   NEW専用アニメーション（Scroll_Up の後に動く）
   ========================================= */
.new-mark {
	position: relative;
	left: -25px;
	bottom: -15px;
	text-align: left;
}

.new-mark span {
	display: inline-block; /* ←これ必須 */
	transform: rotate(-20deg);
	transform-origin: left center;
	font-size: 25px;
	font-weight: bold;
	color: #FF0000;
}

/* 初期状態：少し下に隠しておく */
.Scroll_Up .new-mark {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* ← 下から */
  -webkit-transition: 0.45s ease-out;
  transition: 0.45s ease-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s; /* ← Scroll_Up 本体より遅らせる */
}

/* Scroll_Up に「on」が付いたら → 吹き出しが遅れてスッ */
.Scroll_Up.on .new-mark {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* =========================================
  三本線アニメ（sanbonsen → spark-label）
========================================= */
.spark-label {
  position: relative;
}
.spark-label__lines {
  position: absolute;
  left: -30px;
  top: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 30px;
  pointer-events: none;
}
.spark-label__line {
  position: absolute;
  left: 0;
  width: 3px;
  height: 10px;
  background: #ff6e7f;
  border-radius: 2px;
  opacity: 0.9;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  -webkit-animation: spark 1.4s ease-in-out infinite;
          animation: spark 1.4s ease-in-out infinite;
}
.spark-label__line:nth-child(1) {
  top: 18px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.spark-label__line:nth-child(2) {
  top: 8px;
  left: 10px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.spark-label__line:nth-child(3) {
  top: -2px;
  left: 22px;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

/* ▼ アニメーション */
@-webkit-keyframes spark {
  0%, 100% {
    -webkit-transform: scale(1) rotate(var(--angle));
            transform: scale(1) rotate(var(--angle));
  }
  50% {
    -webkit-transform: scale(3) rotate(var(--angle));
            transform: scale(3) rotate(var(--angle));
  }
}
@keyframes spark {
  0%, 100% {
    -webkit-transform: scale(1) rotate(var(--angle));
            transform: scale(1) rotate(var(--angle));
  }
  50% {
    -webkit-transform: scale(3) rotate(var(--angle));
            transform: scale(3) rotate(var(--angle));
  }
}
/* ----------------------------------------
   中間画像
---------------------------------------- */
.section-pic {
  margin-top: -10rem;
}
@media screen and (max-width: 768px) {
  .section-pic {
    margin-top: -10rem;
  }
}
@media screen and (max-width: 480px) {
  .section-pic {
    margin-top: -3rem;
  }
}

.section-pic.ty1 {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url("../images/bg01.webp") center center no-repeat;
}

.section-pic.ty2 {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url("../images/bg02.webp") center center no-repeat;
}

/* ① 1920px以上：画像全体を見せつつ、比率 1920:700 を維持 */
@media (min-width: 1920px) {
  .section-pic.ty1,
  .section-pic.ty2 {
    aspect-ratio: 1920/700;
    background-size: contain;
  }
}
/* ② 1919px以下（PC〜タブレット）：比率 1440:700 でリキッド、左右カット */
@media (max-width: 1919px) {
  .section-pic.ty1,
  .section-pic.ty2 {
    aspect-ratio: 1440/700;
    background-size: cover;
  }
}
/* ③ SP（max-width:480px）：今まで通り差し替え */
@media screen and (max-width: 480px) {
  .section-pic.ty1 {
    background-image: url("../images/bg01_sp.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    aspect-ratio: 1500/850;
    height: auto;
  }
  .section-pic.ty2 {
    background-image: url("../images/bg02_sp.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    aspect-ratio: 1500/850;
    height: auto;
  }
}
/*==========================*/
/* アーチを付けたいときだけ add-arch を付与 */
/* 外側：アーチクリップ用（u-arch-top と同じ発想） */
.section-pic-arch {
  position: relative;
}

.section-pic-arch.add-arch {
  margin-top: -10rem;
  margin-inline: -30rem; /* ← “横に広げて” なだらかな円弧を作る */
  border-top-left-radius: 50% 12vw;
  border-top-right-radius: 50% 12vw;
  overflow: hidden; /* ← この箱がアーチ形で切り抜く */
}
@media screen and (max-width: 768px) {
  .section-pic-arch.add-arch {
    margin-inline: -5.3333vw;
    border-top-left-radius: 50% 9vw;
    border-top-right-radius: 50% 9vw;
  }
}
@media screen and (max-width: 480px) {
  .section-pic-arch.add-arch {
    margin-top: -3.5rem;
    margin-inline: -5.3333vw;
    border-top-left-radius: 50% 6.5vw;
    border-top-right-radius: 50% 6.5vw;
  }
}

/* 中間：はみ出したぶん、中身をセンタリングして元の幅に戻す */
.section-pic-adjust {
  max-width: 1920px; /* 必要なら 1440px → 100% でも可 */
  margin: 0 auto; /* ← 真ん中に戻す */
  width: 100%;
}

/* 中の .section-pic は現状のままでOK（高さ・aspect-ratio 等はそのまま） */
/* ----------------------------------------
   各サービス
---------------------------------------- */
.section-service {
  background: #f0f4c9;
}

.section-service:before {
  margin-bottom: -35px;
  display: block;
  height: 140px;
  background: url(../images/section_service_bg.png) 0 0/100% auto no-repeat;
  top: -35px;
  width: 100%;
  content: "";
  position: relative;
}
@media screen and (max-width: 480px) {
  .section-service:before {
    margin-bottom: -15px;
    height: 60px;
    background: url(../images/section_service_bg_sp.png) 0 0/100% auto no-repeat;
    top: -15px;
  }
}

.section-service .section-in-area {
  margin: 0 auto;
  padding: 0px 20px 260px;
  max-width: 1040px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .section-service .section-in-area {
    padding: 0px 10px 100px;
  }
}

.section-service.qa .section-in-area {
  padding-bottom: 120px;
}
@media screen and (max-width: 480px) {
  .section-service.qa .section-in-area {
    padding-bottom: 50px;
  }
}

/* ---- サービスリスト ---- */
/* ---- サービスリスト（BEM版） ---- */
.service-list {
  margin: 75px auto 0;
  display: grid;
  gap: 0 27px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .service-list {
    gap: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .service-list {
    margin: 40px auto 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/* li 用（必要なら後で装飾追加可） */
.service-list__item {
  list-style: none;
}

/* 初期状態：見えない＋左に寄せる */
.service-list__item {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* 表示状態 */
.service-list__item.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.service-list__name-area {
  padding: 0 10px;
  min-height: 174px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f47a7a;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 480px) {
  .service-list__name-area {
    padding: 5vw 0;
    min-height: auto;
  }
}

/* カラーバリエーション（モディファイア） */
.service-list__name-area--sky {
  background: #00cfff;
}

.service-list__name-area--blue {
  background: #2c98db;
}

.service-list__name-area--purple {
  background: #8e74c1;
}

/* 名前とコースのセット */
@media screen and (max-width: 480px) {
  .service-list__name-set {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.service-list__name {
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px) {
  .service-list__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .service-list__name {
    font-size: 4.2vw;
  }
}

.service-list__course {
  margin: 15px auto 0;
  padding: 0.5em 0em;
  max-width: 160px;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  border: solid 2px #fff;
  border-radius: 100px;
}
@media screen and (max-width: 480px) {
  .service-list__course {
    margin-top: 0px;
    margin-left: 0.5em;
    padding: 0.5em 1em;
    min-width: auto;
    height: auto;
    font-size: 3.3vw;
  }
}

.service-list__contents-area {
  padding: 20px 10px 30px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 480px) {
  .service-list__contents-area {
    padding: 15px 10px 25px;
  }
}

.service-list__contents-list {
  text-align: left;
  margin: 0;
  padding: 0;
}

.service-list__contents-item {
  margin-top: 15px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .service-list__contents-item {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .service-list__contents-item {
    margin-top: 10px;
    font-size: 3.2vw;
    line-height: 1.4;
  }
}

.service-list__contents-item:first-child {
  margin-top: 0;
}

/* 備考テキスト（元: .seivice-notes） */
.service-list__notes {
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .service-list__notes {
    margin-top: 15px;
    text-indent: -1em;
    padding-left: 1em;
    font-size: 3vw;
    line-height: 1.6;
  }
}

.service-list__notes a {
  color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.service-list__notes a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   ミューナビ活用の声
---------------------------------------- */
/* ===== Block: voice ===== */
.voice {
  /* ===== voice__list ===== */
  /* li 要素としての voice__item */
  /* ===== voice__box ===== */
  /* ===== voice__pic ===== */
  /* ===== voice__txt ===== */
  /* ===== voice__text ===== */
  /* ===== voice__fig ===== */
}
.voice__list {
  margin: 80px auto 0;
  display: grid;
  gap: 40px 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .voice__list {
    margin: 75px auto 0;
    padding: 0 0px;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .voice__list {
    margin: 40px 0px 0;
    padding: 0;
    gap: 20px 0;
    grid-template-columns: repeat(1, 1fr);
  }
}
.voice__item {
  list-style: none;
}
.voice__box {
  background: #fff;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.voice__pic {
  width: 33.33%;
  min-height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .voice__pic {
    min-height: auto;
  }
}
@media screen and (max-width: 480px) {
  .voice__pic {
    width: 30.33%;
    min-height: auto;
  }
}
.voice__txt {
  width: 66.67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice__txt {
    padding: 1.5em 0;
  }
}
@media screen and (max-width: 480px) {
  .voice__txt {
    padding: 25px 0;
    width: 66.67%;
  }
}
.voice__text {
  font-size: 1.7rem;
  line-height: 1.8;
}
@media (max-width: 1040px) and (min-width: 769px) {
  .voice__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .voice__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .voice__text {
    font-size: 3.5vw;
  }
}
.voice__text span {
  padding-bottom: 5px;
  padding-left: 7px;
  display: inline-block;
  line-height: 1;
  border-bottom: solid 1.5px #ccc;
}
.voice__fig {
  position: absolute;
  bottom: 15px;
  right: 5px;
  /* --- modifier --- */
}
.voice__fig--ty1 {
  width: 44px;
  right: 20px;
}
@media (max-width: 1040px) and (min-width: 769px) {
  .voice__fig--ty1 {
    width: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .voice__fig--ty1 {
    width: 4vw;
  }
}
@media screen and (max-width: 480px) {
  .voice__fig--ty1 {
    right: 10px;
    bottom: 10px;
    width: 8vw;
  }
}
.voice__fig--ty2 {
  width: 55px;
  right: 20px;
}
@media (max-width: 1040px) and (min-width: 769px) {
  .voice__fig--ty2 {
    right: 10px;
    width: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .voice__fig--ty2 {
    width: 5vw;
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .voice__fig--ty2 {
    right: 10px;
    bottom: 10px;
    width: 10vw;
  }
}
.voice__fig--ty3 {
  width: 80px;
  bottom: 10px;
  right: 10px;
}
@media (max-width: 1040px) and (min-width: 769px) {
  .voice__fig--ty3 {
    width: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .voice__fig--ty3 {
    width: 6.5vw;
  }
}
@media screen and (max-width: 480px) {
  .voice__fig--ty3 {
    right: 0;
    width: 15vw;
  }
}
.voice__fig--ty4 {
  width: 88px;
  right: 30px;
}
@media (max-width: 1040px) and (min-width: 769px) {
  .voice__fig--ty4 {
    right: 10px;
    width: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .voice__fig--ty4 {
    width: 7vw;
  }
}
@media screen and (max-width: 480px) {
  .voice__fig--ty4 {
    right: 20px;
    width: 16vw;
  }
}

/* ----------------------------------------
   使ってみた動画
---------------------------------------- */
.movie {
  /* ===== Element: area ===== */
  /* ===== Element: image ===== */
}
.movie__area {
  margin: 75px auto 0;
  max-width: 640px;
}
@media screen and (max-width: 480px) {
  .movie__area {
    margin: 40px auto 0;
  }
}
.movie__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------
   ミューナビおためし
---------------------------------------- */
/* Block: try */
.try {
  margin: 60px auto 0;
  padding: 0 20px;
  max-width: 1040px;
  /* intro テキスト */
  /* メインボタン */
  /* 枠全体（白背景＋左右2カラム） */
  /* 左側表示エリア */
  /* 右側ボタン／テキストエリア */
  /* 「いずれも見ることができます！」 */
  /* ボタンリスト */
}
@media screen and (max-width: 480px) {
  .try {
    margin: 40px auto 0;
    padding: 0;
  }
}
.try__intro {
  font-size: 2.3rem;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .try__intro {
    font-size: 4vw;
    line-height: 1.6;
  }
}
.try__button {
  margin: 25px auto 0;
  max-width: 800px;
}
.try__display {
  margin: 40px auto 0;
  padding: 40px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 13px;
}
@media screen and (max-width: 480px) {
  .try__display {
    padding: 30px 25px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5vw 0;
    border-radius: 10px;
  }
}
.try__image {
  width: 53.88%;
}
@media screen and (max-width: 480px) {
  .try__image {
    width: inherit;
  }
}
.try__options {
  width: 43.03%;
}
@media screen and (max-width: 480px) {
  .try__options {
    width: inherit;
  }
}
.try__option-list {
  margin: 30px auto 0;
  max-width: 368px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .try__option-list {
    margin: 20px auto 0;
  }
}
.try__option-item {
  width: 46.85%;
}

/* ----------------------------------------
   Q＆A
---------------------------------------- */
/* Block: qa */
.qa {
  margin: 75px auto 0;
  max-width: 1000px;
  /* ===== UL ===== */
  /* ===== LI 内の基準 container ===== */
  /* ===== Q行 / A行 ===== */
  /* ===== Q / A アイコン部分 ===== */
  /* ===== テキスト ===== */
}
@media screen and (max-width: 480px) {
  .qa {
    margin: 40px 0px 0;
  }
}
.qa__list > li {
  padding: 40px 70px 40px 120px;
  border-bottom: solid 3px #fff;
}
@media screen and (max-width: 768px) {
  .qa__list > li {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .qa__list > li {
    padding: 20px 0;
    border-bottom: solid 1px #fff;
  }
}
.qa__list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.qa__list > li:first-child {
  padding-top: 0;
}
.qa__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.qa__row--a {
  padding-left: 80px;
}
@media screen and (max-width: 480px) {
  .qa__row--a {
    padding-left: 11.5vw;
  }
}
.qa__label {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.qa__label img {
  display: block;
}
.qa__label--q {
  width: 80px;
}
@media screen and (max-width: 480px) {
  .qa__label--q {
    width: 11.5vw;
  }
}
.qa__label--a {
  width: 60px;
}
@media screen and (max-width: 480px) {
  .qa__label--a {
    width: 9vw;
  }
}
.qa__text {
  margin: 0 0 0 25px;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .qa__text {
    margin: 0 0 0 10px;
    font-size: 3.5vw;
    line-height: 1.4;
  }
}
.qa__text p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 480px) {
  .qa__text p {
    font-size: 3.2vw;
    line-height: 1.4;
  }
}

.qa__row--a.qa__row--top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.section-inner.qa-box {
  padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .section-inner.qa-box {
    padding-bottom: 60px;
  }
}

.add-arrows {
  display: inline-block;
  position: relative;
  color: #000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.add-arrows:hover {
  opacity: 0.7;
}

.add-arrows::after {
  content: "";
  background: url(../images/arrows.svg) no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -30px;
}
@media screen and (max-width: 480px) {
  .add-arrows::after {
    width: 4vw;
    height: 4vw;
    right: -5vw;
  }
}/*# sourceMappingURL=style.css.map */