@charset "UTF-8";

/* CSS Document */
/*---------------------------------------------------------------------
	ベース
---------------------------------------------------------------------*/
*:focus {
  outline: none;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --noto: "Noto Sans JP", sans-serif;
  --en: "Plus Jakarta Sans", sans-serif;
  --man: "Manrope", sans-serif;
  --orange: #FF8A00;
  --black: #333333;
  --blue: #005DAB;
  --all: all 0.4s;
  --cubic: 0.4s cubic-bezier(0.3, 0, 0.1, 1);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--noto);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  body.active {
    height: 100%;
    overflow: hidden;
  }
}

main {
  overflow-x: clip;
}

section {
  position: relative;
  padding: 80px 0 120px;
}

@media screen and (max-width: 768px) {
  section {
    padding: 21.3vw 0;
  }
}

section.bg {
  width: 94%;
  margin: 0 auto;
  background-color: rgba(232, 231, 224, 0.5);
}

@media screen and (max-width: 768px) {
  section.bg {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 768px) {
  section.business-overview {
    padding: 21.3vw 0 32vw;
  }
}

section.service {
  padding: 120px 0;
}

@media screen and (max-width: 768px) {
  section.service {
    padding: 21.3vw 0;
  }
}

@media screen and (max-width: 768px) {
  section.achievement {
    padding: 32vw 0;
  }
}

.company,
.privacy {
  /*padding: 80px 0 200px;*/
}

@media screen and (max-width: 768px) {

  .company,
  .privacy {
    padding: 60px 0 80px;
  }
}

.contact-info {
  padding: 80px 0 60px;
}

@media screen and (max-width: 768px) {
  .contact-info {
    padding: 60px 0 40px;
  }
}

.contact {
  /*padding: 80px 0;*/
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
}

.top-news {
  padding: 0;
}

.page-ttl {
  font-size: 4.0rem;
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .page-ttl {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}

.sec-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 56px;
  text-align: center;
  flex-shrink: 0;
  color: #000000;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .sec-ttl {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
}

.top section:not(.top-news) .sec-ttl {
  color: var(--blue);
  padding-bottom: 12px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top section:not(.top-news) .sec-ttl {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}

.top section:not(.top-news) .sec-ttl::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--blue);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: inline-block;
}

.img-wrap {
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

a.link {
  text-decoration: underline;
  transition: opacity 0.4s;
  display: inline-block;
  word-break: break-all;
  color: var(--black);
}

@media (hover: hover) and (pointer: fine) {
  a.link:hover {
    opacity: 0.7;
  }
}

.btn {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 8px;
}

@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.6rem;
  }
}

.arrow-area {
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background-color: #000000;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 20;
  max-width: 34px;
}

@media screen and (max-width: 768px) {
  .arrow-area {
    max-width: 26px;
  }
}

.arrow {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow img {
  max-width: 24px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .arrow img {
    max-width: 19px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover .arrow {
    animation: arrowAnime 0.6s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
}

@keyframes arrowAnime {
  0% {
    translate: 0 0;
    opacity: 1;
  }

  49% {
    translate: 100% 0;
    opacity: 0;
  }

  50% {
    translate: -100% 0;
    opacity: 0;
  }

  100% {
    translate: 0 0;
    opacity: 1;
  }
}

.contact-btn {
  background-color: var(--orange);
  border-radius: 100px;
  padding: 8px 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
}

.contact-btn span {
  color: #ffffff;
  font-weight: 700;
  display: flex;
  column-gap: 8px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1100px) {
  .contact-btn span {
    font-size: 1.4rem;
  }
}

.contact-btn span::before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background-image: url("../img/common/icon_mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.contact-btn::after {
  background: #FF4D00;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  transform-origin: left top;
  transition: var(--cubic);
  z-index: -1;
  -webkit-transform: skewY(-45deg) scale(1, 0);
  transform: skewY(-45deg) scale(1, 0);
  height: 140px;
}

.contact-btn::after {
  -webkit-transform: skewY(-45deg) scale(1, 0);
  transform: skewY(-45deg) scale(1, 0);
  height: 300px;
}

@media (hover: hover) and (pointer: fine) {
  .contact-btn:hover::after {
    -webkit-transform: skewY(-45deg) scale(1, 1);
    transform: skewY(-45deg) scale(1, 1);
  }
}

ul li {
  list-style: none;
}

p {
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.inner {
  max-width: 1160px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.w-900 {
  max-width: 940px;
}

.auto {
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .sp-column {
    display: flex;
    flex-direction: column;
  }
}

.jc-center {
  justify-content: center;
}

.jc-space {
  justify-content: space-between;
}

.ai-center {
  align-items: center;
}

.ai-start {
  align-items: flex-start;
}

.wrap {
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.small {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .small {
    font-size: 1.2rem;
  }
}

.block {
  display: block;
}

.white {
  white-space: nowrap;
}

.regu {
  font-weight: 400;
}

.medi {
  font-weight: 500;
}

.semi {
  font-weight: 600;
}

.bold {
  font-weight: 700 !important;
}

.blue {
  color: var(--blue);
}

.orange {
  color: var(--orange);
}

.en {
  font-family: var(--en);
}

.noto {
  font-family: var(--noto);
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .sp-left {
    text-align: left;
  }
}

/* パンくず */
.breadcrumbs {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 20px 0;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 100px 32px 0;
  }
}

.breadcrumbs li {
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .breadcrumbs li {
    font-size: 1.2rem;
  }
}

.breadcrumbs li a {
  text-decoration: underline;
  color: var(--black);
  display: block;
  position: relative;
  z-index: 1;
}

.breadcrumbs li:not(:last-of-type):after {
  content: '>';
  position: relative;
  display: block;
  margin: 0 16px;
}

/*---------------------------------------------------------------------

	ヘッダー

---------------------------------------------------------------------*/
.header {
  max-width: 1160px;
  width: calc(100% - 40px);
  margin: 0 auto;
  height: 80px;
  position: sticky;
  top: 16px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  /*
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  */
  z-index: 999;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .header {
    width: calc(100% - 20px);
    height: 60px;
    column-gap: 0;
    position: fixed;
    left: 10px;
  }
}

.site-ttl {
  width: 100%;
  height: auto;
  aspect-ratio: 230 / 50;
  max-width: 230px;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .site-ttl {
    max-width: 160px;
  }
}

.site-ttl a {
  width: 100%;
  height: 100%;
  position: relative;
  align-items: flex-end;
  display: block;
  overflow: hidden;
  background-image: url("../img/common/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.site-ttl a span {
  text-indent: -9999px;
  display: block;
}

.header-inner {
  width: 100%;
  padding: 0 24px;
  height: inherit;
}

@media screen and (max-width: 1100px) {
  .header-inner {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    justify-content: space-between;
  }
}

.header .g-nav {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .header .g-nav {
    position: fixed;
    z-index: 999;
    /*display: none;*/
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 100px);
    background-color: var(--blue);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.5s, visibility 0.5s;
    overflow-y: scroll;
  }

  .header .g-nav.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .header .g-nav.panelactive {
    right: 0;
  }
}

.g-nav ul {
  column-gap: clamp(10px, 2.22vw, 32px);
}

@media screen and (max-width: 1100px) {
  .g-nav ul {
    column-gap: 1.45vw;
  }
}

@media screen and (max-width: 768px) {
  .header .g-nav ul {
    grid-row-gap: 8vw;
    position: absolute;
    z-index: 999;
    top: 0;
    width: 100%;
    padding: 40px 8% 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow-y: scroll;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }
}

.g-nav ul li:not(.not) {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow var(--cubic);
}

@media screen and (max-width: 768px) {
  .g-nav ul li:not(.not) {
    color: #ffffff;
    text-shadow: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .g-nav ul li:not(.not):hover {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}

.g-nav ul li:not(.not) a span {
  font-weight: 600;
  color: transparent;
}

@media screen and (max-width: 1100px) {
  .g-nav ul li:not(.not) a span {
    font-size: clamp(1.2rem, 1.27vw, 1.4rem);
  }
}

@media screen and (max-width: 768px) {
  .g-nav ul li:not(.not) a span {
    color: #ffffff;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .g-nav ul li a {
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .g-nav ul li:not(:last-of-type) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 34px;
    margin-right: 16px;
    vertical-align: -11px;
    background-image: url("../img/common/icon_footer_arrow.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.header .contact-btn {
  max-width: 160px;
  padding: 8px 16px;
}

@media screen and (max-width: 768px) {
  .header .contact-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .g-nav ul li:last-of-type a span {
    color: #ffffff;
    text-decoration: underline;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    cursor: pointer;
    width: 60px;
    height: 30px;
    position: relative;
    display: block;
    border-radius: 20px;
    background-color: var(--blue);
  }

  .openbtn span {
    position: absolute;
    display: block;
    background: #ffffff;
    width: 15px;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.3s ease-out;
    transform-origin: center center;
  }

  .openbtn span:nth-child(1) {
    top: 12px;
  }

  .openbtn span:nth-child(2) {
    bottom: 12px;
  }

  .openbtn.active span:nth-child(1) {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
    top: 14px;
  }

  .openbtn.active span:nth-child(2) {
    -webkit-transform: rotate(-205deg);
    transform: rotate(-205deg);
    bottom: 14px;
  }
}

/*---------------------------------------------------------------------

	TOP

---------------------------------------------------------------------*/
/* ------  共通  ------ */
.detail-box {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .detail-box {
    margin-bottom: 64px;
  }
}

.detail-box .detail-box__ttl {
  font-size: 6.0rem;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .detail-box .detail-box__ttl {
    font-size: clamp(2rem, 10.67vw, 4.0rem);
    margin-bottom: 32px;
    line-height: 1.4;
  }
}

.detail-box .detail-box__ttl.en {
  font-size: 14.0rem;
  margin-bottom: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .detail-box .detail-box__ttl.en {
    font-size: clamp(6rem, 17.07vw, 10.0rem);
    margin-bottom: 32px;
  }
}

.detail-box .detail-box__ttl__sub {
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #000000;
}

@media screen and (max-width: 768px) {
  .detail-box .detail-box__ttl__sub {
    font-size: clamp(1.8rem, 6.4vw, 2.4rem);
    margin-bottom: 32px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
  }
}

.detail-box__txt {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .detail-box__txt {
    text-align: left;
  }
}

.detail-box .detail-box__ttl+.detail-box__txt {
  margin-top: 40px;
}

.detail-box.equal img {
  display: block;
  width: 30px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .detail-box.equal img {
    width: 26px;
    margin: 0 auto 32px;
  }
}

.detail-box.equal .detail-box__ttl.en {
  font-size: 8.0rem;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .detail-box.equal .detail-box__ttl.en {
    font-size: clamp(3rem, 14.4vw, 5.4rem);
    margin-bottom: 12px;
  }
}

/* ------  オブジェクト  ------ */
.object {
  overflow: hidden;
  position: absolute;
}

.object img {
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.object.animated img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* intro */
.object-01 {
  width: 18.5vw;
  top: -4.167vw;
  left: -3.889vw;
}

@media screen and (max-width: 768px) {
  .object-01 {
    width: 32vw;
    top: -8.67vw;
    left: -9.6vw;
  }
}

.object-02 {
  width: 9.86vw;
  top: 12.5vw;
  left: 8.333vw;
}

@media screen and (max-width: 768px) {
  .object-02 {
    width: 17.07vw;
    top: -14vw;
    left: 35%;
  }
}

.object-03 {
  width: 26.7vw;
  top: -8.333vw;
  right: -3.472vw;
}

.object-04 {
  width: 12.36vw;
  top: 15.972vw;
  right: 6.25vw;
}

@media screen and (max-width: 768px) {
  .object-04 {
    width: 19.47vw;
    top: 61.7vw;
    right: -10.67vw;
  }
}

.object-01_sp {
  width: 24.5vw;
  top: -49.67vw;
  left: 21.3vw;
}

.object-02_sp {
  width: 23.47vw;
  top: -28.3vw;
  right: 24vw;
}

.object-03_sp {
  width: 23.2vw;
  top: -42.7vw;
  right: -2.67vw;
}

.object-04_sp {
  width: 22.9vw;
  top: -5.3vw;
  right: -2.67vw;
}

.object-05_sp {
  width: 32.9vw;
  top: 55vw;
  left: -13.3vw;
}

/* 事業内容 */
.object-05 {
  width: 23.6vw;
  top: -8.056vw;
  left: -1.389vw;
}

@media screen and (max-width: 768px) {
  .object-05 {
    width: 32.9vw;
    top: 6.4vw;
    left: -13.33vw;
  }
}

.object-06 {
  width: 13.4vw;
  top: -5.833vw;
  right: -5.556vw;
}

.object-06_sp {
  width: 14.13vw;
  top: -7.47vw;
  left: 13.33vw;
}

.object-07_sp {
  width: 41.07vw;
  top: -13.87vw;
  right: -15.2vw;
}

.object-08_sp {
  width: 24vw;
  top: 25.07vw;
  right: -12vw;
}

/* サービス */
.object-07 {
  width: 28.6vw;
  top: -18.056vw;
  left: -13.889vw;
}

@media screen and (max-width: 768px) {
  .object-07 {
    width: 30.6667vw;
    top: -30.1333vw;
    left: -10.6667vw;
  }
}

.object-08 {
  width: 15.97vw;
  top: 13%;
  left: -1.667vw;
}

@media screen and (max-width: 768px) {
  .object-08 {
    width: 22.9333vw;
    top: 4.8vw;
    left: -5.3333vw;
  }
}

.object-09 {
  width: 13.89vw;
  top: -4.167vw;
  right: 2.778vw;
}

@media screen and (max-width: 768px) {
  .object-09 {
    width: 25.3333vw;
    top: -36.2667vw;
    right: -2.6667vw;
  }
}

.object-10 {
  width: 23.6vw;
  top: 15%;
  right: -5.556vw;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .object-10 {
    width: 34.4vw;
    top: -2.1333vw;
    right: -9.3333vw;
  }
}

.object-11 {
  width: 9.86vw;
  top: 40%;
  right: -1.389vw;
}

@media screen and (max-width: 768px) {
  .object-11 {
    width: 14.1333vw;
    bottom: -26.67vw;
    left: 18.6667vw;
    top: auto;
  }
}

.object-12 {
  width: 13.4vw;
  top: 48%;
  left: -5.556vw;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.object-13 {
  width: 13.6vw;
  bottom: 15.972vw;
  right: -1.389vw;
}

.object-14 {
  width: 16.7vw;
  bottom: 8.333vw;
  left: 1.389vw;
}

@media screen and (max-width: 768px) {
  .object-14 {
    width: 23.4667vw;
    bottom: -8vw;
    left: -2.6667vw;
    top: auto;
  }
}

/* 事例紹介 */
.object-15 {
  width: 26.7vw;
  top: -13.889vw;
  right: 1.389vw;
}

@media screen and (max-width: 768px) {
  .object-15 {
    width: 41.0667vw;
    top: -13.333vw;
    right: -10.6667vw;
  }
}

.object-16 {
  width: 9.86vw;
  top: 1.389vw;
  left: 22.917vw;
}

.object-17 {
  width: 23.6vw;
  top: 10.417vw;
  left: 1.389vw;
}

@media screen and (max-width: 768px) {
  .object-17 {
    width: 32.2667vw;
    top: 26.6667vw;
    left: -8vw;
  }
}

.object-18 {
  width: 12.36vw;
  top: 12.847vw;
  right: 9.722vw;
}

@media screen and (max-width: 768px) {
  .object-18 {
    width: 19.4667vw;
    top: 29.3333vw;
    right: -3.4667vw;
  }
}

/* グループシナジー */
.object-19 {
  width: 13.4vw;
  top: -9.028vw;
  right: -7.639vw;
}

.object-20 {
  width: 28.6vw;
  top: -7.639vw;
  left: -7.639vw;
}

@media screen and (max-width: 768px) {
  .object-20 {
    width: 44vw;
    top: -25.0667vw;
    left: -21.3333vw;
  }
}

.object-21 {
  width: 13.89vw;
  top: 32vw;
  right: 5.3333vw;
}

.object-22 {
  width: 23.6vw;
  top: 85.3333vw;
  right: -37.3333vw;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .object-22 {
    width: 42.9333vw;
    top: -21.3333vw;
    right: -8.5333vw;
  }
}

.object-23 {
  width: 15.97vw;
  top: 30.556vw;
  left: -2.778vw;
}

/* ------  MV  ------ */
.mv {
  position: relative;
  margin-top: -80px;
}

@media screen and (max-width: 768px) {
  .mv {
    margin-top: 0;
  }
}

.mv .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1524 / 904;
  width: 100%;
  height: auto;
  position: relative;
  top: -50px;
  display: block;
  max-height: 100dvh;
}

.mv .img-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .mv .img-wrap {
    aspect-ratio: 1 / 2;
    width: 100%;
    top: 20px;
  }
}

.mv-text-container {
  padding: 40px 30px 40px 80px;
  background-color: rgba(255, 255, 255, 0.7);
  /*
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  */
  position: absolute;
  top: 45%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .mv-text-container {
    padding: 16px 0px 16px 20px;
    top: 52%;
    left: 5.33vw;
    z-index: 991;
  }
}

.js-split-text {
  opacity: 0;
}

.js-split-text.is-initialized {
  opacity: 1;
}

.mv-title {
  font-size: 6.0rem;
  line-height: 1.2;
  overflow: hidden;
  letter-spacing: 0.05em;
}

.reveal-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  color: var(--blue);
}

.reveal-text .char-container {
  display: inline-block;
  overflow: hidden;
  line-height: 1.2;
  vertical-align: bottom;
  position: relative;
}

.reveal-text .break-element {
  flex-basis: 100%;
  height: 0;
}

.reveal-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(150%) rotate(20deg);
  transform-origin: bottom center;
  transition:
    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s ease-out,
    color 1.2s ease-out;
  transition-delay: var(--d);
  font-weight: 700;
}

.reveal-text.animated span {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  color: #000000;
}

@media screen and (max-width: 768px) {
  .mv-title {
    font-size: clamp(1.8rem, 8vw, 6.0rem);
    line-height: 1.3;
  }
}

.mv-title span {
  display: inline-block;
  font-weight: 800;
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
  color: #000000;
}

.mv-title.animated span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ------  お知らせ  ------ */
.top-news {
  max-width: 1120px;
  width: 94%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  /*
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  */
  padding: 16px 24px;
  z-index: 990;
}

@media screen and (max-width: 768px) {
  .top-news {
    width: calc(100% - 40px);
    padding: 40px 20px;
  }
}

.top-news>.flex {
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, var(--blue) 6%, rgba(0, 0, 0, 0.25) 6%);
  border-image-slice: 1;
}

@media screen and (max-width: 768px) {
  .top-news>.flex {
    border-image: linear-gradient(to right, var(--blue) 12vw, rgba(0, 0, 0, 0.25) 12vw);
    border-image-slice: 1;
  }
}

.top-news .sec-ttl {
  margin-bottom: 0;
  color: var(--blue);
}

.news-list {
  grid-row-gap: 5px;
	margin-bottom: 20px;
}

.news-list li {
  display: flex;
  align-content: flex-start;
  column-gap: 26px;
}

.news-list li .date {
  color: var(--blue);
  font-family: var(--en);
  line-height: 2;
}

.news-list li .date time {
  font-weight: 600;
}

/* ------  intro  ------ */
.intro {
  position: relative;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .intro {
    margin-top: 42.7vw;
  }
}

/* ------  事業内容  ------ */
section.business-overview {
  margin-bottom: 24px;
}

.business-overview .inner {
  max-width: 1290px;
}

.business-wrap {
  column-gap: 8.6vw;
}

@media screen and (max-width: 900px) {
  .business-wrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 500px) {
  .business-wrap__left__inner {
    display: flex;
    column-gap: 14px;
    margin-bottom: 40px;
  }
}

.business-wrap__left {
  width: 51.2%;
  flex-shrink: 0;
}

@media screen and (max-width: 900px) {
  .business-wrap__left {
    width: 100%;
  }
}

.business-wrap__left .business-item__logo {
  width: 230px;
  margin: 0 auto 16px;
}

.business-wrap__left__content {
  position: relative;
  margin-bottom: 16px;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__content {
    width: 53.56%;
    margin-bottom: 0;
    flex-shrink: 0;
    flex-direction: column;
  }
}

.business-wrap__left__content>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .business-wrap__left__content>img {
    max-width: 80px;
  }
}

@media screen and (max-width: 500px) {
  .business-wrap__left__content>img {
    max-width: 50px;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
  }
}

.business-wrap__left__content .content-item {
  width: 50%;
  height: auto;
  aspect-ratio: 160 / 179;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

@media screen and (max-width: 500px) {
  .business-wrap__left__content .content-item {
    width: 100%;
    aspect-ratio: 179 / 160;
    clip-path: polygon(75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%, 25% 0);
  }
}

.business-wrap__left__content .content-item:first-of-type {
  background-color: var(--blue);
  color: #ffffff;
}

.business-wrap__left__content .content-item:nth-of-type(2) {
  background-color: #ffffff;
}

.business-wrap__left__content .content-item>div {
  font-size: 3.0rem;
  font-weight: 700;
  margin-top: -24px;
}

@media screen and (max-width: 1200px) {
  .business-wrap__left__content .content-item>div {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 500px) {
  .business-wrap__left__content .content-item>div {
    font-size: 1.6rem;
    margin-top: 0;
    line-height: 1.4;
  }

  .business-wrap__left__content .content-item:first-of-type div {
    margin-top: -12px;
  }

  .business-wrap__left__content .content-item:nth-of-type(2) div {
    margin-top: 12px;
  }
}

.business-wrap__left__content .content-item>div span {
  font-size: 6.0rem;
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  .business-wrap__left__content .content-item>div span {
    font-size: 4.0rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 500px) {
  .business-wrap__left__content .content-item>div span {
    font-size: 3.2rem;
    margin-bottom: 4px;
  }
}

.achieve-list__box-wrap>div,
.service-list .service-list__item,
.business-wrap__left .detail-box .detail-box__ttl__sub,
.detail-box.equal img,
.business-wrap__left__features .features-item,
.business-wrap__left__inner .business-wrap__left__content .content-item,
.business-wrap__left__inner .business-wrap__left__content>img {
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.achieve-list__box-wrap>div {
  transform: translateX(100%);
  opacity: 0;
}

.service-list .service-list__item {
  transform: translateY(50%);
  opacity: 0;
}

.achieve-list__box-wrap>div:nth-child(2),
.service-list .service-list__item:nth-child(2) {
  transition-delay: 0.3s;
}

.achieve-list__box-wrap>div:nth-child(3),
.service-list .service-list__item:nth-child(3) {
  transition-delay: 0.6s;
}

.service-list .service-list__item:nth-child(4) {
  transition-delay: 0.9s;
}

.service-list .service-list__item:nth-child(5) {
  transition-delay: 1.2s;
}

.achieve-list__box-wrap>.achieve-list__box:not(:last-of-type)::after {
  transition: 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: rotate(360deg) translateY(-50%) !important;
}

.achieve-list__box-wrap.animated>.achieve-list__box:not(:last-of-type)::after {
  opacity: 1;
  transform: rotate(0deg) translateY(-50%) !important;
}

.achieve-list__box-wrap.animated>div {
  transform: translateX(0%);
  opacity: 1;
}

.service-list.animated .service-list__item {
  transform: translateY(0%);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .achieve-list__box-wrap>.achieve-list__box:not(:last-of-type)::after {
    transform: rotate(-360deg) translateX(-50%) translateY(4px) !important;
  }

  .achieve-list__box-wrap.animated>.achieve-list__box:not(:last-of-type)::after {
    transform: rotate(0deg) translateX(-50%) translateY(4px) !important;
  }

  .achieve-list__box-wrap>div {
    transform: translateY(100%);
  }

  .service-list .service-list__item {
    transform: translateX(50%);
  }

  .achieve-list__box-wrap.animated>div {
    transform: translateY(0%);
  }

  .service-list.animated .service-list__item {
    transform: translateX(0%);
  }
}

.business-wrap__left__inner .business-wrap__left__content .content-item:first-of-type {
  transform: translateX(-50%);
  opacity: 0;
}

.business-wrap__left__inner .business-wrap__left__content .content-item:nth-of-type(2) {
  opacity: 0;
  transform: translateX(50%);
  transition-delay: 0.3s;
}

.business-wrap__left__inner .business-wrap__left__content>img {
  opacity: 0;
  transform: translateY(-50%) translateX(-50%) rotate(360deg) scale(2);
}

.business-wrap__left__inner.animated .business-wrap__left__content .content-item:first-of-type {
  transform: translateX(0%);
  opacity: 1;
}

.business-wrap__left__inner.animated .business-wrap__left__content .content-item:nth-of-type(2) {
  opacity: 1;
  transform: translateX(0%);
}

.business-wrap__left__inner.animated .business-wrap__left__content>img {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%) rotate(0deg) scale(1);
  transition-delay: 0.7s;
}

.detail-box.equal img {
  opacity: 0;
  transform: scale(5);
  transition-delay: 0.7s;
}

.business-wrap__left .detail-box .detail-box__ttl__sub {
  opacity: 0;
  transition-delay: 1.2s;
}

.detail-box.equal.animated img {
  opacity: 1;
  transform: scale(1);
}

.business-wrap__left .animated.detail-box .detail-box__ttl__sub {
  opacity: 1;
}

.business-wrap__left__features .features-item {
  opacity: 0;
}

.business-wrap__left__features .features-item:nth-child(1) {
  transform: translateX(-50%);
  transition-delay: 1s;
}

.business-wrap__left__features .features-item:nth-child(2) {
  transform: translateX(50%);
  transition-delay: 1.2s;
}

.business-wrap__left__inner.animated .business-wrap__left__features .features-item:nth-child(1) {
  transform: translateX(0%);
  opacity: 1;
}

.business-wrap__left__inner.animated .business-wrap__left__features .features-item:nth-child(2) {
  transform: translateX(0%);
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__features .features-item:nth-child(1) {
    transform: translateY(-50%);
    transition-delay: 1s;
  }

  .business-wrap__left__features .features-item:nth-child(2) {
    transform: translateY(50%);
    transition-delay: 1.2s;
  }

  .business-wrap__left__inner.animated .business-wrap__left__features .features-item:nth-child(1) {
    transform: translateY(0%);
    opacity: 1;
  }

  .business-wrap__left__inner.animated .business-wrap__left__features .features-item:nth-child(2) {
    transform: translateY(0%);
    opacity: 1;
  }

  /**/
  .service-list.animated .service-list__item {
    transform: translateX(0%);
    opacity: 1;
  }

  .business-wrap__left__inner .business-wrap__left__content .content-item:first-of-type {
    transform: translateY(-50%);
    opacity: 0;
  }

  .business-wrap__left__inner .business-wrap__left__content .content-item:nth-of-type(2) {
    opacity: 0;
    transform: translateY(50%);
    transition-delay: 0.3s;
  }

  .business-wrap__left__inner .business-wrap__left__content>img {
    opacity: 0;
    transform: translateY(-50%) translateX(-50%) rotate(360deg) scale(2);
  }

  .business-wrap__left__inner.animated .business-wrap__left__content .content-item:first-of-type {
    transform: translateY(0%);
    opacity: 1;
  }

  .business-wrap__left__inner.animated .business-wrap__left__content .content-item:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0%);
  }

  .business-wrap__left__inner.animated .business-wrap__left__content>img {
    opacity: 1;
    transform: translateY(-50%) translateX(-50%) rotate(90deg) scale(1);
    transition-delay: 0.7s;
  }

}

.business-wrap__left__features {
  margin-bottom: 80px;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__features {
    margin-bottom: 0;
    flex-direction: column;
  }
}

.business-wrap__left__features .features-item {
  width: 50%;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__features .features-item {
    width: 100%;
    aspect-ratio: 123 / 142;
    height: auto;
  }
}

.business-wrap__left__features .features-item>span {
  display: block;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__features .features-item>span {
    height: 30px;
    line-height: 30px;
    font-size: 1.6rem;
  }
}

.business-wrap__left__features .features-item:first-of-type>span {
  background-color: var(--blue);
  color: #ffffff;
}

.business-wrap__left__features .features-item:nth-of-type(2)>span {
  color: var(--blue);
  background-color: #ffffff;
}

.business-wrap__left__features .features-item ol {
  counter-reset: item;
}

.business-wrap__left__features .features-item ol li {
  counter-increment: item;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__features .features-item ol li {
    padding-left: 14px;
    line-height: 1.4;
    font-size: clamp(0.8rem, 3.2vw, 1.2rem);
  }
}

.business-wrap__left__features .features-item ol li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "" counter(item) ".";
  font-family: var(--en);
  color: var(--blue);
}

.business-wrap__left__features .features-item ol li:not(:last-of-type) {
  margin-bottom: 8px;
}

@media screen and (max-width: 500px) {
  .business-wrap__left__features .features-item ol li:not(:last-of-type) {
    margin-bottom: 4px;
  }
}

.business-wrap__right__item:first-of-type {
  margin-bottom: 40px;
}

.business-wrap__right__item__ttl {
  font-size: 3.0rem;
  font-weight: 700;
  column-gap: 16px;
}

@media screen and (max-width: 768px) {
  .business-wrap__right__item__ttl {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.business-wrap__right__item__ttl span {
  font-size: 6.4rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .business-wrap__right__item__ttl span {
    font-size: 7.4rem;
  }
}

.business-wrap__right__item .img-wrap {
  margin-bottom: 8px;
}

/* ------  サービス  ------ */
.service-list {
  max-width: 980px;
  margin: 0 auto;
  column-gap: 40px;
  grid-row-gap: 80px;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .service-list {
    grid-row-gap: 40px;
  }
}

.service-list__item {
  width: calc(100%/3 - 27px);
}

@media screen and (max-width: 768px) {
  .service-list__item {
    width: 100%;
  }
}

.service-list__item .service-list__item__img {
  background-color: #ffffff;
  padding: 0 20px;
  height: 80px;
  line-height: 80px;
  font-weight: 700;
  font-size: 4.0rem;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #474645;
}

@media screen and (max-width: 1100px) {
  .service-list__item .service-list__item__img {
    font-size: clamp(2.4rem, 3.16vw, 4.0rem);
  }
}

@media screen and (max-width: 768px) {
  .service-list__item .service-list__item__img {
    font-size: clamp(2rem, 9.07vw, 3.4rem);
    column-gap: 4.27vw;
    padding: 0 8vw;
  }
}

.service-list__item .service-list__item__img img {
  max-width: 120px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .service-list__item .service-list__item__img img {
    max-width: 10vw;
    min-width: 80px;
  }
}

@media screen and (max-width: 768px) {
  .service-list__item .service-list__item__img img {
    max-width: 140px;
    width: 26.7vw;
    min-width: auto;
  }
}

.service-list__item__ttl {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 16px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 1100px) {
  .service-list__item__ttl {
    font-size: clamp(1.6rem, 1.8vw, 2.0rem);
  }
}

@media screen and (max-width: 768px) {
  .service-list__item__ttl {
    font-size: 1.8rem;
  }
}

.service .plus {
  width: 185px;
  height: 185px;
  background-color: #ffffff;
  border-radius: 300px;
  position: absolute;
  top: 12px;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .service .plus {
    width: 100px;
    height: 100px;
    top: -12px;
  }
}

.service .plus img {
  width: 136px;
  opacity: 0;
  -webkit-transform: rotate(45deg) scale(0.8);
  transform: rotate(45deg) scale(0.8);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service .plus.is-active img {
  opacity: 1;
  transform: rotate(180deg) scale(1);
}

@media screen and (max-width: 768px) {
  .service .plus img {
    width: 74px;
  }
}

/* ------  事例紹介  ------ */
.achieve-list__item {
  column-gap: 40px;
  align-items: stretch;
  position: relative;
}

@media screen and (max-width: 768px) {
  .achieve-list__item {
    grid-row-gap: 24px;
  }
}

.achieve-list__item:first-of-type {
  padding-bottom: 80px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .achieve-list__item:first-of-type {
    padding-bottom: 64px;
    margin-bottom: 64px;
  }
}

.achieve-list__item:first-of-type::after {
  content: "";
  display: block;
  width: 53.58%;
  height: 1px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.achieve-list__ttl-wrap {
  width: 35.7%;
  flex-shrink: 0;
  background-color: #E3F1FC;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-row-gap: 16px;
  padding: 16px;
  background-image: url("../img/top/icon_achieve.svg");
  background-position: top 70% center;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 300px;
}

@media screen and (max-width: 768px) {
  .achieve-list__ttl-wrap {
    width: 100%;
    grid-row-gap: 8px;
    padding: 16px 0 24px;
    height: 220px;
    background-size: 125px;
  }
}

.achieve-list__ttl-wrap>span {
  font-size: 3.0rem;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  .achieve-list__ttl-wrap>span {
    font-size: clamp(2rem, 2.18vw, 3.0rem);
  }
}

@media screen and (max-width: 768px) {
  .achieve-list__ttl-wrap>span {
    font-size: 2.4rem;
  }
}

.achieve-list__ttl-wrap>span span {
  font-size: 6.0rem;
}

@media screen and (max-width: 1100px) {
  .achieve-list__ttl-wrap>span span {
    font-size: clamp(4rem, 4.18vw, 6.0rem);
  }
}

@media screen and (max-width: 768px) {
  .achieve-list__ttl-wrap>span span {
    font-size: 4.6rem;
  }
}

.achieve-list__ttl {
  font-size: 3.0rem;
  color: #000000;
  line-height: 1.5;
  font-weight: 700;
}

@media screen and (max-width: 1100px) {
  .achieve-list__ttl {
    font-size: clamp(2rem, 2.18vw, 3.0rem);
  }
}

@media screen and (max-width: 768px) {
  .achieve-list__ttl {
    font-size: 2.4rem;
  }
}

.achieve-list__txt-wrap {
  width: calc(100% - 35.7% - 40px);
  grid-row-gap: 24px;
}

@media screen and (max-width: 768px) {
  .achieve-list__txt-wrap {
    width: 100%;
    grid-row-gap: 16px;
    padding: 0 20px;
  }
}

.achieve-list__box-wrap {
  column-gap: 40px;
  align-items: stretch;
  height: 102px;
}

@media screen and (max-width: 768px) {
  .achieve-list__box-wrap {
    grid-row-gap: 32px;
    height: auto;
  }
}

.achieve-list__box {
  background-color: var(--blue);
  color: #ffffff;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  position: relative;
  grid-row-gap: 10px;
}

@media screen and (max-width: 768px) {
  .achieve-list__box {
    padding: 0;
  }
}

.achieve-list__box-wrap>.achieve-list__box,
.achieve-list__box-wrap>.box-group {
  width: calc(100% / 3 - 20px);
}

@media screen and (max-width: 768px) {

  .achieve-list__box-wrap>.achieve-list__box,
  .achieve-list__box-wrap>.box-group .achieve-list__box {
    width: 100%;
    height: 72px;
  }

  .achieve-list__box-wrap>.box-group {
    width: 100%;
  }
}

.box-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .box-group {
    height: auto;
    gap: 4px;
    flex-direction: row;
  }
}

.achieve-list__box__title {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  .achieve-list__box__title {
    font-size: clamp(1.5rem, 1.8vw, 2.0rem);
  }
}

@media screen and (max-width: 768px) {
  .achieve-list__box__title {
    font-size: clamp(1rem, 4.8vw, 1.8rem);
  }
}

.achieve-list__box__sub-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 1100px) {
  .achieve-list__box__sub-text {
    font-size: clamp(1.2rem, 1.45vw, 1.6rem);
  }
}

@media screen and (max-width: 768px) {
  .achieve-list__box__sub-text {
    font-size: clamp(0.8rem, 3.73vw, 1.4rem);
  }
}

.achieve-list__box-wrap>.achieve-list__box:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../img/top/icon_plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 768px) {
  .achieve-list__box-wrap>.achieve-list__box:not(:last-of-type)::after {
    right: auto;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%) translateY(4px);
    transform: translateX(-50%) translateY(4px);
  }
}

/* ------  グループシナジー  ------ */
section.group-synergy {
  margin-bottom: 120px;
}

.group-synergy .detail-box {
  margin-bottom: 20px;
}

ruby {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  vertical-align: bottom;
  line-height: 0.7;
  position: relative;
  top: -16px;
}

@media screen and (max-width: 768px) {
  ruby {
    top: -10px;
  }
}

.detail-box__ttl rt {
  font-size: 1.6rem;
  letter-spacing: normal;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .detail-box__ttl rt {
    font-size: clamp(0.8rem, 3.73vw, 1.4rem);
  }
}

.related-companies {
  max-width: 740px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .related-companies {
    padding: 0;
  }
}

.related-companies__ttl {
  color: var(--blue);
  font-size: 2.4rem;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .related-companies__ttl {
    font-size: 2.0rem;
    margin-bottom: 16px;
  }
}

.related-companies__link {
  column-gap: 16px;
}

@media screen and (max-width: 768px) {
  .related-companies__link {
    flex-wrap: wrap;
    grid-row-gap: 20px;
  }
}

.related-companies__link div {
  width: calc(100%/2);
}

@media screen and (max-width: 768px) {
  .related-companies__link div {
    width: 100%;
  }
}

.related-companies__link div p span {
  margin-bottom: 4px;
}

.related-companies__link a {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #C2C2C2;
  box-shadow: inset 0 0 0 0px var(--blue);
  transition: border-color 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0), box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0);
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .related-companies__link a {
    height: 40px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .related-companies__link a:hover {
    border-color: var(--blue);
    box-shadow: inset 0 0 0 2px var(--blue);
  }
}

.related-companies__link div:first-of-type a img {
  max-width: 250px;
  width: 73.1%;
}

@media screen and (max-width: 768px) {
  .related-companies__link div:first-of-type a img {
    max-width: 150px;
  }
}

.related-companies__link div:nth-of-type(2) a img {
  max-width: 312px;
  width: 91.2%;
}

@media screen and (max-width: 768px) {
  .related-companies__link div:nth-of-type(2) a img {
    max-width: 212px;
  }
}

.infinity-section {
  margin-bottom: 20px;
}

@media screen and (max-width: 1100px) {
  .infinity-section {
    width: 100vw;
    margin: 0 calc(-3% - 23px);
  }
}

@media screen and (max-width: 768px) {
  .infinity-section {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 520px) {
  .infinity-section {
    max-width: none;
    width: 124.4vw;
    margin: 0 calc(-12.2vw - 40px) 40px;
  }
}

.infinity-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
}

@media screen and (max-width: 1100px) {
  .infinity-wrapper {
    aspect-ratio: 2 / 1;
  }
}

@media screen and (max-width: 768px) {
  .infinity-wrapper {
    aspect-ratio: 1 / 2;
  }
}

.infinity-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pc-svg {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-svg {
    display: none;
  }
}

.sp-svg {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.path {
  stroke-dasharray: var(--length);
  stroke-dashoffset: var(--length);
}

.path-static {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

.infinity-section.is-visible .path2 {
  animation: drawLine 1.4s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}

.infinity-section.is-visible .path4 {
  animation: drawLine 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.path1,
.path3 {
  --length: 370;
}

.path2,
.path4 {
  --length: 1100;
}

.circle-content {
  position: absolute;
  top: 4%;
  width: 46%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5% 4%;
  box-sizing: border-box;
  grid-row-gap: 10px;
}

@media screen and (max-width: 900px) {
  .circle-content {
    grid-row-gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .circle-content {
    width: 71.3%;
    height: 46%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 14.3% 4%;
    grid-row-gap: 8px;
    align-items: center;
    justify-content: center;
  }
}

.left-content {
  left: 0;
}

@media screen and (max-width: 768px) {
  .left-content {
    top: 0%;
    left: 50%;
  }
}

.right-content {
  right: 0;
}

@media screen and (max-width: 768px) {
  .right-content {
    top: auto;
    bottom: 0%;
  }
}

.content-inner {
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  color: #333;
}

.circle-content__img {
  height: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .circle-content__img {
    height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .circle-content__img {
    height: auto;
    margin-bottom: 2%;
  }
}

.left-content .circle-content__img img {
  max-width: 230px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .left-content .circle-content__img img {
    width: 18.86vw;
  }
}

@media screen and (max-width: 768px) {
  .left-content .circle-content__img img {
    max-width: 168px;
    width: 44.8vw;
  }
}

.right-content .circle-content__img img {
  max-width: 320px;
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .right-content .circle-content__img img {
    width: 26vw;
  }
}

@media screen and (max-width: 768px) {
  .right-content .circle-content__img img {
    max-width: 267px;
    width: 71.2vw;
  }
}

.main-title {
  color: #005095;
  font-size: clamp(1.5rem, 1.39vw, 2.0rem);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .main-title {
    font-size: clamp(1rem, 4.27vw, 1.6rem);
    margin-bottom: 4px;
  }
}

.left-content .main-title {
  line-height: 2.6;
}

@media screen and (max-width: 768px) {
  .left-content .main-title {
    line-height: 1.3;
  }
}

.blue-box {
  background-color: var(--blue);
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.111vw, 1.6rem);
  height: 28px;
  line-height: 29px;
  width: 82%;
  margin: 0 auto 4px;
}

@media screen and (max-width: 900px) {
  .blue-box {
    height: 24px;
    line-height: 24px;
    margin: 0 auto 4px;
  }
}

@media screen and (max-width: 768px) {
  .blue-box {
    font-size: clamp(0.9rem, 3.2vw, 1.2rem);
    width: 98%;
    height: 22px;
    line-height: 22px;
  }
}

.list {
  text-align: left;
  font-size: clamp(1rem, 0.97vw, 1.4rem);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .list {
    font-size: clamp(0.9rem, 3.2vw, 1.2rem);
    line-height: 1.4;
  }
}

.left-content .list,
.two-col-list,
.tags-container {
  width: 82%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {

  .left-content .list,
  .two-col-list {
    width: 91.5%;
  }
}

.list>li {
  font-weight: 500;
  position: relative;
  padding-left: 16px;
}

.list>li::before {
  content: "・";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .list>li {
    padding-left: 12px;
    margin-bottom: 2px;
  }
}

.left-content .content-inner .list:not(:last-of-type),
.right-content .content-inner .two-col-list {
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {

  .left-content .content-inner .list:not(:last-of-type),
  .right-content .content-inner .two-col-list {
    margin-bottom: 4px;
  }
}

.two-col-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: left;
}

.two-col-list .list {
  margin: auto 0;
  width: 50%;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

@media screen and (max-width: 768px) {
  .tags-container {
    gap: 2px;
    width: 98%;
  }
}

.tag {
  background-color: var(--blue);
  color: #fff;
  font-size: clamp(0.8rem, 0.9722vw, 1.4rem);
  font-weight: 600;
  padding: 0 8px;
  white-space: nowrap;
  height: 24px;
  line-height: 25px;
}

@media screen and (max-width: 900px) {
  .tag {
    height: 20px;
    line-height: 21px;
  }
}

@media screen and (max-width: 768px) {
  .tag {
    font-size: clamp(0.9rem, 3.2vw, 1.2rem);
    padding: 0;
  }
}

.tag:nth-of-type(1),
.tag:nth-of-type(2),
.tag:nth-of-type(3) {
  width: calc(33.33333% - 3px);
}

@media screen and (max-width: 768px) {

  .tag:nth-of-type(1),
  .tag:nth-of-type(2),
  .tag:nth-of-type(3) {
    width: calc(33.5% - 2px);
  }
}

.tag:nth-of-type(4),
.tag:nth-of-type(5) {
  width: calc(50% - 2px);
}

@media screen and (max-width: 768px) {

  .tag:nth-of-type(4),
  .tag:nth-of-type(5) {
    width: calc(50% - 1px);
  }
}

.tag:nth-of-type(6) {
  width: 100%;
}

/* ------  会社情報  ------ */
.top-company {
  background-image: url("../img/top/company_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 650px;
}

@media screen and (max-width: 768px) {
  .top-company {
    background-position: right 25% center;
    height: 700px;
  }
}

.top section.top-company .sec-ttl {
  color: #000000;
}

.top section.top-company .sec-ttl::after {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  background-color: #000000;
}

.top-company .inner>.flex {
  column-gap: 220px;
  margin-bottom: 40px;
}

/*---------------------------------------------------------------------

	会社情報

---------------------------------------------------------------------*/
.company .page-ttl {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .company .page-ttl {
    margin-bottom: 60px;
  }
}

.company .sec-ttl {
  margin-bottom: 60px;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .company .sec-ttl {
    margin-bottom: 24px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ccc;
}

.company-table tr {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .company-table tr {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    grid-row-gap: 10px;
  }
}

.company-table th,
.company-table td {
  text-align: left;
  padding: 40px 0;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {

  .company-table th,
  .company-table td {
    text-align: left;
    padding: 0;
  }
}

.company-table th {
  width: 30%;
  font-weight: 700;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .company-table th {
    width: 100%;
  }
}

.company-table th .flex {
  column-gap: 20px;
}

@media screen and (max-width: 768px) {
  .company-table tr.section-break th .flex {
    column-gap: 0;
    grid-row-gap: 32px;
  }
}

.company-table th .flex,
.company-table th .flex span {
  font-weight: 700;
}

.company-table th .flex span {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .company-table th .flex span {
    width: 100%;
  }
}

.company-table td {
  width: 70%;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .company-table td {
    width: 100%;
  }
}

.company-table td a {
  color: var(--black);
}

.company-table tr.border-none {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .company-table tr.pd {
    padding: 0;
  }
}

.company-table tr.pd th,
.company-table tr.pd td {
  padding: 20px 0;
}

@media screen and (max-width: 768px) {

  .company-table tr.pd th,
  .company-table tr.pd td {
    padding: 0;
  }
}

/*---------------------------------------------------------------------

	よくある質問

---------------------------------------------------------------------*/
.faq .ttl-flex,
.contact .ttl-flex {
  padding: 0 50px;
  margin-bottom: 80px;
  column-gap: 100px;
}

@media screen and (max-width: 768px) {

  .faq .ttl-flex,
  .contact .ttl-flex {
    padding: 0;
    margin-bottom: 40px;
    column-gap: 0;
    grid-row-gap: 24px;
  }
}

.faq .ttl-flex .sec-ttl,
.contact .ttl-flex .sec-ttl {
  margin-bottom: 0;
}

.faq .accordion_box {
  position: relative;
  border-bottom: solid 2px var(--blue);
}

.faq .title {
  cursor: pointer;
  width: 100%;
  padding: 30px 40px;
  background-color: #ffffff;
  color: var(--black);
  position: relative;
  transition: all var(--cubic);
  z-index: 2;
  letter-spacing: 0.05em;
  column-gap: 10px;
}

@media screen and (max-width: 768px) {
  .faq .title {
    padding: 16px;
    column-gap: 10px;
  }
}

.faq .title.close {
  background-color: var(--blue);
  color: #ffffff;
}

.faq .title .question {
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .faq .title .question {
    font-size: 1.6rem;
  }
}

.faq .title .plus {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  transition: all var(--cubic);
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .faq .title .plus {
    width: 24px;
    height: 24px;
  }
}

.faq .title .plus::before,
.faq .title .plus::after {
  content: "";
  display: inline-block;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  transition: all var(--cubic);
}

.faq .title .plus::before {
  width: 100%;
  height: 4px;
}

@media screen and (max-width: 768px) {
  .faq .title .plus::before {
    height: 3px;
  }
}

.faq .title .plus::after {
  width: 4px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .faq .title .plus::after {
    width: 3px;
  }
}

.faq .title.close .plus {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.faq .title.close .plus::before,
.faq .title.close .plus::after {
  background-color: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .faq .title:hover .plus {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}

.faq .box {
  display: none;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .faq .box {
    padding: 16px;
  }
}

.faq .box-inner {
  column-gap: 40px;
}

@media screen and (max-width: 768px) {
  .faq .box-inner {
    column-gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .faq .box-inner.answer {
    align-items: flex-start;
  }
}

.faq .box-inner .qa {
  font-size: 5.0rem;
  width: 38px;
  flex-shrink: 0;
  font-family: var(--man);
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .faq .box-inner .qa {
    font-size: 4.0rem;
    width: 31px;
  }
}

.faq .box-inner.answer .qa {
  color: var(--blue);
}

.faq .box .answer-txt {
  color: var(--blue);
  font-weight: 400;
}

/*---------------------------------------------------------------------

	お問い合わせ

---------------------------------------------------------------------*/
.contact-bg {
  background-color: #e6e6e6;
  max-width: 1368px;
  padding: 0 20px;
  width: 100%;
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  .contact-bg {
    padding: 0;
    margin: 40px auto;
  }
}

.contact .form-wrap {
  padding: 80px 0;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .contact .form-wrap {
    padding: 40px 20px;
  }
}

.contact .flow {
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto 80px;
  background: #f0f0f0;
  border-radius: 50px;
  padding: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .contact .flow {
    margin: 0 auto 40px;
  }
}

.contact .flow li {
  flex: 1;
  height: 60px;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--black);
  background: transparent;
  text-align: center;
  line-height: 60px;
}

@media screen and (max-width: 768px) {
  .contact .flow li {
    height: 48px;
    font-size: 1.4rem;
    line-height: 48px;
  }
}

/* 線（after要素）を非表示にする */
.contact .flow li:first-of-type::after,
.contact .flow li:nth-last-of-type(2)::after {
  display: none;
}

/* アクティブなステップ（現在は「入力」） */
.form-area.s1 .contact .flow li:first-of-type,
.form-area.s2 .contact .flow li:nth-of-type(2),
.form-area.s3 .contact .flow li:last-of-type {
  background-color: var(--blue);
  color: #fff;
  border-radius: 50px;
  /* ここだけ角を丸める */
}

.contact .form {
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

/* フォーム */
button,
input:not([type="radio"]),
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

input[type=checkbox] {
  appearance: auto;
}

input,
textarea {
  background-color: #f2f2f2 !important;
  border: solid 1px #f2f2f2;
}

textarea {
  resize: none;
  width: calc(100% - 40px);
  height: 300px;
  padding: 14px 20px;
}

.form .hasInput input[type="text"],
.form .hasInput input[type="tel"],
.form .hasInput input[type="email"] {
  height: 60px;
  padding: 0 20px;
  width: calc(100% - 40px);
}

@media screen and (max-width: 768px) {

  .form .hasInput input[type="text"],
  .form .hasInput input[type="tel"],
  .form .hasInput input[type="email"] {
    height: 50px;
    padding: 0 10px;
    width: calc(100% - 20px);
  }
}

::placeholder {
  font-size: 1.6rem;
  color: #b3b3b3;
  font-family: var(--noto);
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  ::placeholder {
    font-size: 1.4rem;
  }
}

.form .hasInput {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .form .hasInput {
    margin-bottom: 32px;
    flex-direction: column;
    grid-row-gap: 16px;
  }
}

.form .hasTextArea {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .form .hasTextArea {
    margin-bottom: 40px;
  }
}

.form .hasInput>.flex {
  column-gap: 16px;
}

.form .hasInput>.flex>div {
  font-weight: 700;
}

.form .hasInput>div {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .form .hasInput>div {
    width: 100%;
  }
}

.contact .required,
.contact .any {
  color: #FFF;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {

  .contact .required,
  .contact .any {
    font-size: 1.2rem;
    width: 40px;
    height: 36px;
  }
}

.contact .required {
  background-color: #BC0000;
}

.contact .any {
  background-color: #B3B3B3;
}

.form-area.s2 .required,
.form-area.s2 .any {
  display: none;
}

/* チェックボックス */
.privacy_check {
  text-align: center;
  margin-bottom: 40px;
}

.privacy_check input[type=checkbox] {
  width: 24px;
  height: 24px;
  min-height: 20px;
  margin-right: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  position: relative;
  border: 2px solid #B3B3B3;
  border-radius: 2px;
  cursor: pointer;
}

/* チェックされた時のスタイル */
.privacy_check input[type="checkbox"]:checked {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

/* チェックマークを擬似要素で作る */
.privacy_check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  display: inline-block;
  width: 6px;
  height: 14px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.privacy_check a {
  display: inline-flex;
  margin-right: 8px;
  color: #1887C7;
}

.privacy_txt {
  margin-bottom: 40px;
  text-align: center;
}

section#form .btns {
  justify-content: center;
  align-items: center;
}

section#form .btns #btnNext {
  pointer-events: none;
  background-color: #b3b3b3;
}

section#form .btns #btnNext.is-active {
  pointer-events: all;
  background-color: var(--blue);
}

/* ボタン */
.btnArrow {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  height: 60px;
  position: relative;
  display: block;
  width: 100%;
  border-radius: 30px;
  max-width: 300px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--blue);
}

.btnArrow>span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .btnArrow>span {
    font-size: 1.6rem;
  }
}

.btnArrow.prev:after {
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  right: auto;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.gray.prev {
  pointer-events: auto;
  cursor: pointer;
}

.gray.prev span {
  text-decoration: underline;
}

.form-area .step1,
.form-area .step2,
.form-area .step3 {
  display: none !important;
}

.form-area.s2 .step2,
.form-area.s1 .step1 {
  display: flex !important;
  flex-direction: column-reverse;
  grid-row-gap: 64px;
}

@media screen and (max-width: 768px) {

  .form-area.s2 .step2,
  .form-area.s1 .step1 {
    grid-row-gap: 40px;
  }
}

.form-area.s3 .step3 {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-area.s2 section#form form input,
.form-area.s2 section#form form textarea {
  background: transparent !important;
  pointer-events: none;
  border: none;
}

.form-area.s2 section#form form textarea {
  height: auto;
}

.form-area.s2 section#form form .privacy_check input[type="checkbox"]:checked {
  background: var(--blue) !important;
  border: 2px solid #B3B3B3 !important;
}

.form-area.s2 section#form form input::placeholder,
.form-area.s2 section#form form textarea::placeholder {
  opacity: 0;
}

.form-area.s2 section#form .inner form>.hasChk> :nth-child(3) {
  pointer-events: none;
}

.form-area.s3 #form_body {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.contact-success h3 {
  font-size: 3.0rem;
  margin-bottom: 40px;
}

.contact-success p {
  margin-bottom: 50px;
  text-align: center;
}

.form-area.s3 .contact-ttl__txt {
  display: none;
}

/*---------------------------------------------------------------------

	プライバシーポリシー

---------------------------------------------------------------------*/
.privacy-wrap {
  display: flex;
  flex-direction: column;
  grid-row-gap: 40px;
}

@media screen and (max-width: 768px) {
  .privacy-wrap {
    grid-row-gap: 32px;
  }
}

.privacy-item:first-of-type {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .privacy-item:first-of-type {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .privacy-item:first-of-type {
    margin-top: 60px;
  }
}

.privacy-item__ttl {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .privacy-item__ttl {
    font-size: 1.8rem;
  }
}

.privacy-item p {
  line-height: 2;
}

ol.num-list,
ol.num-list2 {
  counter-reset: item;
}

ol.num-list2 {
  margin-top: 4px;
}

ol.num-list>li,
ol.num-list2>li {
  counter-increment: item;
  padding-left: 32px;
  position: relative;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {

  ol.num-list>li,
  ol.num-list2>li {
    padding-left: 28px;
  }
}

ol.num-list>li:not(:last-of-type) {
  margin-bottom: 8px;
}

ol.num-list2>li {
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  ol.num-list2>li {
    padding-left: 16px;
  }
}

ol.num-list>li:before,
ol.num-list2>li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "【" counter(item) "】";
}

ol.num-list2>li:before {
  content: "" counter(item) ".";
}

.privacy .contact-box {
  padding: 24px 40px;
  border: solid 1px #000000;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .privacy .contact-box {
    padding: 16px 24px;
    margin-top: 8px;
  }
}

.privacy .contact-box span {
  display: block;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .privacy .contact-box span {
    margin-bottom: 8px;
  }
}

.privacy .contact-box dl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 40px;
}

@media screen and (max-width: 768px) {
  .privacy .contact-box dl {
    column-gap: 0px;
    flex-direction: column;
  }

  .privacy .contact-box dl:first-of-type {
    margin-bottom: 16px;
  }
}

.privacy .contact-box dl dt {
  width: 64px;
}

@media screen and (max-width: 768px) {
  .privacy .contact-box dl dt {
    width: 100%;
  }
}

/*---------------------------------------------------------------------
	フッター
---------------------------------------------------------------------*/
.footer {
  padding: 64px 0 32px;
  background-color: var(--blue);
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 80px 0 90px;
  }
}

.footer-inner {
  margin-bottom: 64px;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    margin-bottom: 30px;
    grid-row-gap: 30px;
  }
}

.footer-left .footer-logo {
  width: 195px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .footer-left .footer-logo {
    width: 160px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer-left p {
    text-align: center;
  }
}

.footer-right {
  position: relative;
}

@media screen and (max-width: 768px) {
  .footer-right {
    width: calc(100% - 40px);
    padding-top: 24px;
    border-top: solid 2px #ffffff;
    margin: 0 auto;
  }
}

.footer-right .footer-nav {
  column-gap: 40px;
  height: 100%;
}

@media screen and (max-width: 900px) {
  .footer-right .footer-nav {
    column-gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-right .footer-nav {
    flex-wrap: wrap;
    grid-row-gap: 34px;
    justify-content: space-between;
  }
}

.footer-nav-ul {
  grid-row-gap: 24px;
}

.footer-right .footer-nav .footer-nav-ul:last-of-type {
  margin-right: 40px;
}

@media screen and (max-width: 900px) {
  .footer-right .footer-nav .footer-nav-ul:last-of-type {
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer-right .footer-nav .footer-nav-ul:last-of-type {
    margin-right: 0;
  }
}

.footer-right .footer-nav .footer-nav-ul>li>a {
  position: relative;
}

.footer-right .footer-nav .footer-nav-ul>li>a::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 26px;
  margin-right: 8px;
  vertical-align: top;
  background-image: url("../img/common/icon_footer_arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-right .footer-nav .footer-nav-ul>li>a span {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
}

.footer-right .footer-nav .footer-nav-ul>li>ul li a span {
  color: #ffffff;
  font-weight: 500;
  opacity: 0.6;
  font-size: 1.4rem;
}

.footer-right .footer-nav .footer-nav-ul>li>ul li:not(:last-of-type) {
  margin-bottom: 16px;
}

.footer-right .contact-btn {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .footer-right .contact-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer-right .footer-nav>div {
    width: 100%;
    padding-top: 34px;
    border-top: solid 2px #ffffff;
  }
}

.footer-right .footer-banner {
  max-width: 235px;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .footer-right .footer-banner {
    max-width: 200px;
  }
}

@media screen and (max-width: 768px) {
  .footer-right .footer-banner {
    max-width: 180px;
    margin: 0 auto;
  }
}

.footer .footer_privacy {
  text-align: right;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer .footer_privacy {
    margin-bottom: 20px;
  }
}

.footer nav ul li span {
  position: relative;
  transition: color .3s;
}

.footer nav ul li span::before {
  background: #ffffff;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -3px;
  margin: auto;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: transform .3s;
}

@media (hover: hover) and (pointer: fine) {
  .footer nav ul li a:hover span::before {
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/*---------------------------------------------------------------------
	追従ボタン
---------------------------------------------------------------------*/
.fixed-btn {
  position: fixed;
  right: 0;
  top: 20%;
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 20px 20px 24px 24px;
  letter-spacing: 0.05em;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .fixed-btn {
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 12px 24px;
    border-radius: 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    font-size: clamp(1.4rem, 4.8vw, 1.8rem);
    flex-direction: row;
    column-gap: 16px;
  }
}

.fixed-btn span {
  position: relative;
  z-index: 2;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
  .fixed-btn span {
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    line-height: normal;
  }
}

@media screen and (max-width: 768px) {
  .fixed-btn span::before {
    width: 24px;
    height: 20px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .fixed-btn:hover {
    color: var(--orange);
  }

  .fixed-btn:hover::after {
    opacity: 1;
  }
}
/*---------------------------------------------------------------------
	SDGsモーダル
---------------------------------------------------------------------*/
/* SDGs Modal Styles */
.sdgs-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.85); /* 半透明の白背景 */
  z-index: 10000; /* ヘッダーより上に */
  align-items: center;
  justify-content: center;
}
.sdgs-modal-window {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  background: #f4f4f4; /* 中身のグレー背景 */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sdgs-modal-body {
  padding: 50px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sdgs-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  width: 44px; height: 44px;
  background: #333;
  border: none; border-radius: 50%;
  cursor: pointer; z-index: 10;
}
.sdgs-modal-close span {
  position: absolute; left: 11px;
  width: 22px; height: 2px; background: #fff;
}
.sdgs-modal-close span:nth-child(1) { transform: rotate(45deg); }
.sdgs-modal-close span:nth-child(2) { transform: rotate(-45deg); }
.sdgs-content-header { text-align: center; margin-bottom: 30px; }
.sdgs-icon { width: 320px; margin-bottom: 10px; }
.sdgs-title { color: #005dab; font-size: 24px; font-weight: bold; }
.sdgs-section h3 { font-size: 18px; font-weight: bold; margin-bottom: 15px; color: #333; border-bottom: 2px solid #005dab; display: inline-block; }
.sdgs-section p { font-size: 15px; line-height: 1.8; margin-bottom: 25px; }
.sdgs-goal-box { background: #fff; padding: 15px; border-radius: 8px; margin-bottom: 25px; }
.goal-label { font-weight: bold; color: #005dab; margin-bottom: 10px; }
.goal-text { font-size: 16px; margin-bottom: 15px; font-weight: bold; }
@media screen and (max-width: 768px) {
  .sdgs-modal-body { padding: 40px 20px; }
  .sdgs-modal-window { width: 95%; max-height: 90vh; }
  .sdgs-title { font-size: 20px; }
}