/* reset */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  position:relative;
}
article {
  padding-bottom:200px;
}
nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  display: none;
}

input[type=submit], input[type=button], label, button, select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* set */
html, body {
  width: 100%;
}

html {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Exo", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  color: #393939;
  height: 100%;
  background-color: #f4f4f4;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  overflow-x:clip;
}

.exo {
  font-family: "Exo", sans-serif;
}

*:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

a {
  text-decoration: none;
  color: #385298;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: #45A5EF;
}
a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

li {
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  vertical-align: middle;
}

p {
  margin-bottom: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.align {
	text-align:center!important;
}
.align_left {
	text-align:left!important;
}
.align_right {
	text-align:right!important;
}

.mb0 {margin-bottom:0px!important;}
.mb10 {margin-bottom:10px!important;}
.mb15 {margin-bottom:15px!important;}
.mb20 {margin-bottom:20px!important;}
.mb30 {margin-bottom:30px!important;}
.mb40 {margin-bottom:40px!important;}
.mb50 {margin-bottom:50px!important;}
.mb70 {margin-bottom:70px!important;}
.mb80 {margin-bottom:80px!important;}
.mb100 {margin-bottom:100px!important;}
.mb200 {margin-bottom:200px!important;}
.pb30 {padding-bottom:30px!important;}
.pt30 {padding-top:30px!important;}
.pt50 {padding-top:50px!important;}
.mt10 {margin-top:10px!important;}
.mt30 {margin-top:30px!important;}
.mt60 {margin-top:60px!important;}

/* slick おまじない */
.slick-slider div { transition: none; }

@media screen and (max-width: 768px) {

  body {
    font-size:15px;
  }
  article {
    padding-bottom:100px;
  }

}

/*
------------------------------------------------------------------------------------------------------------------------
parts
------------------------------------------------------------------------------------------------------------------------
*/
.in {
  display: none;
}

.btn {
  position:relative;
  border-radius: 50px;
  padding:20px 65px 20px 40px;
  background-color: #fff;
  color:#385298;
  font-weight: 600;
  line-height: 1.3;
  transition: 0.3s;
  display: block;
  width:90%;
  max-width:300px;
}
.btn::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:24px;
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #385298;
  border-radius: 50%;
  width:44px;
  height:44px;
  top:50%;
  right:10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn:hover {
  color:#385298;
  background-color: #5FAFFF;
  transition: 0.3s;
}
.btn:hover::after {
  right:3px;
  color:#5FAFFF;
  background-color: #385298;
}

.btn_arrow {
  position:relative;
  color:#385298;
  font-size:21px;
  font-weight: 600;
  line-height: 1.3;
  transition: 0.3s;
  display: inline-block;
  padding-right:40px;
}
.btn_arrow::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:18px;
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #385298;
  border-radius: 50%;
  width:32px;
  height:32px;
  top:50%;
  right:0px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn_arrow:hover {
  color:#5FAFFF;
  transition: 0.3s;
}
.btn_arrow:hover::after {
  color:#fff;
  background-color: #5FAFFF;
}

.btng {
  position:relative;
  border-radius: 50px;
  padding:20px 65px 20px 40px;
  background-image: linear-gradient(150deg, #385298, #2B3C6C);
  color:#fff;
  font-weight: 600;
  line-height: 1.3;
  transition: 0.3s;
  display: block;
  width:90%;
  max-width:300px;
}
.btng::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:24px;
  color:#393939;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  width:44px;
  height:44px;
  top:50%;
  right:10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.btng:hover {
  color:#5FAFFF;
  background-image: linear-gradient(150deg, #2B3C6C, #385298);
  transition: 0.3s;
}
.btng:hover::after {
  right:3px;
  background-color: #5FAFFF;
}

.wrapl {
  width:90%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.wrap {
  width:90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.wrapm {
  width:90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.wrapf {
  width:100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: flex;
  height: calc(100vh - 40px);
  position: absolute;
  width: 100%;
  z-index: 0;
}
.grid .grid_inner {
  width:90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-right: 1px solid rgba(128,128,128,0.1);
}
.grid span {
  display: inline-block;
  border-left: 1px solid #808080;
  height: 100%;
  width: calc(25% - 1px);
  opacity: 0.1;
}
.grid span:nth-child(3) {
  border-right: 1px solid #808080;
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
    to {
    transform: translateX(0);
  }
}
@keyframes shutter_up {
  from {
    height:100vh;
  }
    to {
    height:0vh;
  }
}
@keyframes mv_scroll {
  0% {
    opacity: 1;
    top: 0.83vw;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}

@keyframes fade_in_g {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {

  .in {
    display: block;
  }
  br.in {
    display: inline-block;
  }
  .out {
    display: none;
  }
  .btn {
    margin-right:auto;
    margin-left:auto;
  }
  .btng {
    margin-right:auto;
    margin-left:auto;
  }
  .grid {
    display: flex;
    width: 90%;
    height: 100%;
    position: absolute;
    left:50%;
    transform: translateX(-50%);
  }
  .grid span {
    width: calc(50% - 2px);
  }
  .grid span:nth-child(1) {
    border-left: 1px solid #808080;
  }
  
  .grid span:nth-child(3),
  .grid span:nth-child(4) {
    display: none;
  }

}



/*
------------------------------------------------------------------------------------------------------------------------
page navi
------------------------------------------------------------------------------------------------------------------------
*/

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
      margin-top:60px;
}
.wp-pagenavi .pages, .wp-pagenavi .last, .wp-pagenavi .first {
  display: none;
}
.wp-pagenavi .current, .wp-pagenavi .page, .wp-pagenavi .nextpostslink, .wp-pagenavi .prevpostslink {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 8px;
}
.wp-pagenavi .current {
  border:1px solid #385298;
  background: #fff;
  color: #385298;
}
.wp-pagenavi .page {
  color: #fff;
  background: #385298;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi .page:hover {
    border:1px solid #385298;
    background: #fff;
    color: #385298;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .wp-pagenavi .page:hover {
    background: #f9f3c1;
    color: #385298;
  }
}
.wp-pagenavi .nextpostslink, .wp-pagenavi .prevpostslink {
  position: relative;
  font-size: 0;
}
.wp-pagenavi .nextpostslink:before, .wp-pagenavi .prevpostslink:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #385298;
  border-right: 2px solid #385298;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
}
.wp-pagenavi .prevpostslink:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wp-pagenavi .extend {
  margin-left: 10px;
}


/*
------------------------------------------------------------------------------------------------------------------------
header
------------------------------------------------------------------------------------------------------------------------
*/
header {
  position:fixed;
  top:35px;
  left:3%;
  width:94%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 990;
}
header .logo {
  padding-left:25px;
  width:280px;
  background:#000;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  height:75px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
header .logo a img {
  width:220px;
  margin-right: 20px;
  margin-top:3px;
}
header .g_menu {
  width:calc(100% - 280px);
  padding-right:25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  background-image: linear-gradient(-90deg, #2B3C6C, #385298);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  height:75px;
  font-size: 1.0vw;
}
header .g_menu.active {
  background:#000;
}
header .g_menu li {
  position:relative;
  margin-right:10px;
  padding-right:15px;
  color: #fff;
}
header .g_menu li:last-child {
  margin-right:0px;
  padding-right:0px;
}
header .g_menu li a {
  color: #fff;
}
header .g_menu li.active a {
  color: #5FAFFF;
}
header .g_menu li a:hover {
  color: #5FAFFF;
}
header .g_menu li a.contact {
  color: #385298;
  padding:15px 20px;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}
header .g_menu li a.contact:hover {
  opacity: 1.0;
  background-color: #5FAFFF;
  transition: 0.3s;
}
.pnkz_box {
  position:absolute;
  top:130px;
  left:50%;
  width:90%;
  max-width:1200px;
  transform: translateX(-50%);
  z-index: 100;
}
.pnkz {
  margin-bottom: 30px;
}
.pnkz ol {
  display: flex;
  flex-wrap: wrap;
}
.pnkz li {
  display: inline-block;
  padding: 0 20px 0 0;
  background: url(../img/common/pnkz.svg) no-repeat;
  background-size: 4px 7.5px;
  background-position: right center;
  margin-right: 9px;
}
.pnkz li a {
  display: block;
}
.pnkz li:last-child {
  margin-right: 0;
  background: none;
}

#toggle {
  display: none;
}
nav.spNavi {
  display: none;
}


@media screen and (max-width: 1100px) {

  
  header {
    top:3vw;
    width:90vw;
    left:5vw;
  }
  header .logo {
    padding-left:15px;
    width:225px;
    height:50px;
  }
  header .logo a img {
    width:185px;
  }
  header .g_menu {
    width:calc(100% - 225px);
    height:50px;
    padding:0;
  }
  header .g_menu li {
    display: none;
  }
  
  #toggle {
		display:block;
		position:absolute;
		top:0px;
		right:10px;
		width:50px;
		height:50px;
    z-index: 991;
	}
  .menu-trigger,
	.menu-trigger span {
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger {
		position: relative;
		margin-top:18px;
		width: 50px;
		height: 22px;
	}
	.menu-trigger span {
		position: absolute;
		right: 0;
		width: 100%;
		height: 1px;
		background-color: #fff;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 8px;
		right: 0;
		width: 60%;
	}
	.menu-trigger span:nth-of-type(3) {
		top: 16px;
		right: 0;
		width: 30%;
	}
	.menu-trigger p {
		position: absolute;
		font-size:13.5px;
		top: 27px;
	}
	.menu-trigger span:nth-of-type(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background-color: #fff;
		transition: all .4s;
	}
	.menu-trigger.active {
		width: 50px;
		height: 50px;
	}
	.menu-trigger.active span {
		width: 100%;
		height: 1px;
		right:-0px;
	}
	.menu-trigger.active span:nth-of-type(1) {
		transform: translateY(20px) scale(0);
	}
	.menu-trigger.active span:nth-of-type(2) {
		-webkit-transform: translateX(5px) rotate(-45deg);
		transform: translateX(5px) rotate(-45deg) scale(0.6);
	}
	.menu-trigger.active span:nth-of-type(2)::after {
		-webkit-transform: translateX(5px) rotate(90deg);
		transform: translateX(5px) rotate(90deg);
	}
	.menu-trigger.active span:nth-of-type(3) {
		transform: translateY(-20px) scale(0);
	}

  nav.spNavi {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index: 888;
    background-image: linear-gradient(180deg, #94CDF8, #C3D2FC);
    overflow-y: auto;
  }
   nav.spNavi a {
    color: #385298;
  }
  nav.spNavi .inner {
    position: relative;
    width:90%;
    padding-top:100px;
    margin:0 auto;
    height:100vh;
  }
  nav.spNavi .inner p.prdct {
   text-align: center;
   font-size:24px;
   padding-bottom:20px;
   margin-bottom:20px;
   border-bottom:1px solid #385298;
  }
  nav.spNavi ul.s_menu {
    position: relative;
    margin:0px auto 10px auto;
    z-index: 900;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  nav.spNavi ul.s_menu li {
    text-align: center;
    font-size:20px;
    padding:15px 0;
    width:49%;
  }
  nav.spNavi ul.s_menu li.one {
    width:100%;
  }
  nav.spNavi ul.s_menu li.contact {
    width:100%;
  }
  nav.spNavi ul.s_menu li.contact a {
    display: block;
    background-color: #fff;
    color: #385298;
    padding: 10px 0;
  }
  nav.spNavi .inner p.logo {
    width:100%;
    font-size:45px;
    font-weight: bold;
    color: #fff;
    line-height: 1.1;
    margin-bottom:20px;
    opacity: 0.22;
  }
  nav.spNavi ul.s_menu li a.btn {
    border:1px solid #fff;
    color: #385298;
    background-color: rgba(255,255,255,1.0);
  }

  .pnkz_box {
    top:90px;
  }
  .pnkz {
    margin-bottom: 30px;
  }
  .pnkz li {
    font-size:12px;
    padding: 0 15px 0 0;
    margin-right: 7px;
  }
  .pnkz li:first-child img {
    width:13px;
  }

}

@media screen and (max-width: 768px) {

  .pnkz_box {
    top:70px;
  }

}

/*
------------------------------------------------------------------------------------------------------------------------
footer
------------------------------------------------------------------------------------------------------------------------
*/

ul.foot_ban {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width:90%;
  max-width: 1340px;
  margin: 100px auto 0px auto;
}
ul.foot_ban li {
  width:49%;
  aspect-ratio: 1.45;
  position:relative;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}
ul.foot_ban li img {
  border-radius: 15px;
  transition: 0.3s;
}
ul.foot_ban li:hover img {
  transform: scale(1.2);
  transition: 0.3s;
}
ul.foot_ban li {
  width:49%;
  position:relative;
  text-align: center;
  color: #fff;
}
ul.foot_ban li div.foot_ban_inner {
  position:absolute;
  top:50%;
  left:5%;
  transform: translateY(-50%);
  width:90%;
  margin: auto;
}
ul.foot_ban li h3 {
  font-size:67px;
  font-weight: 600;
  margin-bottom:20px;
  text-align: center;
}
ul.foot_ban li p.lead {
  display: block;
  width:80%;
  max-width:335px;
  margin: 0 auto 40px auto;
  text-align: left;
}
ul.foot_ban li a.btn {
  display: block;
  margin: 0 auto 30px auto;
  text-align: left;
}

div.toTop {
  position:fixed;
  bottom:90px;
  right:30px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 999;
}

div.toTop a {
  position: relative;
  width:50px;
  height:50px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: #fff;
  font-size:18px;
  background-image: linear-gradient(180deg, #45A5EF, #8BA8FC);
  transition: 0.3s;
}
div.toTop a:hover {
  background-image: linear-gradient(0deg, #45A5EF, #8BA8FC);
  transition: 0.3s;
}

footer {
  margin-bottom:0;
  position:relative;
  overflow: hidden;
  bottom:0;
  background-color: #393939;
}
footer a {
  color: #fff;
}
footer .roll_box {
  position:absolute;
  width:50%;
  max-width:750px;
  aspect-ratio: 1;
  bottom:-5vw;
  left:-5vw;
  opacity: 0.3;
}
footer .roll_box .roll_b {
  width:100%;
  aspect-ratio: 1;
  display: block;
  animation: rotateAnimation 40s linear infinite;
}
footer div.foot_top {
  position: relative;
  padding: 20px 0;
  background-image: linear-gradient(0deg, #C3D2FC, #94CDF8);
  z-index: 2;
}
footer div.foot_top .foot_top_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer div.foot_top .foot_top_inner ul li:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer div.foot_top .foot_top_inner ul li:first-child img {
  width:59px;
  margin-right:10px;
}
footer div.foot_top .foot_top_inner ul li:last-child {
  width:320px;
}
footer div.foot_bottom {
  position: relative;
  padding-top:70px;
  background-color: #393939;
  margin-bottom:0;
  overflow: hidden;
  bottom:0;
}
footer div.foot_bottom .foot_bottom_inner {
  position:relative;
  z-index: 20;
  color: #fff;
}
footer div.foot_bottom .foot_bottom_inner .contact_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom:50px;
  border-bottom:1px solid #818181;
}
footer div.foot_bottom .foot_bottom_inner .contact_box li:last-child {
  width:320px;
}
footer div.foot_bottom .foot_bottom_inner .contact_box h2 {
  font-family: "Exo", sans-serif;
  font-size:67px;
  font-weight: bold;
  margin-bottom:20px;
  line-height: 1;
}
footer div.foot_bottom .foot_bottom_inner .nav_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:50px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left {
  width:25%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left div {
  width:100%;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left p + p {
  margin-top:40px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left p.logo img {
  max-width:200px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left p.iso img {
  max-width:87px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left p.copyright {
  font-size:12px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right {
  width:50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right {
  font-size:20px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right a:hover {
  color: #5FAFFF;
  transition: 0.3s;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right ul li + li {
  margin-top:15px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right ul li.sub + li.sub {
  margin-top:5px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right ul li.sub a {
  font-size:14px;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right .nav_right01 {
  width:50%;
}
footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right .nav_right02 {
  width:50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer div.foot_bottom .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-top:100px;
}
footer div.foot_bottom .marquee-content {
  font-family: "Exo", sans-serif;
  font-size:93px;
  font-weight: bold;
  color: rgba(255,255,255,0.22);
  display: flex;
  gap: 30px;
}
footer div.foot_bottom .marquee-content ul {
  animation: marquee-loop 40s linear infinite;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
}
footer div.foot_bottom .marquee-content ul li{
  display: inline-block;
  padding-right: 10px;
  line-height: 1;
}
@keyframes marquee-loop {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}


@media screen and (max-width: 768px) {

  ul.foot_ban {
    margin: 40px auto 0px auto;
  }
  ul.foot_ban li {
    aspect-ratio:auto;
    width:100%;
  }
  ul.foot_ban li img {
    aspect-ratio:1;
    width:100%;
  }
  ul.foot_ban li + li {
    margin-top:30px;
  }
  ul.foot_ban li h3 {
    font-size:40px;
  }

  div.toTop {
    bottom:100px;
    right:10px;
  }
  div.toTop a {
    width:40px;
    height:40px;
  }

  footer .roll_box {
    width:90vw;
    bottom:-5vw;
    left:-10vw;
  }
  footer div.foot_top {
    padding: 30px 0;
  }
  footer div.foot_top .foot_top_inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  footer div.foot_top .foot_top_inner ul li:first-child {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom:25px;
  }
  footer div.foot_top .foot_top_inner ul li:first-child img {
    width:59px;
    margin-right:10px;
  }
  footer div.foot_top .foot_top_inner ul li:first-child span:last-child {
    width:calc(100% - 70px);
  }
  footer div.foot_top .foot_top_inner ul li:last-child {
    width:100%;
  }
  footer div.foot_bottom {
    padding-top:40px;
  }
  footer div.foot_bottom .foot_bottom_inner .contact_box {
    width:100%;
  }
  footer div.foot_bottom .foot_bottom_inner .contact_box li {
    width:100%;
  }
  footer div.foot_bottom .foot_bottom_inner .contact_box li:last-child {
    width:100%;
    margin-top:40px;
  }
  footer div.foot_bottom .foot_bottom_inner .contact_box h2 {
    font-size:40px;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box {
    flex-direction: column-reverse;
    margin-top:50px;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left {
    width:100%;
    text-align: center;
    margin-top: 50px;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left div {
    text-align: center;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_left p + p {
    margin-top:10px;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right {
    width:100%;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right {
    font-size:16px;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right a:hover {
    color: #5FAFFF;
    transition: 0.3s;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right ul li + li {
    margin-top:15px;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right ul li.sub {
    display: none;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right .nav_right01 {
    width:48%;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right .nav_right02 {
    width:48%;
    display: block;
  }
  footer div.foot_bottom .foot_bottom_inner .nav_box .nav_right .nav_right02 ul + ul {
    margin-top:15px;
  }

  footer div.foot_bottom .marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin-top:50px;
  }
  footer div.foot_bottom .marquee-content {
    font-size:40px;
    gap: 20px;
    animation: marquee-loop 6s linear infinite;
  }

}


/*
------------------------------------------------------------------------------------------------------------------------
top
------------------------------------------------------------------------------------------------------------------------
*/
article#top {
  padding-bottom:100px;
}
#top div.top_l01 {
  position:fixed;
  width:100vw;
  height:100vh;
  background-color: #385298;
  overflow: hidden;
  z-index: 999;
  animation: shutter_up 0.2s ease-in-out 0.3s both;
}
#top div.top_l02 {
  position:fixed;
  width:100vw;
  height:100vh;
  background-color: #5FAFFF;
  overflow: hidden;
  z-index: 998;
  animation: shutter_up 0.3s ease-in-out 0.5s both;
}
#top div.mv {
  position:relative;
  width:100vw;
  height:100vh;
  overflow: hidden;
}
#top div.mv .movie {
  overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#top div.mv .movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%,-50%);
}
#top div.mv .copy {
  position:absolute;
  width:100%;
  height:95vh;
  top:0;
  left:0;
  color:#fff;
  display: flex;
  align-items: flex-end;
	z-index: 2;
}
#top div.mv .copy span {
  display: inline-block;
}
#top div.mv .copy p.catch {
  font-size:100px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom:50px;
}
#top div.mv .copy p.catch_en {
  font-size:36px;
  font-weight: 600;
}
#top div.mv .scroll {
  position: absolute;
  right: 30px;
  top: calc(95vh - 9.93vw);
  width: 1px;
  height: 9.93vw;
  background-color:#fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#top div.mv .scroll:before, #top div.mv .scroll:after {
  content: "";
  display: block;
  position: absolute;
}
#top div.mv .scroll:before {
  width: 1px;
  height: 9.93vw;
  bottom: 0;
  left: 0;
}
#top div.mv .scroll:after {
  width: 14px;
  height: 14px;
  border:1px solid #fff;
  border-radius: 50%;
  left: -6px;
  top: 0.83vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: mv_scroll 2s linear 0.5s infinite normal forwards running;
          animation: mv_scroll 2s linear 0.5s infinite normal forwards running;
}
#top div.mv .scroll span {
  display: inline-block;
  font-family: "Exo", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-right:5px;
}

#top section.lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0px auto 0 auto;
	position: relative;
}
#top section.lead .lead_left {
  width:48%;
  height: 100vh;
  font-size:60px;
  font-weight: 600;
  color: #385298;
  position: sticky;
  display: flex;
	top:0;
  padding-top:200px;
}
#top section.lead .lead_left span {
  display: inline-block;
  background-color: #fff;
  padding:10px;
  color: #393939;
  font-weight: 800;
  margin-right:10px;
}
#top section.lead .lead_left span i {
  font-style: normal;
}
#top section.lead .lead_right {
  width:48%;
}
#top section.lead .lead_right .scroll-box01 {
  padding:50vh 0 50vh 0;
}
#top section.lead .lead_right .scroll-box02 {
  padding:0vh 0 30vh 0;
  font-size:28px;
  font-weight: bold;
  color: #385298;
}

#top .solution {
  position: relative;
  height:52vw;
  max-height:754px;
}
#top .solution .solution_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top:30px;
  margin-bottom:100px;
}
#top .solution .solution_inner .solution_left {
  width:47%;
}
#top .solution .solution_inner .solution_left h2 {
  font-size:32px;
  margin-bottom:40px;
}
#top .solution .solution_inner .solution_left p.lead {
  margin-bottom:40px;
}
#top .solution .solution_right {
  position:absolute;
  top:0;
  right:-2vw;
  width:52vw;
  aspect-ratio: 1;
  max-width:754px;
}
#top .solution .solution_right .solution_right_inner {
  position:relative;
  width:100%;
  aspect-ratio: 1;
}
#top .solution .solution_right .solution_right_inner .rhesca {
  position:absolute;
  top:0;
  left:0;
  width:100%;
}
#top .solution .solution_right .solution_right_inner .rhesca img {
  width:100%;
}
#top .solution .solution_right .solution_right_inner .roll_b {
  width:100%;
  aspect-ratio: 1;
  display: block;
  z-index: 20;
  animation: rotateAnimation 40s linear infinite;
}
#top .solution .solution_right .solution_right_inner .roll_box {
  position:absolute;
  width:100%;
  aspect-ratio: 1;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  z-index: 20;
}
#top .solution .solution_right .solution_right_inner ul.slide {
  position:absolute;
  width:90%;
  aspect-ratio: 1;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}

#top .solution_bottom {
  margin-top:100px;
}
#top .solution_bottom .scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
#top .solution_bottom .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
#top .solution_bottom .scroll-infinity__list--left {
  animation: infinity-scroll-right 20s infinite linear 0.5s both;
}
#top .solution_bottom .scroll-infinity__item>img {
  width: auto;
  height:100px;
}

#top section.products {
  position: relative;
  margin-top:150px;
  z-index: 20;
}
#top section.products div.products_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
#top section.products div.products_top div.ttl {
  width:52%;
}
#top section.products div.products_top p.out {
  width:46%;
}
#top section.products div.products_top p.out .btng {
  margin-left:auto;
}
#top section.products div.products_top h2 {
  font-family: "Exo", sans-serif;
  font-size:67px;
  font-weight: bold;
  margin-bottom:20px;
  color: #385298;
}
#top section.products ul.slide {
  margin-top:50px;
  background-image: url(../img/top/bg_products.png);
  background-repeat: repeat-x;
  background-position: center;
}
#top section.products div.products_bottom {
  position:relative;
  margin-top: 180px;
}
#top section.products div.products_bottom .products_bottom_inner {
  width:100%;
  aspect-ratio: 1994 / 725;
  border-radius: 15px;
  overflow: hidden;
}
#top section.products div.products_bottom .products_bottom_inner img.backimg {
  width:100%;
  transition: 0.3s;
}
#top section.products div.products_bottom:hover img.backimg {
  transform: scale(1.1);
}
#top section.products div.products_bottom .products_bottom_content  {
  width:90%;
  height: 100%;
  max-width:1200px;
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
}
#top section.products div.products_bottom .products_bottom_content .products_bottom_content_inner  {
  color:#fff;
  width:45%;
}
#top section.products div.products_bottom .products_bottom_content .products_bottom_content_inner h2  {
  font-size:67px;
  font-weight: 600;
  margin: 15px 0 30px;
}
#top section.products div.products_bottom .products_bottom_content .products_bottom_btn {
  width:40%;
  position:absolute;
  bottom:60px;
  right:0;
}
#top section.products div.products_bottom .products_bottom_content .products_bottom_btn .btn {
  margin-left:auto;
  margin-right:0;
}

#top .roll_box_single {
  position:relative;
  height: 200px;
  z-index: 0;
  overflow: hidden;
}
#top .roll_box_single.news {
  position:relative;
  height: 200px;
  z-index: 0;
  overflow:unset;
}
#top .roll_box_single_inner {
  position:absolute;
  width:50%;
  max-width:750px;
  aspect-ratio: 1;
  top:50%;
  right:-5vw;
  transform: translateY(-50%);
}
#top .roll_box_single .roll_b {
  width:100%;
  aspect-ratio: 1;
  display: block;
  animation: rotateAnimation 40s linear infinite;
}

#top section.top_info {
  position: relative;
  z-index: 20;
}
#top section.top_info .ttl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
#top section.top_info h2 {
  font-size:67px;
  font-weight: 600;
  color: #385298;
}
#top section.top_info h3 {
  font-size:24px;
  font-weight: 600;
  color: #385298;
  margin-top:50px;
  margin-bottom:20px;
}
#top section.top_info ul li + li {
  margin-top:20px;
}
#top section.top_info ul li a {
  position: relative;
  padding: 20px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.3s;
}
#top section.top_info ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(0deg, #C3D2FC, #94CDF8);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
#top section.top_info ul li a:hover {
    background-color: rgba(255,255,255,0.0);
}
#top section.top_info ul li a:hover::before {
    opacity: 1;
}
#top section.top_info ul li a span + span {
  margin-left:25px;
}
#top section.top_info ul li span:nth-child(1) {
  display: inline-block;
  width:150px;
}
#top section.top_info ul li span.important {
  position:relative;
  display: inline-block;
  width:150px;
}
#top section.top_info ul li span.important::after {
  position: absolute;
  content: '';
  top:50%;
  right:-5px;
  width:15px;
  height:25px;
  background-image: url(../img/common/pin.png);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
#top section.top_info ul li span:nth-child(2) {
  display: inline-block;
  width:150px;
  padding: 6px 0;
  background-color: #393939;
  color: #fff;
  text-align: center;
}

#top dl.top_ps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width:90%;
  max-width: 1340px;
  padding:25px;
  border-radius: 16px;
  background-color: #fff;
  margin:100px auto auto auto;
} 
#top dl.top_ps dt {
  width:250px;
  padding:0 20px;
  text-align: center;
} 
#top dl.top_ps dd {
  width:calc(100% - 290px);
}
#top dl.top_ps dd p.link {
  margin-top:16px;
} 
#top dl.top_ps dd p.link a {
  color: #385298;
  font-weight: bold;
} 


@media screen and (max-width: 1200px) {

  #top section.lead .lead_left {
    font-size:45px;
  }
  #top section.products div.products_bottom .products_bottom_content .products_bottom_content_inner  {
    width:55%;
  }

}

@media screen and (max-width: 768px) {

  #top div.mv video {
    position:relative;
    left:50%;
    width:auto;
    height:100vh;
    transform: translateX(-50%);
  }
  #top div.mv .copy {
    position:absolute;
    width:100%;
    height:90vh;
    top:0;
    left:0;
    color:#fff;
    display: flex;
    align-items: flex-end;
  }
  #top div.mv .copy span {
    display: inline-block;
  }
  #top div.mv .copy p.catch {
    font-size:59px;
    margin-bottom:30px;
  }
  #top div.mv .copy p.catch_en {
    font-size:21px;
  }
  #top div.mv .scroll {
    top: calc(95vh - 115px);
    height: 115px;
  }
  #top div.mv .scroll:before {
    height: 115px;
  }

  #top section.lead {
    margin: 80px auto 0 auto;
  }
  #top section.lead .lead_left {
    width:100%;
    height: auto;
    font-size:36px;
    position: static;
    display: block;
    padding-top:0;
  }
  #top section.lead .lead_right {
    width:100%;
  }
  #top section.lead .lead_right .scroll-box01 {
    padding:60px 0 60px 0;
  }
  #top section.lead .lead_right .scroll-box02 {
    padding:0 0 0 0;
    font-size:21px;
  }

  #top .solution {
    position: relative;
    height:auto;
    max-height:none;
    margin-top:60px;
  }
  #top .solution .solution_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top:calc(105vw + 50px);
    margin-bottom:0px;
  }
  #top .solution .solution_inner .solution_left {
    width:100%;
  }
  #top .solution .solution_inner .solution_left h2 {
    font-size:20px;
    margin-bottom:40px;
  }
  #top .solution .solution_inner .solution_left p.lead {
    margin-bottom:40px;
  }
  #top .solution .solution_right {
    position:absolute;
    top:0;
    right:-10vw;
    width:105vw;
    aspect-ratio: 1;
    max-width:754px;
  }
  #top .solution .solution_right .solution_right_inner {
    position:relative;
    width:100%;
    aspect-ratio: 1;
  }

  #top .solution_bottom {
    margin-top:80px;
  }
  #top .solution_bottom .scroll-infinity__item>img {
    width: auto;
    height:60px;
  }

  #top section.products {
    margin-top:80px;
  }
  #top section.products div.products_top div.ttl {
    width:100%;
  }
  #top section.products div.products_top h2 {
    font-size:40px;
    margin-bottom:20px;
  }
  #top section.products ul.slide {
    margin-top:50px;
    margin-bottom:40px;
  }
  #top section.products div.products_bottom {
    margin-top: 80px;
    background-image: url(../img/top/bg_company.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 16px;
  }
  #top section.products div.products_bottom .products_bottom_inner {
    display: none;
  }
  #top section.products div.products_bottom .products_bottom_content  {
    width:90%;
    height: auto;
    position:static;
    margin: 5vw auto;
    transform: translateX(0);
  }
  #top section.products div.products_bottom .products_bottom_content .products_bottom_content_inner  {
    color:#fff;
    width:100%;
  }
  #top section.products div.products_bottom .products_bottom_content .products_bottom_content_inner h2  {
    font-size:40px;
    margin: 15px 0 30px;
  }
  #top section.products div.products_bottom .products_bottom_content .products_bottom_btn {
    margin-top:20px;
    width:auto;
    position:static;
  }
  #top section.products div.products_bottom .products_bottom_content .products_bottom_btn a.btn {
    display: block;
    margin-left: auto!important;
    margin-right: auto!important;
  }

  #top .roll_box_single {
    position:relative;
    height: 80px;
    z-index: 0;
  }
  #top .roll_box_single_inner {
    width:120vw;
    right:-40vw;
  }

  #top section.top_info {
    padding-bottom:80px;
  }
  #top section.top_info h2 {
    font-size:40px;
  }
  #top section.top_info .ttl {
    margin-bottom:20px;
  }
  #top section.top_info ul li a {
    position: relative;
    padding: 20px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    transition: 0.3s;
    font-size:14px;
  }
  #top section.top_info ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(0deg, #C3D2FC, #94CDF8);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  #top section.top_info ul li span.important::after {
    right:10px;
  }
  #top section.top_info ul li a span + span {
    margin-left:0;
  }
  #top section.top_info ul li span:nth-child(1) {
    width:130px;
  }
  #top section.top_info ul li span:nth-child(2) {
    width:130px;
  }
  #top section.top_info ul li span:nth-child(3) {
    width:100%;
    margin-top:10px;
  }
  
  #top dl.top_ps dt {
    width:100%;
    padding:0 20px;
    text-align: center;
  } 
  #top dl.top_ps dt img {
    width:250px;
  } 
  #top dl.top_ps dd {
    width:100%;
    margin-top:20px;
  }
  #top dl.top_ps dd p.link {
    margin-top:16px;
  } 
  #top dl.top_ps dd p.link a {
    color: #385298;
    font-weight: bold;
  } 
}



/*
------------------------------------------------------------------------------------------------------------------------
PRODUCTS
------------------------------------------------------------------------------------------------------------------------
*/
.products_top_gear {
  position:absolute;
  width:48vw;
  height:48vw;
  max-width:680px;
  max-height:680px;
  top:-15vw;
  left:54vw;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.products_top_gear_inner {
  position:relative;
}
.products_top_gear_inner_roll {
  position:absolute;
  width:100%;
  aspect-ratio: 1;
  top:0%;
  left:0%;
  display: block;
  z-index: 20;
  animation: rotateAnimation 40s linear infinite;
}
.products_top_gear_inner_mask {
  position:absolute;
  width:100%;
  aspect-ratio: 1;
  top:0%;
  left:0%;
  display: block;
  z-index: 10;
}
.products_top_gear_inner_mask img {
  width:100%;
}
.products_top_gear_inner_bg {
  position:absolute;
  width:110%;
  aspect-ratio: 1;
  top:-1%;
  left:1%;
  display: block;
  z-index: 1;
  animation: fade_in_g 0.5s linear;
}
.products_top_gear_inner_photo {
  width:100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.products_head {
  padding:200px 0 0 0;
}
.products_head .products_head_inner {
  width:50%;
}
.products_head .products_head_inner h1 {
  font-family: "Exo", sans-serif;
  font-size:67px;
  font-weight: bold;
  line-height: 0.8;
  color: #385298;
}
.products_head .products_head_inner h1 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size:24px;
  font-weight: normal;
}
.products_head .products_head_inner p.read {
  margin-top:40px;
}

.products_head_search {
  position: relative;
  margin-top:60px;
  z-index: 10;
}
.products_head_search ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.products_head_search ul li:first-child {
  width:240px;
  font-size:24px;
  color: #385298;
}
.products_head_search ul li:last-child {
  width:calc(100% - 240px);
}
.products_head_search ul li:last-child {
  width:calc(100% - 240px);
  background-color: #fff;
  padding: 8px;
  border-radius: 10px;
}
.products_head_search ul li:last-child input {
  width:calc(100% - 90px);
}
.products_head_search ul li:last-child button {
  width:80px;
  text-align: center;
  color: #fff;
  background-color: #385298;
  border-radius: 10px;
  padding:5px 0;
  transition: 0.3s;
}
.products_head_search ul li:last-child button:hover {
  background-color: #5FAFFF;
  transition: 0.3s;
}

.products_tab {
  position: relative;
  margin-top:40px;
  padding:20px 20px 20px 20px;
  border-radius: 20px;
  background-image: linear-gradient(180deg, #385298, #2B3C6C);
  z-index: 2;
}
.products_tab ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.products_tab ul li {
  width:calc(33.33% - 1px);
  text-align: center;
  padding:15px 0 30px 0;
}
.products_tab ul li + li {
  border-left:1px solid #45A5EF;
}
.products_tab ul li a {
  position:relative;
  color:#fff;
  font-size:22px;
  transition: 0.3s;
}
.products_tab ul li a::after {
  position:absolute;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-size:22px;
  font-weight: 600;
  color:#fff;
  bottom:-30px;
  left:50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.products_tab ul li a:hover {
  color:#45A5EF;
}
.products_tab ul li a:hover::after {
  color:#45A5EF;
}
.products_tab ul li a.active {
  color:#45A5EF;
}
.products_tab ul li a.active::after {
  color:#45A5EF;
}


article#products.detail {
  padding-bottom:0;
}
#products .products_list_box {
  margin-top:70px;
}
#products .products_list_box h2 {
  font-size:24px;
  font-weight: normal;
  text-align: center;
  color:#385298;
  margin-bottom:70px;
}
#products .products_list_box h2.result {
  font-size:20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#products .products_list_box h2.result span:last-child {
  font-size:16px;
}
#products .products_list_box h2.result span:last-child a {
  position:relative;
  color: #385298;
  padding-right:28px;
  transition: 0.3s;
}
#products .products_list_box h2.result span:last-child a::after {
  position:absolute;
  content: '\f053';
  font-family: 'Font Awesome 6 Free';
  font-size:12px;
  font-weight:600;
  color:#385298;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #385298;
  border-radius: 50%;
  width:22px;
  height:22px;
  top:50%;
  right:0px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#products .products_list_box h2.result span:last-child a:hover {
  color: #45A5EF;
}
#products .products_list_box h2.result span:last-child a:hover::after {
  color:#45A5EF;
  border:1px solid #45A5EF;
}
#products .products_list_box .result_box {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#products .products_list_box .result_box p.back {
  text-align: right;
  margin-top:20px;
}
#products .products_list_box .result_box p.back a {
  position: relative;
  padding-right:35px;
}
#products .products_list_box .result_box p.back a::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:10px;
  font-weight: 600;
  color:#385298;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #385298;
  border-radius: 50%;
  width:16px;
  height:16px;
  top:calc(50% + 2px);
  right:10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#news section.news_detail p.back a:hover::after {
  color: #45A5EF;
  border:1px solid #45A5EF;
}

#products ul.cat_list {
  display: flex;
  flex-wrap: wrap;
}
#products ul.cat_list li {
  margin-right:10px;
  margin-bottom:10px;
}
#products ul.cat_list li a {
  display: block;
  background-color: #385298;
  border-radius: 5px;
  padding: 5px 8px;
  color: #fff;
  transition: 0.3s;
}
#products ul.cat_list li a:hover {
  background-color: #2B3C6C;
  transition: 0.3s;
}
#products ul.cat_list li:first-child {
  margin-left:0px;
}
#products .products_list_box ul.products_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:60px;
}
#products .products_list_box ul.products_list::before{
  content:"";
  display: block;
  width:23.5%;
  order:1;
}
#products .products_list_box ul.products_list::after{
  content:"";
  display: block;
  width:23.5%;
}
#products .products_list_box ul.products_list li {
  width:23.5%;
  margin-bottom:60px;
}
#products .products_list_box ul.products_list li p + p {
  margin-top: 6px;
}
#products .products_list_box ul.products_list li a p.img {
  display: block;
  width:100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  padding:30px;
  transition: 0.3s;
}
#products .products_list_box ul.products_list li a:hover p.img {
  border-radius: 40px;
  transition: 0.3s;
}
#products .products_list_box ul.products_list li a p.img img {
  object-fit: contain;
width: 100%;
height: 100%;
}
#products .products_list_box ul.products_list li p.ttl {
  color: #385298;
}
#products .products_list_box ul.products_list li p.en {
  font-family: "Exo", sans-serif;
  font-size:20px;
  font-weight: 600;
  color: #385298;
}
#products .products_list_box ul.products_list li p.tag span {
  display: inline-block;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border:1px solid #C9C9C9;
  font-size:10px;
  font-weight: 200;
  color:#393939;
  margin-right:5px;
}
#products .products_list_box ul.products_list li p.tag span:last-child {
  margin-right:0;
}
#products .products_list_box ul.products_list li p.cap {
  color: #385298;
}
#products .keyword_list_box {
  margin-top:70px;
  padding:80px 0;
  background-image: linear-gradient(135deg, #385298, #2B3C6C);
  border-radius: 20px;
}
#products .keyword_list_box h2 {
  font-size:24px;
  font-weight: normal;
  text-align: center;
  color:#5FAFFF;
  margin-bottom:70px;
}
#products .keyword_list_box h3 {
  font-size:20px;
  font-weight: normal;
  text-align: left;
  color:#5FAFFF;
  width:80%;
  max-width: 840px;
  margin: 0 auto 15px auto;
  text-indent: -1em;
}
#products .keyword_list_box h3::before {
  content: '─';
}
#products .keyword_list_box ul.keyword_list {
  width:90%;
  max-width: 840px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
#products .keyword_list_box ul.keyword_list + h3 {
  margin-top:50px;
}
#products .keyword_list_box ul.keyword_list li {
  margin-right:20px;
  margin-bottom:15px;
}
#products .keyword_list_box ul.keyword_list li a {
  color: #fff;
  text-decoration: underline;
  transition: 0.3s;
}
#products .keyword_list_box ul.keyword_list li a:hover {
  color: #5FAFFF;
  transition: 0.3s;
}


#products section.product_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top:200px;
  margin-bottom:200px;
  position: relative;
}

#products section.product_detail .main_img {
  width:45%;
  height:auto;
  position: sticky;
  align-self: flex-start;
  top:200px;
}
#products section.product_detail .main_img .ttl_box p.ttl {
  font-size:20px;
  color: #385298;
}
#products section.product_detail .main_img .ttl_box h1 {
  font-family: "Exo", sans-serif;
  font-size:36px;
  color: #385298;
}
#products section.product_detail .main_img .ttl_box p.tag span {
  display: inline-block;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border:1px solid #C9C9C9;
  font-size:10px;
  color:#393939;
  margin-right:5px;
}
#products section.product_detail .main_img .main_img_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:70px;
}
#products section.product_detail .main_img .main_img_inner .main_slide {
  width:78%;
}
#products section.product_detail .main_img .main_img_inner .main_slide .slider li {
  display: block;
  width:100%;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 20px;
  padding:20px;
  transition: 0.3s;
}
#products section.product_detail .main_img .main_img_inner .main_slide .slider li p {
  display: block;
  width:100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#products section.product_detail .main_img .main_img_inner .main_slide .slider li img {
  object-fit: contain;
width: 100%;
height: 100%;
}
#products section.product_detail .main_img .main_img_inner .main_img_thum {
  width:calc(22% - 15px);
}
#products section.product_detail .main_img .main_img_inner .main_img_thum .slide_sub li {
  display: block;
  width:100%;
  aspect-ratio: 1;
  padding:5px;
  transition: 0.3s;
}
#products section.product_detail .main_img .main_img_inner .main_img_thum .slide_sub li p {
  display: block;
  width:100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding:10px;
  cursor: pointer;
}
#products section.product_detail .main_img .main_img_inner .main_img_thum .slide_sub li img {
  object-fit: contain;
width: 100%;
height: 100%;
}
#products section.product_detail .main_img .main_img_inner .main_img_thum .slide_sub li p:hover img {
  opacity: 0.7;
}
#products section.product_detail .main_content {
  width:50%;
}
#products section.product_detail .main_content .main_content_box {
  position:relative;
}
#products section.product_detail .main_content .main_content_box + .main_content_box {
  margin-top:60px;
  padding-top:60px;
  border-top:1px solid #385298;
}
#products section.product_detail .main_content .main_content_box + .main_content_box::before {
  position:absolute;
  content: '';
  width:50px;
  height:2px;
  background-color: #45A5EF;
  top:-2px;
  left:0;
}
#products section.product_detail .main_content .main_content_box p.midashi {
  font-size:24px;
  color: #385298;
  margin-bottom:20px;
}
#products section.product_detail .main_content .main_content_box h3 {
  font-size:18px;
  font-weight: 600;
  color: #385298;
  margin-bottom:30px;
}
#products section.product_detail .main_content .main_content_box dl.document + h4 {
  margin-top:50px;
}
#products section.product_detail .main_content .main_content_box dl.document + dl.document {
  margin-top:50px;
}
#products section.product_detail .main_content .main_content_box h4 {
  font-size:18px;
  font-weight: normal;
  margin-bottom:20px;
}
#products section.product_detail .main_content .main_content_box ul.modal li + li {
  margin-top:15px;
}
#products section.product_detail .main_content .main_content_box ul.modal li a {
  position:relative;
  padding: 10px 20px;
  display: block;
  background-color: #fff;
  font-size:20px;
  color: #385298;
  transition: 0.3s;
}
#products section.product_detail .main_content .main_content_box ul.modal li a::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:24px;
  font-weight: 600;
  color:#385298;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width:44px;
  height:44px;
  top:50%;
  right:10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#products section.product_detail .main_content .main_content_box ul.modal li a:hover {
  background-color: #C6D8E3;
  transition: 0.3s;
}
#products section.product_detail .main_content .main_content_box ul.modal li a:hover::after {
  right:5px;
}

#products section.product_detail .main_content .main_content_box dl.document {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top:1px solid #919191;
  font-size:14px;
}
#products section.product_detail .main_content .main_content_box dl.document:last-of-type  {
  border-bottom:1px solid #919191;
}
#products section.product_detail .main_content .main_content_box dl.document > dt  {
  font-weight: 400;
  width:120px;
  padding-right:20px;
  border-bottom:1px solid #919191;
  display: flex;
  align-items: center;
  padding:15px 0;
  white-space: nowrap;
}
#products section.product_detail .main_content .main_content_box dl.document > dd  {
  width:calc(100% - 120px);
  font-weight: 400;
  border-bottom:1px solid #919191;
  padding:15px 0;
}
#products section.product_detail .main_content .main_content_box dl.document_inner  {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#products section.product_detail .main_content .main_content_box dl.document_inner + dl.document_inner  {
  border-top:1px solid #919191;
  padding-top:15px;
  margin-top:15px;
}
#products section.product_detail .main_content .main_content_box dl.document_inner + dl.document_inner > dt  {
  width:120px;
  padding-right:20px;
}
#products section.product_detail .main_content .main_content_box dl.document_inner dd dl.document_inner_last dt {
  font-weight: 400;
}
#products section.product_detail .main_content .main_content_box dl.document_inner dd dl.document_inner_last dd p.value + p {
  padding-top:10px;
  margin-top:0px;
}
#products section.product_detail .main_content .main_content_box dl.document_inner dd dl.document_inner_last + dl.document_inner_last {
  border-top:1px solid #919191;
  padding-top:15px;
  margin-top:15px;
}
#products section.product_detail .main_content .main_content_box p + p {
  margin-top:30px;
}
#products section.product_detail .main_content .main_content_box div.document_link {
  margin-bottom:50px;
}
#products section.product_detail .main_content .main_content_box div.document_link a {
  font-weight: 200;
  color:#000;
  text-decoration: underline;
  margin-top:30px;
}
#products section.product_detail .main_content .main_content_box p.info_link a {
  position: relative;
  display: block;
  font-size:20px;
  font-weight: 600;
  color:#fff;
  padding:25px 55px 25px 25px;
  border-radius: 15px;
  background-color: #385298;
  transition: 0.3s;
}
#products section.product_detail .main_content .main_content_box p.info_link a span {
  display: block;
  font-size:14px;
  font-weight: 200;
}
#products section.product_detail .main_content .main_content_box p.info_link a:hover {
  background-color: #182A5A;
}
#products section.product_detail .main_content .main_content_box p.info_link a::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:14px;
  font-weight: 600;
  color:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #fff;
  border-radius: 50%;
  width:22px;
  height:22px;
  top:50%;
  right:20px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#products section.product_detail .main_content .main_content_box p.bt_info a {
  position: relative;
  display: block;
  text-align: center;
  padding:25px;
  border-radius: 15px;
  background-image: linear-gradient(0deg, #8BA8FC, #45A5EF);
  transition: 0.3s;
}
#products section.product_detail .main_content .main_content_box p.bt_info a:hover {
  background-image: linear-gradient(180deg, #8BA8FC, #45A5EF);
}
#products section.product_detail .main_content .main_content_box p.bt_info a img {
  width:80%;
  max-width: 434px;
}

#products section.connection {
  padding:70px 0 10px 0;
  background-color: #E2E2E2;
}
.mfp-iframe-holder .mfp-content {
  max-width: 1200px;
  width: 80%;
  height: 85vh;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #FFF;
    position: fixed!important;
    top: 30px!important;
    right: 30px!important;
    text-align: center!important;
    padding-right: 0px!important;
    width: 33px!important;
    height:33px!important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: lighter;
    border:1px solid #fff;
}
#products section.connection ul.products_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#products section.connection ul.products_list::before{
  content:"";
  display: block;
  width:23.5%;
  order:1;
}
#products section.connection ul.products_list::after{
  content:"";
  display: block;
  width:23.5%;
}
#products section.connection ul.products_list li {
  width:23.5%;
  margin-bottom:60px;
}
#products section.connection ul.products_list li p + p {
  margin-top: 6px;
}
#products section.connection ul.products_list li a p.img {
  display: block;
  width:100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  padding:30px;
  transition: 0.3s;
}
#products section.connection ul.products_list li a:hover p.img {
  border-radius: 40px;
  transition: 0.3s;
}
#products section.connection ul.products_list li a p.img img {
  object-fit:contain;
  width:100%;
  height:100%;
}
#products section.connection ul.products_list li p.ttl {
  color: #385298;
}
#products section.connection ul.products_list li p.en {
  font-family: "Exo", sans-serif;
  font-size:20px;
  color: #385298;
}
#products section.connection ul.products_list li p.tag span {
  display: inline-block;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  border:1px solid #C9C9C9;
  font-size:10px;
  color:#393939;
  margin-right:5px;
}
#products section.connection ul.products_list li p.tag span:last-child {
  margin-right:0;
}
#products section.connection ul.products_list li p.cap {
  color: #385298;
}


@media screen and (max-width: 480px) {
  #products section.product_detail .main_img .main_img_inner .main_slide {
    width:100%;
    margin-bottom:10px;
  }
  #products section.product_detail .main_img .main_img_inner .main_img_thum {
    width:100%;
  }
  #products section.product_detail .main_img .main_img_inner .main_img_thum .slide_sub li {
    margin-bottom:0px;
    margin-right:10px;
  }
}


@media screen and (max-width: 768px) {

  .products_top_gear {
    width:78vw;
    height:78vw;
    top:-15vw;
    left:40vw;
    display: block;
    overflow: hidden;
    z-index: 0;
  }
  .products_head {
    padding:65vw 0 0 0;
  }
  .products_head .products_head_inner {
    width:100%;
  }
  .products_head .products_head_inner h1 {
    font-size:40px;
  }
  .products_head .products_head_inner h1 span {
    font-size:20px;
  }
  .products_head .products_head_inner p.read {
    margin-top:30px;
  }
  .products_head_search ul li:first-child {
    width:100%;
    font-size:20px;
  }
  .products_head_search ul li:last-child {
    width:100%;
    padding: 5px;
    margin-top:5px;
  }
  .products_head_search ul li:last-child input {
    width:calc(100% - 90px);
  }

  .products_tab {
    position: relative;
    margin-top:40px;
    padding:10px 10px 10px 10px;
    border-radius: 10px;
  }
  .products_tab ul li {
    width:100%;
    text-align: left;
    padding:10px 0 10px 0;
  }
  .products_tab ul li + li {
    border-left:none;
    border-top:1px solid #45A5EF;
  }
  .products_tab ul li a {
    font-size:20px;
    display: block;
  }
  .products_tab ul li a::after {
    content: '\f054';
    font-size:20px;
    bottom:50%;
    left:auto;
    right:6px;
    transform: translateX(0) translateY(50%);
  }

  #products .products_list_box {
    margin-top:40px;
  }
  #products .products_list_box h2 {
    font-size:20px;
    margin-bottom:40px;
  }
  #products .products_list_box h2.result {
    font-size:18px;
  }
  #products .products_list_box h2.result span:last-child {
    font-size:14px;
  }
  #products .products_list_box h2.result span:last-child a {
    position:relative;
    color: #385298;
    padding-right:28px;
    transition: 0.3s;
  }
  #products ul.cat_list {
    display: flex;
    flex-wrap: wrap;
  }
  #products ul.cat_list li {
    margin-left:8px;
    font-size:12px;
  }
  #products ul.cat_list li a {
    padding: 4px 6px;
  }
  #products ul.cat_list li:first-child {
    margin-left:0px;
  }
  #products .products_list_box ul.products_list {
    margin-top:40px;
  }
  #products .products_list_box ul.products_list li {
    width:100%;
    margin-bottom:60px;
  }
  #products .products_list_box ul.products_list li p + p {
    margin-top: 6px;
  }
  #products .products_list_box ul.products_list li a p.img {
    border-radius: 10px;
    padding:15px;
  }
  #products .products_list_box ul.products_list li p.en {
    font-family: "Exo", sans-serif;
    font-size:16px;
    color: #385298;
  }
  #products .products_list_box ul.products_list li p.tag span {
    padding: 3px 7px;
    font-size:9px;
  }

  #products .keyword_list_box {
    margin-top:40px;
    padding:40px 0;
    border-radius: 10px;
  }
  #products .keyword_list_box h2 {
    font-size:20px;
    margin-bottom:40px;
  }
  #products .keyword_list_box h3 {
    font-size:16px;
    width:80%;
  }
  #products .keyword_list_box h3::before {
    content: '─';
  }
  #products .keyword_list_box ul.keyword_list + h3 {
    margin-top:40px;
  }
  #products .keyword_list_box ul.keyword_list li {
    margin-right:15px;
    margin-bottom:15px;
  }

  #products section.product_detail {
    padding-top:150px;
    margin-bottom:50px;
  }
  #products section.product_detail .main_img {
    position:relative;
    width:100%;
    margin-bottom:50px;
    top:0;
  }
  #products section.product_detail .main_img .ttl_box p.ttl {
    font-size:16px;
  }
  #products section.product_detail .main_img .ttl_box h1 {
    font-size:24px;
  }
  #products section.product_detail .main_img .ttl_box p.tag span {
    padding: 3px 7px;
    font-size:9px;
  }
  #products section.product_detail .main_img .main_img_inner {
    margin-top:40px;
  }
  
  #products section.product_detail .main_content {
    width:100%;
    margin-bottom:40px;
  }
  #products section.product_detail .main_content .main_content_box + .main_content_box {
    margin-top:40px;
    padding-top:40px;
  }
  #products section.product_detail .main_content .main_content_box p.midashi {
    font-size:20px;
  }
  #products section.product_detail .main_content .main_content_box h3 {
    font-size:16px;
  }
  #products section.product_detail .main_content .main_content_box ul.modal li a {
    font-size:16px;
  }
  #products section.product_detail .main_content .main_content_box ul.modal li a::after {
    font-size:20px;
  }

  #products section.product_detail .main_content .main_content_box dl.document {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:15px 0;
    border-top:1px solid #919191;
    font-size:14px;
  }
  #products section.product_detail .main_content .main_content_box dl.document > dt  {
    width:100%;
    padding-right:0px;
    margin-bottom:5px;
  }
  #products section.product_detail .main_content .main_content_box dl.document > dd  {
    width:100%;
  }
  #products section.product_detail .main_content .main_content_box dl.document_inner dt {
    width:100%;
  }
  #products section.product_detail .main_content .main_content_box dl.document_inner dd {
    width:100%;
    text-align: right;
  }
  #products section.product_detail .main_content .main_content_box dl.document_inner + dl.document_inner > dt {
    width:100%;
  }
  #products section.connection {
    padding:40px 0 0 0;
    background-color: #E2E2E2;
  }
  .mfp-iframe-holder .mfp-content {
    width: 80%;
    height: 75vh;
  }
  #products section.connection ul.products_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #products section.connection ul.products_list::before{
    content:"";
    display: block;
    width:100%;
    order:1;
  }
  #products section.connection ul.products_list::after{
    content:"";
    display: block;
    width:100%;
  }
  #products section.connection ul.products_list li {
    width:100%;
    margin-bottom:40px;
  }
  #products section.connection ul.products_list li p + p {
    margin-top: 6px;
  }
  #products section.connection ul.products_list li a p.img {
    display: block;
    width:100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 20px;
    padding:30px;
    transition: 0.3s;
  }
  #products section.connection ul.products_list li a:hover p.img {
    border-radius: 40px;
    transition: 0.3s;
  }
  #products section.connection ul.products_list li a p.img img {
    width:auto;
    height:100%;
  }
  #products section.connection ul.products_list li p.ttl {
    color: #385298;
  }
  #products section.connection ul.products_list li p.en {
    font-family: "Exo", sans-serif;
    font-size:20px;
    color: #385298;
  }
  #products section.connection ul.products_list li p.tag span {
    display: inline-block;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    border:1px solid #C9C9C9;
    font-size:10px;
    color:#393939;
    margin-right:5px;
  }
  #products.information .products_head {
    padding:150px 0 0 0;
  }
}




/*
------------------------------------------------------------------------------------------------------------------------
MODAL
------------------------------------------------------------------------------------------------------------------------
*/
article#modal {
  padding-bottom:0;
}
#modal .modal_content {
  padding:50px 0;
}
#modal .modal_content p.ttl {
  font-size:20px;
  font-weight: 600;
  color: #385298;
}
#modal h1, #modal h2, #modal h3, #modal h4, #modal h5 {
  color:#393939;
  font-size:16px;
  font-weight:600;
  margin-top:30px;
  margin-bottom:10px;
}
#modal .modal_content .modal_content_inner {
  margin-top:40px;
}
#modal .modal_content .modal_content_inner p + p {
  margin-top:30px;
}


/*
------------------------------------------------------------------------------------------------------------------------
solution
------------------------------------------------------------------------------------------------------------------------
*/
#solution {
  padding-bottom:0;
}
#solution section.flow {
  margin-top:130px;
}
#solution section.flow h2 {
  font-size:40px;
  font-weight: 600;
  color: #385298;
}
#solution section.flow p.lead {
  margin:25px 0 130px 0;
  width:100%;
  max-width:660px;
}
#solution section.flow div.flow_box {
  position:relative;
  margin-bottom:120px;
}
#solution section.flow div.flow_box:last-of-type {
  margin-bottom:0;
}
#solution section.flow div.flow_box div.img {
  position:absolute;
  width:45%;
  top:-50px;
  right:0;
  z-index: 2;
}
#solution section.flow div.flow_box:nth-of-type(2) div.img {
  right:auto;
  left:0;
}
#solution section.flow div.flow_box div.img p.photo img {
  border-radius: 30px;
}
#solution section.flow div.flow_box div.txt {
  width:65%;
  border-radius: 30px;
  padding:40px 15% 40px 40px;
  background-image: linear-gradient(180deg, #45A5EF, #8BA8FC);
  color: #fff;
  z-index: 1;
  min-height: 370px;
}
#solution section.flow div.flow_box:nth-of-type(2) div.txt {
  border-radius: 30px;
  padding:40px 40px 40px 15%;
  margin-left:auto;
}
#solution section.flow div.flow_box div.txt h3 {
  font-size:28px;
  font-weight: bold;
  margin-bottom:30px;
}
#solution section.flow div.flow_box div.txt h4 {
  font-size:24px;
  font-weight: normal;
  margin-bottom:10px;
}
#solution section.flow div.flow_box div.txt p + h4 {
  margin-top:20px;
}

#solution section.flow p.arrow {
  text-align: center;
  margin: 40px 0 0px 0;
}
#solution section.flow p.arrow img {
  width:88px;
}

#solution section.poroduct {
  margin-top:130px;
}
#solution section.poroduct h2 {
  font-size:50px;
  font-weight: 600;
  color: #385298;
}
#solution section.poroduct p.lead {
  margin:25px 0 130px 0;
  width:100%;
  max-width:510px;
}
#solution section.poroduct div.img {
  text-align: center;
}
#solution section.poroduct div.img img {
  width:100%;
  max-width:1000px;
}
#solution section.products {
  position: relative;
  background-image: linear-gradient(180deg, #cee8fc, #e3eafe);
  margin-top:150px;
  padding:60px 0 100px 0;
  z-index: 20;
}
#solution section.products div.products_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
#solution section.products div.products_top div.ttl {
  width:52%;
}
#solution section.products div.products_top p.out {
  width:46%;
}
#solution section.products div.products_top p.out .btng {
  margin-left:auto;
}
#solution section.products div.products_top h2 {
  font-family: "Exo", sans-serif;
  font-size:67px;
  font-weight: bold;
  margin-bottom:20px;
  color: #385298;
}
#solution section.products ul.slide {
  margin-top:50px;
  background-image: url(../img/top/bg_products.png);
  background-repeat: repeat-x;
  background-position: center;
}

@media screen and (max-width: 768px) {

  #solution section.flow {
    margin-top:90px;
  }
  #solution section.flow div.flow_box {
    margin-bottom:30px;
  }
  #solution section.flow div.flow_box div.img {
    position:relative;
    width:90%;
    top:0px;
    right:0;
    margin: 0 auto -40px auto;
  }
  #solution section.flow div.flow_box div.img p.arrow {
    display: none;
  }
  #solution section.flow div.flow_box div.txt {
    width:100%;
    border-radius: 30px;
    padding:50px 20px 40px 20px;
    min-height: auto;
  }
  #solution section.flow div.flow_box:nth-of-type(2) div.txt {
    padding:50px 20px 40px 20px;
    margin-left:auto;
  }
  #solution section.flow div.flow_box div.txt h4 {
    font-size:20px;
  }

  #solution section.flow p.arrow {
    text-align: center;
    margin: 0px 0 30px 0;
  }

  #solution section.poroduct {
    margin-top:80px;
  }
  #solution section.poroduct h2 {
    font-size:40px;
  }
  #solution section.poroduct p.lead {
    margin:25px 0 80px 0;
    width:100%;
    max-width:510px;
  }

  #solution section.products {
    margin-top:80px;
  }
  #solution section.products div.products_top div.ttl {
    width:100%;
  }
  #solution section.products div.products_top h2 {
    font-size:40px;
    margin-bottom:20px;
  }
  #solution section.products ul.slide {
    margin-top:50px;
    margin-bottom:60px;
  }

}


/*
------------------------------------------------------------------------------------------------------------------------
about
------------------------------------------------------------------------------------------------------------------------
*/

#about section.lead {
  margin-top:130px;
}
#about section.lead .lead_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#about section.lead .lead_inner .copy {
  width:45%;
  font-family: "Exo", sans-serif;
  font-size:100px;
  font-weight: 600;
  color:#fff;
  line-height: 1.1;
}
#about section.lead .lead_inner .copy span {
  display: inline-block;
  background-image: linear-gradient(180deg, #94CDF8, #C3D2FC);
  margin-bottom:10px;
  padding:0 15px;
}
#about section.lead .lead_inner .copy span i {
  font-style: normal;
}
#about section.lead .lead_inner .txt {
  width:50%;
  font-size:28px;
  font-weight: bold;
  color:#385298;
  line-height: 2.2;
}

#about section.philosophy {
  position:relative;
  margin: 200px 0;
}
#about section.philosophy .roll_box {
  position:absolute;
  width:50%;
  max-width:750px;
  aspect-ratio: 1;
  top:50%;
  left:-5vw;
  transform: translateY(-50%);
  opacity: 0.3;
  z-index: -1;
}
#about section.philosophy .roll_box .roll_b {
  width:100%;
  aspect-ratio: 1;
  display: block;
  animation: rotateAnimation 40s linear infinite;
}
#about section.philosophy .philosophy_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#about section.philosophy .philosophy_inner .philosophy_inner_left {
  width:45%;
  color: #385298;
}
#about section.philosophy .philosophy_inner .philosophy_inner_left h2 {
  font-size:60px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom:30px;
}
#about section.philosophy .philosophy_inner .philosophy_inner_left h2 span {
  color: #45A5EF;
}
#about section.philosophy .philosophy_inner .philosophy_inner_right {
  width:50%;
}
#about section.philosophy .philosophy_inner .philosophy_inner_right dl + dl {
  margin-top:60px;
}
#about section.philosophy .philosophy_inner .philosophy_inner_right dl dt {
  font-size:28px;
  font-weight: bold;
  color: #385298;
  margin-bottom:25px;
  padding-left:32px;
  text-indent: -32px;
}
#about section.philosophy .philosophy_inner .philosophy_inner_right dl dt::before {
  content:'─ ';
}
#about section.philosophy .philosophy_inner .philosophy_inner_right dl dd {
  padding-left:32px;
}

#about section.theory {
  position:relative;
  margin: 200px 0;
}
#about section.theory .roll_box {
  position:absolute;
  width:50%;
  max-width:750px;
  aspect-ratio: 1;
  top:50%;
  right:-5vw;
  transform: translateY(-50%);
  opacity: 0.3;
  z-index: -1;
}
#about section.theory .roll_box .roll_b {
  width:100%;
  aspect-ratio: 1;
  display: block;
  animation: rotateAnimation 40s linear infinite;
}
#about section.theory .theory_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
#about section.theory .theory_inner .theory_inner_left {
  width:45%;
  color: #385298;
  text-align: right;
}
#about section.theory .theory_inner .theory_inner_left h2 {
  font-size:60px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom:30px;
}
#about section.theory .theory_inner .theory_inner_left h2 span {
  color: #45A5EF;
}
#about section.theory .theory_inner .theory_inner_right {
  width:50%;
}
#about section.theory .theory_inner .theory_inner_right dl + dl {
  margin-top:60px;
}
#about section.theory .theory_inner .theory_inner_right dl dt {
  font-size:28px;
  font-weight: bold;
  color: #385298;
  margin-bottom:25px;
}
#about section.theory .theory_inner .theory_inner_right dl dt::before {
  content:'─ ';
}
#about section.theory .theory_inner .theory_inner_right dl dd {
  padding-left:32px;
}

#about section.improvements {
  margin-top:200px;
}
#about section.improvements h2 {
  font-size:40px;
  font-weight: 600;
  color: #385298;
  margin-bottom:25px;
}
#about section.improvements ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:30px;
}
#about section.improvements ul li {
  width:18.5%;
}

#about section.products {
  position: relative;
  margin-top:150px;
  z-index: 20;
}
#about section.products div.products_bottom {
  position:relative;
  margin-top: 180px;
}
#about section.products div.products_bottom .products_bottom_inner {
  width:100%;
  aspect-ratio: 1994 / 725;
  border-radius: 15px;
  overflow: hidden;
}
#about section.products div.products_bottom .products_bottom_inner img.backimg {
  width:100%;
  transition: 0.3s;
}
#about section.products div.products_bottom:hover img.backimg {
  transform: scale(1.1);
}
#about section.products div.products_bottom .products_bottom_content  {
  width:90%;
  height: 100%;
  max-width:1200px;
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
}
#about section.products div.products_bottom .products_bottom_content .products_bottom_content_inner  {
  color:#fff;
  width:45%;
}
#about section.products div.products_bottom .products_bottom_content .products_bottom_content_inner h2  {
  font-size:67px;
  font-weight: 600;
  margin: 15px 0 30px;
}
#about section.products div.products_bottom .products_bottom_content .products_bottom_btn {
  width:40%;
  position:absolute;
  bottom:30px;
  right:0;
}
#about section.products div.products_bottom .products_bottom_content .products_bottom_btn .btn {
  margin-left:auto;
  margin-right:0;
}


@media screen and (max-width: 768px) {

  #about section.lead {
    margin-top:80px;
  }
  #about section.lead .lead_inner .copy {
    width:100%;
    font-size:64px;
  }
  #about section.lead .lead_inner .txt {
    margin-top:30px;
    width:100%;
    font-size:20px;
  }

  #about section.philosophy {
    position:relative;
    margin: 150px 0;
  }
  #about section.philosophy .roll_box {
    width:110%;
    top:-70px;
    left:-15vw;
    transform: translateY(0%);
  }
  #about section.philosophy .philosophy_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #about section.philosophy .philosophy_inner .philosophy_inner_left {
    width:100%;
  }
  #about section.philosophy .philosophy_inner .philosophy_inner_left h2 {
    font-size:40px;
    margin-bottom:10px;
  }
  #about section.philosophy .philosophy_inner .philosophy_inner_right {
    width:100%;
    margin-top:50px;
  }
  #about section.philosophy .philosophy_inner .philosophy_inner_right dl + dl {
    margin-top:40px;
  }
  #about section.philosophy .philosophy_inner .philosophy_inner_right dl dt {
    font-size:20px;
    padding-left:24px;
    text-indent: -24px;
  }
  #about section.philosophy .philosophy_inner .philosophy_inner_right dl dd {
    padding-left:24px;
  }

  #about section.theory {
    position:relative;
    margin: 150px 0 100px 0;
  }
  #about section.theory .roll_box {
    width:110%;
    top:-70px;
    left:-15vw;
    transform: translateY(0%);
  }
  #about section.theory .theory_inner {
    flex-direction: column;
  }
  #about section.theory .theory_inner .theory_inner_left {
    width:100%;
    text-align: left;
  }
  #about section.theory .theory_inner .theory_inner_left h2 {
    font-size:40px;
    margin-bottom:10px;
  }
  #about section.theory .theory_inner .theory_inner_right {
    width:100%;
    margin-top:50px;
  }
  #about section.theory .theory_inner .theory_inner_right dl + dl {
    margin-top:40px;
  }
  #about section.theory .theory_inner .theory_inner_right dl dt {
    font-size:20px;
    padding-left:24px;
    text-indent: -24px;
  }
  #about section.theory .theory_inner .theory_inner_right dl dd {
    padding-left:24px;
  }

  #about section.improvements {
    margin-top:0px;
  }
  #about section.improvements ul li {
    width:48%;
    margin-bottom:10px;
  }

  #about section.products div.products_bottom {
    margin-top: 80px;
    background-image: url(../img/top/bg_company.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 16px;
  }
  #about section.products div.products_bottom .products_bottom_inner {
    display: none;
  }
  #about section.products div.products_bottom .products_bottom_content  {
    width:90%;
    height: auto;
    position:static;
    margin: 5vw auto;
    transform: translateX(0);
  }
  #about section.products div.products_bottom .products_bottom_content .products_bottom_content_inner  {
    color:#fff;
    width:100%;
  }
  #about section.products div.products_bottom .products_bottom_content .products_bottom_content_inner h2  {
    font-size:40px;
    margin: 15px 0 30px;
  }
  #about section.products div.products_bottom .products_bottom_content .products_bottom_btn {
    margin-top:20px;
    width:auto;
    position:static;
  }
  #about section.products div.products_bottom .products_bottom_content .products_bottom_btn a.btn {
    display: block;
    margin-left: auto!important;
    margin-right: auto!important;
  }

}


/*
------------------------------------------------------------------------------------------------------------------------
company
------------------------------------------------------------------------------------------------------------------------
*/

#company section.overview {
  margin-top:180px;
}
#company dl.list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  padding:15px;
}
#company dl.list + dl.list {
  margin-top:15px;
}
#company dl.list dt {
  width:185px;
  display: flex;
  align-items: center;
  font-size:18px;
  color: #385298;
}
#company dl.list dd {
  width:calc(100% - 185px);
}

#company .history dl.list dt {
  width:155px;
  display: flex;
  align-items: flex-start;
  font-size:18px;
  color: #385298;
}
#company .history dl.list dd {
  width:calc(100% - 165px);
  display: flex;
  flex-wrap: wrap;
}
#company .history dl.list dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right:15px;
}
#company .history dl.list dd ul li:nth-child(odd) {
  width:45px;
  font-size:18px;
  color: #385298;
  font-weight: normal;
}
#company .history dl.list dd ul li:nth-child(even) {
  width:calc(100% - 45px);
}


#company section.access {
  margin-top:100px;
}
#company section.access h2 {
  font-size:18px;
  color: #385298;
  margin-bottom:10px;
}
#company section.access ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top:40px;
}
#company section.access ul li {
  width:48.5%;
  aspect-ratio: 864/750;
}
#company section.access ul li img {
  border-radius: 10px;
}
#company section.access ul li iframe {
  width:100%;
  height: 100%;
  border-radius: 10px;
}

#company section.history {
  margin-top:150px;
}
#company section.history h2 {
  color:#fff;
  background-color: #385298;
  font-size:28px;
  font-weight: normal;
  padding:6px 10px;
  margin-bottom:40px;
}


@media screen and (max-width: 768px) {

  #company section.overview {
    margin-top:50px;
  }
  #company dl.list dt {
    width:100%;
    font-size:16px;
  }
  #company dl.list dd {
    width:100%;
  }

  #company section.access {
    margin-top:80px;
  }
  #company section.access h2 {
    font-size:16px;
  }
  #company section.access ul li {
    width:100%;
  }
  #company section.access ul li:first-child {
    margin-bottom:30px;
  }

  #company section.history {
    margin-top:100px;
  }
  #company section.history h2 {
    font-size:20px;
    margin-bottom:30px;
  }
  #company .history dl.list dt {
    width:100%;
    margin-bottom:10px;
  }
  #company .history dl.list dd {
    width:100%;
  }
  #company .history dl.list dd ul + ul {
    margin-top:10px;
  }

}


/*
------------------------------------------------------------------------------------------------------------------------
support
------------------------------------------------------------------------------------------------------------------------
*/

#support section.content {
  margin-top:120px;
}
#support section.content ul.menu {
  display: flex;
  flex-wrap: wrap;
  margin-bottom:60px;
}
#support section.content ul.menu li {
  margin-right:15px;
}
#support section.content ul.menu li a {
  padding:5px 20px;
  background-color: #fff;
  color: #393939;
  border:1px solid #C9C9C9;
  border-radius: 5px;
  transition: 0.3s;
}
#support section.content ul.menu li a.active {
  background-color: #C9C9C9;
  border:1px solid #C9C9C9;
}
#support section.content ul.menu li a:hover {
  background-color: #C9C9C9;
  border:1px solid #C9C9C9;
}
#support section.content div.tab {
  display: none;
}
#support section.content div.tab.active {
  display: block;
}
#support section.content div.tab h2 {
  font-size:24px;
  font-weight: normal;
  color: #385298;
  margin-bottom:40px;
}
#support section.content div.tab dl {
  background-color: #fff;
  border-radius: 10px;
  padding:25px;
}
#support section.content div.tab dl + dl {
  margin-top:15px;
}
#support section.content div.tab dl dt {
  position:relative;
  color: #385298;
  font-size:18px;
  font-weight: 600;
  padding-right:40px;
  cursor: pointer;
}
#support section.content div.tab dl dt::after {
  position:absolute;
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-size:20px;
  color:#385298;
  bottom:50%;
  right:20px;
  transform: translateY(50%)  rotate(90deg);
  transition: 0.3s;
}
#support section.content div.tab dl dt.active::after {
  transform: translateY(50%)  rotate(270deg);
}
#support section.content div.tab dl dd {
  padding-top:20px;
  display: none;
}

#support section.contact {
  margin-top:150px;
}
#support section.contact h2 {
  font-size:67px;
  font-weight: 600;
  color: #385298;
  line-height: 1.2;
}
#support section.contact p.sub {
  font-size:24px;
  color: #385298;
}
#support .products_tab {
  position: relative;
  margin-top:40px;
  padding:20px 20px 20px 20px;
  border-radius: 20px;
  background-image: linear-gradient(180deg, #385298, #2B3C6C);
  z-index: 2;
}
#support .products_tab ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#support .products_tab ul li {
  width:calc(50% - 1px);
  text-align: center;
  padding:15px;
}
#support .products_tab ul li + li {
  border-left:1px solid #45A5EF;
}
#support .products_tab ul li a {
  position:relative;
  color:#fff;
  font-size:16px;
  transition: 0.3s;
}
#support .products_tab ul li a:hover {
  color:#45A5EF;
}

@media screen and (max-width: 768px) {

  #support section.content {
    margin-top:50px;
  }
  #support section.content ul.menu {
    margin-bottom:40px;
  }
  #support section.content ul.menu li {
    margin-bottom:15px;
  }
  #support section.content div.tab h2 {
    font-size:18px;
    margin-bottom:30px;
  }
  #support section.content div.tab dl {
    padding:20px;
  }
  #support section.content div.tab dl dt {
    font-size:15px;
    font-weight: normal;
    padding-right:0px;
    padding-bottom:20px;
  }
  #support section.content div.tab dl dt::after {
    position:absolute;
    content: '\f054';
    font-weight: 600;
    font-family: 'Font Awesome 6 Free';
    font-size:18px;
    color:#385298;
    bottom:5px;
    right:50%;
    transform: translateY(0) translateX(-50%) (90deg);
    transition: 0.3s;
  }
  #support section.content div.tab dl dt.active::after {
    transform: translateY(15px)  rotate(270deg);
  }
  #support section.content div.tab dl dd {
    padding-top:20px;
    display: none;
  }

  #support section.contact {
    margin-top:80px;
  }
  #support section.contact h2 {
    font-size:40px;
  }
  #support .products_tab {
    position: relative;
    margin-top:40px;
    padding:10px 10px 10px 10px;
    border-radius: 10px;
  }
  #support .products_tab ul li {
    width:100%;
    padding:10px 0 10px 0;
  }
  #support .products_tab ul li + li {
    border-left:none;
    border-top:1px solid #45A5EF;
  }
  #support .products_tab ul li a {
    font-size:18px;
    display: block;
  }

}


/*
------------------------------------------------------------------------------------------------------------------------
products
------------------------------------------------------------------------------------------------------------------------
*/

#products.information {
  padding-bottom:150px;
}
#products.information div.products_head {
  margin-bottom:80px;
}
#products.information div.products_tab {
  margin-bottom:80px;
}
#products.information section.list h2 {
  color:#fff;
  background-color: #385298;
  font-size:28px;
  font-weight: normal;
  padding:6px 10px;
  margin-bottom:30px;
}
#products.information section.list p.lead {
  margin-bottom:70px;
}
#products.information section.list ul.cat_list {
  margin-bottom:80px;
}
#products.information section.list h3 {
  color: #385298;
  font-size:24px;
  font-weight: normal;
  margin-bottom:30px;
}
#products.information section.list ul.link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top:1px solid #707070;
}
#products.information section.list ul.link_list:last-of-type {
  border-bottom:1px solid #707070;
}
#products.information section.list ul.link_list li:first-child {
  width:25%;
  color: #385298;
  font-size:20px;
  margin-bottom:15px;
  padding: 20px 0;
}
#products.information section.list ul.link_list li:last-child {
  width:75%;
}
#products.information section.list div.list_inner + div.list_inner {
  margin-top:80px;
}
#products.information section.list.tech div.list_inner dl:first-of-type {
  border-top:1px solid #707070;
}
#products.information section.list.tech div.list_inner li dl:first-of-type {
  border-top:none;
}
#products.information section.list div.list_inner ul.link_list li dl:last-of-type {
  border-bottom:none;
}
#products.information section.list dl {
  padding:20px 0;
  border-bottom:1px solid #707070;
}
#products.information section.list dl dt {
  color: #385298;
  font-size:20px;
  margin-bottom:15px;
}
#products.information section.list dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
#products.information section.list dl dd p.txt {
  width:calc(100% - 200px);
}
#products.information section.list dl dd p.list_bt {
  width:140px;
}
#products.information section.list dl dd p.list_bt a {
  position:relative;
  display: block;
  font-size:14px;
  color:#fff;
  border-radius: 5px;
  background-color: #5FAFFF;
  padding:5px 7px;
  transition: 0.3s;
}
#products.information section.list dl dd p.list_bt a::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:16px;
  font-weight: 600;
  color:#fff;
  top:50%;
  right:10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#products.information section.list dl dd p.list_bt a:hover {
  background-color: #385298;
}
#products.information section.list div.measu_box + div.measu_box {
  margin-top:80px;
}
#products.information section.list div.measu_box h3 {
  font-size:24px;
  font-weight: normal;
  color: #385298;
  margin-bottom:30px;
  padding-bottom:20px;
  border-bottom:1px solid #707070;
}
#products.information section.list div.measu_box p.title {
  font-size:24px;
  font-weight: normal;
  color: #385298;
  margin-bottom:10px;
}
#products.information section.list div.measu_box ul {
  margin-left:1em;
  font-size: 18px;
}
#products.information section.list div.measu_box ul + p.title {
  margin-top:50px;
}
#products.information section.list div.measu_box ul li {
  list-style-type: disc;
}


@media screen and (max-width: 768px) {

  #products.information {
    padding-bottom:100px;
  }
  #products.information div.products_head {
    margin-bottom:60px;
  }
  #products.information div.products_tab {
    margin-bottom:60px;
  }
  #products.information section.list h2 {
    font-size:20px;
  }
  #products.information section.list p.lead {
    margin-bottom:50px;
  }
  #products.information section.list ul.cat_list {
    margin-bottom:60px;
  }
  #products.information section.list h3 {
    font-size:20px;
  }
  #products.information section.list ul.link_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top:1px solid #707070;
  }
  #products.information section.list ul.link_list:last-of-type {
    border-bottom:1px solid #707070;
  }
  #products.information section.list ul.link_list li:first-child {
    width:100%;
  }
  #products.information section.list ul.link_list li:last-child {
    width:100%;
  }
  #products.information section.list div.list_inner + div.list_inner {
    margin-top:60px;
  }
  #products.information section.list.tech div.list_inner dl:first-of-type {
    border-top:1px solid #707070;
  }
  #products.information section.list div.list_inner ul.link_list li dl:last-of-type {
    border-bottom:none;
  }
  #products.information section.list dl dt {
    font-size:16px;
  }
  #products.information section.list dl dd {
    justify-content: flex-end;
  }
  #products.information section.list dl dd p.txt {
    width:100%;
    margin-bottom:15px;
  }
  #products.information section.list dl dd p.list_bt {
    width:140px;
  }
  #products.information section.list div.measu_box + div.measu_box {
    margin-top:60px;
  }
  #products.information section.list div.measu_box h3 {
    font-size:20px;
  }
  #products.information section.list div.measu_box p.title {
    font-size:20px;
  }
  #products.information section.list div.measu_box ul {
    font-size: 16px;
  }
  #products.information section.list div.measu_box ul + p.title {
    margin-top:40px;
  }

}



/*
------------------------------------------------------------------------------------------------------------------------
news
------------------------------------------------------------------------------------------------------------------------
*/

#news ul.archive {
  margin-top:80px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
}
#news ul.archive li {
  margin-right:15px;
  margin-bottom:15px;
}
#news section.list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  padding:15px;
}
#news section.list a + a {
  margin-top:15px;
  display: block;
}
#news section.list dl dt {
  width:325px;
  display: flex;
  align-items: center;
  color: #385298;
}
#news section.list dl dt span {
  display: inline-block;
  font-size:14px;
  color: #fff;
  padding: 2px 35px;
  margin-left:20px;
}
#news section.list dl dt span.info {
  background-color: #5FAFFF;
}
#news section.list dl dt span.products {
  background-color: #385298;
}
#news section.list dl dd {
  width:calc(100% - 325px);
}

#news section.news_detail {
  padding:200px 0 0px 0;
}
#news section.news_detail h2 {
  font-size:30px;
  font-weight: 600;
  margin-bottom:20px;
  color: #385298;
}
#news section.news_detail .news_inner {
  background-color: #fff;
  width:100%;
  max-width:1200px;
  border-radius: 20px;
  margin: auto;
  padding:30px;
}
#news section.news_detail .news_inner p.date span {
  display: inline-block;
  font-size:14px;
  color: #fff;
  padding: 2px 35px;
  margin-left:20px;
}
#news section.news_detail .news_inner p.date span.info {
  background-color: #5FAFFF;
}
#news section.news_detail .news_inner p.date span.products {
  background-color: #385298;
}
#news section.news_detail .news_inner p.date span.measurement {
  margin-left:0px;
  background-color: #385298;
}
#news section.news_detail h1 {
  font-size:32px;
  font-weight: 600;
  margin-bottom:50px;
  color: #385298;
}
#news section.news_detail .content {
  line-height: 1.8;
}
#news section.news_detail .content img {
  width:auto;
  max-width:100%;
}
#news section.news_detail .content p + p {
  margin-top:1em;
}
#news section.news_detail p.back {
  text-align: right;
  margin-top:20px;
}
#news section.news_detail p.back a {
  position: relative;
  padding-right:35px;
}
#news section.news_detail p.back a::after {
  position:absolute;
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-size:10px;
  font-weight: 600;
  color:#385298;
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #385298;
  border-radius: 50%;
  width:16px;
  height:16px;
  top:calc(50% + 2px);
  right:10px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#news section.news_detail p.back a:hover::after {
  color: #45A5EF;
  border:1px solid #45A5EF;
}


@media screen and (max-width: 768px) {
  
  #news .products_head {
    padding:150px 0 0 0;
  }
  #news ul.archive {
    margin-top:50px;
    margin-bottom: 40px;
  }
  #news section.list dl dt {
    width:100%;
    margin-bottom:10px;
  }
  #news section.list dl dd {
    width:100%;
  }
  #news section.news_detail .news_inner {
    border-radius: 0px;
    padding:30px 5vw;
  }
  #news section.news_detail {
    padding:150px 0 0px 0;
  }

}




/*
------------------------------------------------------------------------------------------------------------------------
contact
------------------------------------------------------------------------------------------------------------------------
*/

#contact .products_tab ul li a {
  font-size:16px;
}
#contact .products_tab ul li a::after {
  font-size:24px;
}


#contact .form_box {
  margin-top: 80px;
}
#contact .form dt {
  margin-bottom: 15px;
  font-size:18px;
}
#contact .form dd + dt {
  margin-top: 80px;
}
#contact .form label {
  margin-right: 40px;
  margin-top:5px;
  margin-bottom:5px;
  display: inline-block;
}
#contact .form input {
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
}
#contact .form input[type=checkbox] {
  display: inline !important;
  margin-right: 5px;
  accent-color: #385298;
}
#contact .form input[type=radio] {
  display: inline !important;
  margin-right: 5px;
  accent-color: #385298;
}
#contact .form input[type=text] {
  border: 1px solid #707070;
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
}
#contact .form input[type=email] {
  border: 1px solid #707070;
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
}
#contact .form input.short {
  width: 35%;
}
#contact .form select {
  position: relative;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  border: 1px solid #707070;
  padding: 10px 5px 10px 10px;
  background-color: #fff;
  min-width:150px;
}
#contact .form textarea {
  border: 1px solid #707070;
  width: 100%;
  padding: 10px 15px;
  min-height: 300px;
  background-color: #fff;
}
#contact .form p.policy_bt {
  margin-top:20px;
}
#contact .form p.policy_bt a {
  color:#fff;
  padding:5px 10px;
  background-color: #393939;
}
#contact .form p.policy_bt a:hover {
  opacity: 0.7;
}
#contact .form .cau {
  color: #E9202D;
}
#contact ul.button {
  display: flex;
  justify-content: center;
}
#contact ul.button li {
  margin: 0 15px;
}
#contact .mw_wp_form_input ul.button li:first-child {
  display: none;
}

#contact .submit {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  transition: 0.3s;
}
#contact .submit input {
  background: #385298;
  color: #fff;
  font-size: 2.1rem;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 40px;
  border-radius: 11px;
  transition: 0.3s;
}
#contact .submit input:hover {
  background: #989898;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left:0!important;
}

.contact_oframe {
  margin-top:200px;
}
@media (hover: hover) and (pointer: fine) {
  #contact .submit:hover {
    opacity: 0.7;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #contact .submit:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {

  #contact .products_head {
    padding:150px 0 0 0;
  }
  #contact .form_box {
    margin-top: 60px;
  }
  #contact .form_box dt {
    font-size:16px;
  }
  #contact .form label {
    margin-right: 30px;
  }
  #contact .form textarea {
    min-height: 200px;
  }
  #contact .form.privacy label {
    font-size: 1.6rem;
  }
  #contact .form.privacy .red {
    display: block;
  }
  #contact .form.privacy .link {
    margin-top: 20px;
  }
  #contact ul.button {
    margin-top:40px;
  }
  .contact_oframe {
    margin-top:100px;
    height:4000px;
  }

}


/*
------------------------------------------------------------------------------------------------------------------------
POLICY
------------------------------------------------------------------------------------------------------------------------
*/

#policy section.policy_content {
  margin-top:60px;
  font-weight: 200;
}
#policy section.policy_content p.lead {
  margin-bottom:40px;
}
#policy section.policy_content dt {
  margin-bottom:10px;
}
#policy section.policy_content dd + dt {
  margin-top:30px;
}
#policy section.policy_content dd {
  padding-left:2em;
}
#policy section.policy_content dd ul {
  margin-top:20px;
  padding-left:1em;
}
#policy section.policy_content dd ul li + li {
  margin-top:10px;
}
#policy section.policy_content dd ul li {
  list-style:disc;
}
#policy section.policy_content .policy_cap {
  text-align: right;
  margin-top:80px;
}
#policy section.policy_content .policy_cap span {
  display: inline-block;
  font-size:18px;
  margin-bottom:20px;
}

@media screen and (max-width: 768px) {

  article#policy {
    padding-top:80px;
    padding-bottom:150px;
  }
  #policy .policy_main_title {
    padding-bottom:0px;
    margin-bottom:50px;
  }

}