@charset "UTF-8";
/*! normalize.css v3.0.2 | MIT License | git.io/normalize*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  vertical-align: baseline;
  line-height: 0;
  position: relative;
  font-size: 75%;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  height: 0;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  box-sizing: border-box;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*------------------------------------------------------------
基本設定
-------------------------------------------------------------*/
html {
  overflow-y: scroll;
}

a {
  transition: 0.3s;
  color: #03c;
}

address,
caption,
cite,
code,
dfn,
var,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: normal;
}

q {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

div {
  word-wrap: break-word;
}

pre {
  overflow: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

form {
  margin: 0;
}

button,
input,
select,
textarea,
optgroup,
option {
  vertical-align: baseline;
}

textarea {
  min-height: 100px;
  vertical-align: top;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  margin: 0;
}

table {
  width: 100%;
  word-break: break-all;
  word-wrap: break-word;
  border-spacing: 0;
}

img {
  height: auto;
  max-width: 100%;
}

img {
  max-width: none\9 ; /*IE8への対応*/
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin-left: 40px;
  padding-left: 0;
}

li {
  margin-bottom: 0;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  animation-name: flipDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipDownAnime {
  from {
    transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  animation-name: flipLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  animation-name: flipRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  perspective-origin: right center;
  opacity: 0;
}

@keyframes flipRightAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  animation-name: flipRightTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipRightTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.flipDownTrigger,
.flipLeftTrigger,
.flipLeftTopTrigger,
.flipRightTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  animation-name: rotateXAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateXAnime {
  from {
    transform: rotateX(0);
    opacity: 0;
  }
  to {
    transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
  from {
    transform: rotateY(0);
    opacity: 0;
  }
  to {
    transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  animation-name: rotateLeftZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateLeftZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  animation-name: rotateRightZAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes rotateRightZAnime {
  from {
    transform: rotateZ(0);
    opacity: 0;
  }
  to {
    transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.rotateXTrigger,
.rotateYTrigger,
.rotateLeftZTrigger,
.rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  animation-name: zoomOutAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  　transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.smoothTrigger {
  opacity: 0;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.lineTrigger.lineanime {
  animation-name: lineAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.lineTrigger::before,
.lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.lineTrigger::before {
  top: 0;
  left: 0;
}

.lineTrigger.lineanime::before {
  animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.line2::before {
  top: 0;
  right: 0;
}

.lineTrigger.lineanime .line2::before {
  animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.lineTrigger::after {
  bottom: 0;
  right: 0;
}

.lineTrigger.lineanime::after {
  animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.lineTrigger.lineanime .lineinappear {
  animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

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

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

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*右から*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*下から*/
.bgDUextend::before {
  animation-name: bgDUextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*上から*/
.bgUDextend::before {
  animation-name: bgUDextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

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

/*==================================================
アニメーション設定
===================================*/
/* アニメーションの回数を決めるCSS*/
.count2 {
  animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  animation-duration: 0.5s;
}

.change-time1 {
  animation-duration: 1s;
}

.change-time15 {
  animation-duration: 1.5s;
}

.change-time2 {
  animation-duration: 2s;
}

.change-time25 {
  animation-duration: 2.5s;
}

html {
  /* ページ内リンクのスクロールを滑らかに */
  scroll-behavior: smooth;
}

/*基本レイアウト*/
.sec_in {
  margin: auto;
}

.w01_in {
  width: 1100px;
}

.w02_in {
  width: 900px;
}

.w03_in {
  width: 1224px;
}

.w04_in {
  width: 1140px;
}

.w05_in {
  width: 1040px;
}

.w06_in {
  width: 1060px;
}

@media only screen and (max-width: 1224px) {
  .w01_in {
    width: 90%;
  }
  .w02_in {
    width: 90%;
  }
  .w03_in {
    width: 90%;
  }
  .w04_in {
    width: 90%;
  }
}
@media only screen and (max-width: 1000px) {
  .w01_in {
    width: 90%;
  }
  .w05_in {
    width: 90%;
  }
  .w06_in {
    width: 90%;
  }
}
/*--------------------------------------------------------
背景色・文字色の設定
--------------------------------------------------------*/
body {
  font-size: 100%;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  font-size: 14px;
}

.font_b {
  font-family: "Noto Serif JP", serif;
}

/*全体の追加設定*/
a {
  text-decoration: none;
  color: #231815;
}

a:hover {
  color: #F00;
}

.fonbt_rbi {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}

.dis-mb {
  display: none;
}

@media only screen and (max-width: 750px) {
  .dis-pc {
    display: none;
  }
  .dis-mb {
    display: block;
  }
}
/*--------------------------------------------------------
decoracion
--------------------------------------------------------*/
.fadeUp_a {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------
 header
--------------------------------------------------------*/
.header_sec {
  position: fixed; /* ビューポートに対して固定 */
  top: 0; /* 上端に配置 */
  left: 0; /* 左端に配置 */
  width: 100%; /* 横幅を画面幅いっぱいに */
  z-index: 10; /* 他の要素より前面に */
  height: 100px !important;
}

.header_sec .sec_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0 20px 0;
  width: 99%;
  margin: auto;
}

.header_sec .col_l {
  width: 250px;
  padding-top: 8px;
}

.header_sec .col_r {
  padding-top: 20px;
  width: 950px;
  text-align: right;
}

.header_sec .col_r a {
  color: #fff;
  display: inline-block;
  position: relative;
  text-align: center;
  border-left: 1px solid #999;
  padding: 0 15px 0 15px;
}

.header_sec .col_r a:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.header_sec .col_r a .word01 {
  display: block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  font-weight: bold;
}

.header_sec .col_r a .word02 {
  display: block;
  font-size: 10px;
  color: #ccc;
}

.header_sec.shadow {
  background: linear-gradient(to bottom, rgba(20, 28, 47, 0.8) 0%, rgba(20, 28, 47, 0.8) 20%, rgba(20, 28, 47, 0) 100%);
}

@media only screen and (max-width: 1300px) {
  .header_sec {
    position: fixed; /* ビューポートに対して固定 */
    top: 0; /* 上端に配置 */
    left: 0; /* 左端に配置 */
    width: 100%; /* 横幅を画面幅いっぱいに */
    z-index: 20; /* 他の要素より前面に */
    height: 100px !important;
  }
  .header_sec .sec_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 0 20px 0;
    width: 90%;
    margin: auto;
  }
  .header_sec .col_l {
    width: 180px;
    padding-top: 8px;
  }
  .header_sec .col_r {
    display: none;
  }
  .header_sec li {
    list-style: none;
    display: inline-block;
  }
  .header_sec .col_r a {
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    position: relative;
  }
  .header_sec .col_r a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #000;
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
  }
  /*— 現在地 or hover はトップレベルのリンクだけに —*/
  .header_sec .col_r > .nav-item.current > a::after,
  .header_sec .col_r > .nav-item > a:hover::after {
    transform: scale(1, 1);
  }
  .header_sec.shadow {
    background: linear-gradient(to bottom, rgba(20, 28, 47, 0.8) 0%, rgba(20, 28, 47, 0.8) 20%, rgba(20, 28, 47, 0) 100%);
  }
}
/*--------------------------------------------------------
breadcrumbs
--------------------------------------------------------*/
#breadcrumbs {
  font-size: 13px;
  color: #999;
}

#breadcrumbs a {
  font-size: 13px;
  color: #999;
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #141c2f 40%, #0a0a0a 100%);
  color: #fff;
  z-index: 10;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

footer .sec_in {
  width: 1300px;
}

footer .footer_logo {
  width: 250px;
  margin: auto;
  z-index: 9;
}

footer .footer_nav {
  width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

footer .footer_nav a {
  position: relative;
  width: 25%;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
  border-right: 1px solid #666;
  box-sizing: border-box;
  padding: 5px 0;
}

footer .footer_nav a:nth-child(1),
footer .footer_nav a:nth-child(5) {
  border-left: 1px solid #666;
}

footer .footer_nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

footer .footer_nav .word01 {
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

footer .footer_nav .word02 {
  display: block;
  font-size: 12px;
  color: #999;
}

footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.1), transparent 60%), radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.05), transparent 60%);
  z-index: 0;
  animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: rotate(360deg) scale(1.05);
    opacity: 0.6;
  }
}
#copyright {
  text-align: left;
  padding: 30px 0;
  font-size: 12px;
  color: #fff;
}

/* SP用 */
@media only screen and (max-width: 850px) {
  footer {
    padding: 30px 0 60px 0;
  }
  footer a {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
    color: #fff;
  }
  footer .sec_in {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  footer .footer_logo {
    width: 100%;
    order: 2;
    text-align: center;
    padding-top: 30px;
  }
  footer .footer_logo img {
    width: 60%;
  }
  footer .footer_nav {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  footer .footer_nav a {
    position: relative;
    width: 49%;
    display: block;
    text-align: center;
    margin: 0 auto 20px auto;
    color: #fff;
    border-right: 1px solid #666;
    padding: 5px 0;
  }
  footer .footer_nav a:nth-child(3),
  footer .footer_nav a:nth-child(7) {
    border-left: 1px solid #666;
  }
  footer .footer_nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  footer .footer_nav .word01 {
    font-size: 13px;
  }
  footer .footer_nav .word02 {
    font-size: 12px;
  }
}
/* 動画背景 */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-bg video {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 0;
  pointer-events: none;
}

/* コンテナ */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.sec_fv {
  width: 955px;
  margin: auto;
  height: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.sec_fv img {
  width: 100%;
}

.textBox {
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  color: #fff;
  margin-bottom: 90px;
}

.box_in {
  width: 90%;
  margin: auto;
  padding: 60px 0 60px 0;
}

.about_box h2 {
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
} /* 0だと詰みすぎるので1推奨 */
.about_box .about_box_line01 {
  font-weight: 800;
  margin-bottom: 50px;
  font-size: 18px;
}

@media only screen and (max-width: 820px) {
  /* 動画背景（同じ指定でOK・重複しても可） */
  .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
  }
  .video-bg video {
    min-width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    display: block;
  }
  /* オーバーレイ */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 0;
    pointer-events: none;
  }
  /* コンテナ */
  .container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
  }
  .sec_fv {
    width: 100%;
    margin: auto;
    height: 70vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .sec_fv img {
    width: 90%;
    margin: auto;
  }
  .textBox {
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    color: #fff;
    margin-bottom: 90px;
  }
  .box_in {
    width: 90%;
    margin: auto;
    padding: 60px 0 60px 0;
  }
  .about_box h2 {
    font-weight: 900;
    font-size: 36px;
    line-height: 1;
  }
  .about_box .about_box_line01 {
    font-weight: 800;
    margin-bottom: 50px;
    font-size: 18px;
  }
}
/* 背景コンテナ */
.video-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

/* 動画本体 */
.video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

@media only screen and (max-width: 800px) {
  .video-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center; /* 中央からスタート */
    animation: panVideo 30s ease-in-out infinite alternate;
  }
}
@keyframes panVideo {
  0% {
    -o-object-position: center center;
       object-position: center center;
  }
  25% {
    -o-object-position: left center;
       object-position: left center;
  }
  50% {
    -o-object-position: center center;
       object-position: center center;
  }
  75% {
    -o-object-position: right center;
       object-position: right center;
  }
  100% {
    -o-object-position: center center;
       object-position: center center;
  }
}
/*---------------------------------------------
top
----------------------------------------------*/
.page_top {
  /*-news_sec-*/
  /* 流れる帯 */
  /* ホバーすると translateX(0) で要素全体を覆い、そのままとどまる */
}
.page_top .news_sec {
  padding: 60px 0 60px 0;
  margin-bottom: 60px;
}
.page_top .news_box {
  width: 100%;
  margin: auto;
  border-radius: 5px;
  margin-bottom: 90px;
  position: relative;
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05), inset 0 0 20px rgba(0, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 40px 0 40px 0;
  margin: 0 auto 150px auto;
}
.page_top .news_box_in {
  padding: 30px 0 30px 0;
}
.page_top .news_box .news_en {
  font-weight: 900;
  text-align: center;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-size: 60px;
  color: #fff;
}
.page_top .news_line {
  display: flex;
  align-items: center;
  gap: 1em; /* 要素間のスペース */
  padding: 0.5em 0;
  border-bottom: 1px solid #ddd;
  width: 85%;
  margin: auto;
}
.page_top .news_line .day {
  display: inline-block;
  color: #888;
  width: 100px;
}
.page_top .news_line .cat {
  display: inline-block;
  width: 100px;
}
.page_top .news_line .cat a {
  background-color: #000;
  color: #000;
  padding: 0.2em 0.6em;
  border-radius: 2px;
  font-size: 18px;
}
.page_top .news_line .title {
  background: url("../images/page/top/news_arrow.svg");
  text-decoration: none;
  flex: 1;
  background-size: 24px;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 0 5px 0 5px;
  color: #fff;
}
.page_top .news_line .title:hover {
  background: url("../images/page/top/news_arrow.svg") #f9f9f9;
  color: #fff;
  text-decoration: none;
  flex: 1;
  background-size: 24px;
  background-position: center right 5px;
  background-repeat: no-repeat;
}
.page_top .news_line a:hover {
  color: #0073aa;
}
@media only screen and (max-width: 800px) {
  .page_top .news_sec {
    padding: 60px 0 60px 0;
    margin-bottom: 60px;
    overflow: hidden;
  }
  .page_top .news_box .news_en {
    font-weight: 900;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-size: 40px;
    color: #fff;
  }
  .page_top .news_box {
    width: 100%;
    margin: auto;
    box-shadow: none;
    border-radius: 10px;
  }
  .page_top .news_line {
    display: block;
  }
  .page_top .news_info {
    width: 100%;
    display: block;
  }
  .page_top .news_line .day {
    display: inline-block;
    color: #888;
    width: 80px;
    font-size: 12px;
  }
  .page_top .news_line .cat {
    font-size: 12px;
  }
  .page_top .news_line .title {
    width: 100%;
    background: none;
    text-decoration: none;
    padding: 0;
    font-size: 12px;
  }
}
.page_top .link a {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  margin: auto;
}
.page_top .link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%); /* 左外側にスタンバイ */
  transition: transform 0.5s ease; /* ホバー時のアニメーション */
  pointer-events: none;
}
.page_top .link a:hover::before {
  transform: translateX(0);
}

/*---------------------------------------------
人材コンサル
----------------------------------------------*/
.page_consulting .subhead {
  font-weight: 900;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  margin: 90px;
}
.page_consulting .service_disc,
.page_consulting .services_flBox {
  position: relative;
  border-radius: 16px;
  padding: 60px 40px;
  margin: 100px auto;
  color: #ffffff;
  width: 85%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 150, 255, 0.15));
  background-size: 200% 200%;
  background-position: 0% 50%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.page_consulting .service_disc > *,
.page_consulting .services_flBox > * {
  position: relative;
  z-index: 2;
}
.page_consulting .service_disc_in {
  position: relative;
  z-index: 2;
}
.page_consulting .service_disc h2,
.page_consulting .services_flBox .col_r h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #ffffff;
}
.page_consulting .service_disc {
  text-align: center;
}
.page_consulting .about_box_text {
  font-size: 17px;
  line-height: 2;
  text-align: left;
  max-width: 800px;
  margin: auto;
  color: #eeeeee;
}
.page_consulting .services_flBox_in {
  width: 90%;
  padding: 20px 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.page_consulting .services_flBox .col_l {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 130px;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.2;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  text-shadow: none;
}
.page_consulting .services_flBox .col_r {
  width: 70%;
  color: #ffffff;
  padding-left: 20px;
}
.page_consulting .type_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_consulting .type_flBox .col {
  width: 32%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.65);
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.1), rgba(186, 85, 211, 0.15));
  background-size: 200% 200%;
  background-position: 0% 50%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.page_consulting .type_flBox .col .line01 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
}
.page_consulting .type_flBox .col .line02 {
  font-weight: bold;
}
.page_consulting .type_flBox .col_in {
  width: 90%;
  margin: auto;
  padding: 60px 0 60px 0;
}
@media (max-width: 768px) {
  .page_consulting .services_flBox_in {
    flex-direction: column;
    text-align: center;
  }
  .page_consulting .services_flBox .col_l,
  .page_consulting .services_flBox .col_r {
    width: 100%;
    padding-left: 0;
  }
  .page_consulting .services_flBox .col_r h2 {
    text-align: center;
  }
  .page_consulting .about_box_text {
    text-align: left;
  }
}

@media only screen and (max-width: 820px) {
  .page_consulting {
    overflow-x: hidden;
  }
  .page_consulting .subhead {
    font-size: 24px;
    margin: 60px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
  .page_consulting .service_disc,
  .page_consulting .services_flBox {
    padding: 20px 0 40px 0;
    margin: 0 auto 60px auto;
    width: 100%;
  }
  .page_consulting .service_disc h2,
  .page_consulting .services_flBox .col_r h2 {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
  }
  .page_consulting .about_box_text {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 10px;
    text-align: left;
  }
  .page_consulting .services_flBox_in {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .page_consulting .services_flBox .col_l {
    width: 100%;
    font-size: 80px;
    margin-bottom: 0;
    text-align: center;
  }
  .page_consulting .services_flBox .col_r {
    width: 100%;
    padding-left: 0;
    text-align: center;
    font-size: 13px !important;
  }
  .page_consulting .type_flBox {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .page_consulting .type_flBox .col {
    width: 100%;
    padding: 30px 0 40px 0;
  }
  .page_consulting .type_flBox .col .line01 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .page_consulting .type_flBox .col .line02 {
    font-size: 14px;
  }
  .page_consulting .type_flBox .col_in {
    padding: 30px 0;
    width: 100%;
  }
}
/*---------------------------------------------
フィールド
----------------------------------------------*/
.page_field .subhead {
  font-weight: 900;
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin: 90px;
}
.page_field .service_disc,
.page_field .services_flBox {
  position: relative;
  border-radius: 16px;
  padding: 60px 40px;
  margin: 100px auto;
  width: 85%;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(to right, rgba(46, 167, 224, 0.2), rgba(96, 25, 134, 0.15), rgba(35, 24, 21, 0.3), rgba(195, 13, 35, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.08);
  z-index: 1;
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.page_field .service_disc > *,
.page_field .services_flBox > * {
  position: relative;
  z-index: 2;
}
.page_field .service_disc_in {
  position: relative;
  z-index: 2;
}
.page_field .service_disc h2,
.page_field .services_flBox .col_r h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
}
.page_field .service_disc {
  text-align: center;
}
.page_field .about_box_text {
  font-size: 17px;
  line-height: 2;
  text-align: left;
  max-width: 800px;
  margin: auto;
  color: #e0f7ff;
}
.page_field .services_flBox_in {
  width: 90%;
  padding: 20px 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.page_field .services_flBox .col_l {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 150px;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
  opacity: 0.3;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-style: italic;
}
.page_field .services_flBox .col_r {
  width: 70%;
  color: #ffffff;
  padding-left: 20px;
}
.page_field .type_flBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_field .type_flBox .col {
  width: 32%;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(119, 144, 205, 0.2), rgba(255, 252, 255, 0.15), rgba(178, 182, 252, 0.25), rgba(230, 212, 250, 0.2));
  background-size: 200% 200%;
  background-position: 0% 50%;
  animation: gradientShift 15s ease infinite;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.page_field .type_flBox .col .line01 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
  color: #00f0ff;
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.5);
}
.page_field .type_flBox .col .line02 {
  font-weight: bold;
  color: #ffffff;
}
.page_field .type_flBox .col_in {
  width: 90%;
  margin: auto;
  padding: 60px 0;
}

@media only screen and (max-width: 820px) {
  .page_field {
    overflow-x: hidden;
  }
  .page_field .subhead {
    font-size: 24px;
    margin: 60px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    text-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
  }
  .page_field .service_disc,
  .page_field .services_flBox {
    padding: 20px 10px;
    margin: 0 auto 60px auto;
    width: 90%;
  }
  .page_field .service_disc h2,
  .page_field .services_flBox .col_r h2 {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
  }
  .page_field .about_box_text {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 10px;
    text-align: left;
  }
  .page_field .services_flBox_in {
    flex-direction: column;
    align-items: center;
  }
  .page_field .services_flBox .col_l {
    width: 100%;
    font-size: 80px;
    margin-bottom: 20px;
    text-align: center;
  }
  .page_field .services_flBox .col_r {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .page_field .type_flBox {
    flex-direction: column;
    gap: 20px;
  }
  .page_field .type_flBox .col {
    width: 100%;
    padding: 30px 20px;
  }
  .page_field .type_flBox .col .line01 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page_field .type_flBox .col .line02 {
    font-size: 16px;
  }
  .page_field .type_flBox .col_in {
    padding: 30px 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .services_flBox_in {
    flex-direction: column;
    text-align: center;
  }
  .services_flBox .col_l,
  .services_flBox .col_r {
    width: 100%;
    padding-left: 0;
  }
  .services_flBox .col_r h2 {
    text-align: center;
  }
  .about_box_text {
    text-align: left;
  }
}
/*---------------------------------------------
esports
----------------------------------------------*/
.page_esports {
  /*why_sec*/
}
.page_esports .subhead {
  font-weight: 900;
  font-size: 90px;
  color: #fff;
  text-align: center;
  text-shadow: -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.5), 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
  margin: 90px;
}
.page_esports .service_disc {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 60px 40px;
  margin: 0 auto 150px auto;
  color: #fff;
  width: 85%;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.05), inset 0 0 20px rgba(0, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
}
.page_esports .service_disc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(145deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.3));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  z-index: 0;
}
.page_esports .service_disc h2 {
  font-size: 35px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 60px;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}
.page_esports .service_disc_subhead {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: bold;
  opacity: 0.8;
}
.page_esports .about_box_text {
  font-size: 17px;
  line-height: 2;
  max-width: 800px;
  margin: auto;
}
.page_esports .services_flBox {
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  color: #fff;
  margin-bottom: 90px;
  padding: 20px;
  z-index: 1;
  overflow: hidden;
}
.page_esports .services_flBox::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(138, 43, 226, 0.2), rgba(100, 0, 160, 0.3), rgba(0, 255, 231, 0.2));
  background-size: 300% 300%;
  animation: neonBorder 5s linear infinite;
  z-index: -1;
  border-radius: 8px;
  filter: blur(4px);
}
@keyframes neonBorder {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.page_esports .services_flBox_in {
  width: 90%;
  padding: 60px 0 60px 0;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_esports .services_flBox .col_l {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1;
  opacity: 0.3;
  font-size: 150px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 100;
}
.page_esports .services_flBox .col_r {
  width: 70%;
  color: #fff;
}
.page_esports .services_flBox .col_r h2 {
  font-weight: 900;
  font-size: 24px;
}
.page_esports .why_sec {
  color: #fff;
}
.page_esports .why_sec .why_lines {
  font-weight: 900;
  text-align: center;
  text-shadow: -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.5), 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
}
.page_esports .why_sec .why_line01 {
  font-size: 30px;
}
.page_esports .why_sec .why_line02 {
  font-size: 60px;
}
.page_esports .why_sec .why_line03 {
  font-size: 40px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 800px) {
  .page_esports {
    /*why_sec*/
    /* スマホ対応 */
  }
  .page_esports .subhead {
    font-weight: 900;
    font-size: 30px;
    color: #fff;
    text-align: center;
    text-shadow: -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.5), 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
    margin: 90px;
  }
  .page_esports .service_disc {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 60px 40px;
    margin: 0 auto 150px auto;
    color: #fff;
    width: 85%;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.05), inset 0 0 20px rgba(0, 255, 255, 0.1);
    overflow: hidden;
    z-index: 1;
  }
  .page_esports .service_disc::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(0, 255, 255, 0.4), rgba(255, 0, 255, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
    z-index: 0;
  }
  .page_esports .service_disc h2 {
    font-size: 20px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 60px;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  .page_esports .service_disc_subhead {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: bold;
    opacity: 0.8;
  }
  .page_esports .about_box_text {
    font-size: 14px;
    line-height: 2;
    max-width: 800px;
    margin: auto;
  }
  .page_esports .services_flBox {
    position: relative;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    color: #fff;
    margin-bottom: 90px;
    padding: 20px;
    z-index: 1;
    overflow: hidden;
  }
  .page_esports .services_flBox h2 {
    font-size: 16px !important;
  }
  .page_esports .services_flBox::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 255, 231, 0.2), rgba(138, 43, 226, 0.2), rgba(100, 0, 160, 0.3), rgba(0, 255, 231, 0.2));
    background-size: 300% 300%;
    animation: neonBorder 5s linear infinite;
    z-index: -1;
    border-radius: 8px;
    filter: blur(4px);
  }
  @keyframes neonBorder {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .page_esports .services_flBox_in {
    width: 90%;
    padding: 30px 0 30px 0;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page_esports .services_flBox .col_l {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1;
    opacity: 0.3;
    font-size: 150px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 900;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
  }
  .page_esports .services_flBox .col_r {
    width: 70%;
    color: #fff;
    text-align: left;
  }
  .page_esports .services_flBox .col_r h2 {
    font-weight: 900;
    font-size: 24px;
  }
  .page_esports .why_sec {
    color: #fff;
  }
  .page_esports .why_sec .why_lines {
    font-weight: normal;
    text-align: center;
    text-shadow: -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.5), 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.5);
  }
  .page_esports .why_sec .why_line01 {
    font-size: 16px;
  }
  .page_esports .why_sec .why_line02 {
    font-size: 20px;
    font-weight: 900;
  }
  .page_esports .why_sec .why_line03 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 800px) and (max-width: 768px) {
  .page_esports .subhead {
    font-size: 24px;
    margin: 60px;
  }
  .page_esports .service_disc {
    padding: 40px 20px;
    margin: 0 auto 100px auto;
    width: 90%;
  }
  .page_esports .service_disc h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .page_esports .about_box_text {
    font-size: 14px;
    padding: 0 10px;
  }
  .page_esports .services_flBox_in {
    flex-direction: column;
    align-items: center;
  }
  .page_esports .services_flBox .col_l {
    width: 100%;
    font-size: 100px;
    margin-bottom: 20px;
  }
  .page_esports .services_flBox .col_r {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .page_esports .services_flBox .col_r h2 {
    font-size: 20px;
  }
  .page_esports .why_line01,
  .page_esports .why_line02,
  .page_esports .why_line03 {
    font-size: 16px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}