@charset "UTF-8";
/*
* Start Common CSS
*/
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --base-color: #373737;
  --primary-color: #022a6f;
  --secondary-color: #51bcf4;
  --tertiary-color: #ca0900;
  --primary-dark-color: #01235d;
  --secondary-light-color: #dcf1fd;
  --tertiary-light-color: #f9e6e5;
  --gold-color: #DCAB17;
  --line-color: #06C755;
  --line-dark-color: #08a247;
  --error-color: #b7180c;
}

html, body {
  height: 100%
}

body {
  position: relative;
  color: var(--base-color);
  font-family: 'Montserrat', 'BIZ UDGothic', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: .07em;
  line-height: 1.8;
  word-break: break-all;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: 'Montserrat', 'BIZ UDGothic', "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.4;
}

a {
  color: var(--base-color);
  transition: all 0.3s ease 0s !important;
}

a:hover {
  color: var(--primary-color);
}

.btn-link-line a {
  background-color: var(--line-color);
  border-radius: 2rem;
  color: var(--bs-white);
  font-weight: bold;
  text-decoration: none;
  height: 64px;
  width: 340px;
}

.group-special .btn-link-line a {
  width: 100%;
}

.btn-link-line a:hover {
  background-color: var(--line-dark-color);
}

.btn-link-line a i {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--bs-white);
  border-radius: 50%;
  font-size: 1rem;
  margin-left: 20px;
  height: 32px;
  width: 32px;
  animation: animationArrowRight 2s ease-in-out infinite;
}

iframe[src*="www.google.com/maps/embed"] {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
}

.fadeIn {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(80px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.fadeInTrigger {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 992px) {
  iframe[src*="www.google.com/maps/embed"] {
    aspect-ratio: 16 / 6;
  }

  .mb-lg-7 {
    margin-bottom: 5rem !important;
  }
}

@keyframes animationArrowRight {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }
}

/* Nav ----*/
#mainNav .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

#mainNav .navbar-brand {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  height: 72px;
  width: 160px;
  background-color: var(--bs-white);
  border-radius: 0 0 1rem;
}

#mainNav .navbar-brand a img {
  width: 120px;
}

#mainNav .btn-link-line {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#mainNav .btn-link-line a {
  height: 48px;
  width: 180px;
}

#mainNav .btn-link-line a:hover {
  background-color: var(--line-dark-color);
}

@media (min-width: 992px) {
  #mainNav .navbar-brand {
    height: 120px;
    width: 240px;
    border-radius: 0 0 2rem;
  }

  #mainNav .navbar-brand a img {
    width: 160px;
  }

  #mainNav .btn-link-line {
    top: 2rem;
    right: 2rem;
  }
}

/* Header -----*/
.masthead {
  position: relative;
  padding: 1rem;
}

.masthead .kv {
  background: var(--bs-white) url(../assets/img/kv.webp) no-repeat right -240px center / cover;
  border-radius: 1rem;
  height: 36rem;
  width: 100%;
}

.masthead .img-payment {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.masthead .img-payment img {
  border: solid 2px var(--bs-gray-300);
  width: 180px;
}

.masthead .container {
  position: absolute;
  top: 9rem;
  right: 0;
  left: 0;
}

.masthead .txt-appeal {
  position: relative;
  background-color: var(--primary-color);
  color: var(--bs-white);
  padding-left: 1rem;
  border-radius: 32px .5rem .5rem 32px;
  margin-bottom: .5rem;
  margin-left: 1rem;
  height: 32px;
  width: 160px;
}

.masthead .txt-appeal:before {
  position: absolute;
  top: calc(50% - 3px);
  left: .75rem;
  width: 6px;
  height: 6px;
  content: '';
  border-radius: 50%;
  background-color: var(--bs-white);
  ;
}

.masthead .masthead-heading {
  color: var(--primary-color);
  -webkit-text-stroke: 4px var(--bs-white);
  paint-order: stroke;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.masthead .masthead-heading span {
  display: block;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.masthead .masthead-subheading {
  flex-direction: column;
  flex-wrap: wrap;
  gap: .5rem 0;
  margin-bottom: 2rem;
}

.masthead .masthead-subheading span {
  background-color: var(--secondary-color);
  border-radius: .5rem;
  color: var(--bs-white);
  width: 300px;
}

.masthead .masthead-subheading span.txt01 {
  font-size: 1.375rem;
  font-weight: bold;
  height: 48px;
}

.masthead .masthead-subheading span.txt01.ls-normal {
  letter-spacing: normal;
}

.masthead .masthead-subheading span.txt02 {
  background-color: rgba(80, 187, 244, .6);
  font-size: .75rem;
  height: 28px;
  width: 260px;
}

.masthead .btn-link-line {
  flex-direction: column;
  flex-wrap: wrap;
}

.masthead .btn-link-line .txt {
  color: var(--line-color);
  font-size: 1.125rem;
  letter-spacing: normal;
  margin-bottom: .25rem;
  -webkit-text-stroke: 4px var(--bs-white);
  paint-order: stroke;
}

@media (min-width: 576px) {
  .masthead .kv {
    background-position: right -200px center;
  }

  .masthead .container {
    top: 7rem;
  }

  .masthead .txt-appeal {
    margin-left: 0;
  }

  .masthead .masthead-heading {
    margin-bottom: 1rem;
    margin-left: 0;
  }

  .masthead .masthead-heading span {
    font-size: 2.75rem;
  }

  .masthead .masthead-subheading {
    align-items: flex-start;
  }

  .masthead .btn-link-line {
    width: 440px;
  }

  .masthead .btn-link-line a {
    font-size: 1.375rem;
    width: 440px;
  }

  .masthead .btn-link-line .txt {
    letter-spacing: .07em;
  }
}

@media (min-width: 768px) {
  .masthead .kv {
    background-position: right -80px center;
  }
}

@media (min-width: 992px) {
  .masthead .kv {
    background-position: right -80px center;
    height: 44rem
  }

  .masthead .img-payment {
    top: 2rem;
    right: auto;
    left: 16rem;
  }

  .masthead .img-payment img {
    width: 320px;
  }

  .masthead .container {
    top: 10rem;
    left: 4%;
  }

  .masthead .txt-appeal {
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
    font-size: 1.375rem;
    padding-left: 1.5rem;
    height: 48px;
    width: 220px;
  }

  .masthead .txt-appeal:before {
    top: calc(50% - 4px);
    left: 1rem;
    width: 8px;
    height: 8px;
  }

  .masthead .masthead-heading span {
    font-size: 4rem;
  }

  .masthead .masthead-subheading {
    margin-bottom: 1.5rem;
  }

  .masthead .masthead-subheading span {
    width: 380px;
  }

  .masthead .masthead-subheading span.txt01 {
    font-size: 1.75rem;
    height: 56px;
  }

  .masthead .btn-link-line .txt {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .masthead .kv {
    background-position: right -60px center;
    height: 48rem
  }

  .masthead .container {
    top: 9rem;
  }

  .masthead .masthead-heading span {
    font-size: 5rem;
  }

  .masthead .masthead-subheading span {
    width: 460px;
  }

  .masthead .masthead-subheading span.txt01 {
    font-size: 2.125rem;
    height: 60px;
  }

  .masthead .btn-link-line .txt {
    font-size: 1.375rem;
  }

  .masthead .btn-link-line a {
    border-radius: 3rem;
    font-size: 1.75rem;
    height: 88px;
    width: 560px;
  }
}

/* Footer -----*/
.footer {
  background-color: #132442;
}

.footer-add01 {
  display: inline-block;
  border-bottom: solid 2px var(--bs-white);
  font-size: 1.125rem;
  font-weight: bold;
}

.footer-logo img {
  width: 100px;
}

.copyright {
  background-color: transparent;
  font-size: .875rem;
}

/* ページトップへ戻るボタン -----*/
#btn-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}

#btn-top .updown {
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--bs-white);
  text-decoration: none;
  height: 80px;
  width: 80px;
  animation-name: updown1;
  /* アニメーション名の指定 */
  animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

#btn-top .updown:hover {
  background-color: var(--primary-dark-color);
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Main -----*/
h2, .h2 {
  color: var(--primary-color);
  font-size: calc(2rem + 0.9vw);
}

h3, .h3 {
  color: var(--secondary-color);
  font-size: calc(1.375rem + 0.6vw);
}

h4, .h4 {
  font-size: calc(1.125rem + 0.3vw);
}

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

.page-section {
  padding: 3rem 0;
}

.section-heading {
  text-align: center;
}

.table-wrap {
  overflow-x: scroll;
}

.table-wrap::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.table-wrap::-webkit-scrollbar-track {
  background-color: var(--bs-gray-200);
  border-radius: .5rem;
}

.table-wrap::-webkit-scrollbar-thumb {
  background-color: var(--bs-gray-500);
  border-radius: .5rem;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background-color: var(--bs-gray-600);
}

@media (min-width: 992px) {
  .page-section {
    padding: 5rem 0;
  }
}

/* No.1 */
.list-no01 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 1040px;
}

.group-explanation {
  background-color: var(--bs-white);
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  border-radius: .5rem;
  font-size: .875rem;
  padding: 1rem 1.5rem;
}

.group-explanation summary {
  font-weight: bold;
}

@media (min-width: 768px) {
  .list-no01 {
    gap: 2rem;
  }

  /* 三角矢印を消す */
  .group-explanation summary {
    pointer-events: none;
    list-style: none;
  }

  /* 三角矢印を消す（Safari等のWebkitベースのブラウザ用 ）*/
  .group-explanation summary::-webkit-details-marker {
    display: none;
  }
}

@media (min-width: 992px) {
  .list-no01 {
    gap: 3rem;
  }
}

/* Special  */
.group-special {
  background-color: var(--tertiary-color);
  border-radius: 1rem;
  max-width: 1040px;
}

.group-special .img-special img {
  border-radius: 1rem 1rem 0 0;
}

.detail-price01 {
  background-color: var(--bs-white);
  border-radius: .5rem;
  margin: 1rem 1rem 0;
}

.detail-price01 .ttl {
  background-color: rgb(201, 9, 0, .1);
  font-weight: bold;
  padding: .5rem;
}

.detail-price01 .list-price {
  padding: .5rem .75rem;
}

.detail-price02 {
  background-color: var(--bs-white);
  border-radius: .5rem;
  margin: 1rem 1rem 0;
  padding-top: 1rem;
}

.detail-price02 .first-time-limited-price {
  border-top: solid 2px var(--tertiary-color);
  font-size: 1.25rem;
  padding-top: 1rem;
  text-align: center;
}

.detail-price02 .first-time-limited-price span {
  font-weight: bold;
}

.detail-price02 .arrow {
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}

.detail-price02 .special-price {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.detail-price02 .special-price .txt {
  flex-direction: column;
  border: solid 2px var(--tertiary-color);
  border-radius: 3rem;
  color: var(--tertiary-color);
  font-weight: bold;
  height: 74px;
  width: 260px;
}

.detail-price02 .special-price .txt span {
  display: block;
  font-size: 1.25rem;
}

.detail-price02 .special-price .price {
  color: var(--tertiary-color);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.detail-price02 .special-price .price .num {
  font-size: 3rem;
}

.detail-price02 .special-price .price .yen {
  font-size: 1.25rem;
}

.detail-price02 .img-payment {
  padding: 1rem;
  text-align: center;
}

.detail-price02 .img-payment img {
  border-radius: .5rem;
  border: solid 2px var(--bs-gray-300);
  max-width: 320px;
}

.detail-price02 .bottom-line {
  border-top: solid 2px var(--tertiary-color) !important;
  padding-bottom: 1rem;
}

.group-special .btn-link-line {
  margin: 1rem;
}

@media (min-width: 768px) {
  .group-special .img-special {
    height: 100%;
  }

  .group-special .img-special img {
    border-radius: 1rem 0 0 1rem;
    height: 100%;
    object-fit: cover;
  }

  .detail-price01,
  .detail-price02,
  .group-special .btn-link-line {
    margin-left: 0;
  }
}

@media (min-width: 992px) {

  .detail-price01,
  .detail-price02,
  .group-special .btn-link-line {
    margin: 1.5rem 1.5rem 1.5rem 0;
  }

  .detail-price01 .list-price {
    padding: .75rem 1rem;
  }

  .detail-price02 .special-price {
    flex-direction: row;
  }

  .detail-price02 .special-price .txt {
    flex-basis: 50%;
  }

  .detail-price02 .special-price .price {
    flex-basis: 50%;
  }

  .detail-price02 .special-price .price .num {
    font-size: 3.75rem;
  }

  .group-special .btn-link-line a {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .detail-price01 .list-price {
    display: flex;
    flex-wrap: wrap;
  }

  .detail-price01 .list-price li {
    flex-basis: 50%;
  }

  .detail-price02 .first-time-limited-price span {
    font-size: 1.5rem;
  }

  .detail-price02 .special-price {
    padding-bottom: 1.5rem;
  }

  .detail-price02 .special-price .txt {
    height: 96px;
  }

  .detail-price02 .special-price .txt span {
    font-size: 1.75rem;
  }

  .detail-price02 .special-price .price .num {
    font-size: 5rem;
  }

  .group-special .btn-link-line a {
    font-size: 1.375rem;
  }
}

/* Trouble */
.group-trouble .img {
  margin-right: calc(50% - 50vw);
  margin-left: 1rem;
}

.group-trouble .img img {
  border-top-left-radius: 3rem;
}

.list-trouble .list-item {
  position: relative;
  background-color: rgba(80, 187, 244, .1);
  border-radius: .25rem;
  margin: .5rem 0;
  padding: .5rem .5rem .5rem 2.25rem;
}

.list-trouble .list-item::before {
  position: absolute;
  top: .5rem;
  left: .75rem;
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary-color);
}

@media (min-width: 992px) {
  .group-trouble {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .group-trouble>div {
    flex-basis: 50%;
  }

  .group-trouble .img {
    flex: 1;
    margin-left: 3rem;
  }

  .list-trouble .list-item {
    padding: .5rem .75rem .5rem 2.5rem;
  }
}

/* Cause */
#cause {
  position: relative;
}

#cause::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, var(--secondary-light-color) 20%, var(--tertiary-light-color) 80%);
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient-cause 10s ease infinite;
  z-index: -1;
}

@keyframes bggradient-cause {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.list-cause {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.list-cause .list-item {
  background-color: var(--bs-white);
  border: solid 1px var(--tertiary-color);
  border-radius: .5rem;
  color: var(--tertiary-color);
  line-height: 1.2;
  margin: .25rem;
  padding: .5rem .75rem;
}

.txt-cause01 {
  margin-bottom: 3rem;
}

.group-approach {
  border: solid 2px var(--tertiary-color);
  border-radius: 1rem;
  padding: 1rem;
  max-width: 1024px;
}

.group-approach h4 {
  background-color: var(--tertiary-color);
  border-radius: 1rem;
  color: var(--bs-white);
  margin: -2rem auto 1rem;
  height: 40px;
  width: 280px;
}

.list-approach .list-item {
  padding: .75rem 0;
}

.list-approach .list-item .img {
  background-color: var(--bs-white);
  border-radius: 50%;
  margin: 0 auto 1rem;
  height: 180px;
  width: 180px;
}

.list-approach .list-item .img img {
  border: dashed 1px var(--tertiary-color);
  border-radius: 50%;
  object-fit: cover;
  padding: .25rem;
  height: 170px;
  width: 170px;
}

.list-approach .list-item .ttl {
  position: relative;
  color: var(--tertiary-color);
  font-size: 1.375rem;
}

.list-approach .list-item .ttl span {
  position: relative;
  color: var(--bs-white);
  font-weight: bold;
  padding-left: .75rem;
  margin-right: 1rem;
  z-index: 1;
}

.list-approach .list-item .ttl span.no01 {
  padding-left: .875rem;
}

.list-approach .list-item .ttl span::after {
  position: absolute;
  content: "";
  top: -.25rem;
  left: 0;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  height: 2.25rem;
  width: 2.25rem;
  z-index: -1;
}

.txt-cause02 {
  background-color: var(--tertiary-color);
  border-radius: 1rem;
  color: var(--bs-white);
  margin-top: 5rem;
  padding: 1rem;
  max-width: 800px;
}

.txt-cause02 .lightbulb {
  background-color: var(--tertiary-color);
  border-radius: 50%;
  margin-top: -3rem;
  height: 5rem;
  width: 5rem;
}

.txt-cause02 .lightbulb i {
  color: var(--bs-white);
  font-size: 2.75rem;
}

.txt-cause02 .txt-cause02-txt span {
  display: inline;
  border-bottom: solid 1px var(--bs-white);
}

@media (min-width: 768px) {
  .group-approach {
    padding: 1.5rem;
  }

  .group-approach h4 {
    margin-top: -3rem;
  }

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

  .list-approach .list-item {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .group-approach {
    padding: 2rem;
  }

  .group-approach h4 {
    margin-bottom: 2rem;
  }

  .list-approach .list-item .img {
    height: 250px;
    width: 250px;
  }

  .list-approach .list-item .img img {
    height: 240px;
    width: 240px;
  }
}

@media (min-width: 1200px) {
  .group-approach {
    padding: 2.5rem;
  }

  .group-approach h4 {
    margin-top: -4rem;
  }

  .list-approach .list-item .img {
    height: 270px;
    width: 270px;
  }

  .list-approach .list-item .img img {
    height: 260px;
    width: 260px;
  }
}

/* Difference */
.difference-list-wrapper {
  background-color: var(--secondary-light-color);
  border-radius: .5rem;
  padding: 1rem;
  width: 100%;
}

.difference-list-wrapper .js-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: scroll;
  white-space: nowrap;
}

.difference-list-wrapper h4 {
  border-radius: .5rem;
  color: var(--bs-white);
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 2;
  padding-right: .75rem;
  padding-left: .75rem;
  text-align: center;
  white-space: nowrap;
}

.list-difference .list-item {
  background-color: var(--bs-white);
  border-radius: .5rem;
  margin: .5rem 0;
  padding: .5rem .75rem;
  text-align: center;
}

.common-clinic {
  border: solid 2px var(--bs-white);
  border-radius: .5rem;
  padding: .5rem .5rem 0;
}

.common-clinic h4 {
  background-color: var(--bs-gray-500);
}

.our-clinic {
  border: solid 2px var(--secondary-color);
  border-radius: .5rem;
  padding: .5rem .5rem 0;
}

.our-clinic h4 {
  background-color: var(--secondary-color);
  font-weight: bold;
}

.our-clinic .list-difference .list-item {
  font-size: 1.125rem;
  font-weight: bold;
  padding: .75rem;
}

.group-difference-list .img {
  margin-right: 1rem;
  margin-left: calc(50% - 50vw);
}

.group-difference-list .img img {
  border-top-right-radius: 3rem;
}

@media (min-width: 768px) {
  .difference-list-wrapper .js-scroll {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .group-difference-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  }

  .group-difference-list>div {
    flex-basis: 50%;
  }

  .group-difference-list .img {
    flex: 1;
    margin-right: 3rem;
  }
}

@media (min-width: 1200px) {
  .difference-list-wrapper {
    display: flex;
    padding: 1rem;
  }

  .difference-list-wrapper .common-clinic {
    flex-basis: 45%;
    padding-right: .5rem;
  }

  .difference-list-wrapper .our-clinic {
    flex-basis: 55%;
    padding-left: .5rem;
  }
}

/* Goal */
.detail-reviews .number {
  display: inline-block;
  border-bottom: solid 2px var(--tertiary-color);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
}

.detail-reviews .number span {
  font-size: 2rem;
}

.detail-reviews .rating-average {
  color: var(--tertiary-color);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.2;
}

.detail-reviews .rating-average span {
  font-size: 3rem;
}

.detail-reviews .as-of {
  font-size: .875rem;
}

.list-reviews .swiper {
  --swiper-navigation-color: var(--bs-white);
}

.list-reviews .swiper-slide {
  padding-right: 1rem;
  padding-left: 1rem;
}

.list-reviews .swiper-slide img {
  border: solid 2px var(--tertiary-color);
  border-radius: .5rem;
}

.list-reviews .swiper-button-prev,
.list-reviews .swiper-button-next {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: rgba(201, 9, 0, .5);
}

.list-reviews .swiper-button-prev svg,
.list-reviews .swiper-button-next svg {
  height: 16px;
  width: 16px;
}

.list-change {
  border-collapse: collapse;
  margin: 0 auto;
  white-space: nowrap;
  width: 100%;
}

.list-change thead th {
  border-right: 2px solid var(--bs-white);
  padding: 10px;
}

.list-change thead th:not(:first-child) {
  background-color: var(--bs-gray-500);
  color: var(--bs-white);
  border-radius: 1rem 1rem 0 0;
  padding: 10px;
}

.list-change tbody {
  border: 2px solid var(--bs-gray-500);
}

.list-change tbody tr {
  background-color: var(--bs-gray-200);
}

.list-change tbody tr:nth-child(odd) {
  background-color: var(--bs-white);
}

.list-change th {
  padding: 10px;
  text-align: center;
}

.list-change th span {
  display: block;
  font-size: .875rem;
  font-weight: normal;
}

.list-change td {
  border-left: 2px solid var(--bs-gray-500);
  padding: 10px;
}

.list-change thead th:nth-child(3) {
  background-color: var(--secondary-color);
}

.list-change td:nth-child(3) {
  border-right: 3px solid var(--secondary-color);
  border-left: 3px solid var(--secondary-color);
}

.list-change tr:last-child td:nth-child(3) {
  border-bottom: 3px solid var(--secondary-color);
}

.list-change ul {
  margin-bottom: 0;
}

.list-change ul.list-after li::marker {
  color: var(--secondary-color);
}

.list-tendency {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 960px;
}

.list-tendency li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: solid 2px var(--secondary-color);
  border-radius: 1rem;
  padding: .5rem 1rem;
}

.list-tendency li .detail-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-basis: 60%;
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: bold;
}

.list-tendency li .detail-num .item-num {
  color: var(--secondary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.list-tendency li .detail-num .item-num span {
  font-size: 3.25rem;
}

.list-tendency li .detail-img {
  flex-basis: 40%;
}

.list-metrics-results {
  border-collapse: collapse;
  width: 100%;
}

.list-metrics-results th,
.list-metrics-results td {
  border: 1px solid var(--secondary-color);
  padding: 10px;
  text-align: center;
  white-space:
}

.list-metrics-results thead th {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--bs-white);
}

.list-metrics-results thead th:first-child {
  border-right-color: var(--bs-white);
}

.group-media img {
  margin: 0 auto;
  max-width: 720px;
}

@media (min-width: 768px) {
  .group-change .table-wrap::-webkit-scrollbar {
    display: none;
  }

  .list-tendency {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .list-tendency li {
    flex-wrap: wrap;
    flex-basis: calc(100% / 3);
  }

  .list-tendency li .detail-num {
    flex-basis: 100%;
  }

  .list-tendency li .detail-num .item-num span {
    font-size: 4rem;
  }

  .list-tendency li .detail-img {
    flex-basis: 100%;
  }
}

@media (min-width: 992px) {
  .detail-reviews .number {
    font-size: 1.25rem;
  }

  .detail-reviews .number span {
    font-size: 2.75rem;
  }

  .detail-reviews .rating-average {
    font-size: 1.75rem;
  }

  .detail-reviews .rating-average span {
    font-size: 4rem;
  }

  .group-change {
    background-color: var(--secondary-light-color);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 960px;
  }

  .list-change {
    max-width: 680px;
  }

  .list-change thead th {
    border-right: 2px solid var(--secondary-light-color);
  }

  .group-tendency-list {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .group-tendency-list .list-tendency,
  .group-tendency-list .img {
    flex-basis: 50%;
  }

  .group-tendency-list .img {
    flex: 1;
    margin-left: 3rem;
  }

  .list-tendency li {
    padding: 1rem;
  }
  .list-tendency li .detail-num {
    font-size: 1.5rem;
  }
  .list-tendency li .detail-num .item-num {
    font-size: 2rem;
  }
  .list-tendency li .detail-num .item-num span {
    font-size: 5rem;
  }
}

@media (min-width: 1200px) {
  .group-change {
    padding: 3rem;
  }
}

/* Step */
#step {
  position: relative;
}

#step::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, var(--secondary-light-color) 20%, var(--bs-white) 80%);
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient-step 10s ease infinite;
  z-index: -1;
}

@keyframes bggradient-step {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.list-step {
  max-width: 960px;
}

.list-step .list-item {
  position: relative;
  border-radius: .5rem;
  color: var(--bs-white);
  margin-right: auto;
  margin-left: auto;
  max-width: 480px;
}

.list-step .list-item:not(:last-child) {
  border-radius: .5rem .5rem 0 0;
  margin-bottom: 5rem;
}

.list-step .list-item:not(:last-child)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -40px;
  height: 40px;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.list-step .list-item:first-child {
  background-color: var(--secondary-color);
}

.list-step .list-item:first-child::after {
  background-color: var(--secondary-color);
}

.list-step .list-item:nth-child(2) {
  background-color: #2A73B2;
}

.list-step .list-item:nth-child(2)::after {
  background-color: #2A73B2;
}

.list-step .list-item:nth-child(3) {
  background-color: var(--primary-color);
}

.list-step .list-item h4 {
  padding: 1rem 1rem 0;
}

.list-step .list-item h4 .num {
  display: block;
  border-bottom: dashed 1px var(--bs-white);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
}

.list-step .list-item h4 .num span {
  font-size: 2rem;
  margin-left: .25rem;
}

.list-step .list-item h4 .week-goal .week {
  display: inline-block;
  border: solid 1px var(--bs-white);
  border-radius: .25rem;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: .5rem;
  line-height: 38px;
  width: 120px;
}

.list-step .list-item h4 .week-goal .goal {
  display: block;
  font-size: 1.5rem;
  line-height: 1.6;
}

.list-step .list-item h4 .week-goal .goal span {
  font-size: 1.125rem;
  font-weight: normal;
}

.list-step .detail-step {
  padding: 1rem;
}

.list-step .conclusion {
  padding: 1rem;
}

.detail-support {
  background-color: var(--bs-white);
  border-radius: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, .2);
  padding: 1rem;
}

.detail-support .ttl {
  color: var(--secondary-color);
  font-size: 1.25rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .list-step .list-item:not(:last-child) {
    margin-bottom: 6rem;
  }

  .list-step .list-item:not(:last-child)::after {
    bottom: -60px;
    height: 60px;
  }

  .list-step .list-item h4 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .list-step .detail-step {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .list-step .conclusion {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) {
  .list-step .list-item {
    max-width: 100%;
    width: 100%;
  }

  .list-step .list-item h4 {
    margin-bottom: 1.5rem;
  }

  .list-step .list-item h4 .num.after {
    font-size: 1.75rem;
  }

  .list-step .list-item h4 .week-goal {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .list-step .list-item h4 .week-goal .week {
    margin-bottom: 0;
  }

  .list-step .list-item h4 .week-goal .goal {
    display: inline-block;
  }

  .list-step .list-item .row {
    margin-bottom: 1.5rem;
  }

  .list-step .list-item .row .col {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .list-step .list-item .row .col:first-of-type {
    flex-basis: 60%;
  }

  .list-step .list-item .row .col:last-of-type {
    flex-basis: calc(40% - 2rem);
    padding-right: 2rem;
  }

  .list-step .detail-step {
    padding: 0 1.5rem;
  }

  .list-step img {
    border-radius: 1rem;
  }

  .list-step .conclusion {
    border-top: dashed 1px var(--bs-white);
    font-size: 1.25rem;
    font-weight: bold;
    padding: 2rem;
    text-align: center;
  }

  .detail-support .ttl {
    font-size: 1.5rem;
  }
}

/* Voice */
.detail-voice {
  border: solid 2px var(--secondary-color);
  border-radius: .5rem;
  padding: 1rem 1.25rem;
}

.detail-voice h3 {
  flex-direction: column;
  background-color: var(--secondary-color);
  border-radius: .5rem;
  color: var(--bs-white);
  font-size: 1.375rem;
  height: 64px;
  margin: 0 auto 1rem;
  width: 180px;
}

.detail-voice h3 span {
  display: block;
  font-size: .875rem;
  font-weight: normal;
}

.detail-voice .row {
  max-width: 320px;
}

.detail-voice .row .col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.detail-voice .row .col:first-of-type {
  flex-wrap: wrap;
}

.detail-voice .img {
  max-width: 140px;
}

.detail-voice p {
  background-color: var(--secondary-light-color);
  border-radius: .5rem;
  padding: 1rem;
}

/* FAQ */
#faq {
  background-color: var(--bs-gray-100);
}

.detail-faq:not(:last-of-type) {
  margin-bottom: 1rem;
}

.detail-faq summary {
  position: relative;
  list-style: none;
  border: 1px solid var(--primary-color);
  border-radius: .25rem;
  padding: .75rem 2rem .75rem 1rem;
}

.detail-faq summary::before,
.detail-faq summary::after {
  position: absolute;
  content: "";
  top: 1.25rem;
  right: 1rem;
  width: 2px;
  height: .75em;
  background-color: var(--primary-color);
  transition: all .3s;
}

.detail-faq summary::after {
  transform: rotate(90deg);
}

.detail-faq[open] summary::before {
  transform: rotate(90deg) !important;
}

.detail-faq summary span {
  border-radius: .25rem;
  background-color: var(--primary-color);
  color: var(--bs-white);
  margin-right: .5rem;
  padding: .125rem .5rem;
}

.detail-faq[open] .answer {
  padding: 1rem;
  animation: fadeIn .5s ease;
}

.detail-faq .list-faq-answer li {
  position: relative;
  padding: .5rem 0 .5rem 1rem;
}

.detail-faq .list-faq-answer li::after {
  position: absolute;
  content: "";
  top: 1.125rem;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.detail-faq .list-faq-answer li ul li {
  position: relative;
  padding: .25rem 0 .25rem .75rem;
}

.detail-faq .list-faq-answer li ul li::after {
  position: absolute;
  content: "";
  top: .875rem;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

@media (min-width: 992px) {
  .detail-faq:not(:last-of-type) {
    margin-bottom: 1.5rem;
  }

  .detail-faq summary {
    padding: 1.5rem 3rem 1.5rem 1.5rem;
  }

  .detail-faq summary::before,
  .detail-faq summary::after {
    top: 1.75rem;
    right: 2rem;
    height: 1.2em;
  }

  .detail-faq[open] .answer {
    padding: 1.5rem;
  }
}

/* Parallax area */
.parallax-area {
  position: relative;
  animation: parallax01 linear both;
  animation-timeline: view();
}

.parallax-area.type01 {
  background: var(--bs-white) url(../assets/img/parallax01.webp) no-repeat left center / cover;
}

.parallax-area.type02 {
  background: var(--bs-white) url(../assets/img/parallax02.webp) no-repeat right center / cover;
  animation: parallax02 linear both;
  animation-timeline: view();
}

.parallax-area.type03 {
  background: var(--bs-white) url(../assets/img/parallax03.webp) no-repeat left center / cover;
}

.parallax-area.type04 {
  background: var(--bs-white) url(../assets/img/parallax04.webp) no-repeat right center / cover;
  animation: parallax02 linear both;
  animation-timeline: view();
}

.parallax-area .container {
  position: relative;
  height: 30vh;
}

.parallax-area.type04 .container {
  height: 35vh;
}

.parallax-area .group-txt {
  position: absolute;
  top: 20%;
  left: 0;
  padding: 0 1rem;
}

.parallax-area.type02 .group-txt,
.parallax-area.type04 .group-txt {
  right: 0;
  left: auto;
}

.parallax-area.type04 .group-txt {
  top: 10%;
}

.parallax-area .txt {
  display: table;
  background-color: var(--bs-white);
  border: solid 2px var(--primary-color);
  border-radius: .5rem;
  color: var(--primary-color);
  font-weight: bold;
  padding: .375rem .75rem;
}

.parallax-area .txt.type02 {
  margin-top: -2px;
  margin-left: 2rem;
}

.parallax-area .txt.type03 {
  margin-top: -2px;
  margin-left: 4rem;
}

.parallax-area .txt.type04 {
  margin-top: -2px;
  margin-left: 6rem;
}

.parallax-area.type01 .txt.type02 {
  font-size: 1.125rem;
}

@keyframes parallax01 {
  from {
    background-position: left center;
  }

  to {
    background-position: left -10vh;
  }
}

@keyframes parallax02 {
  from {
    background-position: right center;
  }

  to {
    background-position: right -10vh;
  }
}

@media (min-width: 576px) {
  .parallax-area.type04 .container {
    height: 30vh;
  }

  .parallax-area.type01 .group-txt,
  .parallax-area.type04 .group-txt {
    top: 50%;
    transform: translateY(-50%) !important;
  }
}

@media (min-width: 768px) {
  .parallax-area .txt {
    font-size: 1.25rem;
    padding: .375rem 1rem;
  }

  .parallax-area.type01 .txt.type02 {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  @keyframes parallax01 {
    to {
      background-position: left -15vh;
    }
  }

  @keyframes parallax02 {
    to {
      background-position: right -15vh;
    }
  }

  .parallax-area .container {
    height: 35vh;
  }

  .parallax-area .group-txt {
    top: 50%;
    transform: translateY(-50%);
  }

  .parallax-area .txt {
    font-size: 1.5rem;
  }

  .parallax-area .txt.type02 {
    margin-left: 3rem;
  }

  .parallax-area .txt.type03 {
    margin-left: 6rem;
  }

  .parallax-area .txt.type04 {
    margin-left: 9rem;
  }

  .parallax-area.type01 .txt.type02 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .parallax-area .container {
    height: 50vh;
    width: 960px;
  }
}
