/* home */
.home-mv {
  position: relative;
}
.home-mv_ph, .home-mv_phlist {
  position: sticky;
  left: 0;
  top: var(--hd-h);
  width: 100%;
  height: calc(100vh - var(--hd-h));
  height: calc(100svh - var(--hd-h));
  z-index: -1;
  opacity: 0;
}
.home-mv_ph img, .home-mv_phlist img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-mv_phlist .ph {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s var(--cubic-bezier);
}
.home-mv_phlist .ph.cr {
  opacity: 1;
}
.home-mv_first {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - var(--hd-h));
  height: calc(100svh - var(--hd-h));
  padding-bottom: 2.5rem;
}
.home-mv_first .title {
  font-size: min(4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.6;
}
.home-mv_first .title > span {
  color: #fff;
  background-color: var(--color-blue);
  background: linear-gradient(transparent 15%, var(--color-blue) 15%, var(--color-blue) 95%, transparent 95%);
}
.home-mv_first .badge {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.home-mv_first .badge > li {
  width: 6.25rem;
}
.home-mv_first .exp_btn {
  margin-top: 1.5rem;
}
.home-mv_first .exp_btn .btn-yellow,
.home-mv_first .exp_btn .btn-orange {
  width: 100%;
  max-width: 22.5rem;
  font-size: 1.5rem;
  border-radius: 100vh;
}
@media screen and (max-width: 767.98px) {
  .home-mv_first .title {
    font-size: min(7.2vw, 2.25rem);
  }
}
.home-mv_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 3.75rem 4%;
  background-color: var(--color-blue);
  min-height: calc(100vh - var(--hd-h));
  min-height: calc(100svh - var(--hd-h));
}
.home-mv_info .title {
  font-size: min(4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1em;
}
.home-mv_info .title > span {
  color: var(--color-blue);
  background: #fff;
  background: linear-gradient(transparent 15%, #fff 15%, #fff 95%, transparent 95%);
}
.home-mv_info .text {
  line-height: 1.4;
  font-size: 1.125rem;
  font-weight: 700;
}
.home-mv_info .text p + p {
  margin-top: 1.25em;
}
.home-mv_info .text strong {
  color: var(--color-blue);
  font-size: 122%;
  font-weight: 700;
  background: #fff;
}
@media screen and (max-width: 767.98px) {
  .home-mv_info {
    padding: 2rem 4%;
  }
  .home-mv_info .title {
    font-size: min(7.2vw, 2.25rem);
  }
  .home-mv_info .text {
    font-size: 0.9375rem;
  }
}

.home-mv.js-scrView .home-mv_ph,
.home-mv.js-scrView .home-mv_phlist {
  opacity: 0;
  transition: opacity 2s var(--cubic-bezier);
}
.home-mv.js-scrView .home-mv_first .title, .home-mv.js-scrView .home-mv_first .badge, .home-mv.js-scrView .home-mv_first .exp_btn {
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity 0.5s 0.4s ease-in-out, transform 0.5s 0.4s ease-in-out;
}
.home-mv.js-scrView .home-mv_first .badge {
  transition-delay: 0.8s;
}
.home-mv.js-scrView .home-mv_first .exp_btn {
  transition-delay: 1s;
}

body.loaded .home-mv.js-scrView.active .home-mv_ph,
body.loaded .home-mv.js-scrView.active .home-mv_phlist {
  opacity: 1;
}
body.loaded .home-mv.js-scrView.active .home-mv_first .title, body.loaded .home-mv.js-scrView.active .home-mv_first .badge, body.loaded .home-mv.js-scrView.active .home-mv_first .exp_btn {
  opacity: 1;
  transform: none;
}

.home-sec {
  position: relative;
  padding: 5rem 0;
}
.home-sec._gray {
  background-color: var(--color-gray);
}
.home-sec_title {
  width: 92%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  margin-bottom: 2.5rem;
}
.home-sec_title .main {
  font-size: 2.75rem;
}
.home-sec_title .sub {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-top: 0.5em;
}
.home-sec_title .lead {
  margin-top: 2.75rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 767.98px) {
  .home-sec {
    padding: 3rem 0;
  }
  .home-sec_title {
    margin-bottom: 2rem;
  }
  .home-sec_title .main {
    font-size: 2.25rem;
  }
  .home-sec_title .lead {
    margin-top: 2rem;
  }
}

.home-class {
  overflow: hidden;
  z-index: 1;
}
.home-class_bg {
  position: absolute;
  width: 33%;
  right: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
  margin-top: 10rem;
}
.home-class_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-class_info {
  width: 92%;
  margin: 0 auto;
  max-width: 860px;
}
.home-class_list {
  padding-top: 1.5rem;
  padding-bottom: 0.375rem;
}
.home-class_list > li {
  position: relative;
  padding: 0 2.5rem 1.5rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0.375rem 0.375rem 0 var(--color-blue);
}
.home-class_list > li + li {
  margin-top: 3.75rem;
}
.home-class_list .name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14em;
  padding: 0.375em 0;
  border-radius: 1rem;
  font-weight: 500;
  color: #fff;
  transform: translate(-3.5rem, -50%);
  background-color: var(--color-blue);
}
.home-class_list .text {
  margin-top: -0.375rem;
}
.home-class_note {
  margin-top: 1rem;
  text-align: right;
  font-size: 0.875rem;
}
.home-class_note p {
  display: inline-block;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}
@media print, screen and (min-width: 768px) {
  .home-class_bg {
    height: calc(78% - 10rem);
  }
}
@media screen and (max-width: 767.98px) {
  .home-class_bg {
    width: 66%;
    margin-top: 16rem;
    height: calc(85% - 16rem);
    opacity: 0.3;
  }
  .home-class_bg img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-class_list {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .home-class_list > li {
    padding: 0 1rem 0.75rem;
  }
  .home-class_list > li + li {
    margin-top: 2.75rem;
  }
  .home-class_list .name {
    font-size: 0.9375rem;
    transform: translate(-2rem, -50%);
  }
  .home-class_list .text {
    margin-top: -0.5rem;
  }
}

.home-strengths {
  overflow: hidden;
}
.home-strengths_main {
  position: relative;
  z-index: 1;
}
.home-strengths_main::before, .home-strengths_main::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  z-index: 5;
  background-color: var(--color-blue);
  pointer-events: none;
}
.home-strengths_main::before {
  width: 40.5%;
  height: 70.65%;
  top: -3.75rem;
  opacity: 0.2;
}
.home-strengths_main::after {
  width: 48.35%;
  height: 52.45%;
  bottom: -2rem;
  opacity: 0.08;
}
.home-strengths_list .number {
  line-height: 1;
  margin-bottom: 0.75rem;
}
.home-strengths_list .number > span {
  display: inline-block;
  color: #fff;
  padding: 0.25em 0.5em 0.25em 0.25em;
  font-size: 1.375rem;
  font-weight: 700;
  background-color: var(--color-blue);
}
.home-strengths_list .title {
  font-size: 2rem;
  color: var(--color-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
.home-strengths_list .title > span {
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
}
.home-strengths_list .ph {
  position: relative;
  z-index: 10;
}
@media print, screen and (min-width: 768px) {
  .home-strengths_list {
    padding-top: 1.5rem;
  }
  .home-strengths_list > li {
    display: flex;
  }
  .home-strengths_list > li + li {
    margin-top: 3.125rem;
  }
  .home-strengths_list .text {
    width: 67%;
    padding-right: 2.5rem;
  }
  .home-strengths_list .ph {
    width: 33%;
    max-width: 360px;
  }
  .home-strengths_list .number > span {
    font-size: min(2.6vw, 1.625rem);
  }
  .home-strengths_list .title {
    font-size: min(4.2vw, 2.5rem);
  }
}
@media screen and (max-width: 767.98px) {
  .home-strengths_main::before {
    width: 45%;
    top: -1.5rem;
  }
  .home-strengths_main::after {
    width: 65%;
    bottom: -1rem;
  }
  .home-strengths_list > li + li {
    margin-top: 2.5rem;
  }
  .home-strengths_list .ph {
    margin-top: 1rem;
  }
}

.home-instructor {
  position: relative;
  padding-bottom: 1rem;
  z-index: 1;
}
.home-instructor_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.home-instructor_bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(89, 89, 89, 0.6);
  z-index: 2;
}
.home-instructor_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-instructor_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.5rem;
  width: 92%;
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
}
.home-instructor_list .ph {
  width: 72.5%;
  max-width: 280px;
  margin: 0 auto 1.5rem;
}
.home-instructor_list .name {
  font-weight: 700;
  font-size: 1.125rem;
}
.home-instructor_list .msg {
  margin: 0.75em auto 0;
  font-size: 0.75rem;
}
.home-instructor_note {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: right;
  font-size: 0.75rem;
}
@media print, screen and (min-width: 768px) {
  .home-instructor_list .instructor {
    width: calc(33.33% - 1rem);
  }
  .home-instructor_list .msg {
    max-width: 280px;
  }
}
@media screen and (max-width: 767.98px) {
  .home-instructor_list {
    flex-direction: column;
  }
  .home-instructor_list .ph {
    width: 64%;
    margin-bottom: 1.25rem;
  }
  .home-instructor_list .msg {
    max-width: 500px;
  }
}

.home-plan_block {
  padding: 1.5rem;
  border: 2px solid var(--color-blue);
  border-radius: 0.5rem;
}
.home-plan .name {
  color: #fff;
  font-size: 1.375rem;
  padding: 0.5rem;
  text-align: center;
  background-color: var(--color-blue);
}
.home-plan .name .note {
  display: block;
  font-size: 50%;
}
.home-plan .sub {
  line-height: 1.3;
}
.home-plan .sub._small {
  font-size: 0.75rem;
}
.home-plan .price {
  display: flex;
  align-items: baseline;
  line-height: 1.2;
}
.home-plan .price .yen {
  font-size: 2.5rem;
  line-height: 0.9;
}
.home-plan .price .tax {
  font-size: 1.25rem;
  margin-left: 0.25em;
}
.home-plan .price._small .yen {
  font-size: 1.875rem;
}
.home-plan .price._small .tax {
  font-size: 0.9375rem;
}
.home-plan .sub-price {
  font-size: 150%;
}
.home-plan .class-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}
.home-plan .class-block > .sub {
  width: 5em;
  padding-top: 0.25em;
}
.home-plan .class-block .class-price {
  min-width: 10rem;
  max-width: calc(100% - 5em);
  padding-left: 0.75rem;
}
.home-plan .class-block .class-price .sub {
  margin-top: 0.25rem;
}
.home-plan .fee-row {
  text-align: center;
}
.home-plan .fee-row .fee {
  padding: 1rem;
  font-weight: 700;
  background-color: #f8f8f8;
}
.home-plan .fee-row .fee-note {
  width: 100%;
  margin-top: 0.25em;
  font-weight: 400;
  font-size: 0.75rem;
  text-align: right;
}
.home-plan .fee-row .free {
  font-size: 1.375rem;
}
.home-plan .fee-row .class-block > .sub {
  font-size: 1.25rem;
  padding-top: 0.375em;
}
.home-plan_mainlist .plan {
  position: relative;
  text-align: center;
}
.home-plan_mainlist .recommend {
  position: absolute;
  right: -1rem;
  top: -2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 4rem;
  height: 4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50%;
  background-color: var(--color-orange);
}
.home-plan_mainlist .name {
  border-radius: 0.5rem 0.5rem 0 0;
}
.home-plan_mainlist .plan._recommend .name {
  padding: 0.5rem 3rem;
}
.home-plan_mainlist .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0.5rem;
  font-weight: 700;
  background-color: #f8f8f8;
  border-radius: 0 0 0.5rem 0.5rem;
}
.home-plan_mainlist + .fee-row {
  margin-top: 1.5rem;
}
.home-plan_arrow {
  display: block;
  margin: 1.5rem auto;
  width: 60vw;
  height: 6vw;
  max-width: 25rem;
  max-height: 2.625rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--color-blue);
}
.home-plan_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 2.5rem auto 0;
  text-align: center;
}
.home-plan_links > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: #424242;
  border: 2px solid var(--color-blue);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .home-plan_links > a:hover {
    color: var(--color-blue);
    background-color: #fff;
  }
}
.home-plan_links .en {
  margin-top: 0.5em;
  font-size: 75%;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .home-plan_block + .home-plan_block {
    margin-top: 1.5rem;
  }
  .home-plan_mainlist {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
  }
  .home-plan_mainlist .plan {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0.75rem);
  }
  .home-plan_mainlist .plan._wide {
    width: 100%;
  }
  .home-plan_mainlist .info {
    height: 100%;
  }
  .home-plan .fee-row {
    display: flex;
  }
  .home-plan .fee-row .name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 20rem;
    width: 30%;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .home-plan .fee-row .fee {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70%;
    max-width: calc(100% - 20rem);
    border-radius: 0 0.5rem 0.5rem 0;
  }
  .home-plan_links {
    margin-top: 3.75rem;
  }
  .home-plan_links > a {
    width: calc(50% - 1rem);
    padding: 1.35rem 1.5rem;
    font-size: 1.375rem;
  }
}
@media print, screen and (min-width: 992px) {
  .home-plan_mainlist .plan {
    width: calc(33.33% - 1rem);
  }
  .home-plan_mainlist .plan._wide {
    width: calc(33.33% - 1rem);
  }
}
@media screen and (max-width: 767.98px) {
  .home-plan_block {
    padding: 1rem;
  }
  .home-plan_block + .home-plan_block {
    margin-top: 1rem;
  }
  .home-plan_mainlist .recommend {
    right: -0.75rem;
    top: -1.25rem;
    transform: scale(0.75);
  }
  .home-plan_mainlist .plan + .plan {
    margin-top: 1rem;
  }
  .home-plan_mainlist + .fee-row {
    margin-top: 1rem;
  }
  .home-plan .fee-row .name {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .home-plan .fee-row .fee {
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .home-plan_arrow {
    margin: 1rem auto;
  }
  .home-plan_links > a {
    width: 100%;
    min-height: 6.25rem;
    font-size: 1.25rem;
  }
}

.home-cta {
  position: relative;
  padding: 3rem 4%;
  text-align: center;
  z-index: 1;
  background-color: var(--color-blue);
}
.home-cta._large {
  padding: 5rem 4%;
}
.home-cta_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-blue-rgb), 0.6);
  pointer-events: none;
  z-index: -1;
}
.home-cta_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
}
.home-cta_catch {
  margin-bottom: 3rem;
  font-weight: 700;
}
.home-cta_catch .sub {
  font-size: 1.125rem;
  margin-bottom: 1em;
  color: #fff;
}
.home-cta_catch .catch {
  font-size: min(4vw, 2.5rem);
  line-height: 1.2;
}
.home-cta_catch .catch > span {
  color: var(--color-blue);
  background: #fff;
  background: linear-gradient(transparent 15%, #fff 15%, #fff 95%, transparent 95%);
}
.home-cta_btn {
  text-align: center;
}
.home-cta_btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 48rem;
  margin: 0 auto;
  height: 6.25rem;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 0.5rem;
  background-color: var(--color-btnorange);
  color: #fff;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.home-cta_btn .btn .main, .home-cta_btn .btn .sub {
  display: block;
}
.home-cta_btn .btn .main {
  font-size: 1.875rem;
}
.home-cta_btn .btn .sub {
  font-size: 1.125rem;
}
@media screen and (max-width: 767.98px) {
  .home-cta {
    padding: 2rem 4%;
  }
  .home-cta._large {
    padding: 3rem 4%;
  }
  .home-cta_catch {
    margin-bottom: 2rem;
  }
  .home-cta_catch .catch {
    font-size: min(7.2vw, 2.25rem);
  }
  .home-cta_btn .btn {
    height: 5rem;
  }
  .home-cta_btn .btn .main {
    font-size: 1.5rem;
  }
  .home-cta_btn .btn .sub {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .home-cta a.btn:hover {
    color: var(--color-blue);
    background-color: var(--color-yellow);
  }
}

.home-flow_list {
  position: relative;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  z-index: 1;
}
.home-flow_list::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}
.home-flow_list .number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.home-flow_list .number img {
  flex-shrink: 0;
  background-color: #fff;
}
.home-flow_list .title {
  font-size: 1.25rem;
  line-height: 1.3;
}
.home-flow_list .desc {
  margin-top: 0.75em;
  line-height: 1.3;
  font-weight: 700;
  font-size: 0.9375rem;
}
@media print, screen and (min-width: 992px) {
  .home-flow_list {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 6% 4%;
    text-align: center;
  }
  .home-flow_list::before {
    left: 4%;
    top: 3.5rem;
    margin-top: 6%;
    width: 92%;
    height: 0.25rem;
    background: radial-gradient(circle, #02b2ba 0.125rem, transparent 0.125rem) repeat-x center top;
    background-size: 0.5rem 0.25rem;
  }
  .home-flow_list .flow {
    width: calc(25% - 1.125rem);
    max-width: 250px;
  }
  .home-flow_list .ph {
    max-width: 200px;
    margin: 0 auto 1.25rem;
  }
  .home-flow_list .number {
    margin-bottom: 1.5rem;
  }
  .home-flow_list .number::before, .home-flow_list .number::after {
    content: "";
    display: block;
    width: auto;
    height: 8px;
    flex-grow: 1;
  }
  .home-flow_list .number img {
    width: 7rem;
  }
  .home-flow_list .flow:first-of-type .number::before {
    background-color: #fff;
  }
  .home-flow_list .flow:last-of-type .number::after {
    background-color: #fff;
  }
}
@media screen and (max-width: 991.98px) {
  .home-flow_list {
    padding: 2rem;
  }
  .home-flow_list::before {
    top: 2rem;
    left: 5.5rem;
    height: calc(100% - 4rem);
    width: 0.25rem;
    background: radial-gradient(circle, #02b2ba 0.125rem, transparent 0.125rem) repeat-y center top;
    background-size: 0.25rem 0.5rem;
  }
  .home-flow_list .flow {
    display: flex;
    align-items: stretch;
  }
  .home-flow_list .flow + .flow {
    margin-top: 2rem;
  }
  .home-flow_list .number {
    position: relative;
    align-items: flex-start;
    width: 7rem;
  }
  .home-flow_list .flow:last-of-type .number::after {
    content: "";
    display: block;
    position: absolute;
    left: 3.5rem;
    bottom: 0;
    width: 0.5rem;
    height: 100%;
    background-color: #fff;
    z-index: -1;
  }
  .home-flow_list .cont {
    display: flex;
    align-items: center;
    width: calc(100% - 7rem);
    padding-left: 2rem;
  }
  .home-flow_list .ph {
    width: 10rem;
  }
  .home-flow_list .text {
    padding-left: 1rem;
    width: calc(100% - 10rem);
  }
}
@media screen and (max-width: 767.98px) {
  .home-flow_list::before {
    left: calc(1.875rem + 10vw);
  }
  .home-flow_list .flow + .flow {
    margin-top: 2.5rem;
  }
  .home-flow_list .number {
    width: 20vw;
  }
  .home-flow_list .flow:last-of-type .number::after {
    left: calc(10vw - 0.25rem);
  }
  .home-flow_list .cont {
    display: block;
    width: calc(100% - 20vw);
    padding-left: 1rem;
  }
  .home-flow_list .ph {
    width: 32vw;
    margin: 0 auto 1rem;
  }
  .home-flow_list .text {
    padding-left: 1rem;
    width: 100%;
    text-align: center;
  }
}

.home-voice {
  position: relative;
  z-index: 1;
}
.home-voice::before, .home-voice::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  z-index: -1;
  background-color: var(--color-blue);
  pointer-events: none;
}
.home-voice::before {
  width: 41.8%;
  height: 57.73%;
  top: 0;
  margin-top: 7%;
  opacity: 0.2;
}
.home-voice::after {
  width: 50%;
  height: 42.26%;
  bottom: 0;
  opacity: 0.08;
}
.home-voice_list {
  display: flex;
  flex-wrap: wrap;
}
.home-voice_list .item {
  border: 2px solid var(--color-blue);
  border-radius: 0.5rem;
  background-color: #fff;
}
.home-voice_list .voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.home-voice_list .voice-header .img {
  width: 16%;
  max-width: 5rem;
}
.home-voice_list .voice-header .text {
  padding-left: 1.25rem;
  width: 84%;
  font-weight: 700;
}
.home-voice_list .voice-header .stars {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}
.home-voice_list .voice-header .stars .i {
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  -webkit-mask: url("../img/home/star.svg") center/100% auto no-repeat;
          mask: url("../img/home/star.svg") center/100% auto no-repeat;
  background-color: #ffcb51;
}
.home-voice_list .voice-header .stars .i._gray {
  background-color: #b6b6b6;
}
.home-voice_list .voice-header .name {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.3;
}
.home-voice_list .voice-header .name .job::before {
  content: "/";
  margin-right: 0.5rem;
}
.home-voice_list .voice-header .name .job > span {
  font-size: 85%;
}
.home-voice_list .title {
  margin-bottom: 0.25rem;
  font-size: 1.375rem;
  line-height: 1.3;
}
.home-voice_list .comment {
  line-height: 1.75;
}
.home-voice_note {
  text-align: right;
  margin-top: 1rem;
  font-size: 0.75rem;
}
@media print, screen and (min-width: 768px) {
  .home-voice_list {
    gap: 1.5rem;
  }
  .home-voice_list .item {
    padding: 1.25rem;
    width: calc(50% - 0.75rem);
  }
}
@media print, screen and (min-width: 992px) {
  .home-voice_list .item {
    padding: 1.5rem;
  }
  .home-voice_list .voice-header .stars .i {
    width: 1.75rem;
    height: 1.75rem;
  }
  .home-voice_list .voice-header .name {
    font-size: 1.25rem;
  }
  .home-voice_list .title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .home-voice::before {
    width: 48%;
  }
  .home-voice::after {
    width: 68%;
  }
  .home-voice_list {
    gap: 1.25rem;
  }
  .home-voice_list .item {
    padding: 1rem;
    width: 100%;
  }
  .home-voice_list .voice-header .img img {
    transform: scale(1.1);
  }
  .home-voice_list .voice-header .name {
    font-size: 1rem;
  }
}

.home-store {
  position: relative;
  color: #fff;
  background-color: #707070;
  z-index: 1;
}
.home-store a {
  color: #fff;
}
.home-store_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}
.home-store_bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(89, 89, 89, 0.6);
  z-index: 2;
}
.home-store_bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-store_walk {
  font-size: 1.625rem;
  font-weight: 700;
}
.home-store_address {
  margin-top: 0.75rem;
  font-weight: 700;
}
.home-store_map {
  margin: 2rem auto 0;
  padding: 0.5rem 0.5rem 0.75rem;
  background-color: #fff;
}
.home-store_map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 207 / 112;
}
.home-store_map .btn_detail {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.home-store_map .btn_detail > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5em 1.5em;
  color: #fff;
  background-color: var(--color-blue);
  transition: background-color 0.3s ease-in-out;
  border-radius: 100vh;
}
.home-store_map .btn_detail > a::after {
  content: "";
  display: block;
  width: 1.375em;
  height: 1.375em;
  -webkit-mask: url("../img/common/icon_blank.svg") center/100% auto no-repeat;
          mask: url("../img/common/icon_blank.svg") center/100% auto no-repeat;
  background-color: currentColor;
}
@media (any-hover: hover) {
  .home-store_map .btn_detail > a:hover {
    background-color: var(--color-hover);
  }
}
.home-store_map .btn_detail .text > span {
  font-size: 80%;
  margin-left: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .home-store_cont {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .home-store_cont .ph {
    width: 45.5%;
    margin-top: -5.75rem;
  }
  .home-store_cont .ph > span {
    display: block;
    max-width: 530px;
  }
  .home-store_cont .main {
    width: 45.5%;
  }
  .home-store_map {
    max-width: 430px;
  }
}
@media screen and (max-width: 767.98px) {
  .home-store_walk {
    font-size: 1.375rem;
  }
  .home-store_cont .main {
    margin-top: 1.5rem;
  }
}