@charset "UTF-8";
/**************/
/** パス */
/**************/
/**************/
/** 色 */
/**************/
/**************/
/** フォント */
/**************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
          animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/**************/
/** その他設定 */
/**************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

html, h1, h2, h3, h4, h5, p, li, a, button, div, label {
  color: #474747;
}

h1, h2, h3, h4, h5 {
  word-break: auto-phrase;
}

body {
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
  line-height: 170%;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-family: "Noto Sans JP", sans-serif;
  color: #474747;
  margin-top: 50px;
}
@media (max-width: 767px) {
  body {
    line-height: 150%;
  }
}

a {
  text-decoration: unset;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  color: #474747;
}
a:hover {
  color: #000;
}
a:active, a:focus {
  outline: none;
  text-decoration: none;
  color: #000;
}

ul li {
  line-height: 1.5;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
}

main {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}
.header__inner {
  max-width: 1024px;
  width: 92%;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 100%;
  max-width: 145px;
}
.header__logo img {
  width: 100%;
}
.header__links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header__nav-lists {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.header__nav-list {
  height: 100%;
  font-weight: bold;
	font-size:14px;
}
.header__nav-btns {
  display: flex;
  gap: 4px;
}

@media (max-width: 991px) {
  body {
    transition: none;
  }
  body.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .ham-button {
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 8px;
    top: 0;
    right: 0;
    padding: 6px 3px;
    cursor: pointer;
  }
  .ham-button span {
    background: #474747;
    display: block;
    height: 2px;
    width: 100%;
    transition: all 0.3s;
  }
  .ham-button span:nth-child(2) {
    margin-top: 3px;
  }
  .ham-button span:nth-child(3) {
    margin-top: 3px;
  }
  .menu-open .ham-button {
    z-index: 99;
  }
  .menu-open .ham-button span {
    position: relative;
    left: 0;
  }
  .menu-open .ham-button span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
  }
  .menu-open .ham-button span:nth-child(3) {
    opacity: 0;
  }
  .menu-open .ham-button span:nth-child(2) {
    transform: rotate(-45deg);
    bottom: -1px;
  }
  .header {
    position: fixed;
    width: 100%;
    z-index: 99;
  }
  .header__inner {
    height: auto;
    display: block;
    width: 100%;
    padding: 0;
  }
  .header__inner-items {
    position: relative;
    z-index: 1;
    padding: 12px 16px;
    background-color: #fff;
  }
  .header__logo {
    width: 144px;
    z-index: 99;
  }
  .header__nav-btns.visible-sm {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    text-align: right;
  }
  .header__modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding-top: 50px;
    display: none;
    opacity: 1;
    overflow-y: auto;
    background-color: #474747;
  }
  .header__modal .btn-border {
    width: 100%;
    padding: 16px;
  }
  .header__links {
    background-image: url("./images/page-title.jpg");
    background-size: cover;
    background-position: center;
    padding: 16px;
    display: block;
  }
  .header__nav {
    margin-right: unset;
    border-radius: unset;
    background: unset;
    overflow: auto;
  }
  .header__nav-lists {
    display: block;
  }
  .header__nav-lists a, .header__nav-lists span {
    font-weight: 700;
  }
  .header__nav-list {
    margin-bottom: 18px;
  }
  .header__nav-btns {
    flex-direction: column;
    gap: 8px;
  }
  .header__nav-btn {
    width: 100%;
  }
  .header.menu-open .header__links {
    right: 0;
  }
}
.footer__main {
  background: var(--color-natural-gray-900, #474747);
  padding: 48px 0;
}
.footer__main-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__company-logo {
  padding: 18px;
  width: 280px;
}
.footer__company-name {
  margin-top: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
}
.footer__company-address {
  color: #fff;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1.28px;
  margin-top: 8px;
}
.footer__sitemap {
  display: flex;
  gap: 8px 16px;
  align-items: flex-start;
}
.footer__sitemap-list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: -webkit-min-content -webkit-min-content;
  grid-template-columns: min-content min-content;
  grid-column-gap: 16px;
  grid-row-gap: 8px;
}
.footer__sitemap-list:nth-last-of-type(1) {
  display: flex;
  flex-direction: column;
}
.footer__sitemap-item a {
  letter-spacing: 1.28px;
  display: inline-block;
  white-space: nowrap;
  font-weight: 400;
  color: #fff;
}
.footer__bottom {
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 40px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 0px;
  flex-wrap: wrap;
}
.footer__copyright {
  font-weight: 400;
  letter-spacing: 1.28px;
  color: #fff;
  white-space: nowrap;
  padding-right: 32px;
}
.footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 8px 12px;
}
.footer__links-item a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.28px;
}

@media (max-width: 991px) {
  .footer__company-address {
    font-size: 14px;
    letter-spacing: 1.12px;
  }
  .footer__sitemap {
    display: block;
  }
  .footer__sitemap-list {
    width: 100%;
    max-width: 350px;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__sitemap-list:nth-last-of-type(1) {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__sitemap-item a {
    font-size: 14px;
    letter-spacing: 1.12px;
    line-height: 1.3;
    white-space: normal;
  }
  .footer__bottom {
    width: 100%;
    border-top: 1px solid #fff;
    padding-top: 40px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 0px;
    flex-wrap: wrap;
  }
  .footer__copyright {
    font-weight: 400;
    letter-spacing: 1.28px;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
    padding-right: 32px;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
  }
  .footer__links-item a {
    font-size: 10px;
  }
}
.l-inner {
  width: 92%;
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l-inner {
    width: 100%;
    padding: 0 16px;
  }
}

.text-gradient {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inline-block {
  display: inline-block;
  vertical-align: baseline;
}

.breadcrumb {
  background-color: #fff;
  padding: 8px 0;
  margin: 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
}
.breadcrumb__list li {
  display: flex;
  font-weight: 400;
  line-height: 1.2;
  font-size: 12px;
}
.breadcrumb__list li + li {
  padding-left: 30px;
  position: relative;
  color: #8e55e9;
}
.breadcrumb__list li + li::before {
  content: "";
  background-image: url(./images/breadcrumb-arrow.svg);
  width: 13px;
  height: 1.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}

.section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }
}
.section-gray {
  background: var(--color-primary-primary-10, #ECECF1);
}
.section-dot {
  background-image: url(./images/bg-dot.png);
  background-size: 45px auto;
}
.section-gradient-light {
  background-image: url(./images/bg-gradient.jpg);
  background-size: cover;
  background-position: center;
}
.section-gradient-strong {
  background: var(--gradation, linear-gradient(108deg, #91A5FF 12.01%, #C367FF 106.54%));
}
@media (max-width: 767px) {
  .section-gradient-strong {
    background: var(--gradation, linear-gradient(326deg, #91A5FF 12.01%, #C367FF 106.54%));
  }
}
.section__title {
  text-align: center;
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .section__title {
    padding-bottom: 20px;
  }
}
.section__title small {
  display: block;
  font-size: 16px;
  color: #707070;
  line-height: 1.4;
  letter-spacing: 1.28px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .section__title small {
    font-size: 12px;
  }
}
.section-gradient-strong .section__title small {
  color: #fff;
}
.section__title span {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.88px;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .section__title span {
    font-size: 24px;
  }
}
.section-gradient-strong .section__title span {
  color: #fff;
  background: transparent;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.section__title::after {
  content: "";
  height: 1px;
  width: 98px;
  background-color: #7205B9;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section__title-simple {
  color: var(--color-natural-black, #333);
  font-size: 34px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.699px;
  margin-bottom: 24px;
  padding-bottom: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .section__title-simple {
    font-size: 24px;
  }
}
.section__title-simple::after {
  content: none;
}
.section__lead {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .section__lead {
    font-size: 12px;
    margin-bottom: 24px;
  }
}
.section-gradient-strong .section__lead {
  color: #fff;
}

.page-head {
  text-align: center;
  padding: 54px 0;
  background-image: url(./images/page-title.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .page-head {
    padding: 40px 0;
  }
}
.page-head-onlyTitle {
  padding: 84px 0 97px;
}
@media (max-width: 767px) {
  .page-head-onlyTitle {
    padding: 40px 0 32px;
  }
}
.page-head__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 3.84px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
}
@media (max-width: 767px) {
  .page-head__title {
    font-size: 32px;
  }
}
.page-head__title::after {
  content: "";
  width: 98px;
  background: var(--color-primary-primary-7, #7205B9);
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.page-head__lead {
  line-height: 150%;
}

.page-container__head {
  padding-bottom: 64px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-container__head {
    padding-bottom: 48px;
  }
}
.page-container__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.88px;
  padding-bottom: 32px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .page-container__title {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
}
.page-container__title-small {
  font-weight: 400;
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-size: 24px;
  color: #474747;
  background: transparent;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.page-container__title-small::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  content: attr(data-num);
  mix-blend-mode: multiply;
  color: var(--color-primary-primary-10, #ECECF1);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Roboto", sans-serif;
  font-size: 78px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.56px;
}
@media (max-width: 767px) {
  .page-container__title-small::before {
    bottom: 8px;
    font-size: 54px;
  }
}
.page-container__title-small::after {
  width: 50px;
}
@media (max-width: 767px) {
  .page-container__lead {
    font-size: 12px;
  }
}

.card__list {
  flex-wrap: wrap;
  display: flex;
}
.card__item {
  border-radius: 8px;
  padding: 24px;
  background: var(--color-natural-white, #FFF);
  box-shadow: 0px 0px 16px 0px rgba(153, 169, 176, 0.3);
}
.card__item .section__title span {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card__item .section__lead {
  color: #474747;
}
.card__item-thumb {
  padding-bottom: 66.6666666667%;
  position: relative;
  margin-bottom: 16px;
}
.card__item-thumb-in {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.card__item-thumb-in img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.icon-card__list {
  display: flex;
  flex-wrap: wrap;
}
.icon-card__item {
  border-radius: 8px;
  border: 2px solid var(--gradation-primary, #4976E6);
  background: var(--color-primary-primary-9, #FBF8FF);
  padding: 0 16px 16px;
}
.icon-card__item-icon {
  margin: -32px auto 16px;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  padding: 12px;
  border: 2px solid var(--gradation-primary, #4976E6);
  background: #fff;
}
@media (max-width: 767px) {
  .icon-card__item-icon {
    width: 84px;
    height: 84px;
    margin: -42px auto 5px;
    padding: 16px;
  }
}
.icon-card__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.number-list {
  counter-reset: num;
}
.number-list__item {
  counter-increment: num;
  position: relative;
}
.number-list__item::before {
  content: counter(num);
  display: block;
  font-weight: 700;
  line-height: 170%;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid var(--gradation-primary, #4976E6);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.number-list__item:nth-child(-n+9)::before {
  content: "0" counter(num);
}

.btn {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: wrap;
}
.btn-border {
  font-size: var(--typography-size-font-3, 12px);
  font-weight: 700;
  line-height: var(--typography-line-hight-line-height-2, 16px);
  padding: 3px 16px 5px;
  border-radius: var(--numerical-Variable-Variable-1, 4px);
  border: 1px solid var(--gradation-primary, #4976E6);
  background-color: #fff;
}
.btn-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%);
  transition: width 0.4s ease;
  z-index: 0;
}
.btn-border span {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
  transition-delay: 0.1s;
}
.btn-border:hover span {
  background-clip: text;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-border:hover::before {
  width: 100%;
}
.btn-view {
  width: 373px;
  max-width: 100%;
  padding: 22px 24px 26px;
  border-radius: 100px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  border: 2px solid transparent;
  letter-spacing: 1.6px;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
}
.btn-view::before {
  content: "";
  position: absolute;
  opacity: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: 0.5s ease;
  z-index: 1;
}
.btn-view:hover::before {
  opacity: 0;
}
.btn-view span {
  font-size: 20px;
  font-weight: 700;
  transition: 0.5s ease;
  line-height: 120%;
  letter-spacing: 1.6px;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.btn-view-light::before {
  background: var(--color-natural-white, #FFF);
}
.btn-view-light span {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1);
}
.btn-view-light:hover {
  border: 2px solid var(--gradation-primary, #4976E6);
  background: linear-gradient(0deg, #E5D6FF 0%, #E5D6FF 100%), linear-gradient(126deg, #FEFEFE 20.82%, #E5D6FF 104.08%);
}
.btn-view-light:hover span {
  text-shadow: none;
}
.btn-view-strong::before {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
}
.btn-view-strong span {
  color: var(--color-natural-white, #FFF);
}
.btn-view-strong:hover {
  border: 2px solid var(--gradation-primary, #4976E6);
  background: linear-gradient(0deg, #E5D6FF 0%, #E5D6FF 100%), linear-gradient(126deg, #FEFEFE 20.82%, #E5D6FF 104.08%);
}
.btn-view-strong:hover span {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  text-shadow: none;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-cv {
  width: 100%;
  max-width: 373px;
  padding: 22px 10px 26px;
  border-radius: 15px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.01em;
  border: none;
  position: relative;
}
@media (max-width: 767px) {
  .btn-cv {
    font-size: 18px;
    padding: 18px 20px 22px;
  }
}
.btn-cv::before {
  content: "";
  border-radius: 15px;
  position: absolute;
  background: linear-gradient(126deg, #FEFEFE 20.82%, #E5D6FF 104.08%);
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  z-index: 1;
}
.btn-cv::after {
  content: "";
  border-radius: 15px;
  position: absolute;
  opacity: 1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 2;
  background: linear-gradient(0deg, #E5D6FF 0%, #E5D6FF 100%), linear-gradient(126deg, #FEFEFE 20.82%, #E5D6FF 104.08%);
}
.btn-cv span {
  color: var(--color-natural-gray-900, #474747);
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}
.btn-cv:hover {
  border-radius: 100px;
}
.btn-cv:hover::before {
  border: 2px solid #4976E6;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}
.btn-cv:hover::after {
  opacity: 1;
}
.btn-cv:hover span {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-balloon{
	position:relative;
	top:8px;
	left:20px;
	background-color:#fffa29;
	border-radius:999px;
	padding:5px 15px 7px;
	z-index:5;
	line-height:1.5;
	font-size:14px;
	font-weight:700;
	display:block;
	white-space:nowrap;
	max-width: 333px;
	width:100%;
	text-align:center;
	box-shadow: 1px 3px 5px rgba(0,0,0,0.1);
	letter-spacing:0.01em;
}
.btn-balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #fffa29;
	-webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
	        filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.1)); 
}
@media (max-width: 767px) {
.btn-balloon{
	position:absolute;
	top:18px;
	left:50%;
	transform: translateX(-50%);
	font-size:12px;
	padding:5px 20px 7px;
	width:auto;
	display:inline-block;
}
	.btn-balloon:before {
  margin-left: -6px;
  border: 6px solid transparent;
  border-top: 6px solid #fffa29;
}
}
.cta {
  text-align: center;
  padding: 48px 0;
  background: linear-gradient(123deg, #3565DE 22.94%, #8B4BF2 82.51%);
}
.cta__lead {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 2.56px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .cta__lead {
    font-size: 20px;
  }
}
.cta__lead::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 98px;
  height: 1px;
  background-color: #7205B9;
}
.cta__text {
  color: #fff;
  line-height: 120%;
  letter-spacing: 1.28px;
  margin-bottom: 24px;
}
.cta-flex{
	display:flex;
	gap:2rem;
}
.cta-flex .cta__btn{
	width:calc((100% - 4rem)/2);
	position:relative;
}
.cta-flex .cta__btn .btn-balloon{
	position:absolute;
	top: -24px;
    left: 50%;
	transform: translateX(-50%);
	    display: inline-block;
	width:auto;
}
@media (max-width: 767px) {
	.cta-flex{
	flex-direction:column;
	gap:2rem;
}
	.cta-flex .cta__btn{
	width:100%;
}
	.cta-balloon{
		margin-top:1.5rem;
	}
	.cta-flex .cta__btn .btn-balloon{
	top: -20px;
}
}
.case__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.case__item {
  width: calc((100% - 32px) / 3);
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-natural-white, #FFF);
  box-shadow: 0px 8px 16px 4px rgba(87, 140, 156, 0.24);
}
@media (max-width: 767px) {
  .case__item {
    width: 100%;
  }
}
.case__link {
  height: 100%;
}
.case__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.28px;
}
.case__meta {
  font-size: 14px;
  margin-top: 16px;
  color: #858585;
}
.case__thumb {
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 20px;
}
.case__thumb-in {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.case__thumb-in img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case__logo {
  height: 38px;
  padding: 0 20px;
  margin-bottom: 28px;
}
.case__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.case__info {
  padding: 0 20px 20px;
}
.case__info .case-tag {
  margin-bottom: 10px;
}
.case__info .case-title {
  margin-bottom: 10px;
}
.case__info .case-company {
  margin-bottom: 16px;
}
.case__industry {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.case__industry dt {
  font-weight: 700;
  width: 3em;
}
.case__industry dd {
  flex: 1;
  font-size: 14px;
}
.case__introduction-before dt, .case__introduction-after dt {
  font-weight: 700;
  margin-bottom: 4px;
}
.case__introduction-before dd, .case__introduction-after dd {
  font-size: 14px;
}
.case__introduction-before {
  margin-bottom: 8px;
}
.case__introduction-after ul li + li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 16px solid #F3F1FD;
  margin: 4px auto;
}

.faq__list {
  counter-reset: num;
}
.faq__item {
  counter-increment: num;
  border-radius: 8px;
  border: 1px solid var(--gradation-primary, #4976E6);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
}
.faq__item:nth-last-of-type(1) {
  margin-bottom: 0;
}
.faq__item:nth-of-type(n + 10) .faq__title {
  padding-left: 106px;
}
.faq__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.92px;
  position: relative;
  padding: 24px 24px 24px;
  padding-left: 87px;
  min-height: 100px;
  display: flex;
  align-items: center;
  background: var(--color-primary-primary-8, #F3F1FD);
}
@media (max-width: 767px) {
  .faq__title {
    font-size: 16px;
    padding: 16px;
    padding-left: 87px;
  }
}
.faq__title::before {
  position: absolute;
  left: 30px;
  top: 17%;
  content: "Q" counter(num);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: block;
  line-height: 170%;
  font-size: 30px;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq__title:after {
  content: "";
  display: block;
  width: 8px;
  border: 2px solid var(--gradation-primary, #4976E6);
  height: 8px;
  border-left: none;
  border-top: none;
  position: absolute;
  left: 48px;
  transform: rotate(45deg);
  top: 66%;
}
.open .faq__title:after {
  transform: rotate(45deg) scale(-1, -1);
  top: 68%;
}
.faq__answer {
  display: none;
  padding: 16px 24px 24px;
  background-color: #fff;
  color: var(--color-natural-gray-900, #474747);
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 1.26px;
  word-break: break-all;
}
@media (max-width: 767px) {
  .faq__answer {
    font-size: 16px;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news__list-text .news__item {
  border-bottom: 1px solid #EFEFEF;
}
.news__list-text .news__link {
  display: block;
  padding: 16px 0;
}
.news__list-text .news__link time {
  color: var(--color-natural-gray-700, #707070);
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 1.28px;
  margin-bottom: 24px;
  display: block;
}
.news__list-text .news__link h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.56px;
}
.news__item {
  width: 100%;
}
.news__link {
  display: block;
  display: flex;
  gap: 24px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .news__link {
    padding: 16px;
  }
}
.news__link:hover {
  box-shadow: 0px 0px 0px 0px rgba(153, 169, 176, 0.3);
}
.news__thumb {
  width: 128px;
}
.news__thumb .noimage {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  font-size: 12px;
  color: #c1bfbf;
  letter-spacing: 0.1em;
}
.news__meta {
  width: calc(100% - 128px - 24px);
}
.news__date {
  flex-grow: 1;
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.news__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news__title {
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

.event__list {
  justify-content: center;
  gap: 24px;
}
.event__item {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 767px) {
  .event__item {
    width: 100%;
  }
}
.event__link {
  height: 100%;
}
@media (max-width: 767px) {
  .event__link {
    padding: 16px;
  }
}
.event__link:hover {
  box-shadow: 0px 0px 0px 0px rgba(153, 169, 176, 0.3);
}
.event__link .card__item-thumb {
  padding-bottom: 56.25%;
}
.event__title {
  font-weight: 400;
  line-height: 1.5;
}

.feature__content .section-mv {
  width: 400px;
  max-width: 80%;
  margin: 0 auto;
}
.feature__list {
  display: flex;
  margin-top: 40px;
  gap: 20px;
}
@media (max-width: 767px) {
  .feature__list {
    margin-top: 32px;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
  }
}
.feature__item {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 767px) {
  .feature__item {
    width: 100%;
  }
}
.feature__item::before {
  font-size: 36px;
  margin-bottom: 12px;
}
.section-gradient-strong .feature__item::before {
  color: #fff;
  border-color: #fff;
  background: transparent;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
@media (max-width: 767px) {
  .feature__item::before {
    margin-left: auto;
    margin-right: auto;
  }
}
.feature__item-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 150%;
}
.section-gradient-strong .feature__item-title {
  color: #fff;
}
.section-gradient-strong .feature__item-text {
  color: #fff;
}

.use-case__content {
  text-align: center;
  margin-bottom: 40px;
}
.use-case__content:nth-last-of-type(1) {
  margin-bottom: 0;
}
.use-case__content .section__title {
  padding-bottom: 16px;
  margin-bottom: 78px;
}
.use-case__content .section__title span {
  font-size: 28px;
}
@media (max-width: 767px) {
  .use-case__content .section__title span {
    font-size: 20px;
  }
}
.use-case__list {
  gap: 0 16px;
  margin-bottom: -48px;
}
@media (max-width: 767px) {
  .use-case__list {
    margin-bottom: -64px;
  }
}
.use-case__item {
  width: calc((100% - 32px) / 3);
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .use-case__item {
    width: 100%;
    margin-bottom: 64px;
  }
}
.use-case__item-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.use-case__item .icon-card__item-icon {
  width: 84px;
  height: 84px;
  margin-top: -42px;
}

.anchor__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .anchor__list {
    display: block;
  }
}
.anchor__item a {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gradation-primary, #4976E6);
  background: var(--color-natural-white, #FFF);
}
@media (max-width: 767px) {
  .anchor__item a {
    width: 100%;
    position: relative;
    text-align: left;
  }
}
.anchor__item a::after {
  content: "";
  background-image: url("./images/under-arrow.svg");
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .anchor__item a::after {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
  }
}

main {
  -webkit-animation: loading 1.5s;
          animation: loading 1.5s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-300%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-300%);
  }
}
div.fadein,
main.fadein,
li.fadein {
  opacity: 0;
}
div.fadein.is-show,
main.fadein.is-show,
li.fadein.is-show {
  transform: translateY(0);
  opacity: 1;
}

div.fadein,
li.fadein {
  transform: translateY(30px);
  transition: all 1s ease-out 0.3s;
}

main.fadein {
  transform: translateY(20px);
  transition: all 0.8s ease-out 0.3s;
}

.top {
  overflow: hidden;
}
.top .mv {
  background-image: url("./images/top/mv-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .top .mv {
    margin-top: 0;
  }
}
.top .mv__inner {
  max-width: 1024px;
  width: 92%;
  margin: 0 auto;
  position: relative;
  padding: 136px 68px 90px;
}
@media (max-width: 991px) {
  .top .mv__inner {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .top .mv__inner {
    width: 100%;
    padding: 48px 16px 0px;
  }
}
.top .mv__lead-title {
  color: #fff;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.44px;
  font-size: 28px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .top .mv__lead-title {
    font-size: 22px;
    text-align: center;
  }
}
.top .mv__lead-title strong {
  font-size: 36px;
  vertical-align: text-bottom;
}
@media (max-width: 767px) {
  .top .mv__lead-title strong {
    font-size: 28px;
  }
}
.top .mv__lead-highlight {
  background-color: #fff;
  color: #7205B9;
  display: inline-block;
  padding: 3px 5px 5px;
}
.top .mv__lead-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 190%;
  letter-spacing: 0.64px;
	margin-bottom:10px;
}
@media (max-width: 767px) {
  .top .mv__lead-text {
    font-size: 10px;
    text-align: center;
  }
}
.top .mv__feature {
  width: 423px;
  max-width: 42%;
}
@media (max-width: 991px) {
  .top .mv__feature {
    max-width: 37%;
  }
}
@media (max-width: 767px) {
  .top .mv__feature {
    max-width: 60%;
    margin: 10px auto -10px;
  }
}
@media (min-width: 768px) {
  .top .mv__feature {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.top .mv .btn-cv__block {
  width: 100%;
  text-align: center;
  padding: 40px 0 16px;
  position: relative;
}
.top .mv .btn-cv__block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background: #474747;
}

/* ロゴスクロールのスタイルを修正 */
.top .clients-logo {
  width: 100%;
  overflow: hidden;
}

.top .clients-logo .logo-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.top .clients-logo__list {
  display: flex;
  align-items: center;
  padding: 10px 0;
  white-space: nowrap;
  position: relative;
  /* アニメーションはJavaScriptで制御 */
}

.top .clients-logo__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top .clients-logo__item img {
  width: auto;
  height: 40px;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
/* アニメーションのキーフレーム */
@-webkit-keyframes logoScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes logoScroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.top .about {
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .top .about {
    padding-bottom: 48px;
  }
}
.top .about .section {
  padding-bottom: 120px;
}
.top .about__video {
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  margin-top: -120px;
  margin-bottom: 52px;
  padding: 18px 20px;
  border-radius: 10px;
  background-color: #5C5C5C;
}
@media (max-width: 767px) {
  .top .about__video {
    padding: 10px;
    width: 96%;
    margin-bottom: 32px;
  }
}
.top .about__video-inner {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.top .about__video-inner::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
  padding-bottom: 53.85%;
}
.top .about__video-iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.top .about__video-iframe iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .top .about__img {
    margin: 0 -16px;
  }
}
.top .benefit__list {
  flex-wrap: wrap;
  gap: 24px;
}
.top .benefit__item {
  width: calc((100% - 48px) / 3);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .top .benefit__item {
    width: 100%;
    padding-top: 5px;
  }
}
.top .benefit__item-title {
  margin-bottom: 16px;
}
.top .benefit__item-detail dd {
  font-size: 24px;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top .benefit__item-detail dd strong {
  font-size: 32px;
  vertical-align: baseline;
  line-height: 1;
}
.top .trigger {
  position: relative;
}
.top .trigger__list {
  gap: 24px;
}
.top .trigger__item {
  width: calc((100% - 48px) / 3);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .top .trigger__item {
    width: 100%;
  }
}
.top .trigger::after {
  content: "";
  position: absolute;
  top: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  width: 100%;
  height: 70px;
  background-image: url(./images/bg-gradient.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .top .trigger::after {
    -webkit-clip-path: polygon(5% 0, 95% 0, 50% 100%);
            clip-path: polygon(5% 0, 95% 0, 50% 100%);
    height: 36px;
  }
}
@media (max-width: 767px) {
  .top .feature .section__title {
    margin-bottom: 24px;
  }
}
.top .feature__content {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .top .feature__content {
    margin-bottom: 52px;
  }
}
.top .feature__content:nth-last-of-type(1) {
  margin-bottom: 0;
}
.top .case__btn {
  margin-top: 40px;
}
.top .news__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .top .event {
    margin-top: 40px;
  }
}
.top .event__btn {
  margin-top: 40px;
}

.cat {
  margin-top: 180px;
}
.cat__heading {
  margin-bottom: 50px;
  padding: 0 20px;
}
.cat__heading .text {
  margin-top: 20px;
  text-align: center;
  word-break: auto-phrase;
}
.cat__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 20px;
}

.column-news{
  padding-bottom:15rem;
}
@media (max-width: 1024px) {
  .cat__list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
@media (max-width: 768px) {
  .cat__list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.cat__list-thumb {
  height: 225px;
  width: 100%;
  overflow: hidden;
}
.cat__list-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cat__list-date {
  color: #C98B5E;
  display: block;
  margin: 8px 0;
}
.cat__list-title {
  max-width: 100%;
  letter-spacing: 2px;
  line-height: 1.6;
  max-height: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.cat__tags {
  display: flex;
  margin-top: 12px;
}
.cat__tags li {
  margin-right: 16px;
}
.cat__tags a {
  padding: 6px 16px 7px;
  border-radius: 100vmax;
  display: inline-block;
  background: #7205B9;
  color: white;
  font-size: 13px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0 20px;
}
.pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.pagination li {
  margin: 0 5px;
}
.pagination li a,
.pagination li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  background: white;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  padding-bottom: 3px;
}
.pagination li a.next, .pagination li a.prev,
.pagination li span.next,
.pagination li span.prev {
  background: unset;
}
.pagination li a:hover {
  background: linear-gradient(123deg, #3565DE 22.94%, #8B4BF2 82.51%);
  color: white;
}
.pagination li a:hover span {
  color: white;
}
.pagination li .current {
  background: linear-gradient(123deg, #3565DE 22.94%, #8B4BF2 82.51%);
  color: white;
}
.pagination .pagination__prev,
.pagination .pagination__next {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background: unset;
  line-height: 1;
  color: #7205B9;
}

body.contact-page .footer__cta {
  display: none;
}

.contact {
  margin-top: 180px;
  padding-bottom: 100px;
}
.contact__heading {
  margin-bottom: 50px;
}
.contact__heading .text {
  margin-top: 20px;
  word-break: auto-phrase;
}
.contact__item {
  margin: 30px 0;
}
.contact__item label {
  width: 100%;
}
.contact__item input[type=text],
.contact__item input[type=tel],
.contact__item input[type=email],
.contact__item textarea {
  width: 100%;
  max-width: 619px;
  height: 50px;
  padding: 20px;
  font-size: 12px;
  border: 1px solid #9F9F9F;
  margin-top: 8px;
}
.contact__item textarea {
  max-width: unset !important;
  height: 240px;
}
.contact__item .company-name {
  max-width: unset !important;
}
.contact__item .required {
  font-size: 10px;
  position: relative;
  top: -5px;
  left: -5px;
}
.contact__item .mwform-radio-field {
  margin-top: 8px;
  display: block;
}
.contact__item .mwform-radio-field.horizontal-item {
  margin-left: 0 !important;
}
.contact__policy > div {
  display: flex;
  justify-content: center;
}
.contact__policy label {
  display: flex;
  position: relative;
}
.contact__policy a {
  text-decoration: underline;
  margin-left: 8px;
}
.contact__policy .mwform-checkbox-field-text {
  display: none;
}
.contact__policy .text {
  font-size: 13px;
  color: #7C7C7C;
}
.contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.contact__submit input[type=submit] {
  color: white;
  display: block;
  padding: 20px 0;
  text-align: center;
  transition: all 0.3s;
  background-color: black;
  width: 218px;
  padding: 12px 0;
  border-radius: 0;
  border: 1px solid black;
  margin: 0 16px;
}
.contact__submit input[type=submit].back {
  background: white;
  color: black;
}
.contact.confirm .contact__policy {
  display: none;
}
.contact.thanks .contact__thanks {
  margin-top: 40px;
}
.contact.thanks .contact__thanks p {
  text-align: center;
  word-break: auto-phrase;
  line-height: 2.3;
}
.contact.thanks .contact__thanks .button {
  margin: 40px auto 0;
  max-width: 400px;
}
.contact.thanks .contact__thanks .button::before {
  display: none;
}

.plan-content01 .card__list {
  flex-direction: column;
  gap: 24px;
}
.plan-content01 .card__item {
  width: 100%;
}
.plan-content01 .card__item .section__title {
  padding-bottom: 16px;
}
.plan-content01 .card__item .section__title span {
  font-size: 28px;
}
@media (max-width: 767px) {
  .plan-content01 .card__item:nth-of-type(2) {
    margin-top: 80px;
  }
  .plan-content01 .card__item:nth-of-type(3) {
    margin-top: 20px;
  }
}
.plan-content01__list {
  gap: 0 16px;
}
@media (max-width: 991px) {
  .plan-content01__list {
    margin-bottom: -48px;
  }
}
.plan-content01__item {
  width: calc((100% - 64px) / 5);
}
@media (max-width: 991px) {
  .plan-content01__item {
    width: calc((100% - 32px) / 3);
    margin-bottom: 48px;
    width: 100%;
  }
  .plan-content01__item-icon {
    width: 64px;
    margin-top: -32px;
    height: 64px;
  }
}
.plan-content01__item-text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.plan-content01 .creative-drive__title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .plan-content01 .creative-drive__title {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-top: -80px;
  }
}
.plan-content01 .creative-drive__feature {
  display: flex;
  position: absolute;
  top: -8px;
  right: calc(100% + 10px);
  width: 113px;
  height: 113px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  font-weight: 700;
  border-radius: 56.5px;
  line-height: 1.2;
  text-align: center;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
}
@media (max-width: 767px) {
  .plan-content01 .creative-drive__feature {
    position: static;
  }
}
.plan-content01 .creative-drive__feature p {
  color: #fff;
}
.plan-content01 .creative-drive__feature small {
  font-size: 8px;
  display: inline-block;
  margin-bottom: 3px;
}
.plan-content01 .creative-drive__feature strong {
  font-size: 22px;
}
.plan-content01 .creative-drive__lead {
  margin-top: -40px;
  margin-bottom: 74px;
}
.plan-content01 .creative-drive__note {
  font-size: 8px;
  margin-bottom: -1.2em;
  line-height: 1.2;
  margin-top: 8px;
}
.plan-content01 .option__list {
  gap: 24px;
}
.plan-content01 .option__item {
  width: calc((100% - 24px) / 2);
}
.plan-content01 .option__note {
  font-weight: 700;
  letter-spacing: 1.28px;
  margin-top: 16px;
}
.plan-content02 .section__title span {
  letter-spacing: normal;
}
@media (max-width: 767px) {
  .plan-content02 .section__title {
    margin-bottom: 36px;
  }
}
.plan-content02__list {
  gap: 16px 24px;
}
@media (max-width: 767px) {
  .plan-content02__list {
    gap: 16px;
  }
}
.plan-content02__item {
  width: calc((100% - 72px) / 4);
  text-align: center;
}
@media (max-width: 767px) {
  .plan-content02__item {
    width: calc((100% - 16px) / 2);
  }
}
.plan-content02__title {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.plan-content03 {
  position: relative;
}
.plan-content03::after {
  content: "";
  position: absolute;
  top: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  width: 100%;
  height: 70px;
  mix-blend-mode: multiply;
  background-image: url(./images/bg-gradient.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .plan-content03::after {
    -webkit-clip-path: polygon(5% 0, 95% 0, 50% 100%);
            clip-path: polygon(5% 0, 95% 0, 50% 100%);
    height: 47px;
  }
}
.plan-content03 .card__item {
  overflow: auto;
  padding: 16px;
}
@media (max-width: 767px) {
  .plan-content03 .card__item {
    padding: 0;
  }
}
.plan-content03 .card__item img {
  min-width: 550px;
}
@media (max-width: 767px) {
  .plan-content04 .section {
    padding-top: 90px;
  }
}
.plan-content04__list {
  gap: 16px 24px;
}
.plan-content04__item {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 767px) {
  .plan-content04__item {
    width: 100%;
  }
}
.plan-content04__item .card__item-thumb {
  margin-bottom: 24px;
}
.plan-content04__item:nth-of-type(n + 4) {
  width: calc((100% - 24px) / 2);
}
@media (max-width: 767px) {
  .plan-content04__item:nth-of-type(n + 4) {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .plan-content04__item:nth-of-type(n + 4) .card__item-thumb {
    padding-bottom: 37%;
  }
}
.plan-content04__item-list {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767px) {
  .plan-content04__item-list {
    gap: 24px;
    flex-direction: column;
  }
  .plan-content04__item-list .strategy__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.plan-content04__title {
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.plan-content04__title span {
  font-size: 24px;
}
.plan-content04 .strategy__list {
  margin-bottom: -12px;
}
@media (min-width: 768px) {
  .plan-content04 .strategy__list-separate {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.plan-content04 .strategy__item {
  padding-left: 36px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.5;
  letter-spacing: 1.28px;
}
.plan-content04 .strategy__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(./images/check-ring-round-duotone.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.plan-content05__row {
  padding: 24px 0;
  position: relative;
  gap: 50px;
}
.plan-content05__row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100vw - (100vw - 1024px) / 2 + 30px);
  border-radius: 8px;
}
.plan-content05__row:nth-of-type(1) {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .plan-content05__row:nth-of-type(1)::before {
    left: -24px;
    border-radius: 8px 0px 0px 8px;
    background: linear-gradient(90deg, rgba(142, 85, 233, 0.8) 0%, rgba(246, 246, 246, 0.8) 100%);
  }
}
@media (min-width: 768px) {
  .plan-content05__row:nth-of-type(2)::before {
    right: -24px;
    border-radius: 0px 8px 8px 0px;
    background: linear-gradient(270deg, rgba(142, 85, 233, 0.9) 0.25%, rgba(252, 252, 252, 0.9) 101.53%);
  }
}
.plan-content05__row:nth-of-type(2) .plan-content05__item:nth-last-child(1)::after {
  content: none;
}
@media (max-width: 767px) {
  .plan-content05__list {
    position: relative;
    padding: 0 12px;
  }
  .plan-content05__list::before {
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(114, 5, 185, 0.9) 0.02%, rgba(246, 246, 246, 0.9) 99.96%);
    position: absolute;
  }
}
.plan-content05__item {
  width: calc((100% - 100px) / 3);
  position: relative;
  padding: 16px;
}
@media (max-width: 767px) {
  .plan-content05__item {
    width: 100%;
  }
}
.plan-content05__item::before {
  position: absolute;
  font-size: 24px;
  line-height: 1.4;
  top: 25px;
  left: 16px;
  text-align: center;
}
.plan-content05__item::after {
  content: "";
  background-image: url(./images/arrow-flow.svg);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 33px;
}
@media (max-width: 767px) {
  .plan-content05__item::after {
    background-image: url(./images/arrow-flow-white.svg);
    width: 33px;
    height: 50px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
}
.plan-content05__title {
  width: 100%;
  margin-bottom: 8px;
  padding-left: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.6px;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plan-content05__title::before {
  content: "step";
  width: 28px;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: normal;
  font-weight: 400;
  position: absolute;
  left: 16px;
  top: 16px;
}
.plan-content05__text {
  display: flex;
  width: 100%;
  align-items: center;
}

.page-case .page-container {
  margin-top: 100px;
  margin-bottom: 88px;
}
@media (max-width: 767px) {
  .page-case .page-container {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.page-case .page-container .section__lead {
  font-size: 16px;
}
.page-case .case__list {
  justify-content: flex-start;
  margin-top: 40px;
}

.page-event .page-container {
  margin-top: 100px;
  margin-bottom: 88px;
}
.page-event .event__list {
  margin-top: 40px;
}

.page-faq .page-container {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .page-faq .page-container {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.page-faq .faq__section {
  margin-bottom: 48px;
}
.page-faq .faq__item {
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px var(--numerical-Variable-Variable-6, 16px) 0px rgba(153, 169, 176, 0.3);
}
.page-faq .faq__title {
  background-color: #fff;
}
.page-faq .faq__answer {
  border-top: 1px solid #ECECF1;
}

.page-feature .page-container__head {
  padding: 78px 0 48px;
}
.page-feature .page-container__title {
  padding-bottom: 0;
  margin-bottom: 24px;
}
.page-feature .section__lead {
  font-size: 16px;
}
@media (max-width: 767px) {
  .page-feature .feature__list {
    gap: 24px;
  }
}
.page-feature .feature__item-title {
  font-size: 20px;
}
.page-feature .feature-content04 .card__list, .page-feature .feature-content07 .card__list {
  gap: 16px;
}
.page-feature .feature-content04 .card__item, .page-feature .feature-content07 .card__item {
  width: calc((100% - 16px) / 2);
}
@media (max-width: 767px) {
  .page-feature .feature-content04 .card__item, .page-feature .feature-content07 .card__item {
    width: 100%;
  }
}
.page-feature .feature-content04 .card__item .section__title, .page-feature .feature-content07 .card__item .section__title {
  padding-bottom: 26px;
  margin-bottom: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .page-feature .feature-content04 .card__item .section__title, .page-feature .feature-content07 .card__item .section__title {
    padding-bottom: 20px;
    margin-bottom: 60px;
  }
}
.page-feature .feature-content04 .card__item .section__title span, .page-feature .feature-content07 .card__item .section__title span {
  font-size: 24px;
}
@media (max-width: 767px) {
  .page-feature .feature-content04 .card__item .section__title span, .page-feature .feature-content07 .card__item .section__title span {
    font-size: 20px;
  }
}
.page-feature .feature-content04 .card__item .icon-card__item-icon, .page-feature .feature-content07 .card__item .icon-card__item-icon {
  width: 84px;
  height: 84px;
  margin-top: -42px;
}
.page-feature .feature-content04__item, .page-feature .feature-content07__item {
  width: 100%;
  text-align: center;
}
.page-feature .feature-content04__item-text, .page-feature .feature-content07__item-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-feature .feature-content07 .card__item {
  width: calc((100% - 32px) / 3);
}
@media (max-width: 767px) {
  .page-feature .feature-content07 .card__item {
    width: 100%;
  }
}
.page-feature .feature-content07__item-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-feature .feature-content05 .section {
  padding: 48px 0;
}
.page-feature .feature-content05__list {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .page-feature .feature-content05__list {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .page-feature .feature-content05__item-text {
    width: 60%;
  }
}
.page-feature .feature-content05__item-text.number-list {
  margin: 0;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .page-feature .feature-content05__item-text.number-list {
    gap: 16px;
  }
}
.page-feature .feature-content05__item-text.number-list .feature__item {
  width: 100%;
}
.page-feature .feature-content05__item-text.number-list .feature__item-title {
  font-size: 24px;
  margin: 0;
}
@media (max-width: 767px) {
  .page-feature .feature-content05__item-text.number-list .feature__item-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .page-feature .feature-content05__item-img {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .page-feature .feature-content05__item-img {
    margin-top: 16px;
    width: 40%;
  }
}
.page-feature .feature-content06 .card__list {
  gap: 16px;
}
.page-feature .feature-content06 .card__item {
  width: calc((100% - 16px) / 2);
}
@media (max-width: 767px) {
  .page-feature .feature-content06 .card__item {
    width: 100%;
  }
}
.page-feature .feature-content06__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .page-feature .feature-content06__title {
    flex-direction: column;
    padding-right: 0;
    gap: 30px;
  }
}
.page-feature .feature-content06__title-text {
  padding-right: 40px;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 24px;
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .page-feature .feature-content06__title-text {
    padding-right: 0;
    font-size: 20px;
  }
}
.page-feature .feature-content06__title-img {
  width: 175px;
}
.page-feature .feature-content06__lead {
  position: relative;
  padding-bottom: 12px;
  text-align: center;
  margin-bottom: 20px;
}
.page-feature .feature-content06__lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  height: 1px;
  background: var(--color-primary-primary-7, #7205B9);
}
.page-feature .feature-content06__list {
  margin-bottom: -12px;
}
.page-feature .feature-content06__item {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.page-feature .feature-content06__item::before {
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
}
.page-column .page-container {
  margin-top: 60px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .page-column .page-container {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.page-news .page-container {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .page-news .page-container {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.page-downloads .downloads__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 16px;
}
@media (max-width: 767px) {
  .page-downloads .downloads__list {
    gap: 16px;
  }
}
.page-downloads .downloads__item {
  width: calc((100% - 32px) / 3);
}
@media (max-width: 767px) {
  .page-downloads .downloads__item {
    width: 100%;
  }
}
.page-downloads .downloads__item-thumb {
  margin-bottom: 16px;
  aspect-ratio: 289.69/163;
  padding: 0;
  margin-bottom: 16px;
  box-shadow: 0px 0px var(--numerical-Variable-Variable-6, 16px) 0px rgba(153, 169, 176, 0.7);
}
.page-downloads .downloads__item-thumb-in {
  overflow: hidden;
  border-radius: 4px;
}
.page-downloads .downloads__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 16px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-downloads .downloads__title .subtitle {
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.96px;
}
.page-downloads .btn-view-strong {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: 20px;
  padding: 16px;
  padding-bottom: 20px;
}

.modaal-iframe .modaal-container {
  padding-top: 64px;
}
.modaal-iframe .modaal-container::before {
  content: "資料申し込み";
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 16px;
}
.modaal-iframe .modaal-close {
  position: absolute;
  top: 8px;
  right: 0;
  background-color: #fff;
}
.modaal-iframe .modaal-close::before, .modaal-iframe .modaal-close::after {
  width: 2px;
  background-color: #474747;
}

.page-demo .section {
  padding-top: 48px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .page-demo .demo-form {
    display: flex;
    justify-content: space-between;
  }
}
.page-demo .demo-form__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) {
  .page-demo .demo-form__left {
    width: 58%;
  }
}
@media (max-width: 767px) {
  .page-demo .demo-form__left {
    margin-bottom: 40px;
  }
}
.page-demo .demo-form__right {
  background: var(--color-natural-white, #FFF);
  padding: 16px;
  border-radius: 4px;
  box-shadow: 0px 0px var(--numerical-Variable-Variable-6, 16px) 0px rgba(153, 169, 176, 0.12) inset;
}
@media (min-width: 768px) {
  .page-demo .demo-form__right {
    width: 38%;
  }
}
.page-demo .demo-form__right .login-text {
  text-align: center;
  font-size: 12px;
}
.page-demo .demo-form__right .login-text span {
  border-bottom: 1px solid;
}
.page-demo .demo-form__right .login-text:hover span {
  border-color: #fff;
}
.page-demo .demo-form__section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.page-demo .demo-form__section:nth-of-type(1) {
  justify-content: center;
}
.page-demo .demo-form__title {
  padding-bottom: 12px;
  margin-bottom: 0;
}
.page-demo .demo-form__title span {
  color: var(--color-natural-black, #333);
  font-size: 24px;
  -webkit-text-fill-color: unset;
}
.page-demo .demo-form__lead {
  text-align: center;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 1.28px;
  background: var(--gradation-primary, linear-gradient(126deg, #4976E6 20.82%, #8E55E9 104.08%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .page-demo .demo-form__img {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.page-demo .demo-form__detail {
  border-radius: 6px;
  border: 1px solid var(--05, #155AA8);
  background: #FFF;
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-demo .demo-form__detail-title {
  color: var(--05, #155AA8);
  text-align: center;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.28px;
}
.page-demo .demo-form__detail-text {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1.28px;
  color: var(--05, #155AA8);
}

.column-cat-tag {
  background: #f0f0f0 !important;
  color: #444 !important;
}

/* カテゴリ一覧全体の装飾 */
/* カテゴリブロック全体に枠線を追加 */
.wp-block-categories-list.wp-block-categories {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
}

/* リストのリンクの装飾 */
.wp-block-categories-list.wp-block-categories li a {
  padding: 6px 8px;
  display: block;
  color: #333;
  text-decoration: none;
}

.wp-block-categories-list.wp-block-categories li a:hover {
  background-color: #f0f0f0;
}

/* 新カテゴリーリスト */
.category-list li {
  border-bottom: 1px solid #e0e0e0;
  padding: 8px 0;
  list-style: none;
}

.category-list li:last-child {
  border-bottom: none;
}

main .p-column__single p {
  background-color: #fff !important;
}

/* ▼ カテゴリータグ */
.column-cat-tag {
  display: inline-block;
  background: #e0e0e0;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  font-family: "Noto Sans JP";
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
  margin-right: 6px;
  line-height: 1.2;
}

/* ▼ 関連記事カード（YARPP） */
.yarpp-thumbnail {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 300px;
}

.yarpp-thumbnail img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.yarpp-thumbnail-title {
  padding: 2.5px 16px 12px;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  word-break: break-word;
}

.yarpp-thumbnails-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 16px;
  justify-content: center;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail {
  width: 310px;
  height: 225px;
  margin: 5px 0 5px 0;
}

/* ▼ サイドバー付きページレイアウト */
.page-column .l-inner {
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.page-column .content-with-sidebar,
.content-with-sidebar {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 35px;
}

main {
  flex: 4;
}

aside.widget-area {
  flex: 1 !important;
  width: auto !important;
  max-width: none;
  /* margin-top: 300px; */
  padding-left: 20px;
}

aside.widget-area > * {
  margin-bottom: 40px;
}

/* ▼ モバイル対応（1カラム化） */
@media screen and (max-width: 768px) {
  .content-with-sidebar {
    flex-direction: column;
    gap: 40px;
  }

  .main-column,
  aside.widget-area {
    width: 100%;
  }

  aside.widget-area {
    margin-top: 30px;
    padding-left: 20px;
  }

  aside.widget-area > * {
    margin-bottom: 30px;
  }
}

/* ▼ サイドバー内カテゴリー表示 */
.wp-block-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-block-categories-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.wp-block-categories-list li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  display: block;
  transition: color 0.2s;
}

.wp-block-categories-list li a:hover {
  color: #826ac4;
}

.wp-block-heading.has-medium-font-size {
  margin-top: 60px;
}

/* ▼ column cta */
.column-cta{
	position: relative;
    background-color: #E9EEF9;
	padding:30px;
	margin-top:50px;
	text-align:center;
}
@media (max-width: 767px) {
.column-cta{
	padding:30px 20px;
	margin-top:30px;
}	
}
.p-column__single .content .column-cta-ttl{
	    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    border-left:none;
    line-height: 1.4em;
	font-size:28px;
	font-weight:700;
}
@media (max-width: 1049px) {
.p-column__single .content .column-cta-ttl{
	font-size:18px;
}
}
main .p-column__single .column-cta p {
    background-color: #E9EEF9 !important;
	margin:0;
	line-height:1.5;
}
.column-cta-l{
	display:flex;
	align-items:center;
	flex-direction:column;
	gap:10px;
	margin-bottom:50px;
}

	@media (max-width: 767px) {
		.column-cta-l{
	margin-bottom:30px;
	}
	}
.column-cta-l-img{
	max-width:450px;
	margin:0 auto;
}
.p-column__single .content .column-cta-l h4{
	max-width:320px;
	margin:0;
}
.column-cta .circle-list{
	display:flex;
	gap:15px;
	margin-top:20px;
}
@media (max-width: 767px) {
	.column-cta .circle-list{
	gap:10px;
}
}

/* ▼ column table */
.p-column__single table{
	width: 100%;
	margin-bottom:30px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
table-layout: fixed;
		border-collapse: collapse;
}
.p-column__single table td,
.p-column__single table th {
	border: 1px solid #ddd;
	border-collapse: collapse;
}
.p-column__single table td,
.p-column__single table th {
	padding:10px;
	font-size:14px;
	line-height:1.7;
	width:100%;
}
.p-column__single table th {
	font-weight:700;
	background-color:#E9EEF9;
}

@media (max-width: 767px) {
.p-column__single table td,
.p-column__single table th {
	font-size:12px;
}
}
/* plan-re ------------------------------------*/
.plan-about{
display:flex;
	gap:6%;
	align-items:center;
	margin:2rem 0 8rem;
}
.plan-about-left{
	width:44%;
	text-align:left;
}
.plan-about-left .section__title{
	text-align:left;
}
.plan-about-left .section__title::after {
    left: 0;
	transform:none;
}
.plan-about-left p{
	font-size:2rem;
	line-height:1.5;
	font-weight:500;
}
.plan-about-right {
    flex: 1;
    margin-right: calc(50% - 50vw);
    aspect-ratio: 3 /2;
    border-radius: 40px 0 0 40px;
    overflow: hidden;
    transform: translateX(0);
    -webkit-animation: toleft .5s .2s forwards ease-out;
    animation: toleft .5s .2s forwards ease-out;
}
.plan-about-right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.price-list{
	display:flex;
	gap:5rem;
	margin-top:5rem;
}
.price-list .price-item{
	width:calc((100% - 5rem)/2);
	padding:30px 20px;
	display:flex;
	flex-direction:column;
	align-items:center;
}
.price-item .strategy__list{
	margin-bottom:2rem;
}
.price-item .strategy__item{
	padding-left: 36px;
    position: relative;
    margin-bottom: 5px;
    line-height: 1.5;
    letter-spacing: 1.28px;
	text-align:left;
}
.price-item .strategy__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(https://creative-drive.jp/wp-content/themes/creative-drive/images/check-ring-round-duotone.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.price-option{
		margin:10rem 0 10rem;
	padding:30px 20px;
	display:flex;
	flex-direction:column;
	align-items:center;
	position:relative;
}
.price-option:before{
	    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translateX(-50%);
    background: url(https://creative-drive.jp/wp-content/themes/creative-drive/img/re/icon-plus.png) no-repeat;
    background-size: contain;
}
.price-option .strategy__item{
    margin-bottom: 5px;
    line-height: 1.5;
    letter-spacing: 1.28px;
	text-align:left;
}
.plan-article{
	    background-image: url(/wp-content/themes/creative-drive/img/re/bg-dot.png);
    background-size: 20px 20px;
    background-position: 0 0;
}

.lpc-result {
    display: flex;
    gap: 6rem 5rem;
    flex-wrap: wrap;
    max-width: 750px;
    margin: 8rem auto 5rem;
}
.result-box {
    width: calc((100% - 5rem) / 2);
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem 2rem;
    box-shadow: 0px 0px 16px 0px rgba(153, 169, 176, 0.4);
	gap:1rem;
}
.result-box-s {
    font-size: 2rem;
}
.result-box-l {
    font-size: 4rem;
    font-weight: 900;
	line-height:1;
}
.result-circle {
    position: absolute;
    background: linear-gradient(to right, #6e92eb 0%, #a578ed 100%);
    color: #fff;
    border-radius: 999px;
    font-size: 1.8rem;
    line-height: 80px;
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
	text-align:center;
}
.plan-article .btn-view {
	width:393px;
}
@media screen and (max-width: 749px) {
.plan-about{
	flex-direction:column;
	gap:3rem;
	margin:4rem 0 6rem;
}
.plan-about-left{
	width:100%;
}
.plan-about-left .section__title{
	text-align:center;
}
.plan-about-left .section__title::after {
    left: 50%;
	transform:translateX(-50%);
}
.plan-about-left p{
	font-size:1.6rem;
}
.plan-about-right {
    border-radius: 20px 0 0 20px;
}
.price-list{
	flex-direction:column;
	gap:3rem;
	margin-top:3rem;
}
.price-list .price-item{
	width:100%;
	padding:24px 20px;
}
.price-item .strategy__list{
	margin-bottom:2rem;
}
.price-option{
		margin:8rem 0 6rem;
	padding:24px 20px;
}
.price-option:before{
    top: -65px;
}
.price-option .strategy__item{
    margin-bottom: 5px;
    line-height: 1.5;
    letter-spacing: 1.28px;
	text-align:left;
}
.plan-article{
	    background-image: url(/wp-content/themes/creative-drive/img/re/bg-dot.png);
    background-size: 20px 20px;
    background-position: 0 0;
}

.lpc-result {
        gap: 3rem;
        margin: 6rem 0 5rem 1.5rem;
}
.result-box {
          width: 100%;
        padding: 3rem 2rem;
}
.result-box-s {
        font-size: 1.6rem;
}
.result-box-l {
        font-size: 3.2rem;
}
.result-circle {
        font-size: 1.4rem;
        line-height: 70px;
        width: 70px;
        height: 70px;
        top: -20px;
        left: -20px;
}
.plan-article .btn-view {
	width:393px;
}	
}
/* featute-re ------------------------------------*/
.page-feature .feature-content07 .card__item {
    width: calc((100% - 16px) / 2);
}
	.feature-content05-add .feature-content05__list{
		flex-direction:row-reverse;
		align-items:center;
		gap:5%;
	}
	@media (min-width: 768px) {
    .page-feature .feature-content05-add .feature-content05__item-text {
        width: 55%;
    }
    .page-feature .feature-content05-add .feature-content05__item-img {
        margin-top: 0;
        width: 40%;
    }
}

	.page-feature .feature-content05-add .feature-content05__item-text.number-list .feature__item-title {
    margin-bottom: 10px;
}
	@media (max-width: 767px) {
    .page-feature .feature-content07 .card__item {
        width: 100%;
    }
		.feature-content05-add .feature-content05__list{
		flex-direction:column-reverse;
		gap:0;
	}
}
/* free-tool ------------------------------------*/
.freetool-list{
  display: flex;
  flex-wrap: wrap;
  gap:4rem;
}
.freetool-item{
  width:calc((100% - 4rem)/2);
  background-color: #fff;
  border-radius: 5px;
    box-shadow: 0px 0px 16px 0px rgba(153, 169, 176, 0.3);
}
.freetool-item a{
	display:block;
	height:100%;
}
.freetool-img{
  border-radius: 5px 5px 0 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  overflow:hidden ;
}
.freetool-img img{
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-out;
}
.freetool-item a:hover .freetool-img img {
  transform: scale(1.04);
}
.freetool-info{
  padding:2rem 2rem 3rem;
	display:flex;
	flex-direction:column;
	flex: 1 1 auto;
	align-items:stretch;
}

.freetool-ttl{
  font-size:2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom:1rem;
}
@media (max-width: 767px) {
.freetool-list{
  gap:3rem;
}
.freetool-item{
  width:100%;
}
	.freetool-info{
  padding:2rem 2rem 2.4rem;
}
	.freetool-ttl{
		font-size:18px;
	}
	.freetool-txt{
		font-size:14px;
	}
}
/* float ------------------------------------*/
.float-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
	max-width: 350px;
}
.float-banner a{
	display:block;
	width:100%;
}
.float-banner img {
  display: block;
	width:100%;
  height: auto;
}

.float-banner__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
@media (max-width: 767px) {
	.float-banner {
  right: 10px;
  bottom: 10px;
	max-width: 160px;
}
}
	.header__subnav {
  display: none;
  padding: 15px 20px;
	flex-direction:column;
	  gap:10px;	    
}

@media screen and (min-width: 992px) {
  .header__nav-list {
    position: relative;
	  cursor:pointer;
  }
  .header__subnav {
	  background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
	  box-shadow: 0px 0px 16px 0px rgba(153, 169, 176, 0.3);
	  border-radius: 8px;
  }
  .header__nav-list:hover > .header__subnav {
    display: flex;
  }
}

@media screen and (max-width: 991px) {
	  .header__subnav {
    display: none;
		  padding: 0 0 0 15px;
	}
	.header__subnav li{
		margin-top:15px;		
	}
	.open .header__subnav{
    display: flex;
  }
}
.page-container .l-inner > h1.search-title {
    font-size: 26px;
        margin-bottom: 40px;
}
.top .about__video-iframe{
			@media screen and (max-width: 768px) {
				position:initial;
	}
}
.top .about__video-inner::before	{
		padding-bottom: 0;
@media screen and (max-width: 768px) {
					 padding-bottom: 0;
}
	}

.top .about__video-inner .about__video-iframe + div{
    padding-top: 58.8% !important;
    width: 100%;

	
}
	@media screen and (max-width: 1000px) {
		.top .about__video-inner .about__video-iframe + div{
		 padding-top: 68vw!important;
		    	}
	}
	@media screen and (max-width: 768px) {
		.top .about__video-inner .about__video-iframe + div{
		 padding-top: 67vh!important;
		    	}
	}
  .l-inner:has(.add-q) .c-section__width .c-page__single--content__inner:has( .download-banner){
width: 100%;
    max-width: 1440px;
  }
  .download-banner {
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden;
    margin: 0px 0 0;
}
.download-banner__title{
  font-size: 28px;
}
.download-banner__item {
    flex: 1 !important;
    display: flex !important;
    padding: 20px 30px;
    color: #fff;
    min-height: 280px;
    box-sizing: border-box;
    justify-content: space-evenly;
        max-width: 50%;
}
.download-banner__image {
       max-width: 50%;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0;
}

/* ボタン設定 */
.download-banner__button {
    display: inline-block;
    background: #fff;
    color: #0044a7;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}
.is-housemaker .download-banner__button { background: #333; color: #fff; }
/* 左側：Creativeスロット */
.is-creative {
    background-color: var(--creative-bg) !important;
}

.is-creative .download-banner__image {
    background-image: var(--creative-img) !important;
}

/* 右側：Housemakerスロット */
.is-housemaker {
    background-color: var(--housemaker-bg) !important;
}

.is-housemaker .download-banner__image {
    background-image: var(--housemaker-img) !important;
}

/* 共通設定：画像が表示されるための箱の定義 */
.download-banner__image {
    width: 550px;
    height: auto;
    max-height: 320px;
    flex-shrink: 0; /* 文字量が増えても画像が潰れないように固定 */
    aspect-ratio: 3 / 4;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
	@media screen and (max-width: 768px) {
   .c-page__single--content .download-banner__title{
  font-size: 28px;
     line-height: calc(41 / 28);
        margin: 0.2em 0;

}
  .download-banner {
    flex-direction: column !important;
        margin: 0px -20px;
}
.download-banner__item{
      max-width: 100%;
    width: 100%;
        flex-direction: column !important;
                justify-content:center;
                    padding: 14px 15px;
}
.download-banner__image {
max-width: 60%;
        margin-right: auto;
            max-height: 50vw;
}
.download-banner__content .c-page__single--content p{
      line-height: 2em;
    margin: .1em 0 .5em;
}
  }

html, body {
  height: auto !important;
  min-height: 100%;
  overflow: initial!important;
}
header .logo img {
    display: inline;
}