@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;
  -moz-box-sizing: content-box;
  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"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  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 {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  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 .5s linear 0s forwards;
  /*表示されて0秒後に上線が0.5秒かけて表示*/ }

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

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

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

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

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

.lineTrigger.lineanime .line2::after {
  animation: lineAnime2 .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 .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; }

body {
  padding-top: 100px; }

@media only screen and (max-width: 800px) {
  body {
    padding-top: 60px; } }
html {
  /* ページ内リンクのスクロールを滑らかに */
  scroll-behavior: smooth; }

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

.w01_in {
  width: 1360px; }

.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%; }

  .w05_in {
    width: 90%; } }
@media only screen and (max-width: 1000px) {
  .w01_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; }

.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: 19;
  /* 他の要素より前面に */
  background: #fff;
  /* 背景色。必要に応じて設定 */ }

.header_sec .sec_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0 20px 0; }

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

.header_sec .col_r {
  width: 650px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.header_sec .col_r a {
  color: #000;
  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 .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 {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s; }

@media only screen and (max-width: 1200px) {
  .header_sec {
    position: fixed;
    /* ビューポートに対して固定 */
    top: 0;
    /* 上端に配置 */
    left: 0;
    /* 左端に配置 */
    width: 100%;
    /* 横幅を画面幅いっぱいに */
    z-index: 2;
    /* 他の要素より前面に */
    background: #fff;
    /* 背景色。必要に応じて設定 */ }

  .header_sec .sec_in {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0 20px 0; }

  .header_sec .col_l {
    width: 30%;
    padding-top: 0; }

  .header_sec .col_r {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

  .header_sec .col_r a {
    color: #000;
    display: inline-block;
    font-size: 14px;
    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 .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 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s; } }
@media only screen and (max-width: 830px) {
  .header_sec {
    position: fixed;
    /* ビューポートに対して固定 */
    top: 0;
    /* 上端に配置 */
    left: 0;
    /* 左端に配置 */
    width: 100%;
    /* 横幅を画面幅いっぱいに */
    /* 他の要素より前面に */
    background: #fff;
    /* 背景色。必要に応じて設定 */ }

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

  .header_sec .col_l {
    width: 200px;
    padding-top: 0; }

  .header_sec .col_r {
    display: none; }

  .header_sec.shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s; } }
/*--------------------------------------------------------
 ナビゲーション & ドロップダウン
--------------------------------------------------------*/
.nav-item {
  position: relative; }

.nav-item > a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333; }

.dropdown {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  z-index: 100;
  transition: opacity 0.2s, visibility 0.2s; }

.dropdown li + li {
  margin-top: 4px; }

.dropdown li a {
  display: block;
  width: 90%;
  text-align: left;
  color: #333;
  font-size: 14px !important;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 5% 5px 5%; }

.dropdown li a:hover {
  opacity: 0.7;
  color: #333;
  background: #f5f5f5; }

/* ホバーまたはフォーカス時にドロップダウンを展開 */
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto; }

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

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

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
footer {
  background: linear-gradient(to bottom, #111 0%, #1a1a1a 30%, #2a2a2a 50%, #1a1a1a 70%, #111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px 0; }

footer {
  background: #111;
  padding: 60px 0 30px 0; }
  footer .footer_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  footer .footer_logo {
    width: 330px;
    padding-top: 30px; }
  footer .footer_nav {
    width: 750px;
    padding: 30px 0 0 0;
    margin-bottom: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  footer .col01 {
    width: 30%; }
  footer .col02 {
    width: 30%; }
  footer li {
    list-style: none;
    padding: 0;
    margin: 0; }
  footer ul {
    padding: 0;
    margin: 0 0 0 20px; }
  footer a {
    display: block;
    margin-right: 30px;
    font-size: 15px;
    color: #fff;
    position: relative;
    padding-left: 15px; }
  footer a:before {
    width: 8px;
    content: "";
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 12px; }

@media only screen and (max-width: 800px) {
  footer {
    background: #111;
    padding: 60px 0 30px 0; }
    footer .footer_flBox {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    footer .footer_logo {
      width: 100%;
      padding: 30px 0 30px 0; }
    footer .footer_nav {
      width: 100%;
      padding: 30px 0 0 0;
      margin-bottom: 90px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    footer .col01 {
      width: 100%; }
    footer .col02 {
      width: 100%; }
    footer li {
      list-style: none;
      padding: 0;
      margin: 0; }
    footer ul {
      padding: 0;
      margin: 0 0 10px 10px; }
    footer a {
      display: block;
      margin-right: 30px;
      font-size: 15px;
      color: #fff;
      position: relative;
      padding: 3px 0 3px 15px; }
    footer a:before {
      width: 8px;
      content: "";
      border-bottom: 2px solid #fff;
      position: absolute;
      left: 0;
      top: 15px; }
    footer li {
      display: inline-block;
      width: 49%;
      font-size: 12px; }
    footer li a:before {
      content: "・";
      position: absolute;
      left: 0;
      top: 0;
      border: none; }
    footer li a {
      font-size: 12px;
      padding: 2px 0 2px 10px; } }
#copyright {
  text-align: center;
  padding: 30px 0 30px 0;
  font-size: 12px;
  color: #fff;
  text-align: center; }

@media only screen and (max-width: 750px) {
  #copyright {
    text-align: center;
    margin: 0 0 0 0;
    padding: 0 0 30px 0; } }
/*== ボタン共通設定 */
.btn_main {
  /* グラデーションの指定 */
  /* ベースのグラデーション（暗めのグレー→黒→暗めのグレー） */
  background: #000;
  /* 立体感のある内側の光（インセットシャドウ）と外側の影 */
  /* 光沢をプラスする擬似要素 */
  position: relative;
  overflow: hidden;
  color: #fff;
  width: 300px;
  margin: auto;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 3px;
  position: relative;
  /* アニメーションの起点 */
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  outline: none;
  transition: ease .2s; }

/*ボタン内spanの形状*/
.btn_main span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff; }

/*== 背景が流れる（中央から横全体） */
.bgcenterx:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #666;
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: top; }

/*hoverした際の形状*/
.bgcenterx:hover:before {
  transform: scale(1, 1); }

@media only screen and (max-width: 800px) {
  .btn_main {
    /* グラデーションの指定 */
    /* ベースのグラデーション（暗めのグレー→黒→暗めのグレー） */
    background: #000;
    /* 立体感のある内側の光（インセットシャドウ）と外側の影 */
    /* 光沢をプラスする擬似要素 */
    position: relative;
    overflow: hidden;
    color: #fff;
    width: 80%;
    margin: auto;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px; } }
/*---------------------------------------
fv
-------------------------------------------*/
.sec_fv {
  width: 1360px;
  position: relative;
  margin: 0 auto 60px auto;
  height: auto; }
  .sec_fv .fv_pc {
    width: 623px;
    position: absolute;
    top: 60px;
    left: 120px; }

.fv_mb {
  display: none; }

.sec_fv video {
  width: 100%;
  height: 582px;
  object-fit: cover;
  /* 画面に合わせてトリミングされる */
  border-radius: 15px; }

/* 最初の状態を設定 */
.logo-grow {
  transform: scale(0.8);
  opacity: 0;
  animation: growLogo 1.5s ease-out forwards; }

@media only screen and (max-width: 1350px) {
  .sec_fv {
    width: 95%;
    position: relative;
    margin: 0 auto 60px auto;
    height: auto; }
    .sec_fv .fv_pc {
      width: 450px;
      position: absolute;
      top: 60px;
      left: 90px; }

  .fv_mb {
    display: none; }

  .sec_fv video {
    width: 100%;
    height: 482px;
    object-fit: cover;
    /* 画面に合わせてトリミングされる */
    border-radius: 15px; }

  /* 最初の状態を設定 */
  .logo-grow {
    transform: scale(0.8);
    opacity: 0;
    animation: growLogo 1.5s ease-out forwards; } }
/* アニメーション定義 */
@keyframes growLogo {
  0% {
    transform: scale(0.5);
    opacity: 0; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@media only screen and (max-width: 800px) {
  .sec_fv {
    width: 90%;
    margin: 0 auto 30px auto;
    height: auto;
    position: relative; }

  .fv_pc {
    display: none; }

  .fv_mb {
    display: block;
    width: 80%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    /* 背景デバッグ色削除 */
    z-index: 1; }

  .sec_fv video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 5px;
    z-index: 0; }

  .logo-grow {
    transform: scale(0.8);
    opacity: 0;
    animation: growLogo 1.5s ease-out forwards; } }
/*---------------------------------------
news_sec
-------------------------------------------*/
.news_box {
  width: 962px;
  margin: auto;
  box-shadow: 0 0 15px 0 #ccc;
  border-radius: 5px; }

.news_box_in {
  padding: 30px 0 30px 0; }

.news_line {
  display: flex;
  align-items: center;
  gap: 1em;
  /* 要素間のスペース */
  padding: 0.5em 0;
  border-bottom: 1px solid #ddd;
  width: 85%;
  margin: auto; }

.news_line .day {
  display: inline-block;
  color: #888;
  width: 100px; }

.news_line .cat {
  display: inline-block;
  width: 100px; }

.news_line .cat a {
  background-color: #7f7fb6;
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 2px;
  font-size: 0.8em; }

.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; }

.news_line .title:hover {
  background: url("../images/page/top/news_arrow.svg") #f9f9f9;
  color: #333;
  text-decoration: none;
  flex: 1;
  background-size: 24px;
  background-position: center right 5px;
  background-repeat: no-repeat; }

.news_line a:hover {
  color: #0073aa; }

@media only screen and (max-width: 980px) {
  .news_box {
    width: 90%;
    margin: auto;
    box-shadow: 0 0 15px 0 #ccc;
    border-radius: 5px; }

  .news_box_in {
    padding: 30px 0 30px 0; }

  .news_line {
    display: flex;
    align-items: center;
    gap: 1em;
    /* 要素間のスペース */
    padding: 0.5em 0;
    border-bottom: 1px solid #ddd;
    width: 85%;
    margin: auto; }

  .news_line .day {
    display: inline-block;
    color: #888;
    width: 100px; }

  .news_line .cat {
    display: inline-block;
    width: 100px; }

  .news_line .cat a {
    background-color: #7f7fb6;
    color: #fff;
    padding: 0.2em 0.6em;
    border-radius: 2px;
    font-size: 0.8em; }

  .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; }

  .news_line .title:hover {
    background: url("../images/page/top/news_arrow.svg") #f9f9f9;
    color: #333;
    text-decoration: none;
    flex: 1;
    background-size: 24px;
    background-position: center right 5px;
    background-repeat: no-repeat; }

  .news_line a:hover {
    color: #0073aa; } }
@media only screen and (max-width: 800px) {
  .news_box {
    width: 90%;
    margin: auto;
    box-shadow: 0 0 15px 0 #ccc;
    border-radius: 10px; }

  .news_line {
    display: block; }

  .news_info {
    width: 100%;
    display: block; }

  .news_line .day {
    display: inline-block;
    color: #888;
    width: 80px;
    font-size: 12px; }

  .news_line .cat {
    font-size: 12px; }

  .news_line .title {
    width: 100%;
    background: none;
    text-decoration: none;
    padding: 0;
    font-size: 12px; } }
/*---------------------------------------
visione_sec
-------------------------------------------*/
.vision_sec {
  padding: 90px 0 90px 0;
  margin-bottom: 60px; }
  .vision_sec .vision_flBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .vision_sec .vision_flBox .col_l {
    flex: 1;
    padding: 60px 30px 60px 0; }
  .vision_sec .vision_flBox .col_l_in {
    width: 90%; }
  .vision_sec .vision_flBox .col_r {
    width: 728px; }
  .vision_sec .vision_flBox .col_r img {
    display: block;
    height: 100%;
    object-fit: cover;
    border-radius: 10px; }
  .vision_sec .vision_title {
    width: 394px;
    margin-bottom: 40px;
    display: block; }
  .vision_sec .vision_title_pc {
    display: block; }
  .vision_sec .vision_title_mb {
    display: none; }
  .vision_sec .vision_subhead {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 40px;
    letter-spacing: 2px; }
  .vision_sec .vision_text {
    font-family: 16px; }
  .vision_sec .vision_mb_image {
    display: none; }

@media only screen and (max-width: 1360px) {
  .vision_sec {
    padding: 90px 0 90px 0;
    margin-bottom: 60px; }
    .vision_sec .sec_in {
      width: 90%; }
    .vision_sec .vision_flBox {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    .vision_sec .vision_flBox .col_l {
      width: 50%;
      flex: 1;
      padding: 20px 3% 20px 0; }
    .vision_sec .vision_flBox .col_l_in {
      width: 90%; }
    .vision_sec .vision_flBox .col_r {
      width: 45%; }
    .vision_sec .vision_flBox .col_r img {
      display: block;
      height: 100%;
      object-fit: cover;
      border-radius: 10px; }
    .vision_sec .vision_title {
      width: 60%;
      margin-bottom: 40px;
      display: block; }
    .vision_sec .vision_subhead {
      font-weight: bold;
      font-size: 24px;
      margin-bottom: 40px;
      letter-spacing: 2px; }
    .vision_sec .vision_text {
      font-family: 16px; } }
@media only screen and (max-width: 830px) {
  .vision_sec {
    padding: 20px 0 30px 0;
    margin-bottom: 0; }
    .vision_sec .vision_flBox {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between; }
    .vision_sec .vision_flBox .col_l {
      width: 100%;
      flex: 1;
      padding: 0 0 20px 0; }
    .vision_sec .vision_flBox .col_l_in {
      width: 100%; }
    .vision_sec .vision_flBox .col_r {
      width: 100%;
      display: none; }
    .vision_sec .vision_title_pc {
      display: none; }
    .vision_sec .vision_title_mb {
      display: block; }
    .vision_sec .vision_title {
      width: 80%;
      display: block;
      margin: 0 auto 30px auto; }
    .vision_sec .vision_subhead {
      font-weight: bold;
      font-size: 17px;
      margin-bottom: 20px;
      letter-spacing: 2px;
      text-align: center; }
    .vision_sec .vision_mb_image {
      display: block;
      border-radius: 5px;
      margin-bottom: 20px; }
    .vision_sec .vision_pc_image {
      display: none; } }
/*---------------------------------------
business_sec
-------------------------------------------*/
.business_sec {
  position: relative; }

.business_h2 {
  width: 554px;
  position: absolute;
  left: 60px;
  bottom: 60px; }

.business_image {
  height: 631px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  /* はみ出し防止 */
  background-image: url("../images/page/top/business_bg_pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  /* 初期サイズ */
  animation: bg-zoom 8s ease-out forwards; }

.business_h2_mb {
  display: none; }

/* 背景ズームアニメーション */
@keyframes bg-zoom {
  0% {
    background-size: 100%; }
  100% {
    background-size: 120%; } }
@media only screen and (max-width: 1350px) {
  .business_sec {
    position: relative; }

  .business_h2 {
    width: 450px;
    position: absolute;
    left: 60px;
    bottom: 60px; }

  .business_image {
    height: 450px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    /* はみ出し防止 */
    background-image: url("../images/page/top/business_bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
    /* 初期サイズ */
    animation: bg-zoom 8s ease-out forwards; }

  .business_h2_mb {
    display: none; }

  /* 背景ズームアニメーション */
  @keyframes bg-zoom {
    0% {
      background-size: 100%; }
    100% {
      background-size: 120%; } } }
@media only screen and (max-width: 800px) {
  .business_sec {
    background: url("../images/page/top/business_bg_mb.png");
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 150px; }

  .business_h2 {
    display: none; }

  .business_image {
    height: 200px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    /* はみ出し防止 */
    background: url("../images/page/top/business_bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* 初期サイズ */
    animation: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: none; } }
/*---------------------------------------
group_sec
-------------------------------------------*/
.group_sec .sec_in {
  padding: 90px 0 90px 0;
  width: 1140px; }

@media only screen and (max-width: 1140px) {
  .group_sec .sec_in {
    padding: 90px 0 90px 0;
    width: 100%; } }
/*---------------------------------------
circle
-------------------------------------------*/
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%; }

.left-column, .right-column {
  width: 488px;
  box-sizing: border-box; }

.left-column {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  min-height: 600px; }

.circle-container {
  position: relative;
  width: 488px;
  height: 488px; }

.circle-item {
  position: absolute;
  width: 107px;
  height: 107px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .3s; }

.circle-item:hover {
  transform: scale(1.1);
  z-index: 10; }

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%); }

.right-column {
  width: 550px;
  padding-top: 40px;
  position: relative; }

.right-column #main-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold; }

.right-column #main-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 60px; }

.right-column p {
  margin-bottom: 30px;
  color: #444;
  line-height: 1.8;
  font-size: 18px;
  height: 120px; }

.images {
  display: flex;
  gap: 10px;
  margin-bottom: 20px; }

.images img {
  width: 32%;
  height: 120px;
  border-radius: 5px;
  object-fit: cover; }

#pict {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 200px; }

#pict img {
  width: 200px;
  opacity: 0.4; }

/* アニメーション */
@keyframes fadeInRight {
  from {
    opacity: 0.3;
    transform: translateX(100px); }
  to {
    opacity: 1;
    transform: translateX(0); } }
.right-column.fade-in {
  animation: fadeInRight 1.0s ease-out; }

.center-logo-mobile {
  display: none; }

@media only screen and (max-width: 1350px) {
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%; }

  .left-column, .right-column {
    width: 45%;
    box-sizing: border-box; }

  .left-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 600px; }

  .circle-container {
    position: relative;
    width: 488px;
    max-width: 100%;
    height: 488px;
    margin: 0 auto; }

  .circle-item {
    position: absolute;
    width: 107px;
    height: 107px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s; }

  .circle-item:hover {
    transform: scale(1.1);
    z-index: 10; }

  .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%); }

  .right-column {
    width: 550px;
    padding-top: 40px;
    position: relative; }

  .right-column #main-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold; }

  .right-column #main-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 60px; }

  .right-column p {
    margin-bottom: 30px;
    color: #444;
    line-height: 1.8;
    font-size: 18px;
    height: 120px; }

  .images {
    display: flex;
    gap: 10px;
    margin-bottom: 20px; }

  .images img {
    width: 32%;
    height: 120px;
    border-radius: 5px;
    object-fit: cover; }

  #pict {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 200px; }

  #pict img {
    width: 200px;
    opacity: 0.4; }

  @keyframes fadeInRight {
    from {
      opacity: 0.3;
      transform: translateX(100px); }
    to {
      opacity: 1;
      transform: translateX(0); } }
  .right-column.fade-in {
    animation: fadeInRight 1.0s ease-out; }

  .center-logo-mobile {
    display: none; } }
@media only screen and (max-width: 1350px) and (max-width: 768px) {
  .circle-container {
    width: 320px;
    height: 320px; }

  .center-logo {
    width: 140px;
    height: 140px; } }
@media (max-width: 1110px) and (min-width: 801px) {
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; }

  .left-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: 500px; }

  .circle-container {
    position: relative;
    width: 488px;
    height: 488px;
    margin: 0 auto; }

  .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    z-index: 5; }

  .circle-item {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.3s;
    cursor: pointer; }

  .left-column {
    width: 55%;
    box-sizing: border-box; }

  .right-column {
    width: 43%;
    padding-top: 30px;
    position: relative;
    box-sizing: border-box; }

  .right-column #main-title {
    font-size: 28px; }

  .right-column p {
    font-size: 16px;
    line-height: 1.6; }

  .images img {
    height: 100px; }

  #pict img {
    width: 150px; } }
/* ===============================
   ▼ レスポンシブ対応追加 ▼
================================= */
@media screen and (max-width: 800px) {
  .left-column, .right-column {
    width: 95%;
    box-sizing: border-box;
    margin: auto; }

  .left-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    min-height: auto; }

  .right-column {
    width: 85%;
    padding-top: 10px;
    position: relative;
    margin: 0 auto 30px auto; }

  .right-column #main-subtitle {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: bold; }

  .right-column #main-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 2; }

  .right-column p {
    margin-bottom: 0;
    color: #444;
    line-height: 1.8;
    font-size: 13px;
    height: 120px; }

  .circle-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: auto;
    height: auto;
    aspect-ratio: auto;
    padding: 10px 0; }

  .circle-item {
    position: static;
    width: 18%;
    height: auto;
    aspect-ratio: 1/1; }

  .center-logo-mobile {
    display: block;
    width: 90%;
    margin: 0 auto 0; }

  .center-logo {
    display: none; }

  .images img {
    height: 80px; }

  #pict {
    position: absolute;
    right: 0;
    top: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    z-index: 1; }

  #pict img {
    width: auto;
    width: 100px;
    opacity: 0.4; } }
/*---------------------------------------
innovation_sec
-------------------------------------------*/
.innovation_sec .sec_in {
  padding: 90px 0 150px 0; }
.innovation_sec .innovation_h2 {
  width: 738px;
  margin: 0 auto 90px auto; }

@media only screen and (max-width: 800px) {
  .innovation_sec .sec_in {
    padding: 0 0 100px 0; }
  .innovation_sec .innovation_h2 {
    width: 80%;
    margin: 0 auto 30px auto; } }
/*---------------------------------------
slider_sec
-------------------------------------------*/
.slider_sec {
  padding: 0 0 30px 0; }
  .slider_sec .box img {
    display: block;
    width: 98%;
    margin: auto;
    height: 200px;
    object-fit: cover;
    border-radius: 10px; }

@media only screen and (max-width: 1000px) {
  .slider_sec {
    padding: 0 0 30px 0; }
    .slider_sec .box img {
      display: block;
      width: 98%;
      margin: auto;
      height: 120px;
      object-fit: cover;
      border-radius: 10px; } }
@media only screen and (max-width: 800px) {
  .slider_sec {
    padding: 0 0 30px 0; }
    .slider_sec .box img {
      display: block;
      width: 98%;
      margin: auto;
      height: 90px;
      object-fit: cover;
      border-radius: 10px; } }
.grecaptcha-badge {
  visibility: hidden; }
