@charset "UTF-8";
/*bootstrap対策*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: bold;
  line-height: 1;
  color: inherit
}
p {
  margin: 0;
}
dl,
ol,
.ul {
  margin: 0;
}
dt,
.dd {
  margin: 0;
}
label,
.figure {
  margin: 0;
  padding: 0;
}
/****************************/
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
a,
span,
address,
blockquote,
table,
tr,
th,
.td {
  /*transform: rotate(0.03deg);*/
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
  /*横スクロールが出るのを隠すため*/
}
html {
  font-size: 62.5%;
  /*font-size: 0.390625vw*/
  /*期値を10pxとする場合：10/2560*100=0.396（表示させたい文字サイズ÷width×100*/
  /*transform: rotate(0.03deg);*/
}
html {
  scroll-padding-top: 70px;
  /* 固定ヘッダの高さ分 */
}
body {
  color: #fafafa;
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
  line-height: 1;
}
/*========= body背景色の変化CSS ===============*/

body {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #062a06, #070d27, #932f2f);
  /*グラデーションを定義*/
  background-size: 200% 200%;
  /*サイズを大きくひきのばす*/
  animation: bggradient 20s ease infinite;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* オープニング */
.opening {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  background: #000;
  position: absolute;
  top: 0;
  z-index: 9;
  animation: hidden 2s forwards;
}
.opening [class^="logo"] {
  width: 30rem;
  position: absolute;
  left: calc(50% - 15rem);
  animation: swap 1s steps(1, end) 2 forwards;
}
.opening .logo1 {
  top: calc(50% - 4.28rem);
  opacity: 1;
  /* ← 初期表示 */
}

.opening .logo2 {
  top: calc(50% - 3.52rem);
  opacity: 0;
  /* ← 初期非表示が超重要 */
  animation-delay: 0.5s;
}

.opening [class^="logo"] img {
  width: 100%;
}
@keyframes hidden {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes swap {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*マーキー*/
.marquee {
  width: 100%;
  height: 13rem;
  position: relative;
  overflow: hidden;
}
.marquee p {
  font-size: 13rem;
  font-family: "Jost", sans-serif;
  animation: 22s marquee linear infinite;
  white-space: nowrap;
  position: absolute;
}
@keyframes marquee {
  0% {
    transform: translate(100%, 0);

  }
  100% {
    transform: translate(-100%, 0);
  }
}



/*l2r元
.l2r {
  width: fit-content;
  height: auto;
  padding: 0 0.25em;
  font-family: "Jost", sans-serif;
  color: #020f25;
  overflow: hidden;
  position: relative;
}
.l2r::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: inline-block;
  position: absolute;
  z-index: -1;
  animation: l2r 3s forwards;
  top: 0;
  left: -100%;
}
@keyframes l2r {
  0% {
    left: -100%;
  }
  75% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}*/
/* l2r -js発火用に調整- */
.l2r {
  width: fit-content;
  height: auto;
  padding: 0 0.25em;
  font-family: "Jost", sans-serif;
  color: #020f25;
  overflow: hidden;
  position: relative;
}

.l2r::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: inline-block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -100%;
}

/* 発動用 */
.l2r.active::before {
  animation: l2r 1s forwards;
}

@keyframes l2r {
  0% {
    left: -100%;
  }
  /*
  75% {
    left: -100%;
  }*/
  100% {
    left: 0;
  }
}
/*iphone対策*/
button {
  appearance: none;
  -webkit-appearance: none;
  color: #000;
}





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.titleA {
  display: grid;
  gap: 1rem;
  margin: 0 auto 5rem;
}
.titleA h3 {
  grid-row: 2/3;
}
.titleA p {
  font-size: 5rem;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  font-style: italic;
}
.buttonA {
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  width: fit-content;
  min-width: 24rem;
  height: 4.6rem;
  border: 0.1rem solid #fff;
  border-radius: 2.3rem;
  line-height: 1 !important;
  overflow: hidden;
}
.buttonA :is(a, span) {
  width: 100%;
  height: inherit;
  display: grid;
  align-items: center;
  background: initial;
  color: inherit;
  position: relative;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.buttonA :is(a, span)::after {
  content: "→";
  font-weight: bold;
  transform: scale(0.75, 1);
  position: absolute;
  right: 1rem;
}
.buttonA :is(a, span)::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  display: block;
  position: absolute;
  left: -100%;
  z-index: -1;
}
.buttonA :is(a, span):hover {
  color: #020f25;
  transition: 0.5s;
  text-decoration: none;
}
.buttonA :is(a, span):hover::before {
  left: 0;
  transition: 0.5s;
}





/*header*/
.header {
  width: 100%;
  height: 10rem;
  position: relative;
  top: 0;
  z-index: 9;
}
.header .inner {
  width: 90%;
  max-width: 142rem;
  height: 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .inner .left {
  width: 30%;
}
.header .inner .left .logo {
  max-width: 23.69vw;
  /*45.5*/
  min-width: 30rem;
}
.header .inner .left .logo img {
  width: 100%;
}
.header .inner .right {
  width: 70%;
  max-width: 62rem;
}
.header .inner .right .nav {
  width: 100%;
}
.header .inner .right .nav .ul .li {
  font-size: 1.5rem;
}
.header .inner .right .nav .ul .li a {
  color: inherit;
  text-decoration: none;
}
.header .inner .right .nav>.ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.header .inner .right .nav>.ul>.li {
  flex-grow: 1;
  list-style: none;
  text-align: center;
  position: relative;
 
}
.header .inner .right .nav>.ul>.li>p>a {
  display: grid;
  gap: 0.5rem;
}
.header .inner .right .nav>.ul>.li>p>a::before {
  content: "";
  font-size: 2.1rem;
  font-family: "Jost", sans-serif;
  text-align: center;
}
.header .inner .right .nav>.ul>.li:nth-of-type(1)>p>a::before {
  content: "HOME";
}
.header .inner .right .nav>.ul>.li:nth-of-type(2)>p>a::before {
  content: "ABOUT";
}
.header .inner .right .nav>.ul>.li:nth-of-type(3)>p>a::before {
  content: "ANALYSIS";
}
.header .inner .right .nav>.ul>.li:nth-of-type(4)>p>a::before {
  content: "WEAR";
}
.header .inner .right .nav>.ul>.li>.ul {
  display: none;
}
.header .inner .right .nav>.ul>.li:hover>.ul {
  width: 100%;
  display: block;
  position: absolute;
  top: 4.5rem;
}
.header .inner .right .nav>.ul>.li>.ul>.li {
  list-style: none;
  width: 100%;
  min-height: 3.7rem;
  border: 0.1rem solid #fff;
  margin: 0 0 0.5rem;
}
.header .inner .right .nav>.ul>.li>.ul>.li>p{
  width: 100%;
  min-height: inherit;
}
.header .inner .right .nav>.ul>.li>.ul>.li a {
  width: 100%;
  min-height: inherit;
  display: grid;
  align-items: center;
  text-align: center;
}




/*main*/
.maintitle {
  width: 80%;
  max-width: 120rem;
  margin: 13rem auto 5rem;
  display: grid;
  gap: 2rem;
}
.maintitle h2 {
  grid-row: 2/3;
  font-size: 1.9rem;
}
.maintitle p {
  font-size: 7.2rem;
}

.beginner {
  width: 100%;
  background: url(/system_panel/uploads/images/analysis_cnt4_windowbg.jpg) no-repeat rgba(8, 1, 1, 0.7);
  background-size: cover;
  background-blend-mode: darken;
  padding: 4.16vw clamp(2rem, 5.2vw, 10rem) clamp(2rem, 2.08vw, 4rem);
}
.beginner .col2 {
  display: flex;
}
.beginner .col2 .left {
  width: 18%;
}
.beginner .col2 .left .free {
  width: 100%;
  transform: translate(-2.6vw, calc(-4.16vw - 3rem));
}
.beginner .col2 .left .free img {
  width: 100%;
}
.beginner .col2 .left {
  width: 18%;
}

.beginner .col2 .right {
  width: 82%;
}
.beginner .col2 .right h4 {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 0 0 2rem;
}
.beginner .col2 .right h4::before{
  content: initial;
}
.beginner .col2 .right .ul {
  margin: 0 0 2rem;
}
.beginner .col2 .right .li {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 2.22;
  list-style: none;
}
.beginner .col2 .right .li::before {
  content: "";
  background: url(/system_panel/uploads/images/check.png) no-repeat;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.3rem;
  display: inline-block;
}
.beginner .col2 .right .flex {
  display: flex;
  gap: 2.5rem;
}

/*footer*/
.footer {
  padding: 10rem 0 5rem;
}
.footer .catch {
    font-size: 10rem;
    font-family: "Jost", sans-serif;
    white-space: normal;
    text-align: center;
    margin: 0 auto 15rem;
}
.footer .inner .col2 {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 15rem;
}
.footer .inner .col2 .left {}
.footer .inner .col2 .left h1 {
  font-size: 2.7rem;
  font-family: "Jost", sans-serif;
  margin: 0 0 5rem;
}
.footer .inner .col2 .left .sns {
  font-family: "Jost", sans-serif;
  margin: 0 0 2.5rem;
}
.footer .inner .col2 .left .sns a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
}
.footer .inner .col2 .left .sns a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_insta.png) no-repeat;
  width: 1.9rem;
  min-width: 1.9rem;
  height: 1.9rem;
  display: inline-block;
}
.footer .inner .col2 .right {}
.footer .inner .col2 .right .nav {
  display: flex;
  gap: 4.16vw;
  /*8*/
}
.footer .inner .col2 .right .nav .ul {}
.footer .inner .col2 .right .nav .ul .li {
  font-family: "Jost", sans-serif;
  margin: 0 0 3.5rem;
}
.footer .inner .col2 .right .nav>.ul>.li {
  list-style: none;
}
.footer .inner .col2 .right .nav .ul .li a {
  color: inherit;
}
.footer .inner .col2 .right .nav .ul>.li>.ul {
  margin: 3.5rem 0 0;
}
.footer .inner .col2 .right .nav .ul>.li>.ul>.li {
  list-style: none;
}
.footer .inner .col2 .right .nav .ul>.li>.ul>.li a::before {
  content: "－";
  display: inline;
}
.footer .inner .copyright {
  font-family: "Jost", sans-serif;
}








/*ページ遷移時のフェードイン効果*/
html {
  animation: fadein 3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}




/*スムーススクロール*/
html {
  /*scroll-behavior: smooth;※smoooothでの使用は不可*/
}




/*-----ハンバーガーメニュー-----*/
.navToggle {
  display: none;
}




/*pagetopボタン用*/
.pagetop {
  position: fixed;
  bottom: 5rem;
  right: 10%;
  width: 2rem;
  height: 10rem;
  z-index: 4;
}
.pagetop a {
  width: inherit;
  height: inherit;
  display: inline-grid;
  place-items: center;
  color: #fff;
}




/*.headerSwitch用*/
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header {
}
.header.scroll-nav {
}
.header.scroll-nav :is(.logo, .ul .li a) {
}





/*main*/


/*ブロマル用*/
:is(.blogdetail, .worksdetail, .casesdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h2 {
  font-weight: bold;
  margin: 2.5rem 0 1rem;
  padding: .8rem 2rem;
  border-left: 5px solid #192c56;
  /*要変更*/
  background: #f4f4f4;
  line-height: 1.3;
}

:is(.blogdetail, .worksdetail, .casesdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h3 {
  font-weight: bold;
  font-size: clamp(1rem, 0.909rem + 0.3vw, 1.25rem);
  margin: 2rem 0 .5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dadada;
  position: relative;
  line-height: 1.3;
}
:is(.blogdetail, .worksdetail, .casesdetail, .topicsdetail) .webgene-blog .webgene-item .cmt h3::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 20%;
  height: 3px;
  background-color: #192c56;
  /*要変更*/
  min-width: 50px;
}


/*アコーディオン*/
.aco2 {
  display: none;
  /*初期状態で開いておく場合はinitialに変更*/
}
#wrapper .aco2 {
  display: initial;
  /*初期状態で開いておく場合はinitialに変更*/
}
.aco-open {
  position: relative;
}
.aco-open::after {
  /* 閉じている時 */
  content: "×";
  position: absolute;
  top: calc(50% - 0.5em);
  right: 2rem;
  color: initial;
}
.aco-open.active::after {
  /* 開いている時 */
  content: "＋";
  color: initial;
  top: calc(50% - 0.5em);
}




/*========= 流れるテキストslideAnime ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}




/*wow.js（animate.cssのスクロールのタイミングに発動させるライブラリ）用*/
.box {
  animation-fill-mode: forwards;
}




/*animate.cssの追加css*/
.animate__delay-1s {
  animation-delay: calc(var(--animate-delay)*0.5) !important;
}
.animate__delay-2s {
  animation-delay: calc(var(--animate-delay)*1) !important;
}
.animate__delay-3s {
  animation-delay: calc(var(--animate-delay)*1.5) !important;
}
.animate__delay-4s {
  animation-delay: calc(var(--animate-delay)*2) !important;
}
.animate__delay-5s {
  animation-delay: calc(var(--animate-delay)*2.5) !important;
}
.animate__delay-6s {
  animation-delay: calc(var(--animate-delay)*3) !important;
}