@charset "UTF-8";
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Gotham", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #00001c;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[lang=en],
[lang=en-US],
[lang=en-GB],
[lang=en-CA],
[lang=en-AU],
[lang=en-NZ],
[lang=en-IE],
[lang=en-ZA],
[lang=en-JM],
[lang=en-BZ],
[lang=en-TT] {
  font-family: "Gotham", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .container {
    padding: 0 20px;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

.sp-hide {
  display: block !important;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
@media (max-width: 767px) {
  .header {
    position: static !important;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    padding: 0.5333333333vw 0 1.3333333333vw;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 960px) {
  .header__inner {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    height: 10.6666666667vw;
  }
}
.header__logo {
  margin: 0;
  line-height: 1;
}
.header__logo a {
  display: block;
}
.header__logo img {
  height: 42px;
  width: auto;
}
@media screen and (max-width: 960px) {
  .header__logo {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .header__logo img {
    height: 8.5333333333vw;
  }
}
@media screen and (max-width: 960px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}
.header__menu li {
  position: relative;
}
.header__menu li a {
  display: inline-block;
  padding: 1em 0;
  color: #00001c;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.header__menu li a:hover {
  opacity: 0.7;
}
.header__menu li.current-menu-item a {
  color: #00001c;
}
.header__menu li.current-menu-item::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00001c;
}
.header__menu li:last-child a {
  background: #f8c058;
  color: #FFFFFF;
  padding: 1rem 2rem;
  margin-top: 3px;
  border-radius: 999px;
  transition: all 0.3s;
}
.header__menu li:last-child a:hover {
  transform: translateY(-2px);
}
.header__menu li:last-child:after {
  display: none;
}
.header__hamburger {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  box-shadow: none;
}
.header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00001c;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: none;
}
.header__hamburger span:nth-child(1) {
  top: 6px;
}
.header__hamburger span:nth-child(2) {
  top: 15px;
}
.header__hamburger span:nth-child(3) {
  top: 24px;
}
.header__hamburger.is-active span {
  background-color: #fff;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  top: 16px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 960px) {
  .header__hamburger {
    display: block;
    position: fixed;
  }
}
@media (max-width: 767px) {
  .header__hamburger {
    display: block;
    position: fixed;
    top: 2.6666666667vw;
    right: 6.1333333333vw;
    width: 6.1333333333vw;
    height: 6.1333333333vw;
    z-index: 3000;
  }
  .header__hamburger span:nth-child(1) {
    top: 1.3333333333vw;
  }
  .header__hamburger span:nth-child(2) {
    top: 3.2vw;
  }
  .header__hamburger span:nth-child(3) {
    top: 5.0666666667vw;
  }
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  height: 100vh;
  background: #796bae;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 1500;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
.drawer.is-active {
  transform: translateX(0);
}
.drawer__nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drawer__menu {
  list-style: none;
  margin: 0;
  padding: 60px 0 0 0;
  width: 70%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
}
.drawer__menu li {
  width: 100%;
  margin-bottom: 0;
  border-bottom: 1px solid #fff;
}
.drawer__menu li:last-child {
  border-bottom: none;
}
.drawer__menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  display: block;
  padding: 24px 0 24px 0;
  transition: background 0.2s, color 0.2s;
}
.drawer__menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f8c058;
}
@media (max-width: 767px) {
  .drawer__menu {
    padding: 16vw 0 0 0;
    max-width: 90.6666666667vw;
  }
  .drawer__menu li a {
    padding: 1.5em 0;
    font-size: 3.7333333333vw;
  }
  .drawer__menu li:last-child {
    display: none;
  }
}
.drawer .drawer__download {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 32px 0 0 0;
}
.drawer .drawer__download .drawer__download-btn {
  display: inline-block;
  background: #f8c058;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 999px;
  padding: 16px 48px;
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
  text-decoration: none;
  border: none;
  outline: none;
  transition: all 0.3s;
  margin-top: 8px;
}
.drawer .drawer__download .drawer__download-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(248, 192, 88, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.18);
}
@media (max-width: 767px) {
  .drawer .drawer__download .drawer__download-btn {
    padding: 1.2rem 0;
    width: 70%;
    text-align: center;
    font-size: 1.4rem;
  }
}

.footer {
  background-color: #545454;
  color: #FFFFFF;
  padding: 60px 0 0;
  font-size: 12px;
  font-weight: bold;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer__logo {
  margin: 0;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__nav-bottom {
  display: flex;
  gap: 20px;
  margin: 35px auto 50px;
}
.footer__menu {
  display: flex;
  list-style: none;
  margin: 0.3rem 0 0 0;
  padding: 0;
  gap: 25px;
  font-size: 14px;
}
.footer__menu li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__menu li a:hover {
  opacity: 0.7;
}
.footer__info {
  margin-top: 50px;
}
.footer__address {
  line-height: 1.8;
}
.footer__company {
  font-size: 14px;
}
.footer__bottom {
  background: #fff;
}
.footer__copyright {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #545454;
  font-weight: normal;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer__inner {
    flex-direction: column;
    margin-bottom: 0;
    width: 80%;
    margin: 0 auto;
  }
  .footer__logo {
    width: 160px;
    margin-bottom: 30px;
  }
  .footer__content {
    gap: 30px;
  }
  .footer__menu {
    gap: 20px;
  }
  .footer__info {
    width: 100%;
    margin-top: 30px;
  }
  .footer__bottom {
    padding-left: 10%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 10.6666666667vw 0 0;
    font-size: 3.2vw;
  }
  .footer .container {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
  .footer__inner {
    width: auto;
  }
  .footer__logo {
    width: 32vw;
    height: auto;
    margin-bottom: 2.6666666667vw;
  }
  .footer__logo img {
    width: 100%;
    height: auto;
  }
  .footer__menu {
    flex-direction: column;
    gap: 2.6666666667vw;
    margin: 5.3333333333vw 0 2.6666666667vw;
  }
  .footer__info {
    margin-top: 4.8vw;
    padding: 4.8vw 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__nav-bottom {
    flex-direction: column;
    gap: 2.6666666667vw;
    margin: 5.3333333333vw auto;
  }
  .footer__bottom {
    padding-left: 5.3333333333vw;
  }
  .footer__copyright {
    font-size: 2.9333333333vw;
    padding: 4vw 0;
  }
  .footer__company, .footer__menu {
    font-size: 3.7333333333vw;
  }
}

.fixed-banner {
  display: none;
  position: fixed;
  right: 15px;
  bottom: 30px;
  z-index: 2000;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 250px;
  height: 282px;
  box-sizing: border-box;
  border-radius: 16px;
}
.fixed-banner img {
  width: 250px;
  height: 282px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.fixed-banner.is-visible {
  display: block;
  opacity: 1;
  visibility: visible;
}
.fixed-banner__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 39px;
  height: 39px;
  background: #fff;
  border: 2px solid #796bae;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #796bae;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
  transition: opacity 0.2s;
}
.fixed-banner__close:hover {
  background-color: #dbdbff;
}
.fixed-banner:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .fixed-banner.is-visible {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

.pc-only {
  display: none;
}

@media (min-width: 961px) {
  .pc-only {
    display: block;
  }
}
.mv {
  position: relative;
  height: auto;
  min-height: 550px;
  margin-top: 80px;
  color: #00001c;
  overflow: hidden;
  background-color: #FFFFFF;
}
.mv .container {
  padding: 30px 50px 0;
}
.mv__bg {
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/regiless/assets/images/top/mv-bg.jpg") no-repeat center top;
  background-size: cover;
  z-index: 1;
}
.mv__inner {
  height: auto;
  min-height: 550px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.mv__content {
  flex: 1;
  max-width: 600px;
  margin-top: 50px;
}
.mv__title {
  margin-bottom: 20px;
}
.mv__title-main {
  display: block;
  font-size: 52px;
  font-weight: bold;
  line-height: 1.4;
  color: #796bae;
  letter-spacing: -0.09em;
}
.mv__title-main .s-space {
  letter-spacing: -0.25em;
}
.mv__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 110px;
  color: #00001c;
  font-weight: bold;
}
.mv__buttons {
  display: flex;
  gap: 20px;
}
.mv__buttons .btn {
  padding: 18px 50px;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.mv__buttons .btn--primary {
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
}
.mv__buttons .btn--secondary {
  box-shadow: 0 0 20px rgba(121, 107, 174, 0.9);
}
.mv__image {
  max-width: 525px;
  width: 100%;
  margin-left: -300px;
  text-align: right;
}
.mv__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .mv {
    min-height: inherit;
  }
  .mv__inner {
    min-height: inherit;
  }
  .mv__content {
    max-width: 70%;
  }
  .mv__title-main {
    font-size: 32px;
  }
  .mv__text {
    margin-bottom: 12%;
  }
  .mv__image {
    max-width: 50%;
    margin-left: -23%;
  }
  .mv .container {
    padding: 20px 30px 0;
  }
}
@media (max-width: 767px) {
  .mv {
    margin-top: 0;
    min-height: inherit;
  }
  .mv__bg {
    background: none;
  }
  .mv__inner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 0;
  }
  .mv__image {
    max-width: inherit;
    width: 100%;
    margin: 0 auto;
    background: url("/wp-content/themes/regiless/assets/images/top/mv-bg_sp.jpg") no-repeat center center;
    background-size: cover;
    height: 80.5333333333vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .mv__image img {
    width: auto;
    height: 70.1333333333vw;
  }
  .mv__content {
    max-width: 90%;
    margin: 0 auto;
  }
  .mv__title {
    margin-bottom: 3.2vw;
  }
  .mv__title-main {
    font-size: 7.4666666667vw;
    text-align: left;
  }
  .mv__text {
    font-size: 3.7333333333vw;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.4;
  }
  .mv__inner {
    gap: 5.3333333333vw;
    padding: 6.6666666667vw 0;
  }
  .mv__buttons {
    margin: 5.3333333333vw auto;
    flex-direction: column;
    width: 80%;
  }
  .mv__buttons .btn {
    padding: 4vw 0;
    text-align: center;
    font-size: 3.7333333333vw;
  }
  .mv .container {
    padding: 0;
  }
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .section__icon {
    zoom: 56%;
  }
}

.service {
  padding: 100px 0;
  background-color: #F5F5F5;
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service__item {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}
.service__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.service__text {
  margin-bottom: 30px;
  line-height: 1.8;
}

.news {
  padding: 60px 0 10px;
  background-color: #f8f8fb;
}
.news .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}
.news__title {
  font-size: 24px;
  font-weight: bold;
  color: #00001c;
}
.news__list {
  margin-bottom: 40px;
  width: 100%;
}
.news__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
.news__item:first-child {
  border-top: 1px solid #cccccc;
}
.news__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: opacity 0.3s;
  color: #00001c;
  padding: 20px 5px;
}
.news__item a:hover {
  opacity: 0.7;
}
.news__item a::after {
  content: "";
  width: 7px;
  height: 13px;
  background: url("/wp-content/themes/regiless/assets/images/top/arrow-right.png") no-repeat center;
  background-size: contain;
  margin-left: 5px;
}
.news__date {
  width: 100px;
  color: #999999;
  font-size: 14px;
  font-weight: bold;
}
.news__item-title {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
  margin-left: 1em;
}
.news__btn {
  padding: 12px 43px;
  font-size: 14px;
  border-radius: 30px;
  background-color: #FFFFFF;
  color: #796bae;
  border: 1px solid #796bae;
  box-shadow: 0 0 20px rgba(121, 107, 174, 0.3);
  transition: all 0.3s;
  font-weight: bold;
}
.news__btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
@media screen and (max-width: 960px) {
  .news {
    padding: 40px 0;
  }
  .news__list {
    margin-bottom: 0;
  }
  .news .container {
    margin-bottom: 0;
    padding-bottom: 2em;
  }
}
@media (max-width: 767px) {
  .news {
    position: relative;
    padding: 10.6666666667vw 0 26.6666666667vw;
  }
  .news__title {
    font-size: 4.2666666667vw;
    text-align: center;
    margin: 0 auto;
  }
  .news__btn {
    position: absolute;
    bottom: 10.1333333333vw;
    left: 0;
    right: 0;
    padding: 4vw 0;
    width: 70%;
    margin: 0 auto;
    font-size: 3.7333333333vw;
    font-weight: bold;
    text-align: center;
  }
  .news__item {
    padding: 0;
  }
  .news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 3.2vw 0.8vw 4vw;
  }
  .news__item a:after {
    display: none;
  }
  .news__date {
    font-size: 3.2vw;
    width: auto;
    margin: 0;
  }
  .news__item-title {
    font-size: 3.4666666667vw;
    width: auto;
    margin: 0;
  }
  .news .container {
    margin-bottom: 0;
    padding-bottom: 2.6666666667vw;
  }
}

.contact {
  padding: 100px 0;
  background-color: #F5F5F5;
}
.contact__inner {
  text-align: center;
}
.contact__text {
  margin-bottom: 40px;
  font-size: 18px;
}

.btn {
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s;
  color: #FFFFFF;
}
.btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.btn--primary {
  background-color: #f8c058;
}
.btn--secondary {
  background-color: #796bae;
}
.btn--large {
  padding: 20px 60px;
  font-size: 18px;
}

.company-logo {
  padding: 55px 100px;
  background-color: #f3f3f3;
  overflow: hidden;
}
.company-logo__list {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: slide 30s linear infinite;
  width: max-content;
}
.company-logo__list:hover {
  animation-play-state: paused;
}
.company-logo__item {
  flex-shrink: 0;
  text-align: center;
}
.company-logo__item img {
  max-width: none;
  width: auto;
  height: 86px;
  transition: all 0.3s;
}
@media screen and (max-width: 960px) {
  .company-logo {
    padding: 60px 0;
  }
  .company-logo__list {
    gap: 20px;
  }
  .company-logo__item {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .company-logo {
    padding: 4vw 0;
  }
  .company-logo__list {
    gap: 4vw;
  }
  .company-logo__item {
    width: 32vw;
  }
  .company-logo__item img {
    height: 19.2vw;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 960px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .service {
    padding: 60px 0;
  }
  .service__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact {
    padding: 60px 0;
  }
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * var(--total-logos) - 20px * var(--total-logos)));
    }
  }
}
.trouble {
  position: relative;
  padding: 60px 0 35px;
  background: #fff url("/wp-content/themes/regiless/assets/images/top/trouble-bg.png") no-repeat center 80px;
  background-size: 1132px 353px;
  overflow: visible;
}
.trouble .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.trouble__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}
.trouble__img {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  width: 257px;
  height: 342px;
  margin-bottom: 0;
  margin-left: -10px;
}
.trouble__img img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  display: block;
}
.trouble__list {
  flex: 1 1 0;
  display: flex;
  justify-content: space-between;
  gap: 0;
  padding: 26px 50px 0 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}
.trouble__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  padding: 0;
}
.trouble__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  margin: 0 auto 1.1em;
  border: 4px solid;
  border-radius: 50%;
  background: #fff;
  color: #796bae;
  font-weight: bold;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 35px rgba(102, 51, 153, 0.3);
}
.trouble__text {
  font-weight: bold;
  color: #00001c;
  line-height: 2.1;
  white-space: pre-line;
  background: none;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.trouble__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 27px;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 95px;
  background: #796bae;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .trouble {
    background: none;
    padding: 40px 0;
  }
  .trouble .container {
    max-width: inherit;
    margin: 0 auto;
    padding: 0 20px;
  }
  .trouble__img {
    width: 20%;
    height: auto;
    margin-left: 0;
    z-index: 2;
  }
  .trouble__list {
    padding: 0 30px 0 0;
    position: relative;
  }
  .trouble__list:after {
    position: absolute;
    content: "";
    width: 120%;
    height: 150px;
    border: 3px solid #796bae;
    border-radius: 16px;
    display: block;
    top: 45px;
    left: -22%;
    z-index: -1;
  }
  .trouble__label {
    width: 90px;
    height: 90px;
    border: 3px solid;
    color: #796bae;
    box-shadow: 0 6px 25px rgba(102, 51, 153, 0.3);
    font-size: 12px;
    letter-spacing: 0;
  }
  .trouble__text {
    font-size: 12px;
  }
  .trouble__item:not(:last-child)::after {
    bottom: -5px;
    width: 1px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .trouble {
    padding: 16vw 0 8vw;
  }
  .trouble .container {
    padding: 0 2vw;
  }
  .trouble__inner {
    flex-direction: column;
  }
  .trouble__img {
    width: 88%;
    max-width: 85.3333333333vw;
    margin: 0 auto -3.4666666667vw;
  }
  .trouble__list {
    flex-direction: column;
    padding: 0;
  }
  .trouble__list::after {
    display: none;
  }
  .trouble__item {
    flex-direction: row;
    align-items: center;
    width: 95%;
    margin: 0 auto;
  }
  .trouble__label {
    width: 29.8666666667vw;
    height: 29.8666666667vw;
    font-size: 3.7333333333vw;
    border-width: 2px;
    z-index: 2;
  }
  .trouble__text {
    width: calc(100% - 13.3333333333vw);
    margin-left: -16.5333333333vw;
    margin-top: -3.4666666667vw;
    border: 2px solid #796bae;
    border-radius: 8px;
    font-size: 3.7333333333vw;
    text-align: left;
    padding: 5.8666666667vw 0 5.8666666667vw 21.3333333333vw;
    z-index: -1;
  }
}

.solution {
  padding: 135px 0 55px 0;
  background: #f8f8fb url("/wp-content/themes/regiless/assets/images/top/solution-bg.jpg") no-repeat center top;
  background-size: cover;
  position: relative;
}
.solution .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.solution__title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #00001c;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.solution__main {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__center {
  position: relative;
  z-index: 2;
  width: 720px;
  height: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution__center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.solution__labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.solution__label {
  position: absolute;
  width: 195px;
  height: 195px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0px 30px rgba(224, 193, 200, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #00001c;
  text-align: center;
  line-height: 1.3;
  pointer-events: auto;
  user-select: none;
  border: 2px solid rgba(208, 198, 245, 0.5);
}
.solution__label--top-left {
  left: 90px;
  top: 70px;
}
.solution__label--mid-left {
  left: -25px;
  top: 270px;
}
.solution__label--bottom-left {
  left: 80px;
  bottom: 70px;
}
.solution__label--top-right {
  right: 90px;
  top: 70px;
}
.solution__label--mid-right {
  right: -40px;
  top: 270px;
}
.solution__label--bottom-right {
  right: 80px;
  bottom: 70px;
}
@media screen and (max-width: 960px) {
  .solution {
    padding: 60px 0 30px;
  }
  .solution__main {
    max-width: 100%;
    min-height: inherit;
  }
  .solution__title {
    font-size: 30px;
  }
  .solution__center {
    width: 600px;
  }
  .solution__label {
    width: 140px;
    height: 140px;
    font-size: 14px;
  }
  .solution__label--top-left {
    left: 100px;
    top: 100px;
  }
  .solution__label--mid-left {
    left: 0;
    top: 270px;
  }
  .solution__label--bottom-left {
    left: 100px;
    bottom: 100px;
  }
  .solution__label--top-right {
    right: 100px;
    top: 100px;
  }
  .solution__label--mid-right {
    right: -10px;
    top: 270px;
  }
  .solution__label--bottom-right {
    right: 100px;
    bottom: 100px;
  }
}
@media (max-width: 767px) {
  .solution {
    padding: 13.3333333333vw 0;
    background: #f8f8fb url("/wp-content/themes/regiless/assets/images/top/solution-bg_sp.jpg") no-repeat center top;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  .solution .container {
    padding: 0 2vw;
  }
  .solution__title {
    font-size: 6.4vw;
  }
  .solution__main {
    display: block;
  }
  .solution__center {
    width: calc(100% + 2vw);
    margin-left: -1vw;
    height: auto;
    padding: 13.3333333333vw 0 18.6666666667vw;
  }
  .solution__label {
    width: 36vw;
    height: 36vw;
    font-size: 3.2vw;
  }
  .solution__label--top-left {
    left: 4vw;
    top: 4vw;
  }
  .solution__label--mid-left {
    left: -2.6666666667vw;
    top: 45.3333333333vw;
  }
  .solution__label--bottom-left {
    left: 4vw;
    bottom: 4vw;
  }
  .solution__label--top-right {
    right: 5.3333333333vw;
    top: 0;
  }
  .solution__label--mid-right {
    right: -2.6666666667vw;
    top: 40vw;
  }
  .solution__label--bottom-right {
    right: 5.3333333333vw;
    bottom: -1.3333333333vw;
  }
}

.about {
  background: #796bae;
  padding: 110px 0 90px 0;
  text-align: center;
}
.about .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.about__title {
  padding: 40px 0;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
}
.about__icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 20px auto 55px;
}
.about__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  gap: 16px;
}
.about__icon img {
  width: 150px;
  height: 136px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
  transition: filter 0.3s ease;
}
.about__icon img:hover {
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.9));
}
.about__icon span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.about__payments {
  width: 835px;
  margin: 0 auto;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
}
.about__payments-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.1);
  padding: 35px 26px;
  margin-bottom: 0;
  text-align: center;
}
.about__payments-title {
  font-size: 18px;
  font-weight: bold;
  color: #00001c;
  margin-bottom: 1.2em;
}
.about__payments-row {
  display: flex;
  gap: 12px;
  margin-top: 0;
  justify-content: space-between;
  align-items: stretch;
}
.about__download {
  margin: 50px auto 0 auto;
  text-align: center;
}
.about__download .btn {
  padding: 18px 50px;
  border-radius: 30px;
  font-size: 16px;
  background-color: #f8c058;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: none;
  font-weight: bold;
  transition: all 0.3s;
}
.about__download .btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.about__download .btn.btn--primary {
  background-color: #f8c058;
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
}
.about__download .btn.btn--secondary {
  background-color: #796bae;
  box-shadow: 0 0 20px rgba(121, 107, 174, 0.9);
}
@media screen and (max-width: 960px) {
  .about {
    padding: 40px 0;
  }
  .about__title {
    font-size: 30px;
  }
  .about__icons {
    gap: 24px;
  }
  .about__icon {
    font-size: 16px;
  }
  .about__icon img {
    width: 130px;
    height: auto;
  }
  .about__payments {
    width: 100%;
  }
  .about__payments-title {
    font-size: 14px;
  }
  .about__payments-row {
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 10.6666666667vw 0;
  }
  .about__title {
    font-size: 6.4vw;
    padding: 5.3333333333vw 0;
  }
  .about__icons {
    gap: 10.6666666667vw 5.3333333333vw;
    flex-wrap: wrap;
  }
  .about__icon {
    font-size: 3.7333333333vw;
    gap: 4vw;
  }
  .about__icon img {
    width: 34.6666666667vw;
    height: auto;
  }
  .about__payments {
    margin-top: 8.5333333333vw;
    gap: 2.6666666667vw;
  }
  .about__payments-box {
    padding: 5.3333333333vw 2.6666666667vw;
    border-radius: 10px;
  }
  .about__payments-box--qr img {
    width: 66.6666666667vw;
  }
  .about__payments-box--card {
    width: 40%;
  }
  .about__payments-box--money {
    width: calc(60% - 2.6666666667vw);
  }
  .about__payments-box--point {
    width: 100%;
  }
  .about__payments-box--point img {
    width: 24vw;
  }
  .about__payments-row {
    flex-wrap: wrap;
    gap: 2.6666666667vw;
  }
  .about__payments-title {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .about__download {
    width: 70%;
    margin: 6.6666666667vw auto 0;
  }
  .about__download .btn {
    width: 100%;
    padding: 4vw 0;
    font-size: 3.7333333333vw;
  }
}

.platform {
  background: #fff;
  padding: 100px 0 90px 0;
}
.platform .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.platform__header {
  text-align: center;
  margin-bottom: 40px;
}
.platform__logo {
  margin-bottom: 12px;
}
.platform__title {
  font-size: 24px;
  font-weight: bold;
  color: #00001c;
  margin: 2em 0 1.5em;
}
.platform__lead {
  font-size: 42px;
  color: #00001c;
  margin-bottom: 52px;
  line-height: 1.7;
  font-weight: bold;
}
.platform__columns {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.platform__column {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  background: #f8f8fb;
  border-radius: 10px;
  min-width: 0;
  position: relative;
  text-align: center;
  border: 3px solid #796bae;
  box-shadow: 0 2px 12px rgba(121, 107, 174, 0.3);
}
.platform__column-title {
  font-weight: bold;
  color: #fff;
  background: #796bae;
  padding: 1em 0;
}
.platform__list {
  height: 100%;
  list-style: none;
  padding: 20px 0 30px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.platform__list li {
  display: flex;
  padding: 10px 0;
  flex: 1 1 0;
  justify-content: center;
  align-items: center;
  width: 80%;
  box-sizing: border-box;
  line-height: 1.4;
  color: #00001c;
  background: #fff;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
}
.platform__list li .img {
  display: inline-block;
  width: 64px;
  position: absolute;
  right: -8%;
  bottom: -10%;
  vertical-align: bottom;
}
.platform__list li .img img {
  display: inline-block;
  vertical-align: middle;
}
.platform__list.padding-s {
  gap: 10px;
}
.platform__balloon {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  background: #fff;
  color: #796bae;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(121, 107, 174, 0.3);
  z-index: 2;
}
.platform__balloon .f-80 {
  font-size: 0.75em;
}
.platform__balloon__01 {
  transform: translateX(-63%);
  top: 26%;
}
.platform__balloon__02 {
  transform: translateX(-58%);
  bottom: -14%;
}
.platform__balloon__03 {
  transform: translateX(80%);
  bottom: -16%;
}
.platform__balloon__04 {
  transform: translateX(85%);
  top: 10%;
}
.platform__etc {
  font-weight: bold;
  text-align: right;
  padding-right: 1.5em;
  padding-bottom: 0.5em;
  margin-top: -1.6em;
}
.platform__batsu {
  position: absolute;
  top: 50%;
  right: -26px;
  z-index: 1;
}
.platform__arrow {
  text-align: center;
  margin: 1.2em 0;
}
.platform__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  border-radius: 20px;
  border: 8px solid #796bae;
  box-shadow: 0 2px 12px rgba(121, 107, 174, 0.3);
}
.platform__text {
  font-size: 18px;
  color: #796bae;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .platform {
    padding: 60px 0;
  }
  .platform__title {
    font-size: 18px;
  }
  .platform__lead {
    font-size: 30px;
  }
  .platform__columns {
    width: 84%;
    gap: 10px;
    font-size: 11px;
  }
  .platform__batsu {
    width: 30px;
    right: -23px;
  }
  .platform__list {
    padding: 10px 0 15px;
    gap: 10px;
  }
  .platform__list li {
    width: 90%;
  }
  .platform__list li .img {
    width: 40px;
    right: -3%;
    bottom: -5%;
  }
  .platform__list li .img img {
    zoom: 70%;
  }
  .platform__balloon {
    width: 110px;
    height: 110px;
  }
  .platform__balloon__01 {
    transform: translateX(-63%);
    top: 26%;
  }
  .platform__balloon__02 {
    transform: translateX(-58%);
    bottom: -14%;
  }
  .platform__balloon__03 {
    transform: translateX(80%);
    bottom: -16%;
  }
  .platform__balloon__04 {
    transform: translateX(75%);
    top: 10%;
  }
  .platform__column {
    margin-bottom: 24px;
  }
  .platform__footer {
    width: 90%;
    border-width: 5px;
    gap: 20px;
  }
  .platform__payments-logos {
    width: 320px;
  }
  .platform__text {
    font-size: 14px;
  }
  .platform__starpay {
    width: 80px;
  }
}
@media (max-width: 767px) {
  .platform {
    overflow: hidden;
    padding: 10.6666666667vw 0;
  }
  .platform__title {
    font-size: 3.7333333333vw;
  }
  .platform__lead {
    font-size: 6.4vw;
    line-height: 1.3;
  }
  .platform__columns {
    flex-wrap: wrap;
    width: 80%;
    gap: 2.6666666667vw;
  }
  .platform__list li {
    font-size: 2.9333333333vw;
  }
  .platform__list li .img {
    zoom: 80%;
  }
  .platform__column {
    width: 40%;
    flex: auto;
    border-width: 2px;
    margin-bottom: 0;
  }
  .platform__column-title {
    font-size: 2.9333333333vw;
  }
  .platform__column--device {
    position: relative;
  }
  .platform__column--device .platform__list li {
    padding: 6.6666666667vw 0;
  }
  .platform__column--device .platform__list li .img {
    right: 10%;
  }
  .platform__column--function .platform__list li {
    padding: 1.8666666667vw 0;
  }
  .platform__column--industry .platform__list {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: inherit;
    padding: 1.3333333333vw 1.3333333333vw 4vw 1.3333333333vw;
  }
  .platform__column--industry .platform__list li {
    padding: 2.6666666667vw 0;
    width: 48%;
    flex: auto;
  }
  .platform__batsu img {
    width: 8vw;
    height: 8vw;
  }
  .platform__batsu-top {
    position: absolute;
    top: auto;
    bottom: -5.6vw;
    left: -5.8666666667vw;
    z-index: 1;
  }
  .platform__batsu-bottom {
    position: absolute;
    top: auto;
    bottom: -5.3333333333vw;
    right: -6vw;
    z-index: 1;
  }
  .platform__balloon {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    font-size: 2.6666666667vw;
  }
  .platform__balloon__01 {
    top: auto;
    bottom: -13.3333333333vw;
  }
  .platform__balloon__02 {
    bottom: auto;
    right: auto;
    top: 24vw;
    left: 40vw;
  }
  .platform__balloon__03 {
    bottom: auto;
    right: auto;
    top: 42.6666666667vw;
    left: 3.2vw;
  }
  .platform__balloon__04 {
    bottom: auto;
    right: auto;
    top: -16vw;
    left: -34.6666666667vw;
  }
  .platform__arrow {
    width: 8vw;
    height: auto;
    margin: 2.6666666667vw auto;
  }
  .platform__footer {
    position: relative;
    align-items: flex-start;
    gap: 0;
    border-width: 1.0666666667vw;
    border-radius: 2.6666666667vw;
  }
  .platform__starpay {
    width: 42%;
    position: absolute;
    right: 0;
    bottom: 2.6666666667vw;
    text-align: center;
  }
  .platform__starpay img {
    width: 18.6666666667vw;
    height: auto;
  }
  .platform__text {
    width: 42%;
    font-size: 2.4vw;
    text-align: center;
  }
  .platform__payments-logos {
    width: 58%;
    text-align: center;
  }
  .platform__payments-logos img {
    width: 38.1333333333vw;
    height: auto;
  }
}

.performance {
  background: #dbdbff;
  padding: 120px 0 0 0;
  position: relative;
  overflow: hidden;
}
.performance .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.performance__header {
  text-align: center;
  margin-bottom: 40px;
}
.performance__title {
  font-size: 42px;
  font-weight: bold;
  color: #00001c;
  margin: 2rem 0 1.5em;
}
.performance__main {
  position: relative;
  width: 100%;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.performance__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  height: 330px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 40px rgba(121, 107, 174, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}
.performance__center-logo {
  width: auto;
  margin-top: -33px;
  margin-bottom: 18px;
}
.performance__center-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
}
.performance__center-sub {
  font-size: 14px;
  font-weight: bold;
}
.performance__center-sub i {
  font-style: normal;
  color: #f8c058;
}
.performance__center-over {
  width: 620px;
  height: 620px;
  background: #c2c2ff;
  opacity: 37%;
  box-shadow: none;
}
.performance__item {
  position: absolute;
  width: 306px;
  padding-bottom: 15px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.1);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.performance__item::after {
  content: "";
  display: block;
  width: 11px;
  height: 70px;
  background: url("/wp-content/themes/regiless/assets/images/top/performance-line.png");
  position: absolute;
  margin: auto;
}
.performance__item-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: -40px -40px 0 20px;
}
.performance__item-header__l {
  margin: -40px 20px 0 -40px;
}
.performance__item-category {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #796bae;
  display: block;
  width: 213px;
  padding: 13px 0;
  border-radius: 16px;
}
.performance__item-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: -6px;
}
.performance__item-label {
  background: #f8c058;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  padding: 8px 16px;
  margin-bottom: 5px;
  display: block;
}
.performance__item-desc {
  font-size: 12px;
  margin-top: 4px;
  font-weight: bold;
}
.performance__item--karaoke {
  width: 291px;
  left: 50%;
  top: 15px;
  transform: translate(-50%, 0);
}
.performance__item--karaoke:after {
  bottom: -70px;
  left: 0;
  right: 0;
}
.performance__item--restaurant {
  left: 47px;
  top: 45%;
  transform: translate(0, -50%);
}
.performance__item--restaurant:after {
  top: 20%;
  right: -40px;
  transform: rotate(-70deg);
}
.performance__item--convenience {
  width: 285px;
  right: 68px;
  top: 45%;
  transform: translate(0, -50%);
}
.performance__item--convenience:after {
  top: 20%;
  left: -40px;
  transform: rotate(70deg);
}
.performance__item--convenience .performance__item-body {
  display: block;
  width: 83%;
  padding-top: 10px;
  position: relative;
  text-align: left;
}
.performance__item--convenience .performance__item-header {
  margin-left: 0;
}
.performance__item--convenience .performance__item-category {
  width: 190px;
  margin-left: 7px;
}
.performance__item--convenience .performance__item-label {
  display: inline-block;
  width: 131px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}
.performance__item--convenience .performance__item-img {
  display: inline-block;
}
.performance__item--convenience .performance__item-img.img01 {
  margin: 37px 0 0 12px;
}
.performance__item--convenience .performance__item-img.img02 {
  position: absolute;
  top: 12px;
  right: 8px;
}
.performance__item--cinema {
  left: 13%;
  bottom: 0%;
  transform: translate(0, 0);
}
.performance__item--cinema:after {
  top: -85px;
  right: 0px;
  transform: rotate(-135deg);
}
.performance__item--cinema .performance__item-body {
  display: block;
  width: 90%;
  padding-bottom: 10px;
  position: relative;
}
.performance__item--cinema .performance__item-label {
  display: inline-block;
  width: 130px;
  padding: 8px 0;
}
.performance__item--cinema .performance__item-img {
  text-align: center;
}
.performance__item--cinema .performance__item-img.img01 {
  margin-top: 10px;
}
.performance__item--cinema .performance__item-img.img02 {
  margin: 15px 10px 0 0;
}
.performance__item--cinema .performance__item-img.img03 {
  margin: 15px 0 0 10px;
}
.performance__item--sweets {
  right: 13%;
  bottom: 0%;
  transform: translate(0, 0);
  padding-bottom: 10px;
}
.performance__item--sweets:after {
  top: -70px;
  left: 5px;
  transform: rotate(135deg);
}
.performance__item--sweets .performance__item-body {
  display: block;
  width: 83%;
  padding-top: 5px;
  position: relative;
  text-align: left;
}
.performance__item--sweets .performance__item-label, .performance__item--sweets .performance__item-desc {
  display: inline-block;
  width: 157px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}
.performance__item--sweets .performance__item-desc {
  top: 40px;
}
.performance__item--sweets .performance__item-img.img01 {
  margin: 62px 0 0 10px;
}
.performance__item--sweets .performance__item-img.img02 {
  position: absolute;
  top: 5px;
  right: 8px;
}
.performance__item--sweets .performance__item-img.img03 {
  position: absolute;
  bottom: 5px;
  right: 8px;
}
@media screen and (max-width: 960px) {
  .performance {
    paddign: 60px 0;
  }
  .performance__title {
    font-size: 30px;
  }
  .performance__main {
    min-height: 530px;
  }
  .performance__center {
    width: 250px;
    height: 250px;
  }
  .performance__center-over {
    width: 400px;
    height: 400px;
  }
  .performance__center-logo {
    width: 30px;
  }
  .performance__center-title {
    font-size: 20px;
  }
  .performance__center-sub {
    font-size: 12px;
  }
  .performance__item {
    width: 220px;
    padding: 16px 8px 12px 8px;
  }
  .performance__item:after {
    width: 8px;
    height: 51px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .performance__item-header {
    gap: 10px;
    margin: -42px -15px 0 20px;
  }
  .performance__item-header img {
    width: 50px;
    height: auto;
  }
  .performance__item-header__l {
    margin: -42px 20px 0 -10px;
  }
  .performance__item-category {
    font-size: 12px;
    padding: 8px 0;
    border-radius: 10px;
  }
  .performance__item-label {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 6px;
  }
  .performance__item-desc {
    font-size: 10px;
  }
  .performance__item-body {
    margin: 0;
  }
  .performance__item-body img {
    zoom: 70%;
  }
  .performance__item--karaoke:after {
    bottom: -51px;
  }
  .performance__item--restaurant {
    left: 0;
    top: 40%;
  }
  .performance__item--restaurant:after {
    right: -29px;
  }
  .performance__item--convenience {
    top: 40%;
    right: 0;
  }
  .performance__item--convenience:after {
    left: -28px;
  }
  .performance__item--convenience .performance__item-label {
    width: 120px;
  }
  .performance__item--convenience .performance__item-img.img01 {
    margin: 27px 0 0 30px;
  }
  .performance__item--convenience .performance__item-img.img02 {
    right: -20px;
  }
  .performance__item--cinema {
    left: 10%;
  }
  .performance__item--cinema:after {
    top: -56px;
  }
  .performance__item--cinema .performance__item-label {
    width: auto;
    padding: 3px 6px;
  }
  .performance__item--sweets {
    right: 10%;
  }
  .performance__item--sweets:after {
    top: -56px;
  }
  .performance__item--sweets .performance__item-label {
    width: 120px;
    padding: 3px 6px;
  }
  .performance__item--sweets .performance__item-desc {
    top: 23px;
    left: -19px;
  }
  .performance__item--sweets .performance__item-img.img02 {
    right: -20px;
  }
  .performance__item--sweets .performance__item-img.img03 {
    right: -20px;
  }
}
@media (max-width: 767px) {
  .performance {
    padding: 10.6666666667vw 0 2.6666666667vw;
  }
  .performance__main {
    min-height: 149.3333333333vw;
    margin-bottom: 48vw;
  }
  .performance__header {
    margin-bottom: 12vw;
  }
  .performance__title {
    font-size: 6.4vw;
    margin-bottom: 0;
  }
  .performance__center {
    width: 80vw;
    height: 80vw;
    z-index: 0;
  }
  .performance__center-logo {
    width: 5.3333333333vw;
    margin-top: -3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .performance__center-title {
    font-size: 5.3333333333vw;
    line-height: 1;
    margin: 0;
  }
  .performance__center-sub {
    font-size: 3.2vw;
  }
  .performance__center-over {
    width: 101.3333333333vw;
    height: 101.3333333333vw;
  }
  .performance__item {
    width: 56vw;
    padding: 2.6666666667vw 2.1333333333vw;
    border-radius: 4vw;
    box-shadow: 0 4px 24px rgba(121, 107, 174, 0.4);
  }
  .performance__item-header {
    margin: -9.6vw -4vw 0 2.6666666667vw;
    gap: 2.6666666667vw;
  }
  .performance__item-header img {
    width: 13.3333333333vw;
  }
  .performance__item-body {
    margin-top: -0.8vw;
    gap: 2.6666666667vw;
  }
  .performance__item-category {
    width: 53.3333333333vw;
    padding: 2.1333333333vw 0;
    font-size: 2.8vw;
  }
  .performance__item-label {
    margin-bottom: 1.3333333333vw;
    padding: 1.0666666667vw 1.3333333333vw;
    font-size: 2.8vw;
  }
  .performance__item-desc {
    margin-top: 0.8vw;
    font-size: 2.4vw;
  }
  .performance__item:after {
    transform: none;
    background-image: none;
    width: 1px;
    height: 1px;
    border-left: 1px dashed #796bae;
  }
  .performance__item:before {
    content: "";
    background: #f8c058;
    position: absolute;
    bottom: 0;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-radius: 50%;
    display: block;
    z-index: 2;
  }
  .performance__item--karaoke {
    left: 0;
    top: 0;
    transform: none;
  }
  .performance__item--karaoke:after {
    height: 37.3333333333vw;
    bottom: -37.3333333333vw;
    left: 45%;
    right: auto;
  }
  .performance__item--karaoke:before {
    left: calc(45% - 1.3333333333vw);
    bottom: -40.5333333333vw;
  }
  .performance__item--restaurant {
    left: auto;
    right: 0;
    top: 32vw;
    transform: none;
  }
  .performance__item--restaurant:after {
    height: 6.6666666667vw;
    bottom: -6.6666666667vw;
    top: auto;
    left: 0;
    right: 0;
  }
  .performance__item--restaurant:before {
    left: 0;
    right: 0;
    bottom: -9.3333333333vw;
    margin: auto;
  }
  .performance__item--convenience {
    right: auto;
    left: 0;
    top: 94.6666666667vw;
    transform: none;
    z-index: 4;
  }
  .performance__item--convenience:after {
    height: 9.8666666667vw;
    top: -9.8666666667vw;
    bottom: auto;
    left: auto;
    right: 16vw;
  }
  .performance__item--convenience:before {
    right: 14.8vw;
    top: -10.4vw;
  }
  .performance__item--convenience .performance__item-category {
    width: 52vw;
    margin-left: 0;
  }
  .performance__item--convenience .performance__item-label {
    width: 33.3333333333vw;
  }
  .performance__item--convenience .performance__item-body {
    width: 88%;
    padding-top: 1.6vw;
  }
  .performance__item--convenience .performance__item-img.img01 {
    margin: 8.6666666667vw 0 0 8.6666666667vw;
  }
  .performance__item--convenience .performance__item-img.img02 {
    right: -7.3333333333vw;
  }
  .performance__item--cinema {
    left: auto;
    right: -4vw;
    bottom: -7.3333333333vw;
    transform: none;
  }
  .performance__item--cinema:after {
    height: 40.6666666667vw;
    top: -40.6666666667vw;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
  .performance__item--cinema:before {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -41.7333333333vw;
  }
  .performance__item--cinema .performance__item-header {
    margin: -9.6vw 0 0 -5.3333333333vw;
  }
  .performance__item--cinema .performance__item-label {
    padding: 1.0666666667vw 1.3333333333vw;
  }
  .performance__item--cinema .performance__item-body {
    width: 100%;
    padding-bottom: 1.3333333333vw;
  }
  .performance__item--cinema .performance__item-img.img01 {
    margin: 0vw 0 0 0vw;
  }
  .performance__item--cinema .performance__item-img.img02 {
    margin: 4vw 2.6666666667vw 0 0;
  }
  .performance__item--cinema .performance__item-img.img03 {
    margin: 4vw 0 0 2.6666666667vw;
  }
  .performance__item--sweets {
    right: auto;
    left: 0;
    bottom: -50.6666666667vw;
    transform: none;
  }
  .performance__item--sweets:after {
    height: 78.6666666667vw;
    top: -78.6666666667vw;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
  .performance__item--sweets:before {
    left: 0;
    right: 0;
    top: -80.2666666667vw;
    margin: 0 auto;
  }
  .performance__item--sweets .performance__item-body {
    width: 90%;
    padding-top: 0;
  }
  .performance__item--sweets .performance__item-img {
    margin-top: 1.3333333333vw;
    margin-left: 1.3333333333vw;
  }
  .performance__item--sweets .performance__item-label {
    width: 29.3333333333vw;
    padding: 0.8vw 1.3333333333vw;
  }
  .performance__item--sweets .performance__item-desc {
    top: 5.8666666667vw;
    left: 0;
    width: auto;
  }
  .performance__item--sweets .performance__item-img.img01 {
    margin: 17.3333333333vw 0 0 0vw;
  }
  .performance__item--sweets .performance__item-img.img02 {
    right: -2vw;
  }
  .performance__item--sweets .performance__item-img.img03 {
    right: -2vw;
  }
}

.performance-detail {
  max-width: 1000px;
  margin: 88px auto 70px;
}
.performance-detail__body {
  display: flex;
  gap: 20px;
  padding: 40px 5px;
  align-items: flex-start;
}
.performance-detail__logo {
  display: flex;
  font-weight: bold;
  font-size: 18px;
  align-items: center;
  gap: 25px;
}
.performance-detail__logo .line {
  display: block;
  width: 650px;
  margin-left: 10px;
  margin-top: -1px;
  border-bottom: 2px dashed #796bae;
}
.performance-detail__left {
  flex: 1 1 0;
  min-width: 0;
}
.performance-detail__left .performance-detail__title {
  font-weight: bold;
  margin-bottom: 8px;
}
.performance-detail__left .performance-detail__lead {
  font-size: 30px;
  font-weight: bold;
  color: #00001c;
  margin-bottom: 18px;
}
.performance-detail__left .performance-detail__img {
  overflow: hidden;
}
.performance-detail__right {
  flex: 1 1 0;
}
.performance-detail__section {
  padding: 0 10px;
  margin-bottom: 0;
}
.performance-detail__section-title {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #796bae;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.4);
}
.performance-detail__tags {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.performance-detail__tag--active {
  display: inline-block;
  background: #f8c058;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  width: calc((100% - 30px) / 3);
  text-align: center;
}
.performance-detail__list {
  margin: 15px 0;
  color: #00001c;
}
.performance-detail__list li {
  margin-bottom: 7px;
  position: relative;
  padding: 0 0 0 40px;
}
.performance-detail__list li:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 16px;
  height: 12px;
  display: block;
  background: url("/wp-content/themes/regiless/assets/images/top/performance-check.png") no-repeat center/contain;
}
.performance-detail__devices {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.performance-detail__devices span {
  width: calc((100% - 30px) / 3);
  background: #fff;
  border-radius: 15px;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
.performance-detail__devices span.icon1:after {
  content: url("/wp-content/themes/regiless/assets/images/top/performance-detail03.png");
  position: absolute;
  bottom: -15px;
  right: 10px;
}
.performance-detail__devices span.icon2:after {
  content: url("/wp-content/themes/regiless/assets/images/top/performance-detail04.png");
  position: absolute;
  bottom: -15px;
  right: 10px;
}
.performance-detail__brands {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.performance-detail__brands span {
  font-size: 12px;
  font-weight: bold;
}
.performance-detail__section--effect {
  position: relative;
  margin: 30px auto 50px;
}
.performance-detail__effect-tit {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: #f8c058;
  position: absolute;
  top: -18px;
  left: 35px;
}
.performance-detail__effects {
  background: #fff;
  border-radius: 20px;
  border: 7px solid #f8c058;
  margin: 0;
  padding: 25px 40px;
  list-style: none;
  display: flex;
  gap: 15px;
}
.performance-detail__effects li {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  font-weight: bold;
  padding-left: 30px;
}
.performance-detail__effects li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 13px;
  width: 16px;
  height: 12px;
  display: block;
  background: url("/wp-content/themes/regiless/assets/images/top/performance-check.png") no-repeat center/contain;
}
.performance-detail__more {
  text-align: center;
  margin: 25px auto 0;
}
.performance-detail__more .btn {
  border-radius: 999px;
  padding: 12px 60px;
  font-size: 14px;
  border: 1px solid #796bae;
  color: #796bae;
  background: #fff;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.3);
}
@media screen and (max-width: 960px) {
  .performance-detail {
    margin: 60px auto 0;
  }
  .performance-detail__logo {
    gap: 10px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
  }
  .performance-detail__logo img {
    zoom: 70%;
  }
  .performance-detail__logo .line {
    max-width: 65%;
  }
  .performance-detail__body {
    font-size: 14px;
  }
  .performance-detail__left .performance-detail__lead {
    font-size: 24px;
    margin-bottom: 18px;
  }
  .performance-detail__section-title {
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 10px;
  }
  .performance-detail__tag--active {
    font-size: 12px;
    width: auto;
    padding: 5px 14px;
    border-radius: 8px;
  }
  .performance-detail__devices {
    gap: 10px;
  }
  .performance-detail__devices span {
    padding: 20px 0;
    font-size: 12px;
  }
  .performance-detail__devices span.icon1:after, .performance-detail__devices span.icon2:after {
    zoom: 70%;
  }
  .performance-detail__brands img {
    zoom: 60%;
  }
  .performance-detail__brands span {
    font-size: 10px;
  }
  .performance-detail__effects {
    gap: 20px;
    padding: 20px;
    border-width: 3px;
    border-radius: 16px;
    font-size: 14px;
  }
  .performance-detail__effects li {
    padding: 8px 8px 8px 20px;
  }
}
@media (max-width: 767px) {
  .performance-detail {
    padding: 13.3333333333vw 0 0;
  }
  .performance-detail__logo {
    font-size: 3.7333333333vw;
  }
  .performance-detail__logo .icon {
    zoom: 50%;
  }
  .performance-detail__logo .line {
    border-width: 1px;
    max-width: 35%;
  }
  .performance-detail__body {
    padding: 5.3333333333vw 0;
    flex-direction: column;
    font-size: 2.8vw;
  }
  .performance-detail__left .performance-detail__lead {
    font-size: 6.4vw;
    letter-spacing: -0.2666666667vw;
    line-height: 1.3;
  }
  .performance-detail__right .performance-detail__section-title {
    font-size: 3.4666666667vw;
    margin-bottom: 2.6666666667vw;
  }
  .performance-detail__section {
    padding: 0;
  }
  .performance-detail__tags {
    gap: 2.6666666667vw;
  }
  .performance-detail__tag {
    font-size: 2.8vw;
  }
  .performance-detail__list li {
    font-size: 3.2vw;
    padding-left: 8vw;
  }
  .performance-detail__list li::before {
    zoom: 80%;
  }
  .performance-detail__brands {
    justify-content: center;
  }
  .performance-detail__brands img {
    width: 85.3333333333vw;
    height: auto;
    max-width: 380px;
  }
  .performance-detail__brands span {
    margin-top: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
  .performance-detail__section--effect {
    margin: 4vw auto 8vw;
  }
  .performance-detail__effect-tit {
    padding: 1.6vw 5.3333333333vw;
    font-size: 3.2vw;
    border-radius: 2.1333333333vw;
    left: 4vw;
  }
  .performance-detail__effects {
    margin-top: 6.6666666667vw 4vw;
    padding: 6.6666666667vw 4vw;
    gap: 1.3333333333vw;
    flex-direction: column;
    border-radius: 2.1333333333vw;
    font-size: 3.2vw;
  }
  .performance-detail__effects li {
    padding: 0 0 0 4vw;
  }
  .performance-detail__effects li:before {
    zoom: 70%;
    top: 1.3333333333vw;
  }
  .performance-detail__more {
    width: 70%;
    margin: 3rem auto;
  }
  .performance-detail__more .btn {
    width: 100%;
  }
}

.performance-others {
  margin: 56px auto;
  max-width: 1050px;
}
.performance-others__title {
  font-size: 30px;
  font-weight: bold;
  color: #00001c;
  text-align: center;
  margin-bottom: 32px;
}
.performance-others__list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
.performance-others__item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.1);
  width: calc((100% - 36px) / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  transition: all 0.3s;
}
.performance-others__item:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.performance-others__img {
  width: 100%;
  overflow: hidden;
}
.performance-others__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.performance-others__body {
  width: 100%;
  padding: 0 13px 20px 25px;
}
.performance-others__name {
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.performance-others__desc {
  color: #00001c;
  margin-bottom: 35px;
}
.performance-others__desc-tit {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 3px;
}
.performance-others__tags {
  display: flex;
  gap: 12px;
}
.performance-others__tags span {
  color: #9a9a9a;
  font-size: 11px;
  font-weight: bold;
}
.performance-others__more {
  text-align: center;
}
.performance-others__more .btn {
  border-radius: 999px;
  padding: 12px 48px;
  font-size: 16px;
}
@media screen and (max-width: 960px) {
  .performance-others {
    padding: 0;
    margin: 50px 0 0;
  }
  .performance-others__title {
    font-size: 24px;
  }
  .performance-others__item {
    width: calc((100% - 30px) / 3);
  }
  .performance-others__body {
    padding: 0 15px 15px;
  }
  .performance-others__name {
    height: 65px;
  }
  .performance-others__name img {
    zoom: 80%;
  }
  .performance-others__desc {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .performance-others__desc-tit {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .performance-others {
    margin: 12vw 0 0;
  }
  .performance-others__title {
    font-size: 6.4vw;
  }
  .performance-others__list {
    flex-direction: column;
    padding: 0 2.1333333333vw;
    margin-bottom: 0;
    gap: 8vw;
  }
  .performance-others__item {
    width: 100%;
  }
  .performance-others__body {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
  .performance-others__name {
    height: auto;
    padding: 5.3333333333vw 0;
  }
  .performance-others__name img {
    zoom: 100%;
  }
  .performance-others__desc {
    font-size: 3.7333333333vw;
  }
  .performance-others__desc-tit {
    font-size: 4.4vw;
  }
}

.reasons {
  background: #fff;
  padding: 120px 0 60px 0;
}
.reasons .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.reasons .section__icon {
  text-align: center;
  margin-bottom: 12px;
}
.reasons .section__icon img {
  height: 32px;
}
.reasons__title {
  font-size: 42px;
  font-weight: bold;
  color: #00001c;
  text-align: center;
  margin-bottom: 48px;
}
.reasons__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
}
.reasons__item {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reasons__icon {
  width: auto;
  height: 255px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  position: relative;
}
.reasons__item-title {
  height: 3em;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
.reasons__item-text {
  padding: 0.8em;
  text-align: left;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .reasons {
    padding: 40px 0;
  }
  .reasons__title {
    font-size: 30px;
  }
  .reasons__list {
    gap: 10px;
  }
  .reasons__icon {
    height: 180px;
  }
  .reasons__item {
    width: 24%;
  }
  .reasons__item-title {
    font-size: 14px;
    height: 2.5em;
  }
  .reasons__item-text {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .reasons {
    padding: 10.6666666667vw 0;
  }
  .reasons .container {
    padding: 0 2vw;
  }
  .reasons__title {
    font-size: 6.4vw;
    margin-bottom: 6.4vw;
  }
  .reasons__list {
    flex-direction: column;
    gap: 4vw;
  }
  .reasons__item {
    flex-direction: row;
    width: 100%;
    gap: 0;
    justify-content: flex-start;
    gap: 1.3333333333vw;
  }
  .reasons__item-title {
    height: auto;
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
  .reasons__item-text {
    padding: 0;
    font-size: 3.4666666667vw;
    line-height: 1.5;
  }
  .reasons__icon {
    width: 32%;
    max-width: 40vw;
    height: auto;
    margin: 0;
  }
  .reasons__text {
    width: 68%;
    text-align: left;
  }
}

.reasons-contact {
  background: #eff0f0;
  padding: 90px 0 90px 0;
}
.reasons-contact .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.reasons-contact__grid {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: stretch;
}
.reasons-contact__title {
  font-size: 18px;
  font-weight: bold;
  color: #00001c;
  margin-bottom: 12px;
}
.reasons-contact__text {
  font-size: 14px;
  color: #00001c;
  margin-bottom: 28px;
  line-height: 1.7;
}
.reasons-contact__btn {
  display: inline-block;
  padding: 18px 50px;
  border-radius: 30px;
  font-size: 16px;
  background-color: #f8c058;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
  border: none;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
  margin-top: 8px;
  margin-bottom: 0;
  outline: none;
}
.reasons-contact__btn:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.reasons-contact__btn.btn--primary {
  background-color: #f8c058;
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
}
.reasons-contact__btn.btn--secondary {
  background-color: #796bae;
  box-shadow: 0 0 20px rgba(121, 107, 174, 0.9);
}
@media screen and (max-width: 960px) {
  .reasons-contact__grid {
    gap: 40px;
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .reasons-contact {
    padding: 10.6666666667vw 0 16vw;
  }
  .reasons-contact .container {
    padding: 0 2vw;
  }
  .reasons-contact__grid {
    flex-direction: column;
    gap: 9.3333333333vw;
    width: 90%;
  }
  .reasons-contact__title {
    margin-bottom: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .reasons-contact__text {
    margin-bottom: 3.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .reasons-contact__btn {
    padding: 4vw 10.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.sp-cta-buttons {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#add-top .mv {
  margin-top: 0;
}
#add-top .sp-cta-buttons {
  display: flex !important;
  justify-content: center;
  gap: 20px;
  align-items: flex-end;
  background: #796bae;
  padding: 20px 0;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  z-index: 1000;
  box-shadow: 0 -2px 16px rgba(121, 107, 174, 0.1);
  font-size: 16px;
  font-weight: bold;
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
}
#add-top .sp-cta-buttons.is-fixed {
  opacity: 1;
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: visible;
}

.sp-cta-btn {
  display: block;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 12px 0;
  width: 200px;
  max-width: 300px;
  min-width: 180px;
  transition: opacity 0.2s;
  box-shadow: 0 2px 8px rgba(121, 107, 174, 0.15);
  line-height: 1.2;
  border: none;
  text-decoration: none;
}

.sp-cta-btn--contact {
  background: #fff;
  color: #796bae;
  border: 2px solid #fff;
}

.sp-cta-btn--dl {
  background: #f8c058;
  color: #fff;
  border: 2px solid #f8c058;
  position: relative;
  z-index: 1;
}

.sp-cta-btn-wrap {
  position: relative;
  display: flex;
}

.sp-cta-bubble {
  position: absolute;
  top: -65px;
  right: -8px;
  transform: translateX(48%) rotate(10deg);
  background: #fff;
  color: #796bae;
  font-weight: bold;
  font-size: 12px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(121, 107, 174, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: none;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.02em;
  z-index: 2;
}
.sp-cta-bubble span {
  font-size: 23px;
  font-weight: bold;
  margin-top: -5px;
}
.sp-cta-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 36%;
  transform: translateX(-50%) rotate(16deg);
  border-width: 15px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  width: 0;
  height: 0;
  display: block;
}

.sp-cta-btn:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .sp-cta-buttons {
    display: flex !important;
    position: absolute;
  }
  .sp-cta-buttons.is-fixed {
    display: flex;
    justify-content: center;
    gap: 5vw;
    align-items: flex-end;
    background: #796bae;
    padding: 4vw 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    margin: 0;
    z-index: 1000;
    box-shadow: 0 -2px 16px rgba(121, 107, 174, 0.1);
    font-size: 3.0666666667vw;
    font-weight: bold;
    opacity: 1;
    pointer-events: auto;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sp-cta-btn {
    display: block;
    border-radius: 10.6666666667vw;
    font-weight: bold;
    font-size: 3.0666666667vw;
    text-align: center;
    padding: 2.4vw 0;
    width: 42vw;
    max-width: 56vw;
    min-width: 32vw;
    transition: opacity 0.2s;
    box-shadow: 0 2px 8px rgba(121, 107, 174, 0.15);
    line-height: 1.2;
    border: none;
    text-decoration: none;
  }
  .sp-cta-btn--contact {
    background: #fff;
    color: #796bae;
    border: 2px solid #fff;
  }
  .sp-cta-btn--dl {
    background: #f8c058;
    color: #fff;
    border: 2px solid #f8c058;
    position: relative;
    z-index: 1;
  }
  .sp-cta-btn-wrap {
    position: relative;
    display: flex;
  }
  .sp-cta-bubble {
    position: absolute;
    top: -13.3333333333vw;
    right: 0;
    transform: translateX(-50%);
    background: #fff;
    color: #796bae;
    font-weight: bold;
    font-size: 2.4vw;
    width: 13.8666666667vw;
    height: 13.8666666667vw;
    padding: 2.6666666667vw;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(121, 107, 174, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: none;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.02em;
    z-index: 2;
  }
  .sp-cta-bubble span {
    font-size: 5.0666666667vw;
    font-weight: bold;
    margin-top: 2px;
  }
  .sp-cta-bubble::after {
    content: "";
    position: absolute;
    bottom: -1.3333333333vw;
    left: 50%;
    transform: translateX(-50%);
    border-width: 2.6666666667vw 2.1333333333vw 0 2.1333333333vw;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    width: 0;
    height: 0;
    display: block;
  }
  .sp-cta-btn:hover {
    opacity: 0.8;
  }
}
.home .grecaptcha-badge {
  display: none;
}

/* 共通パンくずリスト */
.breadcrumb {
  font-size: 12px;
  margin-bottom: 1.5em;
}
.breadcrumb a {
  color: #796bae;
  text-decoration: none;
  font-weight: bold;
}
.breadcrumb__arrow {
  display: inline-block;
  padding: 0 0 0 1em;
}
.breadcrumb__current {
  color: #333;
  font-weight: bold;
}
.breadcrumb__current--sp-trim {
  display: none;
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 3.2vw;
    margin-bottom: 3.2vw;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb__single .breadcrumb__current {
    display: none;
  }
  .breadcrumb__single .breadcrumb__current--sp-trim {
    display: inline;
  }
}
/* 前後記事リンク（共通） */
.single__pager {
  display: flex;
  justify-content: space-between;
  margin: 3em 0 2em 0;
}
.single__pager a {
  color: #796bae;
  font-weight: bold;
  font-size: 16px;
}

a.single__prev {
  position: relative;
  padding-left: 2.5em;
}
a.single__prev:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("/wp-content/themes/regiless/assets/images/single/news-arrow.png") no-repeat center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}

a.single__next {
  position: relative;
  padding-right: 2.5em;
}
a.single__next:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("/wp-content/themes/regiless/assets/images/single/news-arrow.png") no-repeat center;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  a.single__prev {
    padding-left: 4vw;
  }
  a.single__prev:before {
    content: "";
    width: 3.2vw;
    height: 3.2vw;
  }
  a.single__next {
    padding-right: 4vw;
  }
  a.single__next:before {
    content: "";
    width: 3.2vw;
    height: 3.2vw;
  }
  .single__pager {
    margin: 2em 0 1.5em 0;
  }
  .single__pager a {
    font-size: 3.7333333333vw;
  }
}
/* 実例詳細ページ */
.case-container {
  margin-top: 80px;
  padding-top: 20px;
  overflow: hidden;
}
.case-container .case-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
}
.case-container .case-logo {
  width: auto;
}
.case-container .case-logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
}
.case-container .case-title {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 12px 0;
}
.case-container .case-tags {
  display: flex;
  gap: 10px;
  margin: 0.3em 0 0 0;
}
.case-container .case-tag {
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid #999;
  padding: 0.6em 1.5em;
  background: #fff;
  color: #333;
}
.case-container .case-content {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.case-container .case-content .wp-element-caption {
  margin: 1em auto;
  font-size: 12px;
  text-align: center;
}
.case-container .case-content .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
  display: none;
}
.case-container .case-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  margin: 1em auto;
  font-size: 12px;
  text-align: center;
  position: relative;
  background: none;
  color: #333;
  text-shadow: none;
  padding: 0;
}
.case-container .case-content figure.wp-block-gallery.has-nested-images {
  gap: 1em;
  justify-content: center;
}
.case-container .case-content .wp-block-image.size-full {
  width: 50%;
  margin: 0 auto 3rem;
}
.case-container .case-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2), .case-container .case-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image), .case-container .case-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  width: calc(50% - 0.5em);
  flex-grow: inherit;
}
.case-container .case-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
  max-width: fit-content !important;
  margin: 0 auto;
  max-height: 320px;
  min-width: 100%;
}
.case-container .case-content .wp-block-media-text__content {
  padding: 0 8% 0 0;
  align-self: flex-start;
}
.case-container .case-content [class^=wp-block-] {
  margin-bottom: 3rem;
}
.case-container .case-content h2 {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-top: 2.5em;
  margin-bottom: 1em;
}
.case-container .case-content h2::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  background: url("/wp-content/themes/regiless/assets/images/title-icon.png") no-repeat center/contain;
}
.case-container .case-content p, .case-container .case-content li {
  font-size: 16px;
}
.case-container .case-content p:before, .case-container .case-content li:before {
  content: "・";
  margin-right: 4px;
}
.case-container .case-content figure.wp-caption {
  margin: 0 0 24px 0;
  text-align: center;
}
.case-container .case-content figure.wp-caption img {
  display: block;
  margin: 0 auto;
}
.case-container .case-content figure.wp-caption .wp-element-caption {
  font-size: 12px;
  color: #333333;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .case-container {
    padding-top: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
  .case-container .case-logo {
    zoom: 80%;
  }
  .case-container .case-title {
    font-size: 6.4vw;
    margin: 2.6666666667vw 0 3.2vw 0;
    line-height: 1.3;
  }
  .case-container .case-tag {
    font-size: 2.9333333333vw;
  }
  .case-container .case-content {
    font-size: 4.2666666667vw;
    letter-spacing: -0.05em;
    line-height: 1.6;
    margin-bottom: 10.6666666667vw;
  }
  .case-container .case-content .wp-element-caption {
    font-size: 2.9333333333vw;
  }
  .case-container .case-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    font-size: 2.9333333333vw;
  }
  .case-container .case-content figure.wp-block-gallery.has-nested-images {
    gap: 2.6666666667vw;
  }
  .case-container .case-content .wp-block-image.size-full {
    width: 100%;
  }
  .case-container .case-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2), .case-container .case-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image), .case-container .case-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: 100%;
  }
  .case-container .case-content [class^=wp-block-] {
    margin-bottom: 2rem;
  }
  .case-container .case-content h2 {
    font-size: 5.3333333333vw;
    margin-top: 5.3333333333vw;
    margin-bottom: auto;
  }
  .case-container .case-content h2::before {
    zoom: 80%;
  }
  .case-container .case-content p, .case-container .case-content li {
    font-size: 4.2666666667vw;
  }
  .case-container .case-content p:before, .case-container .case-content li:before {
    margin-right: 0;
  }
  .case-container .case-content figure.wp-caption .wp-element-caption {
    font-size: 2.9333333333vw;
  }
}

.case-main .performance-others {
  max-width: 100%;
  margin-top: 80px;
  margin-bottom: 0;
  padding: 80px 0 40px;
  background: #fff;
}
.case-main .performance-others__title {
  font-size: 18px;
}
.case-main .performance-others__list {
  margin: 0 auto;
  max-width: 1050px;
}
.case-main .performance-others__item {
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .case-main .performance-others {
    margin-top: 10.6666666667vw;
    padding: 10.6666666667vw 0;
  }
  .case-main .performance-others__list {
    width: 95%;
  }
}
.case-main .performance-detail__more {
  margin-top: 40px;
}
.case-main .performance-detail__more a {
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.3);
}
@media (max-width: 767px) {
  .case-main .performance-detail__more {
    margin-top: 8vw;
  }
}

.case-archive {
  margin-top: 80px;
  padding-top: 20px;
  padding-bottom: 80px;
}
.case-archive .container {
  background: url("/wp-content/themes/regiless/assets/images/single/case-bg.png") no-repeat top center;
  background-size: 100%;
}
.case-archive__title {
  font-size: 30px;
  font-weight: bold;
  margin: 60px auto;
  text-align: center;
}
.case-archive__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
}
.case-archive__card {
  width: calc(33.3333333333% - 0.8em);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  border: 1px solid #ccc;
}
.case-archive__card:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.case-archive__card a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.case-archive__card__thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.case-archive__card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-archive__card__body {
  padding: 0 20px 25px 25px;
}
.case-archive__card__logo {
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case-archive__card__logo img {
  max-width: 120px;
  height: auto;
  max-height: 65px;
}
.case-archive__card__breadcrumb {
  font-size: 14px;
  font-weight: bold;
}
.case-archive__card__title {
  font-size: 16px;
  margin: 8px 0 0 0;
  color: #222;
}
.case-archive__card__tags {
  margin: 2em 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.case-archive__card__tag {
  font-size: 11px;
  color: #999;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .case-archive {
    padding: 0;
    margin: 1rem 0 0;
  }
  .case-archive__title {
    margin: 2.5rem auto;
    font-size: 2.4rem;
  }
  .case-archive__card__body {
    padding: 0 15px 15px;
  }
  .case-archive__card__logo {
    height: 65px;
  }
  .case-archive__card__logo img {
    zoom: 80%;
  }
  .case-archive__card__title {
    font-size: 14px;
  }
  .case-archive__card__breadcrumb {
    font-size: 12px;
  }
  .case-archive__card__tags {
    margin-top: 1.5em;
  }
}
@media (max-width: 767px) {
  .case-archive {
    padding-top: 2.6666666667vw;
  }
  .case-archive__title {
    font-size: 6.4vw;
  }
  .case-archive__list {
    flex-direction: column;
    padding: 0 1.3333333333vw;
    gap: 8vw;
  }
  .case-archive__card {
    width: 100%;
  }
  .case-archive__card__body {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
  .case-archive__card__logo {
    height: auto;
    padding: 5.3333333333vw 0;
  }
  .case-archive__card__logo img {
    zoom: 100%;
  }
  .case-archive__card__title {
    font-size: 3.7333333333vw;
  }
  .case-archive__card__breadcrumb {
    font-size: 4.4vw;
  }
}
.case-archive .performance-detail__more {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .case-archive .performance-detail__more {
    margin-top: 8vw;
  }
}

.news-archive {
  margin-top: 80px;
  padding-top: 20px;
  padding-bottom: 80px;
}
.news-archive .container {
  background: url("/wp-content/themes/regiless/assets/images/single/case-bg.png") no-repeat top center;
  background-size: 100%;
}
.news-archive__title {
  font-size: 30px;
  font-weight: bold;
  margin: 60px auto;
  text-align: center;
}
.news-archive .news__list {
  width: 100%;
  max-width: 780px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-archive .news__item {
  display: flex;
  align-items: center;
  padding: 20px 5px 20px 5px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  transition: background 0.2s;
}
.news-archive .news__item .news__date {
  color: #999999;
  min-width: 110px;
  font-weight: bold;
  font-size: 14px;
}
.news-archive .news__item .news__title {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
}
.news-archive .news__item:hover {
  opacity: 0.7;
}
.news-archive .news__item::after {
  content: "";
  width: 7px;
  height: 13px;
  background: url("/wp-content/themes/regiless/assets/images/top/arrow-right.png") no-repeat center;
  background-size: contain;
  margin-left: 1.5em;
}
@media (max-width: 767px) {
  .news-archive {
    margin: 2.6666666667vw auto;
    padding: 2.6666666667vw 0 5.3333333333vw;
  }
  .news-archive__title {
    font-size: 6.4vw;
    margin: 6.6666666667vw auto;
  }
  .news-archive .news__list {
    margin-bottom: 10.6666666667vw;
  }
  .news-archive .news__item {
    padding: 3.2vw 0.8vw 4vw;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .news-archive .news__item .news__date {
    min-width: 18.6666666667vw;
    font-size: 3.2vw;
  }
  .news-archive .news__item .news__title {
    font-size: 3.4666666667vw;
    text-align: left;
    margin: 0;
  }
  .news-archive .news__item::after {
    display: none;
  }
}
.news-archive .performance-detail__more {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .news-archive .performance-detail__more {
    margin-top: 8vw;
  }
}

.news-single {
  margin: 80px auto 100px;
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.news-single .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-single .breadcrumb {
  margin-bottom: 2em;
}
.news-single__title {
  font-size: 28px;
  font-weight: bold;
  margin: 2em auto 1em;
  text-align: left;
  line-height: 1.3;
}
.news-single__title-underline {
  height: 1px;
  width: 100%;
  border: none;
  background: linear-gradient(to right, #796bae 16%, #ccc 16%, #ccc 100%);
  margin-bottom: 1em;
}
.news-single__date {
  color: #666;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2.5em;
  text-align: right;
}
.news-single__content {
  line-height: 1.8;
  margin-bottom: 6rem;
}
.news-single__content a {
  color: #796bae;
  text-decoration: none;
  word-break: break-all;
}
.news-single__content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1.5em;
  margin-top: 2.5em;
}
.news-single__content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 2em;
}
.news-single__content p, .news-single__content ul, .news-single__content ol, .news-single__content blockquote, .news-single__content pre, .news-single__content table {
  margin-bottom: 1.8em;
}
.news-single__content img, .news-single__content figure {
  display: block;
  margin: 3em auto 0;
  width: auto;
  max-width: 100%;
  height: auto;
}
.news-single__content .wp-block-image {
  margin-bottom: 3em;
}
.news-single__content .wp-element-caption {
  font-size: 12px;
  color: #333333;
  margin-top: 8px;
  text-align: center;
}
@media (max-width: 767px) {
  .news-single {
    margin: 2.6666666667vw auto;
    padding-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .news-single .container {
    width: 90%;
    padding: 0;
  }
  .news-single .breadcrumb {
    margin-bottom: 4vw;
  }
  .news-single__title {
    margin: 1.5em auto 1em;
    line-height: 1.3;
    font-size: 6.4vw;
  }
  .news-single__title-underline {
    background: linear-gradient(to right, #796bae 30%, #ccc 30%, #ccc 100%);
  }
  .news-single__date {
    margin-bottom: 2em;
    font-size: 3.7333333333vw;
  }
  .news-single__content {
    line-height: 1.8;
  }
  .news-single__content h2 {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
    margin-top: 4vw;
    line-height: 1.3;
  }
  .news-single__content h3 {
    font-size: 3.7333333333vw;
    margin-top: 4vw;
  }
  .news-single__content p, .news-single__content ul, .news-single__content ol, .news-single__content blockquote, .news-single__content pre, .news-single__content table {
    margin-bottom: 4vw;
  }
  .news-single__content img, .news-single__content figure {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2em auto 0;
  }
  .news-single__content .wp-block-image {
    margin-bottom: 2em;
  }
  .news-single__content .wp-element-caption {
    font-size: 2.9333333333vw;
  }
}

/**/
.seminar-single {
  margin: 80px 0;
  padding-top: 20px;
}
.seminar-single a {
  color: #796bae;
}
.seminar-single .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.seminar-single__columns {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 4rem auto;
}
.seminar-single__left {
  min-width: 0;
  width: 50%;
}
.seminar-single__right {
  flex: 1 1 40%;
  min-width: 320px;
  max-width: 400px;
}
.seminar-single__image {
  margin-bottom: 2.5em;
}
.seminar-single__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 8px rgba(121, 107, 174, 0.2);
}
.seminar-single__cats {
  margin-bottom: 1em;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.seminar-single__cat {
  font-size: 12px;
  padding: 5px 20px;
  border-radius: 6px;
  color: #796bae;
  border: 1px solid #796bae;
  background: none;
  font-weight: bold;
  display: inline-block;
}
.seminar-single__cat.category-reception {
  background: #796bae;
  color: #fff;
}
.seminar-single__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1.5em;
  line-height: 1.3;
}
.seminar-single__section-title {
  font-size: 24px;
  font-weight: bold;
  color: #796bae;
  margin-top: 30px;
}
.seminar-single__topics {
  padding: 0.5em 0.8em;
  margin-bottom: 1em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}
.seminar-single__recommend {
  background: #f7f8f8;
  border-radius: 8px;
  padding: 1.8em 2.5em 2.2em 2.5em;
  margin-bottom: 1.5em;
}
.seminar-single__recommend-title {
  font-size: 24px;
  font-weight: bold;
  color: #796bae;
}
.seminar-single__recommend-list {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
  margin-top: 1.5em;
  padding-left: 1.8em;
}
.seminar-single__recommend-body {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
}
.seminar-single__recommend-body:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/wp-content/themes/regiless/assets/images/single/seminar-check.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: -27px;
  top: 1px;
}
.seminar-single__outline {
  display: none;
  margin-bottom: 1.5em;
}
.seminar-single__outline-title {
  font-size: 24px;
  font-weight: bold;
  color: #796bae;
}
.seminar-single__outline-body {
  padding: 0.3em 0.5em 0 1em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  word-break: break-all;
}
.seminar-single__outline-body p {
  margin-bottom: 0.8em;
}
.seminar-single__columns--normal .seminar-single__right {
  max-width: 450px;
}
.seminar-single__columns--normal .seminar-single__section-title {
  margin-top: 0;
}
.seminar-single__columns--normal .seminar-single__outline {
  display: block;
}
.seminar-single .seminar-single__application {
  margin-top: 3em;
}
.seminar-single .seminar-single__application-btn {
  background: #f8c058;
  margin-top: 1em;
  padding: 0.9em 0;
  font-size: 14px;
  width: 260px;
  text-align: center;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
}
.seminar-single__right .wpcf7-form {
  font-size: 12px;
  font-weight: bold;
}
.seminar-single__right .wpcf7-form p {
  margin: 0;
}
.seminar-single__right .wpcf7-form .notice {
  margin-bottom: 1.8em;
}
.seminar-single__right .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  display: inline-block;
  margin: 0.3em 0 1em;
}
.seminar-single__right .wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 0.9em 1.2em;
  border: 1px solid #dee0df;
  border-radius: 4px;
}
.seminar-single__right .wpcf7-form .form-row--name {
  display: flex;
  gap: 1em;
}
.seminar-single__right .wpcf7-form .form-row--name br {
  display: none;
}
.seminar-single__right .wpcf7-form .checkbox {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding: 4px 0;
  font-weight: normal;
}
.seminar-single__right .wpcf7-form .checkbox br {
  display: none;
}
.seminar-single__right .wpcf7-form .checkbox .wpcf7-form-control-wrap {
  width: auto;
  margin: 0;
}
.seminar-single__right .wpcf7-form .checkbox .wpcf7-acceptance {
  display: inline-block;
  border: 0;
  padding: 0;
}
.seminar-single__right .wpcf7-form .checkbox .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.seminar-single__right .wpcf7-form .checkbox .wpcf7-acceptance .form-acceptance {
  margin: 0;
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.seminar-single__right .wpcf7-form .checkbox a {
  font-weight: normal;
  text-decoration: underline;
}
.seminar-single__right .wpcf7-form .wpcf7-form-control.wpcf7-submit {
  width: 70%;
  border-radius: 8px;
  margin-left: 15%;
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}
.seminar-single__right .wpcf7-form .wpcf7-form-control.wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.seminar-single__right .wpcf7-form .wpcf7-form-control.wpcf7-submit:disabled:hover {
  transform: translateY(0);
  opacity: 0.8;
}
@media screen and (max-width: 960px) {
  .seminar-single {
    padding-top: 0;
  }
  .seminar-single .container {
    padding: 0 15px;
  }
  .seminar-single__columns {
    gap: 1.5em;
  }
  .seminar-single__left {
    width: 50%;
  }
  .seminar-single__right {
    width: 45%;
  }
  .seminar-single__image {
    margin-bottom: 1.5em;
  }
}
@media (max-width: 767px) {
  .seminar-single {
    margin: 5.3333333333vw auto;
    padding-top: 2.6666666667vw;
  }
  .seminar-single__columns {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin: 5.3333333333vw auto 0;
  }
  .seminar-single__left {
    width: 100%;
  }
  .seminar-single__image {
    margin-bottom: 1em;
  }
  .seminar-single__cats {
    margin-top: 1.5em;
  }
  .seminar-single__cat {
    font-size: 3.2vw;
    padding: 0.5em 1.5em;
  }
  .seminar-single__title {
    font-size: 6.1333333333vw;
    line-height: 1.5;
  }
  .seminar-single__section-title {
    font-size: 6.6666666667vw;
    margin-top: 4vw;
  }
  .seminar-single__topics {
    font-size: 4vw;
  }
  .seminar-single__recommend {
    padding: 1em 1.2em 1.2em 1.5em;
    line-height: 1.5;
  }
  .seminar-single__recommend-title {
    font-size: 6.6666666667vw;
  }
  .seminar-single__recommend-list {
    gap: 0.5em;
    margin-top: 1em;
    padding-left: 1.3em;
  }
  .seminar-single__recommend-body {
    font-size: 4vw;
    line-height: 1.5;
  }
  .seminar-single__recommend-body:before {
    width: 4vw;
    height: 4vw;
    left: -5.3333333333vw;
    top: 2px;
  }
  .seminar-single__outline {
    margin-bottom: 2.5em;
  }
  .seminar-single__outline-title {
    font-size: 6.6666666667vw;
  }
  .seminar-single__outline-body {
    padding: 0.3em 0 0;
    font-size: 4vw;
  }
  .seminar-single__outline-body p {
    margin-bottom: 0.5em;
    line-height: 1.5;
  }
  .seminar-single .seminar-single__application {
    margin-top: 1em;
    margin-bottom: 1.5em;
  }
  .seminar-single .seminar-single__application-btn {
    font-size: 4vw;
    width: 90%;
  }
  .seminar-single__right {
    flex: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .seminar-single__right .wpcf7-form {
    font-size: 3.2vw;
  }
  .seminar-single__right .wpcf7-form .checkbox {
    gap: 1.3333333333vw;
    margin-left: 1.5em;
    margin-top: 0;
    flex-wrap: wrap;
  }
  .seminar-single__right .wpcf7-form .wpcf7-form-control.wpcf7-submit {
    margin-top: 1.5em;
    width: 90%;
    margin-left: 5%;
    font-size: 4vw;
    border-radius: 6px;
  }
  .seminar-single .performance-detail__more {
    margin-bottom: 16vw;
  }
}

/* セミナー一覧 */
.seminar-archive {
  margin-top: 80px;
  padding-top: 20px;
  padding-bottom: 80px;
}
.seminar-archive .container {
  background: url("/wp-content/themes/regiless/assets/images/single/case-bg.png") no-repeat top center;
  background-size: 100%;
}
.seminar-archive__title {
  font-size: 30px;
  font-weight: bold;
  margin: 60px auto;
  text-align: center;
}
.seminar-archive__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
}
.seminar-archive__card {
  width: calc(33.3333333333% - 0.8em);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(121, 107, 174, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  border: 1px solid #ccc;
}
.seminar-archive__card:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.seminar-archive__card a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.seminar-archive__card__thumb {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.seminar-archive__card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seminar-archive__card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seminar-archive__card__body {
  padding: 23px 20px 25px 25px;
}
.seminar-archive__card__title {
  font-size: 16px;
  margin: 12px 0 0 0;
  font-weight: bold;
}
.seminar-archive__card__cat {
  padding: 0.5em 1.4em;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
}
.seminar-archive__card .category-viewing {
  border: 1px solid #796bae;
  color: #796bae;
}
.seminar-archive__card .category-reception {
  background: #796bae;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .seminar-archive {
    padding: 0;
    margin: 1rem 0 0;
  }
  .seminar-archive__title {
    margin: 2.5rem auto;
    font-size: 2.4rem;
  }
  .seminar-archive__card__body {
    padding: 15px 15px 15px;
  }
  .seminar-archive__card__logo {
    height: 65px;
  }
  .seminar-archive__card__logo img {
    zoom: 80%;
  }
  .seminar-archive__card__title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .seminar-archive {
    padding-top: 2.6666666667vw;
  }
  .seminar-archive__title {
    font-size: 6.4vw;
  }
  .seminar-archive__list {
    flex-direction: column;
    padding: 0 1.3333333333vw;
    gap: 8vw;
  }
  .seminar-archive__card {
    width: 100%;
  }
  .seminar-archive__card__body {
    padding: 6vw 6vw;
  }
  .seminar-archive__card__logo {
    height: auto;
    padding: 5.3333333333vw 0;
  }
  .seminar-archive__card__logo img {
    zoom: 100%;
  }
  .seminar-archive__card__title {
    font-size: 4.2666666667vw;
  }
  .seminar-archive__card__cat {
    font-size: 3.3333333333vw;
  }
}
.seminar-archive .performance-detail__more {
  margin: 60px auto;
}
@media (max-width: 767px) {
  .seminar-archive .performance-detail__more {
    margin: 10.6666666667vw auto 16vw;
  }
}

.page-form {
  margin-top: 80px;
  padding-top: 20px;
  /* お問い合わせ */
  /* 資料ダウンロード */
}
.page-form__container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 40px 20px;
}
.page-form__content {
  display: flex;
  gap: 60px;
}
.page-form__title {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.page-form__left {
  width: calc(55% - 10px);
  flex-shrink: 0;
  padding-left: 80px;
}
.page-form__text {
  font-size: 14px;
  line-height: 1.8;
  margin: 2em auto 5em;
  font-weight: bold;
}
.page-form__img {
  text-align: right;
  width: calc(100% + 80px);
  margin-left: -50px;
}
.page-form__right {
  width: calc(45% - 50px);
  padding-right: 40px;
}
@media screen and (max-width: 960px) {
  .page-form__content {
    gap: 35px;
  }
  .page-form__left {
    padding-left: 10px;
  }
  .page-form__right {
    padding-right: 10px;
    width: 45%;
  }
}
@media (max-width: 767px) {
  .page-form {
    margin-top: 4vw;
    /* お問い合わせ */
  }
  .page-form__container {
    padding: 0 5.3333333333vw;
  }
  .page-form__content {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
  .page-form__title {
    font-size: 6.6666666667vw;
  }
  .page-form__left {
    width: 100%;
    padding: 0;
  }
  .page-form__text {
    font-size: 4vw;
    line-height: 2;
    margin: 2em auto 0;
  }
  .page-form__img {
    display: none;
  }
  .page-form__right {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.page-form__left.dl {
  width: calc(55% - 30px);
  flex-shrink: 0;
  padding-left: 30px;
  padding-right: 30px;
}
.page-form__left.dl .page-form__title {
  text-align: left;
  margin-top: 70px;
}
.page-form__left.dl .page-form__text {
  margin: 2.5em auto 5em;
}
.page-form__left.dl .page-form__text p {
  margin-bottom: 1.4em;
}
.page-form__left.dl .page-form__img {
  text-align: left;
  width: 100%;
  margin-left: 0;
}
.page-form__left.dl .page-form__topics {
  background: #f5f5f5;
  padding: 2em 1.5em 2.2em 2em;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 14px;
}
.page-form__left.dl .page-form__topics h2 {
  color: #796bae;
  font-size: 24px;
}
.page-form__left.dl .page-form__topics ul {
  margin: 1.8em 0 0.5em 1.8em;
}
.page-form__left.dl .page-form__topics li {
  position: relative;
  margin-bottom: 2em;
  font-weight: bold;
}
.page-form__left.dl .page-form__topics li:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -2em;
  top: 0;
  background: url("/wp-content/themes/regiless/assets/images/page/dl-check.png") no-repeat center center/contain;
}
.page-form__left.dl .page-form__topics li:last-child {
  margin-bottom: 0;
}
.page-form__left.dl .page-form__topics p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page-form__left.dl {
    width: 100%;
    padding: 0;
  }
  .page-form__left.dl .page-form__title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 8vw;
  }
  .page-form__left.dl .page-form__text {
    margin: 2.5em auto 5em;
  }
  .page-form__left.dl .page-form__text p {
    margin-bottom: 1.4em;
  }
  .page-form__left.dl .page-form__img {
    text-align: left;
    width: 100%;
    margin: auto;
  }
  .page-form__left.dl .page-form__topics {
    margin-top: 2em;
    padding: 2em 1.5em 2.2em;
    margin-bottom: 5.3333333333vw;
  }
  .page-form__left.dl .page-form__topics h2 {
    text-align: center;
    font-size: 6.6666666667vw;
    margin-bottom: 0.8em;
  }
  .page-form__left.dl .page-form__topics ul {
    margin: 1.8em 0 0.5em 1em;
  }
  .page-form__left.dl .page-form__topics li {
    font-size: 4vw;
    margin-bottom: 0.2em;
  }
  .page-form__left.dl .page-form__topics li:before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    left: -1.2em;
    top: 0.3em;
  }
  .page-form__left.dl .page-form__topics li:last-child {
    margin-bottom: 0;
  }
}
.page-form__right.dl {
  width: calc(45% - 30px);
  padding-right: 40px;
}
.page-form .wpcf7-form {
  font-size: 12px;
  font-weight: bold;
}
.page-form .wpcf7-form p {
  margin: 0;
}
.page-form .wpcf7-form .notice {
  margin-bottom: 1.8em;
}
.page-form .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
  display: inline-block;
  margin: 0.3em 0 1em;
}
.page-form .wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 0.9em 1.2em;
  border: 1px solid #dee0df;
  border-radius: 4px;
}
.page-form .wpcf7-form .wpcf7-form-control.wpcf7-radio, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  align-items: center;
  border: 0;
  padding: 0.5em 0;
  gap: 2em;
  font-weight: normal;
}
.page-form .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: 0.5em;
  margin-left: 0;
  align-items: center;
}
.page-form .wpcf7-form .form-row--name {
  display: flex;
  gap: 1em;
}
.page-form .wpcf7-form .form-row--name br {
  display: none;
}
.page-form .wpcf7-form a {
  font-weight: normal;
  text-decoration: underline;
}
.page-form .wpcf7-form .wpcf7-submit {
  width: 70%;
  border-radius: 8px;
  margin-left: 15%;
  margin-top: 10px;
  border: 0;
  background: #f8c058;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
  opacity: 1;
}
.page-form .wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.8;
}
.page-form .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.8;
  cursor: pointer;
  transform: translateY(-2px);
}
.page-form .wpcf7-form .wpcf7-submit:hover:disabled {
  opacity: 0.8;
  transform: translateY(0);
  cursor: not-allowed;
}
.page-form .wpcf7-form .form-group {
  display: flex;
  gap: 1em;
}
@media (max-width: 767px) {
  .page-form .wpcf7-form {
    font-size: 3.4666666667vw;
  }
  .page-form .wpcf7-form .wpcf7-form-control-wrap {
    width: 100%;
    display: inline-block;
    margin: 0.3em 0 1em;
  }
  .page-form .wpcf7-form .wpcf7-form-control {
    font-size: 4vw;
  }
  .page-form .wpcf7-form .wpcf7-form-control.wpcf7-radio, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
    font-size: 4vw;
  }
  .page-form .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item a, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item label a, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item a, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label a, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item a, .page-form .wpcf7-form .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item label a {
    display: block;
  }
  .page-form .wpcf7-form .wpcf7-submit {
    width: 90%;
    margin-left: 5%;
  }
}
.page-form .thanks-content .wp-block-heading {
  font-size: 24px;
  text-align: center;
}
.page-form .thanks-content .thanks-text {
  font-weight: bold;
  margin: 4.2em auto;
  font-size: 14px;
  text-align: center;
}
.page-form .thanks-content .thanks-text p {
  margin-bottom: 1.5em;
}
.page-form .thanks-content .primary-button {
  display: block;
  width: 287px;
  padding: 1.2em 0;
  margin: 0 auto;
  text-align: center;
  border-radius: 50px;
  font-size: 16px;
  background-color: #f8c058;
  color: #fff;
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
}
.page-form .thanks-content .primary-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.page-form .thanks-content .secondary-button {
  display: block;
  width: 200px;
  padding: 0.8em 0;
  margin: 90px auto 50px;
  text-align: center;
  font-size: 14px;
  color: #796bae;
  box-shadow: 0 0 20px rgba(121, 107, 174, 0.3);
  border: 1px solid #796bae;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
}
.page-form .thanks-content .secondary-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .page-form .thanks-content .wp-block-heading {
    font-size: 6.6666666667vw;
    text-align: center;
  }
  .page-form .thanks-content .thanks-text {
    font-weight: bold;
    margin: 2.2em auto 3em;
    font-size: 4vw;
    text-align: left;
  }
  .page-form .thanks-content .thanks-text p {
    margin-bottom: 1.5em;
  }
  .page-form .thanks-content .thanks-text p br {
    display: none;
  }
  .page-form .thanks-content .primary-button {
    display: block;
    width: 70%;
    padding: 1.2em 0;
    margin: 0 auto;
    text-align: center;
    border-radius: 50px;
    font-size: 3.7333333333vw;
    background-color: #f8c058;
    color: #fff;
    box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
  }
  .page-form .thanks-content .secondary-button {
    display: block;
    width: 70%;
    padding: 1.2em 0;
    margin: 4em auto 5em;
    text-align: center;
    font-size: 3.7333333333vw;
    color: #796bae;
    box-shadow: 0 0 20px rgba(121, 107, 174, 0.4);
    border: 1px solid #796bae;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
  }
}

.agency {
  margin-top: 80px;
}
.agency .breadcrumb {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5em 0;
}
.agency .agency-mv {
  padding: 60px 0 80px;
  background-image: url("/wp-content/themes/regiless/assets/images/page/agency_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.agency .agency-mv__inner {
  max-width: 800px;
  margin: 0 auto;
}
.agency .agency-mv__title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 1em;
}
.agency .agency-mv__lead {
  margin-bottom: 2em;
  line-height: 1.7;
}
.agency .agency-mv__btn {
  display: inline-block;
  background: #f8c058;
  color: #fff;
  border-radius: 50px;
  padding: 16px 60px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(248, 192, 88, 0.9);
  transition: all 0.3s;
}
.agency .agency-mv__btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.agency .agency-merit {
  background: #796bae;
  color: #fff;
  padding: 90px 0 60px;
  text-align: center;
}
.agency .agency-merit__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 2em;
}
.agency .agency-merit__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 120px;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}
.agency .agency-merit__item {
  width: calc(50% - 60px);
  padding: 20px 12px;
  text-align: center;
}
.agency .agency-merit__item img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-bottom: 1em;
}
.agency .agency-merit__item__text {
  height: 3.6em;
  margin-bottom: 2.5em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
}
.agency .agency-case {
  padding: 90px 0 80px;
  text-align: center;
}
.agency .agency-case__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}
.agency .agency-case__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 20px auto 0;
}
.agency .agency-case__item {
  width: calc(50% - 25px);
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
}
.agency .agency-case__item__lead {
  font-size: 16px;
}
.agency .agency-case__item__title {
  color: #796bae;
  font-size: 18px;
}
.agency .agency-case__item__content {
  margin: 2em 0 0;
  padding: 1.5em 2.5em;
  border-radius: 8px;
  font-size: 16px;
  background: #f0f0ff;
}
.agency .agency-case__item__company {
  font-size: 18px;
}
.agency .agency-case__item__text {
  background: #fff;
  padding: 1.5em 0;
  margin: 1.5em 0 0.8em;
  border-radius: 8px;
  line-height: 1.8;
  font-weight: normal;
}
.agency .agency-case__item__text span {
  color: #796bae;
  font-weight: bold;
}
.agency .agency-case__item__text-bottom {
  background: #796bae;
  color: #fff;
  padding: 2.5em 0;
  margin: 0.8em 0;
  border-radius: 8px;
  line-height: 1.6;
}
.agency .agency-case__item__text-bottom span {
  color: #796bae;
  background: #fff;
  display: inline-block;
  margin: 0 0.1em;
}
.agency .agency-system {
  background: #dbdcff;
  padding: 90px 0 80px;
  text-align: center;
}
.agency .agency-system__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 2em;
}
.agency .agency-system__list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 1em auto 0;
}
.agency .agency-system__item {
  width: calc(50% - 20px);
  margin-bottom: 1em;
}
.agency .agency-system__item__img {
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 3em 0;
  margin-bottom: 2em;
  text-align: center;
  background: #fff;
  border-radius: 16px;
}
.agency .agency-system__item__title {
  margin-bottom: 1.5em;
  font-size: 18px;
  font-weight: bold;
}
.agency .agency-system__item__text {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}
.agency .agency-contact {
  padding: 90px 0 80px;
  text-align: center;
}
.agency .agency-contact__title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 2em;
}
.agency .agency-contact .page-form {
  max-width: 600px;
  text-align: left;
  margin: 0 auto 2em;
}
.agency .agency-contact .page-form .wpcf7-form .wpcf7-submit {
  width: 50%;
  margin-left: 25%;
  background: #796bae;
}
@media screen and (max-width: 960px) {
  .agency {
    margin-top: 40px;
  }
  .agency .agency-mv {
    padding: 60px 80px;
    background-position: -772px 57px;
  }
  .agency .agency-merit {
    padding: 90px 80px;
  }
  .agency .agency-merit__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 60px;
  }
  .agency .agency-case {
    padding: 90px 80px;
  }
  .agency .agency-case__list {
    flex-direction: column;
    gap: 10px;
    margin: 20px auto;
  }
  .agency .agency-case__item {
    width: 100%;
  }
  .agency .agency-case__item__title {
    font-size: 24px;
  }
  .agency .agency-system {
    padding: 90px 80px;
  }
  .agency .agency-system__list {
    flex-direction: column;
  }
  .agency .agency-system__item {
    width: 100%;
  }
  .agency .agency-system__item__img {
    padding: 2em 0;
    margin-bottom: 1em;
  }
  .agency .agency-system__item__title {
    margin-bottom: 1em;
    font-size: 20px;
  }
  .agency .agency-contact {
    padding: 90px 0 80px;
    text-align: center;
  }
  .agency .agency-contact__title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 2em;
  }
  .agency .agency-contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .agency {
    margin-top: 0;
  }
  .agency .breadcrumb {
    padding: 1em 1.5em;
  }
  .agency .agency-mv {
    padding: 1.2em;
    background-image: url("/wp-content/themes/regiless/assets/images/page/agency_bg-sp.jpg");
    background-position: center;
  }
  .agency .agency-mv__inner {
    margin-bottom: 42.6666666667vw;
  }
  .agency .agency-mv__title {
    font-size: 7.4666666667vw;
    margin-bottom: 0.8em;
  }
  .agency .agency-mv__lead {
    font-size: 4.5333333333vw;
    font-weight: bold;
    margin-bottom: 1.5em;
    line-height: 1.5;
  }
  .agency .agency-mv__btn {
    padding: 4.2666666667vw 16vw;
    font-size: 4.2666666667vw;
  }
  .agency .agency-merit {
    padding: 2em 0 4em;
    text-align: center;
  }
  .agency .agency-merit__title {
    font-size: 6.4vw;
    margin-bottom: 1em;
  }
  .agency .agency-merit__list {
    padding: 0 0.5em;
    gap: 2em 0;
    flex-wrap: wrap;
  }
  .agency .agency-merit__item {
    width: 50%;
    padding: 0;
  }
  .agency .agency-merit__item img {
    zoom: 43%;
  }
  .agency .agency-merit__item__text {
    height: 3.6em;
    margin-bottom: 1em;
    font-size: 3.7333333333vw;
    letter-spacing: -0.05em;
    line-height: 1.5;
  }
  .agency .agency-case {
    padding: 2em 0 2em;
  }
  .agency .agency-case__title {
    font-size: 6.4vw;
    margin-bottom: 1em;
  }
  .agency .agency-case__list {
    margin: 1em auto 0;
    gap: 3em;
  }
  .agency .agency-case__item {
    padding: 0 1.5em;
  }
  .agency .agency-case__item__lead {
    font-size: 4.8vw;
  }
  .agency .agency-case__item__title {
    font-size: 4.8vw;
  }
  .agency .agency-case__item__content {
    margin: 1em 0 0;
    padding: 1.2em 1.2em 1em;
    font-size: 3.7333333333vw;
  }
  .agency .agency-case__item__company {
    font-size: 4.8vw;
  }
  .agency .agency-case__item__text {
    padding: 1em 0;
    margin: 1.2em 0 0.8em;
    line-height: 1.8;
    letter-spacing: -0.05em;
  }
  .agency .agency-case__item img {
    zoom: 70%;
  }
  .agency .agency-case__item__text-bottom {
    padding: 1.5em 0;
    margin: 0.8em 0;
  }
  .agency .agency-case__btn {
    margin: 0 auto;
    width: 70%;
  }
  .agency .agency-system {
    padding: 2em 0 2em;
  }
  .agency .agency-system__title {
    font-size: 6.4vw;
    margin-bottom: 1em;
  }
  .agency .agency-system__list {
    gap: 2.5em;
    padding: 0 1.2em;
  }
  .agency .agency-system__item {
    margin-bottom: 1em;
  }
  .agency .agency-system__item__img {
    padding: 1.2em 0;
  }
  .agency .agency-system__item__img img {
    zoom: 70%;
  }
  .agency .agency-system__item__title {
    margin-bottom: 1em;
    font-size: 4.8vw;
  }
  .agency .agency-system__item__text {
    font-size: 3.7333333333vw;
    line-height: 1.6;
  }
  .agency .agency-contact {
    padding: 2em 0;
  }
  .agency .agency-contact__title {
    font-size: 6.4vw;
    margin-bottom: 1em;
  }
  .agency .agency-contact .page-form {
    padding: 0 1.5em;
    margin-bottom: 1em;
  }
  .agency .agency-contact .page-form .wpcf7-form .wpcf7-submit {
    width: 70%;
    margin-left: 15%;
  }
}

.error-404 {
  text-align: center;
  padding: 80px 0;
  margin-top: 60px;
}
.error-404 .error-404__title {
  font-size: 24px;
  margin-bottom: 1em;
}
.error-404 .error-404__title-en {
  margin: 1.5em 0 3em;
  font-size: 18px;
  color: #796bae;
}
.error-404 p {
  font-size: 14px;
  margin-bottom: 4em;
}
.error-404 .secondary-button {
  display: block;
  width: 200px;
  padding: 0.8em 0;
  margin: 90px auto 50px;
  text-align: center;
  font-size: 14px;
  color: #796bae;
  box-shadow: 0 0 20px rgba(121, 107, 174, 0.3);
  border: 1px solid #796bae;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  text-decoration: none;
}
@media (max-width: 767px) {
  .error-404 {
    text-align: center;
    padding: 4rem 0;
    margin-top: 0;
  }
  .error-404 .error-404__title {
    font-size: 6.6666666667vw;
  }
  .error-404 .error-404__title-en {
    margin: 1em 0 2em;
    font-size: 6.4vw;
  }
  .error-404 p {
    font-size: 4.2666666667vw;
    margin-bottom: 4em;
  }
  .error-404 .secondary-button {
    width: 70%;
    padding: 1em 0;
    margin: 4em auto 5em;
    font-size: 4.2666666667vw;
    border-radius: 30px;
  }
}

body.single-case, body.post-type-archive-case, body.post-type-archive-news, body.post-type-archive-seminar {
  background-color: #f6f7f7;
}
body.single-case .case-caption, body.post-type-archive-case .case-caption, body.post-type-archive-news .case-caption, body.post-type-archive-seminar .case-caption {
  font-size: 12px;
  color: #333333;
}

/*# sourceMappingURL=style.css.map */
