@charset "UTF-8";
/**********変数**********/
/**********ページ全体/共通レイアウト**********/
html {
  scroll-behavior: smooth;
}

body {
  background-color: #262626;
  box-sizing: border-box;
  color: #f0f0f0;
  font-family: "Raleway", "Noto Sans JP", serif;
  font-feature-settings: "palt";
  font-size: clamp(13px, 14px + (100vw - 1400px) / 100, 16px);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1.75;
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body a {
  color: #f0f0f0;
  text-decoration: none;
}
body ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.l_pageWrapper {
  height: 100vh;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-left: 240px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .l_pageWrapper {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
}
.l_pageWrapper.is-show {
  height: auto;
  opacity: 1;
  overflow-y: auto;
  pointer-events: all;
  transition: opacity 600ms ease-in-out;
}

.l_sideCntnr {
  border-right: solid 1px #8d8d8d;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 240px;
}
@media (max-width: 768px) {
  .l_sideCntnr {
    height: 80px;
    position: relative;
    width: 100%;
    z-index: 9999;
  }
}

.l_mainCntnr {
  margin-left: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .l_mainCntnr {
    border-left: solid 1px #8d8d8d;
    margin-left: 16px;
    width: calc(100% - 16px);
  }
}

.l_section {
  position: relative;
  width: 100%;
}

.l_cntnr {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
@media (max-width: 768px) {
  .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c_bgGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .c_bgGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c_bgGrid div:not(:last-child) {
  border-right: solid 1px #2e2e2e;
}
.c_bgGrid div {
  opacity: 1;
}

.c_hGroup {
  align-items: center;
  border-bottom: solid 1px #525252;
  display: flex;
  flex-direction: column;
  grid-column: 1/7;
  line-height: 1;
  padding: 48px 0;
  position: relative;
}
@media (max-width: 768px) {
  .c_hGroup {
    grid-column: span 3;
  }
}
.c_hGroup h2 {
  font-size: clamp(13px, 14px + (100vw - 1400px) / 100, 16px);
  font-weight: 300;
  margin-top: 16px;
}
.c_hGroup p {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 3);
  font-weight: 400;
}
.c_hGroup .hDot {
  width: 12px;
  height: 12px;
  background-color: #0f62fe; /* ドットの色 */
  border-radius: 50%;
  left: 0;
  margin-right: 16px;
  position: absolute;
  top: 0;
  translate: -50% -50%;
}

.c_flowTxtBox {
  grid-column: span 6;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .c_flowTxtBox {
    grid-column: span 3;
  }
}
.c_flowTxtBox p {
  color: #1c1c1c;
  font-size: 200px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.5;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c_flowTxtBox p {
    font-size: 80px;
  }
}

.c_loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: #f0f0f0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_loadingScreen.is-hiden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease-in-out;
  transition-delay: 600ms;
}

.loading_text {
  animation: loading-fadeIn 0.6s ease-in-out forwards;
  align-items: center;
  color: #262626;
  display: flex;
  flex-direction: column;
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 2);
  font-weight: 400;
  justify-content: center;
}

@keyframes loading-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/********** サイドメニュー **********/
.l_sideCntnr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l_sideCntnr {
    align-items: center;
    height: 80px;
    left: 0;
    flex-direction: row;
    padding: 24px;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

.c_logoBox {
  padding: 64px 64px 0 48px;
  width: 100%;
}
@media (max-width: 768px) {
  .c_logoBox {
    height: 40px;
    padding: 0 0 0 8px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c_logoBox img {
  -o-object-fit: contain;
     object-fit: contain;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .c_logoBox img {
    height: 40px;
    width: auto;
  }
}

.c_gNavBox {
  padding: 0 48px 96px 48px;
}
@media (max-width: 768px) {
  .c_gNavBox {
    display: none;
  }
}
.c_gNavBox .gNav {
  line-height: 200%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.c_gNavBox .gNav a {
  transition: 150ms;
}
.c_gNavBox .gNav a:hover {
  color: #0f62fe;
  transition: 450ms;
  opacity: 1;
}

.c_sideCtaBox {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .c_sideCtaBox {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c_sideCtaBox .cta {
  align-items: center;
  border-top: #8d8d8d solid 1px;
  display: flex;
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 1.5);
  height: 120px;
  line-height: 1;
  justify-content: start;
  padding: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .c_sideCtaBox .cta {
    border-top: none;
    height: 44px;
    justify-content: end;
    padding: 8px;
    width: 100%;
  }
}
.c_sideCtaBox .cta:hover .cta_dot {
  width: 12px;
  height: 12px;
  background-color: #0f62fe; /* ドットの色 */
  border-radius: 0%;
  margin-right: 16px;
  scale: 1.5;
  transition: 450ms;
  transform-origin: center;
}
.c_sideCtaBox .copyright {
  align-items: center;
  color: #525252;
  display: none;
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 0.8);
  right: 0;
  position: absolute;
  transform: rotate(90deg) translate(-10%, -5%);
  transform-origin: right top;
}
.c_sideCtaBox .cta_dot {
  width: 12px;
  height: 12px;
  background-color: #0f62fe; /* ドットの色 */
  border-radius: 50%;
  margin-right: 16px;
  transition: 150ms;
}

/********** ヒーロー **********/
.sec-hero {
  height: 100vh;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-hero {
    height: 80vh;
  }
}
.sec-hero .l_cntnr {
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .sec-hero .l_cntnr {
    grid-template-columns: repeat(6, 1fr);
  }
}
.sec-hero .c_bgGrid {
  transition: -webkit-mask-position 750ms ease-in-out;
  transition: mask-position 750ms ease-in-out;
  transition: mask-position 750ms ease-in-out, -webkit-mask-position 750ms ease-in-out;
  transition-delay: 1000ms;
  -webkit-mask-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 60%);
          mask-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 60%);
  -webkit-mask-position: 100% 0%;
          mask-position: 100% 0%;
  -webkit-mask-size: 300% 100%;
          mask-size: 300% 100%;
}
@media (max-width: 768px) {
  .sec-hero .c_bgGrid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.sec-hero .grid-1 {
  background: linear-gradient(180deg, #525252 0%, #525252 60%, #262626 85%);
}
.sec-hero .grid-2 {
  background: linear-gradient(180deg, #525252 0%, #525252 45%, #262626 70%);
}
.sec-hero .grid-3 {
  background: linear-gradient(180deg, #525252 0%, #525252 30%, #262626 55%);
}
.sec-hero .grid-4 {
  background: linear-gradient(180deg, #525252 0%, #525252 15%, #262626 40%);
}
.sec-hero .grid-5 {
  background: linear-gradient(180deg, #525252 0%, #262626 25%);
}
.sec-hero .grid-6 {
  background: linear-gradient(180deg, #525252 0%, #262626 10%);
}
.sec-hero .c_copyBox {
  grid-column: 3/7;
  height: 100%;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-hero .c_copyBox {
    grid-column: span 6;
    padding: 24px;
  }
}
.sec-hero .c_copyBox .copyWrap {
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 64px 48px 96px 48px;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .sec-hero .c_copyBox .copyWrap {
    padding: 24px;
  }
}
.sec-hero .c_copyBox .copy_1stline,
.sec-hero .c_copyBox .copy_2ndline,
.sec-hero .c_copyBox .copy_3rdline {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 6);
  font-weight: 400;
  line-height: 1;
  opacity: 1;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-hero .c_copyBox .copy_1stline,
  .sec-hero .c_copyBox .copy_2ndline,
  .sec-hero .c_copyBox .copy_3rdline {
    font-size: calc(clamp(13px, 14px + (100vw - 480px) / 100, 15px) * 3);
    line-height: 1.2;
  }
}
.sec-hero .c_copyBox .copy_1stline {
  align-items: center;
  display: flex;
  width: 100%;
}
.sec-hero .c_copyBox .copy_1stline p {
  color: #8d8d8d;
  display: inline-block;
  font-family: "Noto Serif", serif;
  font-style: italic;
  font-size: 10px;
  font-weight: 200;
  line-height: 1.4;
  max-width: 400px;
  min-width: 360px;
  opacity: 0;
  padding: 16px 16px 0;
}
@media (max-width: 768px) {
  .sec-hero .c_copyBox .copy_1stline p {
    display: none;
    font-size: 10px;
    padding: 0;
  }
}
.sec-hero .c_copyBox .copy_lead {
  filter: blur(15px);
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 1.5);
  margin-top: 16px;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-hero .c_copyBox .copy_lead {
    font-size: clamp(13px, 14px + (100vw - 480px) / 100, 15px);
    margin-top: 8px;
  }
  .sec-hero .c_copyBox .copy_lead span {
    display: inline-block;
  }
}
.sec-hero .c_copyBox.is-in .copy_1stline {
  opacity: 1;
  transition: opacity 600ms ease-in-out;
  transition-delay: 1800ms;
}
.sec-hero .c_copyBox.is-in .copy_1stline p {
  transition: opacity 1200ms ease-in-out, transform 1200ms ease-in-out, filter 1200ms ease-in-out;
  transition-delay: 1800ms;
}
.sec-hero .c_copyBox.is-in .copy_2ndline {
  opacity: 1;
  transition: opacity 700ms ease-in-out;
  transition-delay: 550ms;
}
.sec-hero .c_copyBox.is-in .copy_3rdline {
  opacity: 1;
  transition: opacity 700ms ease-in-out;
  transition-delay: 700ms;
}
.sec-hero .c_copyBox.is-in .copy_lead {
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 1500ms;
}

.is-show .c_bgGrid.is-in {
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}
.is-show .c_copyBox.is-in .copy_1stline p {
  opacity: 1;
}
.is-show .c_copyBox.is-in .copy_lead {
  filter: blur(0);
  opacity: 1;
}

/********** メッセージ **********/
.sec-message {
  border-top: solid 1px #8d8d8d;
}
.sec-message .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
  padding: 64px 0;
}
@media (max-width: 768px) {
  .sec-message .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 0;
  }
}
.sec-message .leadBox {
  grid-column: 1/3;
  padding: 96px 0 0 64px;
}
@media (max-width: 768px) {
  .sec-message .leadBox {
    grid-column: span 3;
    padding: 48px 0 0 32px;
  }
}
.sec-message .leadBox span {
  display: inline-block;
  filter: blur(10px);
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 3);
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
}
.sec-message .leadBox.is-in span {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(-8px, 0);
}
.sec-message .leadBox.is-in span:last-child {
  transition-delay: 150ms;
}
.sec-message .bodyBox {
  filter: blur(10px);
  grid-column: 3/6;
  opacity: 0;
  padding: 240px 48px 64px;
}
@media (max-width: 768px) {
  .sec-message .bodyBox {
    grid-column: span 3;
    padding: 48px 24px 48px 32px;
  }
}
.sec-message .bodyBox p {
  line-height: 200%;
}
.sec-message .bodyBox p:last-of-type {
  margin-top: 16px;
}
.sec-message .bodyBox span {
  display: inline-block;
}
.sec-message .bodyBox.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 450ms;
  transform: translate(8px, 0);
}

/********** サービス **********/
.sec-service {
  border-top: solid 1px #8d8d8d;
}
.sec-service .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .sec-service .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sec-service .c_serviceImgBox {
  grid-column: 1/5;
  padding: 48px 48px 96px 48px;
  position: relative;
}
@media (max-width: 768px) {
  .sec-service .c_serviceImgBox {
    grid-column: span 3;
    padding: 32px 0;
  }
}
.sec-service .c_serviceImgBox .imgWrapper {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  width: 100%;
}
.sec-service .c_serviceImgBox .bgImg {
  position: relative;
}
.sec-service .c_serviceImgBox .mainImg {
  animation: sway 8s infinite ease-in-out;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1000;
}
.sec-service .c_serviceImgBox .txtImg {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1001;
}
.sec-service .c_serviceImgBox img {
  width: 100%;
}
.sec-service .c_serviceImgBox .designPart {
  bottom: 25%;
  filter: blur(15px);
  left: 12%;
  opacity: 0;
  position: absolute;
}
@media (max-width: 768px) {
  .sec-service .c_serviceImgBox .designPart {
    bottom: 10%;
    left: 5%;
  }
}
.sec-service .c_serviceImgBox .designPart.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(-8px, 0);
}
.sec-service .c_serviceImgBox .salesKitPart {
  filter: blur(15px);
  top: 18%;
  opacity: 0;
  position: absolute;
  right: 15%;
}
@media (max-width: 768px) {
  .sec-service .c_serviceImgBox .salesKitPart {
    right: 5%;
    top: 5%;
  }
}
.sec-service .c_serviceImgBox .salesKitPart.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-service .c_serviceImgBox .designPart,
.sec-service .c_serviceImgBox .salesKitPart {
  z-index: 9999;
}
.sec-service .c_serviceImgBox .designPart h4,
.sec-service .c_serviceImgBox .salesKitPart h4 {
  background-color: #0f62fe;
  color: #f0f0f0;
  display: inline-block;
  font-weight: 300;
  line-height: 1;
  padding: 2px 2px 0px;
}
.sec-service .c_serviceImgBox .designPart ul,
.sec-service .c_serviceImgBox .salesKitPart ul {
  font-size: clamp(13px, 14px + (100vw - 1400px) / 100, 16px);
  line-height: 2;
  margin-top: 8px;
  padding-left: 4px;
}
.sec-service .c_serviceDescBox {
  display: flex;
  flex-direction: column;
  grid-column: 5/7;
  justify-content: end;
  padding: 16px 48px 48px 16px;
}
@media (max-width: 768px) {
  .sec-service .c_serviceDescBox {
    grid-column: span 3;
    padding: 48px 24px 48px 32px;
  }
}
.sec-service .c_serviceDescBox h3 {
  filter: blur(15px);
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 2);
  font-weight: 400;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-service .c_serviceDescBox h3 {
    font-size: calc(clamp(13px, 14px + (100vw - 480px) / 100, 15px) * 1.5);
  }
}
.sec-service .c_serviceDescBox h3 span {
  display: inline-block;
  line-height: 1.4;
}
.sec-service .c_serviceDescBox p {
  filter: blur(15px);
  margin-top: 16px;
  opacity: 0;
}
.sec-service .c_serviceDescBox p:first-of-type {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .sec-service .c_serviceDescBox p:first-of-type {
    margin-top: 24px;
  }
}
.sec-service .c_serviceDescBox h3.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(0, 0);
}
.sec-service .c_serviceDescBox p.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(0, 0);
}
@keyframes sway {
  0% {
    translate: 0;
    transform-origin: center;
    rotate: 0deg;
  }
  30% {
    translate: 0px 12px;
    transform-origin: center;
    rotate: -2deg;
  }
  45% {
    translate: 0px 0px;
    transform-origin: center;
    rotate: -1deg;
  }
  75% {
    translate: 0px -16px;
    transform-origin: center;
    rotate: 2deg;
  }
  100% {
    translate: 0;
    transform-origin: center;
    rotate: 0deg;
  }
}
.sec-service .c_serviceListBox {
  grid-column: span 2;
  padding: 64px 16px 16px;
}
@media (max-width: 768px) {
  .sec-service .c_serviceListBox {
    grid-column: span 3;
    padding: 8px 0 8px 8px;
  }
}
.sec-service .c_serviceListBox .serviceList_cntnr {
  background-color: #1c1c1c;
  height: 100%;
  padding: 48px;
}
.sec-service .c_serviceListBox .imgWrap {
  position: relative;
  width: 100%;
}
.sec-service .c_serviceListBox .bgImg {
  opacity: 0.5;
  width: 50%;
}
.sec-service .c_serviceListBox .mainImg {
  /*mask-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 0.1) 60%
  );
  mask-position: 100% 0%;
  mask-size: 300% 100%;
  */
  position: absolute;
  top: 0;
  transition: -webkit-mask-position 900ms ease-in-out;
  transition: mask-position 900ms ease-in-out;
  transition: mask-position 900ms ease-in-out, -webkit-mask-position 900ms ease-in-out;
  left: 0;
  width: 50%;
  z-index: 1000;
}
.sec-service .c_serviceListBox .cls-1,
.sec-service .c_serviceListBox .cls-2,
.sec-service .c_serviceListBox .cls-3 {
  fill: none;
  stroke: #fff;
  stroke-dashoffset: 800px;
  stroke-dasharray: 800px;
}
.sec-service .c_serviceListBox .txtPart {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .sec-service .c_serviceListBox .txtPart {
    margin-top: 48px;
  }
}
.sec-service .c_serviceListBox .txtPart h4 {
  filter: blur(15px);
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 1.5);
  font-weight: 400;
  opacity: 0;
}
.sec-service .c_serviceListBox .txtPart p {
  filter: blur(15px);
  margin-top: 16px;
  opacity: 0;
}
.sec-service .c_serviceListBox h4.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 450ms ease-in-out, transform 450ms ease-in-out, filter 450ms ease-in-out;
  transition-delay: 0ms;
  transform: translate(0, 0);
}
.sec-service .c_serviceListBox p.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 450ms ease-in-out, transform 450ms ease-in-out, filter 450ms ease-in-out;
  transition-delay: 300ms;
  transform: translate(0, 0);
}
.sec-service .c_serviceListBox.is-in .cls-1,
.sec-service .c_serviceListBox.is-in .cls-2,
.sec-service .c_serviceListBox.is-in .cls-3 {
  stroke-dashoffset: 0;
  stroke-dasharray: 800px;
}
.sec-service .c_serviceListBox.is-in .cls-1 {
  transition: stroke-dashoffset 150ms ease-in-out 150ms;
}
.sec-service .c_serviceListBox.is-in .cls-2 {
  transition: stroke-dashoffset 1200ms ease-in-out 150ms;
}
@media (max-width: 768px) {
  .sec-service .c_serviceListBox.is-in .cls-2 {
    transition-delay: 0ms;
  }
}
.sec-service .c_serviceListBox.is-in .cls-3 {
  transition: stroke-dashoffset 600ms ease-in-out 150ms;
}
@media (max-width: 768px) {
  .sec-service .c_serviceListBox.is-in .cls-3 {
    transition-delay: 0ms;
  }
}

/********** Why **********/
.sec-why {
  border-top: solid 1px #8d8d8d;
}
.sec-why .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .sec-why .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sec-why .c_why_descBox {
  grid-column: 1/3;
  padding: 64px 48px 64px 48px;
}
@media (max-width: 768px) {
  .sec-why .c_why_descBox {
    grid-column: span 3;
    padding: 48px 32px 48px 32px;
  }
}
.sec-why .c_why_descBox h3 {
  filter: blur(15px);
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 2);
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
}
.sec-why .c_why_descBox h3 span {
  display: inline-block;
}
.sec-why .c_why_descBox p {
  filter: blur(15px);
  margin-top: 16px;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-why .c_why_descBox p {
    padding-left: 24px;
  }
}
.sec-why .c_why_descBox p:first-of-type {
  margin-top: 48px;
}
.sec-why .c_why_descBox h3.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-why .c_why_descBox p.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-why .c_why_imgBox {
  grid-column: 3/7;
  padding: 240px 48px 180px 48px;
  position: relative;
}
@media (max-width: 768px) {
  .sec-why .c_why_imgBox {
    grid-column: span 3;
    padding: 32px 0 80px 8px;
  }
}
.sec-why .c_why_imgBox .imgWrap {
  background-color: #1c1c1c;
  position: relative;
  z-index: 1030;
}
.sec-why .c_why_imgBox .imgWrap img {
  left: 0;
  top: 0;
  width: 100%;
}
.sec-why .c_why_imgBox .imgWrap .baseImg {
  height: auto;
  position: relative;
  z-index: 1000;
}
.sec-why .c_why_imgBox .imgWrap .outerImg {
  filter: blur(15px);
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translate(-32px, 0);
  position: absolute;
  z-index: 1100;
}
.sec-why .c_why_imgBox .imgWrap .innerImg {
  filter: blur(15px);
  left: 0;
  opacity: 0;
  top: 0;
  width: 100%;
  position: absolute;
  transform: translate(32px, 0);
  z-index: 1100;
}
.sec-why .c_why_imgBox .imgWrap .why_centerLine {
  background: linear-gradient(to right, #1c1c1c 0%, #f0f0f0 50%, #1c1c1c 100%);
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}
.sec-why .c_why_imgBox .imgWrap .why_blueCircle {
  aspect-ratio: 1/1;
  border-radius: 450px;
  background: radial-gradient(50% 50% at 50% 50%, #0f62fe 30%, rgba(13, 18, 26, 0.1) 95%);
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  translate: -50% -50%;
  width: 60%;
  z-index: 0;
  /* アニメーションを設定 */
  animation: pulse 2.5s infinite ease-in-out; /* 鼓動を2秒間隔で繰り返し */
}
.sec-why .c_why_imgBox .outerImg.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 450ms;
  transform: translate(0, 0);
}
.sec-why .c_why_imgBox .innerImg.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 900ms;
  transform: translate(0, 0);
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.6); /* 初期状態 */
  }
  70% {
    opacity: 1;
    transform: scale(1.1); /* 少し大きくなる */
  }
  95% {
    opacity: 0;
    transform: scale(1); /* 元のサイズに戻る */
  }
  100% {
    opacity: 0;
    transform: scale(0.6); /* 元のサイズに戻る */
  }
}
/********** Flow **********/
.sec-flow {
  border-top: solid 1px #8d8d8d;
}
.sec-flow .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .sec-flow .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sec-flow .c_flow_imgBox {
  grid-column: span 6;
  padding: 64px 64px 180px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-flow .c_flow_imgBox {
    grid-column: span 3;
    padding: 48px 0 80px 8px;
  }
}
.sec-flow .c_flow_imgBox .imgWrap {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-flow .c_flow_imgBox .imgWrap {
    display: flex;
    flex-direction: column;
    padding-top: 48px;
  }
}
.sec-flow .c_flow_imgBox .imgWrap img {
  width: 100%;
}
.sec-flow .c_flow_imgBox .baseImg {
  position: relative;
  width: 100%;
  z-index: 1000;
}
.sec-flow .c_flow_imgBox .flowImg01,
.sec-flow .c_flow_imgBox .flowImg02,
.sec-flow .c_flow_imgBox .flowImg03 {
  filter: blur(15px);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translate(-16px, 0);
  width: 100%;
  z-index: 1100;
}
.sec-flow .c_flow_imgBox .flow_centerLine {
  background-color: #8d8d8d;
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  top: 50%;
  transition: all 450ms ease-in-out;
  transition-delay: 750ms;
  transform-origin: left;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-flow .c_flow_imgBox .flow_centerLine {
    height: calc(100% + 16px);
    left: 45%;
    top: -16px;
    transform: scale(1, 0);
    transform-origin: top;
    width: 1px;
  }
}
.sec-flow .c_flow_imgBox .flow_centerLine.is-in {
  transform: scale(1, 1);
}
.sec-flow .c_flow_imgBox.is-in .flowImg01 {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(0, 0);
}
.sec-flow .c_flow_imgBox.is-in .flowImg02 {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 300ms;
  transform: translate(0, 0);
}
.sec-flow .c_flow_imgBox.is-in .flowImg03 {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 450ms;
  transform: translate(0, 0);
}

/********** HeadMsg**********/
.sec-headMsg {
  background-color: #c1c7cd;
  border-top: solid 1px #8d8d8d;
  color: #1c1c1c;
  position: relative;
}
.sec-headMsg .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
  padding: 96px 0 0;
}
@media (max-width: 768px) {
  .sec-headMsg .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 3;
    padding: 48px 0 0;
  }
}
.sec-headMsg .c_head_imgBox {
  filter: blur(15px);
  grid-column: 2/3;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-headMsg .c_head_imgBox {
    grid-column: span 2;
    padding: 24px;
  }
}
.sec-headMsg .c_head_imgBox .imgWrap {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 0, 0, 0.06);
  position: relative;
  width: 100%;
}
.sec-headMsg .c_head_imgBox .imgWrap img {
  left: 0;
  top: 0;
  transition: opacity 450ms ease-in-out;
  width: 100%;
}
.sec-headMsg .c_head_imgBox .imgWrap .headMsg_photo1 {
  position: absolute;
  z-index: 1001;
}
.sec-headMsg .c_head_imgBox .imgWrap .headMsg_photo2 {
  position: relative;
  z-index: 1000;
}
.sec-headMsg .c_head_imgBox .imgWrap img:hover.headMsg_photo1 {
  opacity: 0;
  transition: opacity 450ms ease-in-out;
}
.sec-headMsg .c_head_imgBox.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-headMsg .c_head_msgBox {
  font-weight: 300;
  grid-column: 3/6;
  padding: 180px 16px 96px 180px;
}
@media (max-width: 768px) {
  .sec-headMsg .c_head_msgBox {
    grid-column: span 3;
    padding: 48px 24px 48px 48px;
  }
}
.sec-headMsg .c_head_msgBox h3 {
  filter: blur(15px);
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 2);
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
}
.sec-headMsg .c_head_msgBox h3 span {
  display: inline-block;
}
.sec-headMsg .c_head_msgBox .head_name {
  margin-bottom: 48px;
  margin-top: 16px;
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 1.5);
}
@media (max-width: 768px) {
  .sec-headMsg .c_head_msgBox .head_name {
    line-height: 1.2;
    padding: 0 8px 0 0;
  }
}
.sec-headMsg .c_head_msgBox .head_name span {
  display: inline-block;
  font-size: clamp(13px, 14px + (100vw - 1400px) / 100, 16px);
}
.sec-headMsg .c_head_msgBox p {
  filter: blur(15px);
  margin-top: 16px;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-headMsg .c_head_msgBox p {
    padding: 0 8px 0 24px;
  }
}
.sec-headMsg .c_head_msgBox h3.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-headMsg .c_head_msgBox p.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-headMsg .head_photoBox {
  background: linear-gradient(to bottom, #c1c7cd 50%, #262626 50%);
  grid-column: span 6;
  padding: 48px 64px 96px;
  translate: 0 0;
}
@media (max-width: 768px) {
  .sec-headMsg .head_photoBox {
    grid-column: span 3;
    padding: 24px 8px 80px;
  }
}
.sec-headMsg .head_photoBox .photoList {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .sec-headMsg .head_photoBox .photoList {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.sec-headMsg .head_photoBox .photoList li {
  align-items: center;
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  padding: 8px;
  position: relative;
  width: 19%;
}
@media (max-width: 768px) {
  .sec-headMsg .head_photoBox .photoList li {
    padding: 4px;
    width: 33%;
  }
}
.sec-headMsg .head_photoBox .photoList li::after {
  background-color: #1c1c1c;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform-origin: bottom;
  transform: scale(1, 0);
  width: 100%;
  z-index: 1;
}
.sec-headMsg .head_photoBox .photoList img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}
.sec-headMsg .head_photoBox .photoList li.is-in::after {
  animation: photo-fadeIn 600ms ease-in-out 150ms forwards;
}
.sec-headMsg .head_photoBox .photoList li.is-in img {
  opacity: 1;
  transition-delay: 530ms;
}
@keyframes photo-fadeIn {
  0% {
    transform-origin: bottom;
    transform: scale(1, 0);
  }
  65% {
    transform-origin: bottom;
    transform: scale(1, 1);
  }
  70% {
    transform: scale(1, 1);
    transform-origin: top;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: top;
  }
}
.sec-headMsg .hDot {
  width: 12px;
  height: 12px;
  background-color: #0f62fe; /* ドットの色 */
  border-radius: 50%;
  left: 0;
  margin-right: 16px;
  position: absolute;
  top: 0;
  translate: -50% -50%;
}

/********** Price **********/
.sec-price {
  border-top: solid 1px #8d8d8d;
}
.sec-price .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .sec-price .l_cntnr {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sec-price .c_priceBox {
  grid-column: span 2;
  padding: 96px 16px 48px;
}
@media (max-width: 768px) {
  .sec-price .c_priceBox {
    grid-column: span 3;
    padding: 48px 0 8px 8px;
  }
}
.sec-price .c_priceBox .price_cntnr {
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 48px;
}
@media (max-width: 768px) {
  .sec-price .c_priceBox .price_cntnr {
    padding: 24px;
  }
}
.sec-price .c_priceBox .descPart {
  filter: blur(15px);
  opacity: 0;
}
.sec-price .c_priceBox .descPart h3 {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 1.5);
  font-weight: 400;
}
.sec-price .c_priceBox .descPart p {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 0.8);
  margin-top: 16px;
}
.sec-price .c_priceBox .menuPart .menuList {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.sec-price .c_priceBox .menuPart li {
  border: solid 1px #8d8d8d;
  filter: blur(15px);
  line-height: 1;
  margin-top: 16px;
  opacity: 0;
  padding: 16px;
  text-align: center;
  transform: translate(0, 32px);
  width: 100%;
}
.sec-price .c_priceBox .menuPart .baseMenu {
  background-color: #0f62fe;
  border: solid 1px #0f62fe;
  color: #f0f0f0;
  scale: 2;
  transform: translate(0, 0);
  transform-origin: center;
}
.sec-price .c_priceBox .menuPart .price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
  width: 100%;
}
.sec-price .c_priceBox .menuPart .price span {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 3);
  margin-right: 2px;
}
.sec-price .c_priceBox.is-in .descPart {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(0, 0);
}
.sec-price .c_priceBox.is-in li {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 600ms;
  transform: translate(0, 0);
}
.sec-price .c_priceBox.is-in .baseMenu {
  scale: 1;
  transition-delay: 900ms;
}
.sec-price .c_otherMenuBox {
  grid-column: span 6;
  padding: 0 16px 180px;
}
@media (max-width: 768px) {
  .sec-price .c_otherMenuBox {
    grid-column: span 3;
    padding: 48px 0 80px 8px;
  }
}
.sec-price .c_otherMenuBox .otherMenu_cntnr {
  background-color: #1c1c1c;
  height: 100%;
  padding: 48px;
}
@media (max-width: 768px) {
  .sec-price .c_otherMenuBox .otherMenu_cntnr {
    padding: 24px;
  }
}
.sec-price .c_otherMenuBox h3 {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 1.5);
  font-weight: 400;
  width: 100%;
}
.sec-price .c_otherMenuBox .otherMenu_list {
  filter: blur(15px);
  display: grid;
  flex-wrap: wrap;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr); /* 6列を均等に */
  grid-template-rows: repeat(3, auto);
  justify-content: space-between;
  margin-top: 48px;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-price .c_otherMenuBox .otherMenu_list {
    grid-template-columns: repeat(2, 1fr); /* 6列を均等に */
    grid-template-rows: repeat(6, auto);
  }
}
.sec-price .c_otherMenuBox .otherMenu_list li {
  border: solid 1px #8d8d8d;
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 0.8);
  padding: 16px 4px;
  text-align: center;
}
.sec-price .c_otherMenuBox.is-in .otherMenu_list {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(0, 0);
}

/********** Our Deck **********/
.sec-deck {
  border-top: solid 1px #8d8d8d;
}
.sec-deck .l_cntnr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 64px 180px;
  text-align: center;
  width: 100%;
}
.sec-deck hgroup h2 {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 3);
  font-weight: 400;
}
.sec-deck hgroup p {
  margin-top: 16px;
}
.sec-deck .deck_list {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.sec-deck .deck_list li {
  width: 75%;
}
@media (max-width: 768px) {
  .sec-deck .deck_list li {
    width: 100%;
  }
}
.sec-deck .hDot {
  width: 12px;
  height: 12px;
  background-color: #0f62fe; /* ドットの色 */
  border-radius: 50%;
  left: 0;
  margin-right: 16px;
  position: absolute;
  top: 0;
  translate: -50% -50%;
}

/********** Our Cta **********/
.sec-cta {
  border-top: solid 1px #8d8d8d;
}
.sec-cta .l_cntnr {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
  .sec-cta .l_cntnr {
    grid-template-columns: repeat(3, 1fr); /* 6列を均等に */
  }
}
.sec-cta .cta_msgBox {
  align-items: start;
  display: flex;
  filter: blur(15px);
  flex-direction: column;
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 2);
  font-weight: 400;
  grid-column: 2/4;
  justify-content: center;
  line-height: 1.4;
  opacity: 0;
}
@media (max-width: 768px) {
  .sec-cta .cta_msgBox {
    justify-content: start;
    grid-column: 1/4;
    font-size: calc(clamp(13px, 14px + (100vw - 480px) / 100, 15px) * 1.5);
    padding: 32px 24px;
  }
}
.sec-cta .cta_msgBox span {
  display: inline-block;
}
@media (max-width: 768px) {
  .sec-cta .cta_msgBox span {
    display: inline;
  }
}
.sec-cta .cta_msgBox.is-in {
  filter: blur(0);
  opacity: 1;
  transition: opacity 600ms ease-in-out, transform 600ms ease-in-out, filter 600ms ease-in-out;
  transition-delay: 150ms;
  transform: translate(8px, 0);
}
.sec-cta .cta_btnBox {
  align-items: center;
  background-color: #0f62fe;
  color: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 5/6;
  min-height: 400px;
  line-height: 1.4;
  transition: 300ms;
}
@media (max-width: 768px) {
  .sec-cta .cta_btnBox {
    font-size: calc(clamp(13px, 14px + (100vw - 480px) / 100, 15px) * 1.5);
    grid-column: 2/4;
    min-height: 160px;
  }
}
.sec-cta .cta_btnBox span {
  font-size: calc(clamp(13px, 14px + (100vw - 1400px) / 100, 16px) * 0.8);
}
@media (max-width: 768px) {
  .sec-cta .cta_btnBox span {
    font-size: clamp(13px, 14px + (100vw - 480px) / 100, 15px);
  }
}
.sec-cta .cta_btnBox:hover {
  font-weight: 400;
  scale: 1.1;
  transition: 600ms;
}
.sec-cta .cta_otherLinkBox {
  background-color: #1c1c1c;
  border-bottom: solid 1px #8d8d8d;
  border-top: solid 1px #8d8d8d;
  grid-column: span 6;
}
.sec-cta .cta_otherLinkList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.sec-cta .cta_otherLinkList li {
  grid-column: span 1;
  height: 100%;
  padding: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .sec-cta .cta_otherLinkList li {
    grid-column: span 3;
  }
}
.sec-cta .cta_otherLinkList li:not(:last-child) {
  border-right: solid 1px #8d8d8d;
}
@media (max-width: 768px) {
  .sec-cta .cta_otherLinkList li:not(:last-child) {
    border-bottom: solid 1px #8d8d8d;
    border-right: none;
  }
}
.sec-cta .cta_otherLinkList li a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 64px 0;
  transition: 150ms;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-cta .cta_otherLinkList li a {
    padding: 32px 0;
  }
}
.sec-cta .cta_otherLinkList li a:hover {
  background-color: #0f62fe;
  color: #f0f0f0;
  transition: 450ms;
}

/********** Footer **********/
footer {
  padding: 16px;
}
@media (max-width: 768px) {
  footer {
    border-top: solid 1px #8d8d8d;
  }
}
footer small {
  display: flex;
  justify-content: end;
  width: 100%;
}