@charset "UTF-8";
/*
Theme Name: group-x
Version: 1.0
Author: XM inc.
*/
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html {
  color: #fff;
  font-family: "LINESeedJP_OTF_Bd", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 2;
}

body {
  background-color: #171717;
}
body.unscroll {
  overflow: hidden;
}

.fw-eb {
  font-family: "LINESeedJP_OTF_Eb", sans-serif;
  font-weight: 500;
}

.fw-bd {
  font-family: "LINESeedJP_OTF_Bd", sans-serif;
  font-weight: 500;
}

.fw-rg {
  font-family: "LINESeedJP_OTF_Rg", sans-serif;
  font-weight: 400;
}

img {
  width: 100%;
}

a {
  color: #fff;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-16 {
  margin-left: 16px;
}

.ml-a {
  margin-left: auto;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-24 {
  font-size: 24px;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

.fade {
  animation-name: fadeUpAnime;
  animation-delay: 0.4s;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadetrig {
  opacity: 0;
}

.dl04 {
  animation-delay: 0.4s;
}

.dl06 {
  animation-delay: 0.6s;
}

.dl08 {
  animation-delay: 0.8s;
}

.dl10 {
  animation-delay: 1s;
}

.dl20 {
  animation-delay: 2s;
}
.page-privacy-policy > .inner > .newsDetail_section {
  font-size: 24px;
margin-bottom: 24px;
}
/* ---------- bg-extend Start ---------- */
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 0.3s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 186px;
  background-color: #30B49F; /*伸びる背景色の設定*/
  z-index: 1;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.bgappearTrigger,
.bgDUextendTrigger {
  opacity: 0;
}

/* ---------- bg-extend End ---------- */
.header {
  background-color: #fff;
  height: 64px;
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  margin: 0 auto 0 16px;
  width: 84px;
}
.header-logo a {
  display: flex;
  align-items: center;
  height: 64px;
}
.header-logo a span {
  border-left: 8px solid #30B49F;
  border-radius: 1px;
  display: inline-block;
  font-size: 14px;
  margin: -2px 4px 0 0;
  padding-left: 16px;
}
.header-contact {
  margin-right: 32px;
}
.header-contact a {
  border: 1px solid #30B49F;
  border-radius: 4px;
  color: #30B49F;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 24px 4px 8px;
  position: relative;
}
.header-contact a::after {
  background-image: url("images/arrow-g.svg");
  background-position: right 50%;
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 7px;
  right: -32px;
  width: 48px;
}
.header-pc {
  display: none;
}

.menu {
  background: #171717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 60px);
  position: fixed;
  top: 64px;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.1s linear;
  visibility: hidden;
  width: 100vw;
}
.menu-inner {
  max-width: 400px;
  padding: 0 24px;
  width: 100%;
}
.menu-logo {
  margin: 0 auto 24px;
  mix-blend-mode: multiply;
  width: 108px;
}
.menu-nav-pc {
  display: none;
}
.menu-nav-sp nav ul li {
  margin: 0 0 24px;
}
.menu-nav-sp nav ul li a {
  color: #EEFAF8;
  display: block;
  font-size: 14px;
}
.menu-nav-sp nav ul li a span {
  color: #30B49F;
  font-size: 20px;
}
.menu.is-active {
  opacity: 1;
  visibility: visible;
}
.menu-button {
  z-index: 11;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  position: relative;
  transition: all 0.3s ease;
}
.menu-button span.menubar {
  border-radius: calc(infinity * 1px);
  height: 2px;
  position: absolute;
  transition: all 0.3s linear;
  width: 32px;
}
.menu-button span.menubar::before {
  content: "";
  background-color: #30B49F;
  border-radius: calc(infinity * 1px);
  height: 2px;
  width: 24px;
  position: absolute;
  top: -4px;
  transition: all 0.3s linear;
  width: 32px;
}
.menu-button span.menubar::after {
  content: "";
  background-color: #30B49F;
  border-radius: calc(infinity * 1px);
  height: 2px;
  width: 24px;
  position: absolute;
  top: 4px;
  transition: all 0.3s linear;
  width: 32px;
}
.menu-button.is-close span.menubar {
  background-color: transparent;
}
.menu-button.is-close span.menubar::before {
  top: 0px;
  transform: rotate(-30deg);
  width: 32px;
}
.menu-button.is-close span.menubar::after {
  top: 0px;
  transform: rotate(30deg);
  width: 32px;
}
.menu-button.is-close span.menulabel-menu {
  display: none;
}
.menu-button.is-close span.menulabel-close {
  display: block;
}
.menu-button span.menulabel {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 28px 0 0 8px;
  transition: all 0.3s ease;
}
.menu-button span.menulabel-close {
  display: none;
}

main {
  padding-top: 64px;
}

.mv {
  background-color: #fff;
  padding-bottom: 40px;
  position: relative;
}
.mv .inner {
  display: flex;
  flex-direction: column;
}
.mv-image {
  margin: 0 0 0 24px;
  position: relative;
}
.mv-image video {
  border-radius: 24px 0 0 24px;
  height: 60svh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.mv-text {
  color: #171717;
  margin: -130px 24px 0 24px;
  width: -moz-max-content;
  width: max-content;
}
.mv-text-title {
  line-height: 1.4;
}
.mv-text-title::before {
  background-image: url("images/slash-g.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 132px;
  margin: 0 0 16px;
  position: relative;
  width: 64px;
  z-index: 1;
}
.mv-text-title p .bgappearTrigger > span {
  display: flex;
  align-items: flex-end;
  font-size: 24px;
}
.mv-text-title p:nth-of-type(1) {
  font-size: 40px;
  margin-bottom: 16px;
}
.mv-text-title p:nth-of-type(1) ._key {
  display: flex;
  font-size: 40px;
  margin-top: 8px;
}
.mv-text-title p:nth-of-type(1) ._key::before {
  border-top: 2px solid #171717;
  border-left: 2px solid #171717;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: 8px;
}
.mv-text-title p:nth-of-type(1) ._key::after {
  border-right: 2px solid #171717;
  border-bottom: 2px solid #171717;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 24px;
  margin-top: 25px;
  width: 8px;
}
.mv-text-title p:nth-of-type(1) ._small {
  display: block;
  margin: 0 0 6px 8px;
}
.mv-text-title p:nth-of-type(1) ._large {
  font-size: 40px;
}
.mv-text-title p:nth-of-type(2) {
  display: inline-block;
  font-size: 14px;
}
.mv-text-caption {
  color: #171717;
  align-items: baseline;
  font-size: 10px;
  position: absolute;
  bottom: 16px;
  left: 0;
  display: none;
}
.mv-text-caption::before {
  background-color: #171717;
  content: "";
  display: block;
  height: 1px;
  margin: 0 16px 0 0;
  width: 24px;
}
.mv-text-caption span {
  display: block;
}

.main-caption {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.16rem;
  position: relative;
  text-align: center;
}
.main-caption span {
  display: block;
  position: relative;
  z-index: 2;
}
.main-caption::after {
  color: #30B49F;
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  left: 4px;
  margin-inline: auto;
  z-index: 1;
}
.main-caption._white {
  color: #fff;
}
.main-caption._black {
  color: #171717;
}
.main-caption._service::after {
  content: "SERVICE";
}
.main-caption._creater::after {
  content: "CREATER";
}
.main-caption._about::after {
  content: none;
}
.main-caption._company::after {
  content: "COMPANY";
}
.main-caption._contact::after {
  content: "CONTACT";
}

.main-title {
  font-size: 12px;
  margin-top: -16px;
  margin-bottom: 24px;
  text-align: center;
}
.main-title._white {
  color: #fff;
}
.main-title._black {
  color: #171717;
}

.inner {
  padding: 40px 24px;
}

.service {
  background-image: url("images/stroke-bg-groupx-r.svg");
  background-position: right 0%;
  background-repeat: no-repeat;
  background-size: 17%;
  padding: 40px 0;
}
.service-head {
  padding: 0 24px 64px;
}
.service-body {
  margin-bottom: 40px;
}
.service-box p {
  background-image: url("images/service-bg-sm.svg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 78px;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
  width: 270px;
}
.service-box::after {
  background-image: url("images/icon-cross.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 46px;
  margin: 0 auto;
  width: 46px;
}
.service-box:last-of-type::after {
  display: none;
}
.service-text span {
  background: linear-gradient(transparent 70%, #C2D968 70%);
}
.service-list {
  padding: 0 24px;
}
.service-wrap {
  margin-bottom: 64px;
}
.service-wrap:nth-of-type(2) .service-image {
  margin-right: -24px;
  margin-left: 0;
}
.service-wrap:nth-of-type(2) .service-image img {
  border-radius: 24px 0 0 24px;
}
.service-wrap:last-of-type {
  margin-bottom: 0;
}
.service-image {
  margin-left: -24px;
}
.service-image img {
  border-radius: 0 24px 24px 0;
}
.service-number {
  background-image: url("images/service-bg-md.svg");
  background-size: cover;
  display: flex;
  align-items: center;
  font-size: 24px;
  height: 57px;
  margin: -8px 0 16px;
  padding-left: 24px;
  position: relative;
  width: 113px;
  z-index: 1;
}
.service-caption {
  font-size: 24px;
}
.service-caption::after {
  background-color: #30B49F;
  content: "";
  display: block;
  height: 2px;
  margin: 8px 0 16px;
  width: 40px;
}

.top-post {
  overflow: hidden;
}
.top-post .inner {
  background-color: #fff;
  min-height: 400px;
  border-top-right-radius: 50% 100px;
  border-top-left-radius: 50% 100px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 64px;
  background-image: url("images/stroke-bg-creater.svg");
  background-position: 25vw calc(100% + 4px);
  background-repeat: no-repeat;
  background-size: 40%;
}
.top-post-title {
  background-color: #30B49F;
  border-radius: 0 8px 8px 0;
  color: #171717;
  display: inline-block;
  margin: 0 0 88px;
  padding: 16px 56px 16px 24px;
}
.top-post-title span {
  display: block;
  line-height: 1;
}
.top-post-title span:nth-of-type(1) {
  font-size: 18px;
  letter-spacing: 0.16rem;
  margin: 0 0 8px;
}
.top-post-title span:nth-of-type(2) {
  font-size: 12px;
}
.top-post-title span:nth-of-type(2)::before {
  background-color: #171717;
  border-radius: calc(infinity * 1px);
  content: "";
  display: inline-block;
  height: 8px;
  margin: 0 8px 0 0;
  width: 8px;
}
.top-post-decoration {
  margin: 0 0 24px;
  overflow: hidden;
  width: 100%;
}
.top-post-decoration img {
  margin-left: 40px;
  width: 128%;
}
.top-post-wrap {
  position: relative;
}
.top-post-mark {
  position: absolute;
  top: 0;
  right: -8px;
  width: 78px;
  z-index: 1;
}
.top-post-thumbnail {
  margin: 0 0 16px;
}
.top-post-thumbnail img {
  aspect-ratio: 9/16;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-post-text {
  background-image: url("images/creater-bg.svg");
  background-size: cover;
  color: #171717;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 17.2vw;
  margin-top: -14vw;
  position: relative;
  width: 54vw;
  z-index: 1;
}
.top-post-text p {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  margin-left: 22vw;
}
.top-post-headline {
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0 0 8px;
}
.top-post-category span {
  border: 1px solid #C2D968;
  border-radius: calc(infinity * 1px);
  color: #C2D968;
  display: inline-block;
  font-size: 10px;
  line-height: 1.3;
  padding: 2px 8px;
}
.top-post-button {
  background-color: #30B49F;
  background-image: url("images/common/button-image.webp");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 8px;
  height: 96px;
  margin-inline: auto;
  width: 300px;
}
.top-post-button a {
  color: #171717;
  display: block;
  height: 96px;
  line-height: 96px;
  padding: 0 0 0 120px;
  position: relative;
}
.top-post-button a::after {
  background-image: url("images/common/arrow-wb.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 24px;
  margin: 0 0 0 8px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 24px;
}

.splide {
  margin-bottom: 40px;
}

.button-g {
  margin: 0 auto;
  position: relative;
  width: 240px;
}
.button-g a {
  border: 1px solid #30B49F;
  border-radius: 4px;
  color: #30B49F;
  display: block;
  padding: 8px 0;
  text-align: center;
}
.button-g a::after {
  background-image: url("images/arrow-g.svg");
  background-position: right 50%;
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  margin: 0 0 0 8px;
  position: absolute;
  top: 19px;
  right: -29px;
  width: 48px;
}

.about {
  background-color: #30B49F;
}
.about .inner {
  padding: 40px 0;
}
.about-image {
  margin-bottom: 24px;
}
.about-image img {
  border-radius: 16px;
}
.about-01 {
  background-image: url("images/stroke-bg-ecommerce.svg");
  background-position: right 0%;
  background-repeat: no-repeat;
  background-size: 17%;
  padding: 0 24px;
}
.about-01-wrap {
  margin: 0 auto 40px;
  max-width: 600px;
}
.about-01 .about-inner {
  background-color: #EEFAF8;
  border-radius: 0 24px 24px 0;
  margin-left: calc(50% - 50vw);
  padding: 40px 24px 40px calc(50vw - 50% + 24px);
}
.about-01-title {
  color: #30B49F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  text-align: center;
}
.about-01-title::before {
  background-color: #30B49F;
  content: "";
  display: block;
  height: 12px;
  margin-right: 12px;
  transform: rotate(-30deg);
  width: 2px;
}
.about-01-title::after {
  background-color: #30B49F;
  content: "";
  display: block;
  height: 12px;
  margin-left: 8px;
  transform: rotate(30deg);
  width: 2px;
}
.about-01-description {
  color: #30B49F;
  margin-bottom: 24px;
}
.about-graph-title {
  color: #9EB9B5;
  text-align: center;
}
.about-graph-title span {
  display: block;
}
.about-graph-title::after {
  background-color: #9EB9B5;
  content: "";
  display: block;
  height: 2px;
  margin: 8px auto 24px;
  width: 40px;
}
.about-02 {
  margin: 0 24px 40px;
}
.about-02-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  text-align: center;
}
.about-02-title::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 12px;
  margin-right: 12px;
  transform: rotate(-30deg);
  width: 2px;
}
.about-02-title::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 12px;
  margin-left: 8px;
  transform: rotate(30deg);
  width: 2px;
}
.about-02-description {
  border: 2px solid #fff;
  border-radius: 24px;
  padding: 24px;
}
.about-03 {
  background-image: url("images/stroke-bg-professional.svg");
  background-position: left 0%;
  background-repeat: no-repeat;
  background-size: 17%;
  padding: 0 24px;
}
.about-03-wrap {
  margin: 0 auto 40px;
  max-width: 600px;
}
.about-03 .about-inner {
  background-color: #EEFAF8;
  border-radius: 24px 0 0 24px;
  margin-right: calc(50% - 50vw);
  padding: 40px calc(50vw - 50% + 24px) 40px 24px;
}
.about-03-title {
  color: #30B49F;
  margin-bottom: 24px;
  text-align: center;
}
.about-03-logo {
  width: 174px;
}
.about-03-image {
  margin-bottom: 24px;
}
.about-03-description {
  color: #171717;
  letter-spacing: 0;
}
.about-03-description p {
  margin-bottom: 24px;
}
.about-03-description span {
  background: linear-gradient(transparent 70%, #C2D968 70%);
}
.page-privacy-policy .inner{
	padding:0;
}
.company {
  background-color: #30B49F;
}
.company .inner {
  background-color: #171717;
  border-radius: 24px;
  margin-inline: auto;
  padding: 24px;
  width: 90%;
}
.company-map {
  border-radius: 24px;
  margin-bottom: 40px;
  overflow: hidden;
}
.company-title {
  font-size: 24px;
  margin-bottom: 24px;
}
.company-title span {
  font-size: 14px;
  margin-left: 8px;
}
.company dl div {
  margin-bottom: 24px;
}
.company dl div dt {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.company dl div dt::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 14px;
  margin-left: 8px;
  transform: rotate(30deg);
  width: 2px;
}
.company dl div dd {
  line-height: 1.6;
}
.company-button {
  margin-top: 8px;
  width: 210px;
}
.company-button a {
  border: 2px solid #30B49F;
  border-radius: 8px;
  color: #30B49F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}
.company-button a::after {
  background-image: url("images/arrow-up.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}

.contact {
  background-color: #30B49F;
  background-image: url("images/stroke-bg-contact.svg");
  background-position: right calc(100% - 40px);
  background-repeat: no-repeat;
  background-size: 17%;
}
.contact-wrap {
  background-color: #EEFAF8;
  border-radius: 24px;
  padding: 24px 24px 40px;
}
.contact-text {
  background-color: #30B49F;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  margin: 0 auto 40px;
  padding: 24px 40px;
  max-width: 560px;
}
.contact-description {
  margin-bottom: 24px;
  text-align: center;
}
.contact-link {
  margin-inline: auto;
  width: 180px;
}
.contact-link a {
  background-color: #fff;
  border-radius: 8px;
  color: #30B49F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
}
.contact-link a::after {
  background-image: url("images/arrow-up.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}
.contact-form {
  /* ラジオボタン全体のスタイル */
  /* 実際のラジオボタンを非表示に */
  /* カスタムラジオボタンの外観 */
  /* チェック時のスタイル */
  /* チェックマークの中央の点 */
}
.contact-form-title {
  color: #171717;
  margin-bottom: 24px;
  text-align: center;
}
.contact-form-wrap {
  color: #171717;
}
.contact-form .smf-text-control input {
  background: none;
  border: 1px solid #171717;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
}
.contact-form .smf-textarea-control textarea {
  background: none;
  border: 1px solid #171717;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
}
.contact-form .smf-radio-button-control {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.contact-form .smf-radio-button-control__control {
  display: none;
}
.contact-form .smf-radio-button-control__label {
  padding-left: 24px;
}
.contact-form .smf-radio-button-control__label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #171717;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form .smf-radio-button-control__control:checked + .smf-radio-button-control__label::before {
  border: 1px solid #30B49F;
  border-color: #30B49F;
}
.contact-form .smf-radio-button-control__control:checked + .smf-radio-button-control__label::after {
  content: "";
  position: absolute;
  left: 4px; /* 点の中央位置調整 */
  top: 50%;
  transform: translateY(-50%);
  width: 12px; /* 中央の点のサイズ */
  height: 12px;
  background-color: #30B49F;
  border-radius: 50%;
}
.contact-form .smf-item {
  margin-bottom: 24px;
}
.contact-form-note {
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.contact-form button[type=submit] {
  background: none;
  border: 1px solid #30B49F;
  border-radius: 8px;
  color: #30B49F;
  display: block;
  margin-inline: auto;
  position: relative;
  text-align: center;
  width: 200px;
}
.contact-form button[type=submit]::after {
  background-image: url("images/arrow-g.svg");
  background-position: right 50%;
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 17px;
  right: -24px;
  width: 48px;
}

.footer .inner {
  padding: 24px 40px 8px;
}
.footer-information {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.footer-information::before {
  background-image: url("images/slash-g.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 101.8181818182px;
  margin-right: 24px;
  width: 30px;
}
.footer-information p {
  font-size: 10px;
}
.footer-information p span {
  display: block;
}
.footer-logo {
  margin: 0 auto 16px;
  width: 168px;
}
.footer-information {
  margin: 0 0 40px;
}
.footer-nav {
  margin: 0 auto 40px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}
.footer-nav .footer-contact {
  margin: 24px auto 0;
  width: 184px;
}
.footer-nav .footer-contact a {
  background: none;
  border: 1px solid #30B49F;
  border-radius: 8px;
  color: #30B49F;
  display: block;
  margin-inline: auto;
  padding: 8px;
  position: relative;
  text-align: center;
}
.footer-nav .footer-contact a::after {
  background-image: url("images/arrow-g.svg");
  background-position: right 50%;
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 17px;
  right: -24px;
  width: 48px;
}
.footer-privacy-policy {
  border-bottom: 1px solid #30B49F;
  padding-bottom: 2px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: 10px;
  width: -moz-max-content;
  width: max-content;
}
.footer-privacy-policy a {
  color: #30B49F;
}
.footer .copyright {
  font-size: 10px;
  text-align: center;
}

.page-seminar {
  background-color: #fff;
  color: #171717;
}
.page-seminar-title {
  border-left: #30B49F 4px solid;
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-left: 16px;
}
.page-seminar-mv {
  margin-bottom: 40px;
}
.page-seminar-caption {
  color: #30B49F;
  font-size: 20px;
  margin-bottom: 24px;
}
.page-seminar-caption::after {
  background-color: #30B49F;
  content: "";
  display: block;
  height: 2px;
  margin: 8px 0 0;
  width: 40px;
}
.page-seminar-wrap {
  margin-bottom: 40px;
}
.page-seminar .marker {
  color: #e67272;
}
.page-seminar .small {
  color: #676767;
  display: flex;
  font-size: 14px;
  margin-top: 16px;
}
.page-seminar .small::before {
  background-color: #4c4c4c;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1px;
  margin: 13px 8px 0 0;
  width: 24px;
}
.page-seminar dl {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 0 8px;
}
.page-seminar dl div {
  border-bottom: 1px solid #e6e6e6;
  display: flex;
}
.page-seminar dl div dt {
  flex-shrink: 0;
  padding: 16px 8px;
  width: 24%;
}
.page-seminar dl div dd {
  padding: 16px 8px;
}
.page-seminar dl div:last-child {
  border-bottom: none;
}
.page-seminar dl.company-info div dt {
  width: 33%;
}
.page-seminar dl.company-info div dd a {
  color: #171717;
}
.page-seminar-list-item {
  border: 1px solid #a7a7a7;
  border-bottom: none;
  padding: 16px 24px;
}
.page-seminar-list-item:last-child {
  border-bottom: 1px solid #a7a7a7;
}
.page-seminar .button-sq {
  max-width: 860px;
}
.page-seminar .button-sq a {
  border: 2px solid #30B49F;
  border-radius: 8px;
  color: #30B49F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  margin-top: 16px;
}
.page-seminar .button-sq a::after {
  background-image: url(images/arrow-up.svg);
  background-size: cover;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}
.page-seminar-caution {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 24px;
}
.page-seminar-caution p {
  color: #575757;
  font-size: 14px;
  font-family: sans-serif;
  margin-bottom: 16px;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-seminar-caution a {
  color: #9f9f9f;
}
.page-seminar-caution-title {
  font-size: 16px !important;
  margin-bottom: 16px;
}

.page-privacy-policy {
  background-color: #fff;
  color: #171717;
}

@media (min-width: 768px) {
  .header-contact a {
    padding: 8px 48px 8px 24px;
  }
  .header-contact a::after {
    top: 11px;
    width: 64px;
  }
  .mv {
    padding: 5vh 0;
  }
  .mv-image {
    margin-left: 96px;
  }
  .mv-text {
    margin-top: 24px;
  }
  .mv-text-title {
    display: flex;
  }
  .mv-text-title::before {
    height: 104px;
    margin-right: 24px;
    width: 48px;
  }
  .mv-text-title p:nth-of-type(1) > span {
    display: flex;
  }
  .mv-text-caption {
    align-items: center;
    bottom: 96px;
    margin-left: -24px;
  }
  .mv-text-caption::before {
    width: 64px;
  }
  .mv-text-caption span {
    display: inline;
  }
  .mv-image::after {
    height: 50vh;
  }
  .mv-image video {
    height: 50vh;
  }
  .service {
    background-size: 54px;
  }
  .service-head {
    background-image: url("images/stroke-bg-groupx-l.svg");
    background-position: left 100%;
    background-repeat: no-repeat;
    background-size: 54px;
  }
  .service-body {
    display: flex;
    justify-content: center;
  }
  .service-box {
    display: flex;
    align-items: center;
  }
  .service-box p {
    background-image: url("images/service-bg.svg");
    flex-direction: column;
    height: 180px;
    width: 180px;
  }
  .service-text {
    margin-inline: auto;
    width: 80%;
  }
  .service-wrap:nth-of-type(2) .service-image {
    margin-left: auto;
  }
  .service-image {
    width: 80%;
  }
  .service-number {
    margin-top: -24px;
  }
  .service-information {
    margin-inline: auto;
    max-width: 768px;
  }
  .top-post .inner {
    border-top-right-radius: 50% 160px;
    border-top-left-radius: 50% 160px;
    background-position: 9.7vw calc(100% + 4px);
    padding-bottom: 96px;
  }
  .top-post-text {
    height: 8.9vw;
    margin-top: -9vw;
    width: 28vw;
  }
  .top-post-text p {
    margin-left: 12vw;
  }
  .about-01 {
    background-size: 73px;
  }
  .about-01-wrap {
    max-width: 100%;
    width: 88%;
  }
  .about-01 .about-inner {
    padding-right: 40px;
  }
  .about-01-image {
    margin-inline: auto;
    max-width: 600px;
  }
  .about-02-description {
    margin-inline: auto;
    padding: 40px;
    width: 86%;
  }
  .about-02 .about-image {
    margin-inline: auto;
    max-width: 600px;
  }
  .about-02 p {
    margin-inline: auto;
    max-width: 600px;
  }
  .about-03 {
    background-size: 73px;
  }
  .about-03-wrap {
    max-width: 100%;
    width: 88%;
  }
  .about-03 .about-inner {
    padding-left: 40px;
  }
  .about-03 .about-image {
    margin-inline: auto;
    max-width: 720px;
  }
  .about-03-description {
    margin-inline: auto;
    max-width: 720px;
  }
  .company .inner {
    padding: 40px;
    width: 82%;
  }
  .company dl div {
    display: flex;
    align-items: baseline;
  }
  .company dl div dt {
    margin-right: 24px;
  }
  .contact {
    background-size: 100px;
  }
  .contact-wrap {
    margin-inline: auto;
    padding: 40px;
    max-width: 840px;
    width: 88%;
  }
  .contact .form-01 .smf-radio-buttons-control__control {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .contact .form-01 .smf-radio-buttons-control__control .smf-label {
    margin-right: 8px;
  }
  .contact .form-01 label {
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .contact .form-02 {
    display: flex;
  }
  .contact .form-02 .smf-item__col--label {
    width: 26%;
  }
  .contact .form-02 .smf-item__col--controls {
    width: 74%;
  }
  .contact .form-02 input {
    width: 280px;
  }
  .contact .form-03 {
    display: flex;
  }
  .contact .form-03 .smf-item__col--label {
    width: 26%;
  }
  .contact .form-03 .smf-item__col--controls {
    width: 74%;
  }
  .contact .form-03 input {
    width: 280px;
  }
  .contact .form-04 {
    display: flex;
  }
  .contact .form-04 .smf-item__col--label {
    width: 26%;
  }
  .contact .form-04 .smf-item__col--controls {
    width: 74%;
  }
  .contact .form-05 {
    display: flex;
  }
  .contact .form-05 .smf-item__col--label {
    width: 26%;
  }
  .contact .form-05 .smf-item__col--controls {
    width: 74%;
  }
  .contact-line {
    padding: 40px 0;
  }
  .contact-line-image {
    width: 124px;
  }
  .contact-line-title {
    font-size: 20px;
  }
  .contact-line-id {
    font-size: 14px;
  }
  .contact-form-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .header {
    height: 88px;
  }
  .header-logo {
    margin-left: 32px;
    width: 128px;
  }
  .header-contact a {
    font-size: 16px;
    padding: 16px 64px 16px 32px;
  }
  .header-contact a::after {
    height: 16px;
    top: 17px;
    width: 80px;
  }
  .header-pc ul li a {
    color: #171717;
  }
  .menu-button {
    height: 88px;
    width: 88px;
  }
  main {
    padding-top: 88px;
  }
  .mv {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .mv-image {
    flex-grow: 1;
    margin-left: 0;
  }
  .mv-text {
    flex-shrink: 0;
  }
  .mv-text-title {
    margin-top: -100px;
  }
  .mv-text-title p:nth-of-type(1) > span {
    display: block;
  }
  .mv-text-caption {
    display: flex;
    bottom: 61px;
  }
  .mv-text-caption::before {
    margin-top: -21px;
    width: 100px;
  }
  .mv-text-caption p span {
    display: block;
  }
  .main-caption {
    margin-bottom: 4px;
  }
  .main-title {
    margin-bottom: 56px;
  }
  .service {
    padding: 64px 0;
  }
  .service-head {
    padding-bottom: 112px;
  }
  .service-box p {
    height: 200px;
    width: 200px;
  }
  .service-text {
    width: 762px;
  }
  .service-list {
    padding: 0 40px;
  }
  .service-wrap {
    display: flex;
    margin-bottom: 80px;
  }
  .service-wrap:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  .service-wrap:nth-of-type(2) .service-image {
    margin-right: calc(50% - 50vw);
    margin-left: 24px;
  }
  .service-image {
    margin-right: 24px;
    margin-left: calc(50% - 50vw);
    flex-shrink: 0;
    max-width: 800px;
    width: 50%;
  }
  .service-number {
    font-size: 32px;
    height: 74px;
    margin-top: 0;
    padding-left: 31px;
    width: 147px;
  }
  .service-information {
    margin-inline: 0;
  }
  .button-g {
    margin-inline: auto;
    width: -moz-max-content;
    width: max-content;
  }
  .button-g a {
    border-radius: 8px;
    padding: 24px 80px;
  }
  .button-g a::after {
    height: 16px;
    top: 31px;
    right: -72px;
    width: 121px;
  }
  .top-post .inner {
    padding-top: 112px;
    padding-bottom: 112px;
    background-size: 480px;
    background-position: 9.7vw calc(100% + 6px);
  }
  .top-post-text {
    height: 7vw;
    margin-top: -6vw;
    width: 22vw;
  }
  .top-post-text p {
    margin-left: 9.4vw;
  }
  .about-01 {
    background-position: 91.6vw 0%;
  }
  .about-01 .about-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .about-01-description {
    margin-inline: auto;
    margin-bottom: 64px;
    width: -moz-max-content;
    width: max-content;
  }
  .about-01-description span {
    display: block;
  }
  .about-01-title {
    font-size: 24px;
  }
  .about-graph-title::after {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .about-graph-title span {
    display: inline;
  }
  .about-02-title {
    font-size: 24px;
  }
  .about-02-description {
    max-width: 900px;
    padding: 64px;
  }
  .about-03 {
    background-position: 1.3vw 0%;
  }
  .about-03 .about-inner {
    padding: 64px calc(50vw - 50% + 64px) 64px 64px;
  }
  .about-03-title {
    font-size: 24px;
  }
  .about-03-title span {
    display: block;
  }
  .company .inner {
    width: 90%;
  }
  .company-wrap {
    display: flex;
    align-items: center;
  }
  .company-map {
    flex-shrink: 0;
    margin-right: 24px;
    width: 50%;
  }
  .company dl div dt {
    flex-shrink: 0;
  }
  .company dl div dd {
    margin: 0;
  }
  .contact-wrap {
    padding-right: 64px;
    padding-bottom: 64px;
    padding-left: 64px;
  }
  .contact-form {
    margin-inline: auto;
    width: 700px;
  }
  .contact-form .smf-item {
    margin-bottom: 40px;
  }
  .contact-form textarea {
    height: 240px;
  }
  .contact-form-note {
    text-align: center;
  }
  .contact-form button[type=submit] {
    border-radius: 8px;
    padding: 24px 80px;
    width: -moz-max-content;
    width: max-content;
  }
  .page-seminar .inner {
    max-width: 1024px;
    margin-inline: auto;
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .page-seminar-title {
    font-size: 36px;
  }
  .page-seminar-mv, .page-seminar-wrap {
    margin-bottom: 96px;
  }
  .page-seminar-list-item {
    padding: 24px 40px;
  }
  .page-privacy-policy .inner {
    max-width: 1024px;
    margin-inline: auto;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media (min-width: 1280px) {
  .header-pc {
    display: block;
  }
  .header-pc nav ul {
    display: flex;
  }
  .header-pc nav ul li {
    margin-left: 32px;
  }
  .header-contact {
    margin-left: 40px;
  }
  .mv-text {
    margin-left: 48px;
  }
  .mv-text-title::before {
    height: 175px;
    margin-right: 40px;
    width: 51px;
  }
  .mv-text-title p:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .mv-text-title p:nth-of-type(1) ._key {
    font-size: 64px;
  }
  .mv-text-title p:nth-of-type(1) ._key::before {
    height: 44px;
    width: 24px;
  }
  .mv-text-title p:nth-of-type(1) ._key::after {
    height: 44px;
    margin-top: 32px;
    width: 24px;
  }
  .mv-text-title p:nth-of-type(1) ._small {
    margin-right: 10px;
    margin-left: 16px;
  }
  .mv-text-title p:nth-of-type(1) ._large {
    font-size: 64px;
  }
  .mv-text-title p .bgappearTrigger > span {
    font-size: 48px;
  }
  .mv-text-title p:nth-of-type(2) {
    font-size: 24px;
  }
  .mv-text-caption::before {
    margin-top: 0;
    width: 147px;
  }
  .mv-text-caption p span {
    display: inline;
  }
  .service {
    background-size: 115px;
    padding: 0 0 112px;
  }
  .service-head {
    background-size: 115px;
    padding-top: 112px;
  }
  .service-box p {
    font-size: 24px;
    height: 250px;
    width: 250px;
  }
  .service-image {
    margin-right: 80px;
  }
  .service-image img {
    aspect-ratio: 16/9;
  }
  .service-caption::after {
    margin: 32px 0;
  }
  .top-post-text {
    height: 5.1vw;
    margin-top: -4vw;
    width: 16vw;
  }
  .top-post-text p {
    margin-left: -10.4vw;
  }
  .company-wrap {
    margin-inline: auto;
    max-width: 1280px;
  }
  .company-map {
    max-width: 800px;
  }
  .contact-form button[type=submit]::after {
    height: 16px;
    top: 32px;
    right: -64px;
    width: 121px;
  }
  .footer .inner {
    margin-inline: auto;
    max-width: 1280px;
    padding-inline: 112px;
  }
  .footer-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-nav {
    margin-right: 0;
  }
  .footer-nav ul {
    display: flex;
    align-items: center;
  }
  .footer-nav ul li {
    margin-left: 32px;
  }
  .footer-nav .footer-contact {
    margin-top: 0;
    margin-left: 40px;
  }
}

/* ヒーローセクション内の問い合わせボタン */
.mv-contact-button {
  margin-top: 24px;
}
.mv-contact-button a {
  background-color: #30B49F;
  border: 1px solid #30B49F;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 48px 12px 24px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mv-contact-button a::after {
  background-image: url("images/arrow-g.svg");
  background-position: right 50%;
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  width: 48px;
}
.mv-contact-button a:hover {
  background-color: #fff;
  color: #30B49F;
}

@media (min-width: 768px) {
  .mv-contact-button {
    margin-top: 32px;
  }
  .mv-contact-button a {
    font-size: 16px;
    padding: 16px 64px 16px 32px;
  }
  .mv-contact-button a::after {
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
  }
}

@media (min-width: 1024px) {
  .mv-contact-button a {
    font-size: 18px;
    padding: 20px 80px 20px 40px;
  }
  .mv-contact-button a::after {
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
  }
}

@media (min-width: 1280px) {
  .mv-text-title {
    padding-top: 100px;
  }
}

/* 390px以下の画面での表示最適化 */
@media (max-width: 390px) {
  .mv-text {
    width: auto;
    max-width: calc(100vw - 48px); /* 左右24pxの余白を確保 */
  }
  .mv-text-title p:nth-of-type(1) {
    font-size: 32px; /* 40px → 32px */
    white-space: nowrap; /* 改行を禁止 */
  }
  .mv-text-title p:nth-of-type(1) ._key {
    font-size: 32px; /* 40px → 32px */
  }
  .mv-text-title p:nth-of-type(1) ._large {
    font-size: 32px; /* 40px → 32px */
  }
  .mv-text-title p:nth-of-type(2) {
    font-size: 12px; /* 14px → 12px */
  }
  /* CONTACTボタンも調整 */
  .mv-contact-button a {
    font-size: 12px;
    padding: 10px 40px 10px 20px;
  }
}/*# sourceMappingURL=style.css.map */