@charset "UTF-8";
/* CSS Document */
/*
Theme Name: tk-techno
Template: habakiri
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/*------------------------------------------------------------

	リセットcss
	
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
p, pre, a, address, code, img, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    word-break: break-all;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
a:focus, *:focus { outline:none; }
a:link,a:visited,a:hover { text-decoration: none; }
a:hover,input:hover { opacity: 0.85; }
img{
	margin: 0;
	padding: 0;
	vertical-align: bottom;
    max-width: 100%;
    width: 100%;
}
table { border-collapse:collapse; }

/* ボックスサイジング */
*, *:before, *:after
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
#main {
  margin: 0;
  overflow-x: hidden;
}

/* habakiriスライダーのSP対応 */
.slick-slide img {
    min-height: inherit!important;
}
/* recapchaの非表示 */
.grecaptcha-badge { display: none; }
.recaptcha-text { font-size: 1.2rem; text-align: center; }
.recaptcha-text a { color: #29abe2; text-decoration: underline; }
.recaptcha-text a:hover { color: #ff272d; }


/* フェードイン */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-500px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(500px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 共通クラス */
.fade-in,
.fadeIn,
.fadeInDown,
.fadeInLeft,
.fadeInRight,
.fadeInScale {
  opacity: 0;
  border-radius: 0;
}
.fade-in.show {
  opacity: 1;
  visibility: visible;
}
/* 各アニメーション用 */
.fadeIn.show {
  animation: fadeIn 0.6s forwards;
}
.fadeInDown.show {
  animation: fadeInDown 1.5s forwards;
}
.fadeInLeft.show {
  animation: fadeInLeft 1s ease-out forwards;
}
.fadeInRight.show {
  animation: fadeInRight 1s ease-out forwards;
}
.fadeInScale.show {
  animation: fadeInScale 1s forwards;
}
/* 擬似要素の場合　beforeは左から、afterは右から */
.pseudo-elements::before {
  opacity: 0;
  transform: translateX(-300px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.pseudo-elements::after {
  opacity: 0;
  transform: translateX(300px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.pseudo-elements.show::before,
.pseudo-elements.show::after {
  transform: translateX(0);
  opacity: 1;
}

/* 回転 */
@keyframes rotateInfinite {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* 
transform: translate(-50%, -50%);
animation: rotateInfinite 60s linear infinite;
*/

/* ふわふわアニメーション */
@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* スライドイン背景色 */
.animated-bg-box::before {
  transition: transform 1.5s ease, border-radius 0.6s ease 1.5s;
  z-index: -1;
}
.animated-bg-box.active::before {
  transform: translateX(0)!important;
  opacity: 1!important;
}

/* スライドイン背景色（角丸付き） */
.rounded-corners {
  transition: border-radius 1s ease 0.5s;
}
.rounded-corners.show {
  border-radius: 50px!important;
}



/*------------------------------------------------------------

	書式設定
	
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft { text-align: left; }
.taCenter { text-align: center; }
.taRight { text-align: right; }

/* フォントの太さ */
.fwNormal { font-weight: normal; }
.fwBold { font-weight: bold; }


/*------------------------------------------------------------

	汎用スタイル
	
------------------------------------------------------------*/
html { font-size: 62.5%; }
body {
	font-family: 'Noto Sans', 'Poppins', 'Arial', sans-serif;
	font-size: 1.7rem;
	line-height: 1.7;
  overflow-x: hidden;
  padding-top: 67px;
}
/* 背景のスクロールを無効化 */
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
h1, h2, h3{
	line-height: 1.4;
}
@media (max-width:768px){
body {
	font-size: 1.5rem;
  padding-top: 72px;
}
}

.wrap768 {
	width: 960px;
	max-width: 100%;
	margin: 0 auto;
}
@media screen and (max-width:960px){	
.wrap768  {
	padding: 0 20px;
}
}
.wrap880 {
	width: 100%;
  max-width: 1100px;
	margin: 0 auto;
  padding: 0 20px;
}
.wrap1100 {
	width: 100%;
  max-width: 1400px;
	margin: 0 auto;
}
@media screen and (max-width:1600px){
.wrap1100 {
	padding: 0 20px;
}
}

.flex-container {
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
}

/*----- スマホのみ表示 ----*/
.sp-item01 { display: none!important; }
.sp-item02 { display: none!important; }

@media screen and (max-width : 768px){
.sp-item01 { display: block!important; }
/*----- PCのみ表示 ----*/
.pc-item01 { display: none!important;}
}
@media screen and (max-width : 480px){
.sp-item02 { display: block!important; }
/*----- PCのみ表示 ----*/
.pc-item02 { display: none!important; }
}

.btn-more {
  margin-top: 30px;
}
.btn-more a,
.btn-more p,
.kb-button {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  background: #053ca6 url(images/common/btn-more01.png) center right 20px no-repeat!important;
  background-size: 15px auto!important;
  border-radius: 40px;
  min-width: 223px;
  padding: 10px 15px 10px 15px;
  transition: background-color 0.3s ease, background-position 0.3s ease;
}
.btn-more a:hover,
.btn-more p:hover,
.kb-button:hover {
	color: #fff;
  background-color: #6cd4ff!important;
  background-position: center right 15px!important;
  background-size: 15px auto!important;
  transition: background-color 0.3s ease, background-position 0.3s ease;
	opacity: 1;
}
.btn-more a span {
  display:inline-block;
  transition: .5s;
}
.btn-more a:hover span {
  transform: rotateX(360deg);
}

@media screen and (max-width : 768px){
.btn-more {
  text-align: center;
}
.btn-more a,
.btn-more p {
  font-size: 1.8rem;
  min-width: 223px;
  padding: 5px 10px;
}
}

.en-text {
  font-family: poppins, sans-serif;
}


/*--------------------------------------------------------------------

	WPデフォルトリセット
	
--------------------------------------------------------------------*/
#single-news .desc h2 {
    font-size: 1.95em;
	font-weight: bold;
}
#single-news .desc h3 {
    font-size: 1.56em;
	border-bottom: none;
	line-height: 1.4;
	padding: 0;
	margin: 0;
}
#single-news .desc h4 {
    font-size: 1.25em;
}
#single-news .desc a:link,
#single-news .desc a:visited,
#single-news .desc a:hover {
      color: #00a0d2;
	  text-decoration: underline;
}
#single-news .desc ul li {
	list-style-position: inside;
}
#single-news .desc p {
    margin-bottom: 30px;
}
.wp-block-image figcaption {
	color: #555d66;
	font-size: 1.3rem;
	text-align: center;
}
.is-style-regular table {
	border-top: solid 1px;
	border-left: solid 1px;
}
.is-style-regular table tr th,
.is-style-regular table tr td {
	border-bottom: solid 1px;
	border-right: solid 1px;
	padding: .5em;
}
.wp-block-verse {
	display: block;
	padding: 11px;
	margin: 0 0 11.5px;
	line-height: 1.7;
	word-break: break-all;
	word-wrap: break-word;
	color: #333;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px;
}
.wp-block-pullquote {
	border-top: 4px solid #555d66;
	border-bottom: 4px solid #555d66;
	margin-bottom: 28px;
	color: #40464d;
}
.wp-block-pullquote blockquote {
	border-left: none;
	margin: 1em;
	padding: 0;
}
.yrm-btn-wrapper {
	margin: 30px 0;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea{
	border: none;
  border-radius: 5px;
	width: 100%;
  padding: 10px;
  margin: 5px 0 0;
}
#contact input[type=submit] {
	background: none;
	border: none;
}

/*------------------------------------------------------------------------------------------------------------------------------------------

	共通
	
------------------------------------------------------------------------------------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, #0062b0, #3ba4de);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1!important;;
  transition: opacity 1s ease!important;;
}
#preloader.preloader-hide {
  opacity: 0!important;;
  pointer-events: none!important;;
}
.preloader-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  opacity: 0;
  animation: fadeInpreloader 1.5s ease forwards;
}
.preloader-logo {
  width: 400px;
  height: auto;
  margin: 0 auto 40px;
}
.preloader-text {
  font-size: 2.4rem;
	font-weight: 700;
  line-height: 1.6;
  margin: 30px auto 0;
}
@keyframes fadeInpreloader {
  to {
    opacity: 1;
  }
}
@media(max-width:768px){
.preloader-text {
  font-size: 2.4rem;
	font-weight: 700;
  line-height: 1.6;
  margin: 30px auto 0;
}
}


/* header */
#main-header {
  position: fixed;
  top: 0;
	background-color: #fff;
  width: 100%;
  z-index: 100;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.page #main-header {
	background-color: #fff;
}
#main-header .header-inner {
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
#main-header .header-logo {
  line-height: 1;
}
#main-header .header-logo img {
  width: 190px;
  max-width: 100%;
  transition: transform 0.3s ease;
}
#main-header .header-logo img:hover {
  transform: scale(1.1);
}
.header .pc-nav .btn-contact {
  padding: 10px 0;
}
.header .pc-nav .btn-contact > a {
  color: #fff;
  background: #053ca6 url("images/common/icon-mail.png") center right 10px no-repeat;
  background-size: 17px auto;
  border-radius: 50px;
  transition: background-color 0.3s ease, right 0.3s ease;
  padding: 10px 35px 10px 15px;
}
.header .pc-nav .btn-contact > a:hover {  
  color: #fff!important;
  background: #6cd4ff url("images/common/icon-mail.png") center right 10px no-repeat;
  background-size: 17px auto;
  transition: background-color 0.3s ease, right 0.3s ease;
	opacity: 1;
}
@media(max-width:768px){
#main-header .header-inner {
  padding: 10px;
}
}

/* スクロール後に背景色が付く状態 */
#main-header.scrolled {
  background-color: #0071bc!important;
}
#main-header .header-logo img.white {
  display: none;
}
#main-header.scrolled .header-logo img.white {
  display: block!important;
}
#main-header.scrolled .header-logo img.black {
  display: none!important;
}
.header .header-inner {
  justify-content: space-between;
  align-items: center;
}
.header .pc-nav {
  justify-content: flex-end;
}
.header .pc-nav > ul {
  align-items: center;
	padding: 0 10px;
}
#main-header.scrolled .pc-nav > ul {
   background: none;
   backdrop-filter: none;
}
.header .pc-nav > ul > li {
	position: relative;
  list-style: none;
  border-radius: 10px;
}
.header .pc-nav > ul > li a {
  display: inline-block;
  padding: 20px;
}
#main-header.scrolled .pc-nav > ul > li a {
  color: #fff;
}
.header .pc-nav > ul > li a:hover {
  color: #6cd4ff!important;
  opacity: 1;
}
.header .pc-nav ul li a {
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width : 768px){
.header .header-inner {
  padding: 10px 20px 10px 0;
}
.header .pc-nav {
  display: none;
}
.header .header-logo img {
  width: 300px;
}
}

/* PCプルダウンメニュー */
.header .pc-nav > ul > li:hover .menuSub {
	display: block;
}
.header .pc-nav .menuSub {
  display: none;
  position: absolute;
	top: 100%;
  left: 0;
  background-color: #0071bc;
  padding: 0;
  width: 180px;
}
.header .pc-nav .menuSub li {
  list-style: none;
}
.header .pc-nav .menuSub li a {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 15px 10px 20px;
  width: 100%;
}
.header .pc-nav .menuSub li a:hover {
  color: #fff!important;
  background-color: #6cd4ff;
}
.header .pc-nav .menuSub li a.tier3 {
	padding-left: 30px;
}
.header .pc-nav li.products-menu .menuSub {
	width: 225px;
}


/* スマホメニュー */
.sp-nav {
	display: none;
}
@media screen and (max-width : 768px){
.sp-nav {
	display: block;
}
.sp-nav #nav-input {
  display: none;
}
/* ハンバーガーボタン */
.sp-nav #nav-open {
	position: relative;
  display: inline-block;
	background-color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  width: 40px;
  height: 35px;
  cursor: pointer;
	z-index: 1100;
	padding: 5px;
}
.sp-nav #nav-open span {
  display: block;
  height: 2px;
  background-color: #053ca6;
  border-radius: 1px;
  margin: 5px 0;
  transition: 0.3s;
}

/* チェックボックスがチェックされている場合 */
.sp-nav #nav-input:checked + #nav-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.sp-nav #nav-input:checked + #nav-open span:nth-child(2) {
  opacity: 0;
}
.sp-nav #nav-input:checked + #nav-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ナビゲーションメニュー */
.sp-nav #nav-content {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #c1cee9;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	width: 100%;
	height: 100vh;
	padding: 60px 20px 20px;
  z-index: 1000;
}
.sp-nav #nav-input:checked ~ #nav-content {
  display: block;
	overflow-y: scroll;
}
.sp-nav #nav-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav #nav-content li {
	position: relative;
  border-bottom: 1px solid #fff;
}
.sp-nav #nav-content li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #000;
}
.sp-nav #nav-content > ul > li > a {
	font-weight: bold;
}	
.sp-nav #nav-content li a:hover {
  background-color: #eee;
}

/* バツ印エリアのスタイル（必要なら追加） */
.sp-nav #nav-close {
  display: none;
}
/* SP内プルダウンメニューの基本スタイル */
.sp-nav #nav-content li .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-nav #nav-content .arrow-toggle {
  position: absolute;
  right: 0;
  top: 23px;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 14l-5-5h10l-5 5z"/></svg>') no-repeat center center;
  background-size: 30px;
  cursor: pointer;
}
.sp-nav #nav-content .sub-menu-open .arrow-toggle {
  transform: translateY(-50%) rotate(180deg);
}
.sp-nav #nav-content li .sub-menu li a {
	display: block;
	color: #000;
  text-decoration: none;
	padding: 10px 10px 10px 20px;
}
.sp-nav #nav-content li .sub-menu li a.tier3 {
	padding: 10px 10px 10px 35px;
}
.sp-nav #nav-content li .sub-menu li a:hover {
  background-color: #ddd;
}
.sp-nav #nav-content li .sub-menu li:nth-last-of-type(1) {
	border-bottom: none;
}
.sp-nav #nav-content .sub-menu-open .sub-menu {
  display: block;
}
}


/* pagetop */
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 10px;
  z-index: 10;
}
#pagetop a {
  position: relative;
  display: inline-block;
  color: #053ca6;
  font-weight: 600;
  padding-bottom: 40px;
  transition: padding-bottom 0.3s ease;
}
#pagetop a span {
  border-bottom: solid 2px #053ca6;
}
#pagetop a::before,
#pagetop a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #053ca6;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
#pagetop a::before {
  width: 2px;
  height: 40px;
  bottom: -8px;
}
#pagetop a::after {
  width: 10px;
  height: 2px;
  bottom: 27px;
  transform: translateX(-82%) rotate(-45deg);
  transform-origin: center;
}
#pagetop a:hover {
  padding-bottom: 60px;
}
#pagetop a:hover::before {
  height: 60px;
}
#pagetop a:hover::after {
  bottom: 47px;
}

@media(max-width:768px){
#pagetop {
  display: none;
}
}


/* footer */
footer {
  position: relative;
  color: #fff;
  background: linear-gradient(to right, rgba(0, 76, 172, 1), rgba(21, 153, 217, 1));
	border-radius: 0;
  padding: 40px 0 10px;
	margin: 0 20px;
	transition: border-radius 1s ease 0.5s;
}
footer.show {
  border-radius: 50px 50px 0 0!important;
}
footer .footer-inner {
  background: url("images/common/footer-deco01.png") bottom right 40px no-repeat;
  background-size: 220px auto;
}
footer .flex-container {
  justify-content: space-between;
}
footer .flex-left .text01 {
  font-size: 1.8rem;
	font-weight: 700;
  margin-bottom: 20px;
}
footer .flex-left h2 {
  margin-bottom: 20px;
}
footer .flex-left h2:hover {
  opacity: 0.8;
}
footer .flex-left h2 img {
  width: 195px;
  max-width: 100%;
  transition: transform 0.3s ease;
}
footer .flex-left h2 img:hover {
  opacity: 1;
  transform: scale(1.1);
}
footer .flex-left .text-tel {
  color: #fff;
}
footer .flex-left .text-tel:hover {
  color: #6cd4ff;
  text-decoration: underline;
}
footer .flex-left .text-fax {
  margin-bottom: 20px;
}
footer .flex-right ul.sitemap {
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
  max-width: 480px;
}
footer .flex-right ul.sitemap li {
  position: relative;
  list-style: none;
  padding: 0 20px 0 20px;
}
footer .flex-right ul.sitemap li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  font-size: 10px;
}
footer .flex-right ul.sitemap li a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}
footer .flex-right ul.sitemap li a:hover {
  color: #6cd4ff;
  text-decoration: underline;
}
footer .flex-right ul.sitemap li a {
  font-weight: 700;
  margin-bottom: 15px;
}
footer .flex-right ul.sub-link {
  margin-bottom: 20px;
}
footer .flex-right ul.sub-link li a {
  font-weight: normal;
  margin: 0 0 10px 15px;
}
footer .flex-right ul.sub-link li a.tier3 {
  margin-left: 30px;
}
footer .copy {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 30px;
}

@media(max-width:768px){
footer {
  padding: 40px 0 0;
}
footer .footer-inner {
  background: url("images/common/footer-deco01.png") bottom center no-repeat;
  background-size: 220px auto;
  padding: 0 0 180px;
}
footer .flex-container {
  flex-wrap: wrap;
}
footer .flex-left {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
footer .flex-right {
  width: 100%;
}
footer .flex-right ul.sitemap {
  padding-left: 0;
}
footer .flex-right ul.sitemap li {
  width: auto;
}
}
@media(max-width:768px){
footer .flex-right ul.sitemap {
  padding-left: 30px;
  max-width: 220px;
  margin: 0 auto;
  padding-left: 0;
}
footer .flex-right ul.sitemap li {
  padding: 0 0 0 25px;
}
footer .flex-right ul.sitemap li::before {
  left: 10px;
}
}


/* pagenavi */
.wp-pagenavi {
  margin: 80px 0 40px;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border: none!important;
	margin: 0 10px!important;
}
.wp-pagenavi a {
  font-weight: bold;
}
.wp-pagenavi a:hover {
	color: #15923b;
}
.wp-pagenavi span.current {
  color: #fff;
  background: #d2c700;
  border-radius: 20px;
  padding: 7px 15px 10px;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  color: #fff;
	background: #053ca6;
  border-radius: 20px;
  padding: 7px 12px 10px;
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
	color: #fff;
	background: #0099ff;
}
.post-navigation {
	justify-content: center;
	margin-top: 60px;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	background: #053ca6;
	padding: 10px 20px;
	margin: 0 10px;
}
.post-navigation > div a:hover {
	color: #fff;
	background-color: #FF5257;
  transition: background-color 0.3s ease;
}
.wp-pagenavi img {
  width: 15px;
  height: auto;
  vertical-align: middle;
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	トップページ
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* 共通 */
.ttl-box {
  margin-bottom: 40px;
}
.ttl-box .en-ttl {
  font-size: 8rem;
  font-weight: 700;
  font-family: poppins, sans-serif;
  line-height: 1.2;
}
.ttl-box .en-ttl {
  display: block;
  background: linear-gradient(90deg, var(--color-blue, #053ca6) 20%, var(--color-black, #000) 30%);
  background-size: 500% 500%;
  background-position: 100% 0%;
  -webkit-mask-image: linear-gradient(90deg, #fff 24%, transparent 33%);
  -webkit-mask-position: 100% 0%;
  -webkit-mask-size: 400% 400%;
  mask-image: linear-gradient(90deg, #fff 24%, transparent 33%);
  mask-position: 100% 0%;
  mask-size: 400% 400%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 0.6rem;
  transition: all 2s ease;
}
.ttl-box .en-ttl.animate {
  background-position: 0% 0%;
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
}


.ttl-box h2.ttl {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
}
@media(max-width:768px){
.ttl-box {
  margin-bottom: 30px;
}
.ttl-box .en-ttl {
  font-size: 4.5rem;
}
}

#toppage .main-img {
  overflow-x: visible;
}
#toppage .main-imginner {
  justify-content: space-between;
  flex-wrap: wrap;
}
#toppage .main-img .flex-left {
  position: relative;
  border-radius: 0;
  width: 60%;
  overflow: hidden;
  transition: transform 1.5s ease, border-radius 0.6s ease 1s;
}
#toppage .main-img .flex-left.show {
  border-radius: 0 50px 50px 0;
}
#toppage .main-img #main-slider::after,
#toppage .main-img #main-slider-sp::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(5, 60, 155, 0.8) 2%, rgba(5, 113, 188, 0.8) 10%, rgba(5, 113, 188, 0.8) 5%, transparent 40%);
  width: 100%;
  height: 100%;
}
#toppage .main-img .flex-left .item {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
	z-index: 1;
}
#toppage .main-img .flex-left .item .sub-catch {
  color: #fff;
  font-size: 2.3rem;
}
#toppage .main-img .flex-left .item .catch {
  color: #fff;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width:768px){
#toppage .main-img .flex-left {
  width: 95%;
}
#toppage .main-img .flex-left .item {
  bottom: 10px;
  left: 0;
  padding: 10px;
}
#toppage .main-img .flex-left .item .sub-catch {
  font-size: 1.4rem;
}
#toppage .main-img .flex-left .item .catch {
  font-size: 3rem;
  margin-bottom: 5px;
}
#toppage .main-img .flex-left .item .en-text {
  font-size: 1.2rem;
}
}
@media screen and (max-width:768px){
#toppage .main-img .flex-left .item .en-text {
  font-size: 0.9rem;
}
}


#main-slider .slick-track,
#main-slider-sp .slick-track {
  direction: rtl; /* トラックの向きを逆に */
}


#toppage .main-img .flex-right {
  position: relative;
  width: 35%;
  margin-right: 2%;
}
#toppage .main-img .flex-right::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url(images/common/bg-deco01.png) center no-repeat;
  background-size: 80% auto;
  transform: translate(-50%, -50%);
  animation: rotateInfinite 50s linear infinite;/*回転*/
}
#toppage .main-img .flex-right a {
  display: block;
}
#toppage .main-img .flex-right a:hover {
  opacity: 1;
}
#toppage .main-img .flex-right .text01 {
  position: relative;
  color: #053ca6;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  padding: 20px 0 10px;
}
#toppage .main-img .flex-right:hover .text01 {
  color: #6cd4ff;
}
#toppage .main-img .flex-right .text01::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 27px;
  height: 27px;
  margin: 0 auto;
  background: url(images/common/btn-more02.png) center no-repeat;
  background-size: cover;
  transition: transform 0.3s ease;
  transform-origin: center center; /* 拡大の基準を中心に */
}
#toppage .main-img .flex-right:hover .text01::before {
  background: url(images/common/btn-more02-hover.png) center no-repeat;
  background-size: cover;
  transform: scale(1.3); /* 少しだけ拡大 */
}
#toppage .main-img .flex-right .item:nth-of-type(1) {
  justify-content: center;
}
#toppage .main-img .flex-right .item:nth-of-type(2) {
  justify-content: space-between;
}
#toppage .main-img .flex-right .item .electronics {
  background: url(images/home/technologies-img01.png) center no-repeat;
  background-size: cover;
}
#toppage .main-img .flex-right .item .mechatronics {
  background: url(images/home/technologies-img02.png) center no-repeat;
  background-size: cover;
}
#toppage .main-img .flex-right .item .software {
  background: url(images/home/technologies-img03.png) center no-repeat;
  background-size: cover;
}

#toppage .main-img .flex-right .item .box01 {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  width: 45%;
  overflow: hidden;
}
#toppage .main-img .flex-right .item .box01 > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  margin: 0;
  padding: 0;
  width: 100%;
  word-wrap: break-word;
}
#toppage .main-img .flex-right .item .box01 .text-box {
  background-color: rgb(208,218,238,0.9);
  padding: 5px 0;
}
#toppage .main-img .flex-right .item .box01 .en-text {
  color: #053ca6;
  font-size: 1.2rem;
  text-align: center;
}
#toppage .main-img .flex-right .item .box01 h2 {
  color: #1a1a1a;
  font-size: 1.4rem;
  text-align: center;
}
@media(max-width:768px){
#toppage .main-img .flex-right {
  width: 100%;
  margin-right: 0;
  padding: 30px 20px 0;
}
}



/* 私たちについて */
#toppage .aboutus-block {
  padding: 100px 0;
}
#toppage .aboutus-block .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#toppage .aboutus-block .flex-left {
  width: 45%;
}
#toppage .aboutus-block .flex-right {
  width: 45%;
}
#toppage .aboutus-block .flex-left .logo {
  text-align: center;
  margin-bottom: 20px;
}
#toppage .aboutus-block .flex-left .logo img {
  width: 268px;
  max-width: 100%;
}
#toppage .aboutus-block .flex-right img {
  border-radius: 20px;
  margin-bottom: 10px;
}
#toppage .aboutus-block .flex-right .text01 {
  color: #053ca6;
  font-weight: 600;
  text-align: center;
}
@media(max-width:768px){
#toppage .aboutus-block {
  padding: 60px 0;
}
#toppage .aboutus-block .flex-left {
  width: 100%;
  margin-bottom: 20px;
}
#toppage .aboutus-block .flex-right {
  width: 100%;
}
}



/* 製品情報 */
#toppage .product-blockinner {
  position: relative;
  background: linear-gradient(to right, rgba(0, 76, 172, 1), rgba(59, 164, 222, 1));
  border-radius: 0;
  padding: 30px 20px 0;
}
#toppage .product-block .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
  background: url("images/home/product-deco01.png") bottom right no-repeat;
  background-size: 325px auto;
  padding: 0 0 60px;
}
#toppage .product-block .flex-left {
  position: relative;
  width: 65%;
}
#toppage .product-block .flex-right {
  width: 32%;
}

#toppage .product-block .infinite-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#toppage .product-block .infinite-slider {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
#toppage .product-block .slider-track {
  display: flex;
  width: max-content;
}
#toppage .product-block .slide {
  flex-shrink: 0;
  width: 300px;
  margin-right: 20px;
}
#toppage .product-block .slide img {
  width: 100%;
  display: block;
	border-radius: 20px;
}
#toppage .product-block .btn-more a:hover {
  background-color: #6cd4ff;
}

/* スクロールアニメーション */
#toppage .product-block .scroll-left {
  animation: scrollLeft 50s linear infinite;
}
#toppage .product-block .scroll-right {
  animation: scrollRight 50s linear infinite;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

#toppage .product-block .deco-text01 {
  position: absolute;
  bottom: -10px;
  right: 30px;
  color: #fff;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.3;
}

@media(max-width:768px){
#toppage .product-block {
  padding: 0 20px;
}
#toppage .product-blockinner {
  position: relative;
  background: linear-gradient(to top, rgba(0, 76, 172, 1), rgba(59, 164, 222, 1));
  border-radius: 50px;
}
#toppage .product-block .flex-container {
  background: url(images/home/product-deco01.png) bottom center no-repeat;
  background-size: 210px auto;
  padding: 0px 0 130px;
}
#toppage .product-block .flex-left {
  width: 100%;
  order: 2;
}
#toppage .product-block .flex-right {
  width: 100%;
  margin-bottom: 20px;
  order: 1;
}
#toppage .product-block .slide {
  width: 150px;
}
#toppage .product-block .deco-text01 {
  font-size: 3rem;
  text-align: center;
  bottom: -4px;
  right: 0;
  width: 100%;
}
}



/* 事業内容 */
#toppage .business-block {
  padding: 100px 0;
}
#toppage .business-block .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#toppage .business-block .flex-left {
  width: 35%;
}
#toppage .business-block .flex-right {
  width: 60%;
}
#toppage .business-block .flex-box {
  position: relative;
  width: 30%;
}
#toppage .business-block .flex-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: -10px;
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#toppage .business-block .flex-box:nth-of-type(1)::before {
  background: linear-gradient(to right, rgba(0, 104, 55, 1), rgba(78, 157, 63, 1));
}
#toppage .business-block .flex-box:nth-of-type(2)::before {
  background: linear-gradient(to right, rgba(3, 115, 189, 1), rgba(107, 178, 219, 1));
}
#toppage .business-block .flex-box:nth-of-type(3)::before {
  background: linear-gradient(to right, rgba(83, 71, 65, 1), rgba(170, 153, 138, 1));
}
#toppage .business-block .flex-box a {
  position: relative;
  display: block;
  border-radius: 20px 20px 0 0;
  width: 100%;
}
#toppage .business-block .flex-box a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  right: 5px;
  background: url("images/common/btn-more02.png") center no-repeat;
  background-size: cover;
  width: 29px;
  height: 29px;
  transition: transform 0.3s ease;
  transform-origin: center center;
  z-index: 1;
}
#toppage .business-block .flex-box a:hover::after {
  transform: scale(1.3); /* 少しだけ拡大 */
}
#toppage .business-block .flex-box a:hover {
  opacity: 1;
}
#toppage .business-block .flex-box a div {
  display: block;
  border-radius: 20px 20px 0 0;
  width: 100%;
  min-height: 362px;
  overflow: hidden;
}
#toppage .business-block .flex-box:nth-of-type(1) a div {
  background: url("images/home/business-img01.jpg") left center no-repeat;
  background-size: 110%;
  transition: background-size 0.6s ease, background-position 0.6s ease;
}
#toppage .business-block .flex-box:nth-of-type(2) a div {
  background: url("images/home/business-img02.jpg") left center no-repeat;
  background-size: 110%;
  transition: background-size 0.6s ease, background-position 0.6s ease;
}
#toppage .business-block .flex-box:nth-of-type(3) a div {
  background: url("images/home/business-img03.jpg") left center no-repeat;
  background-size: 110%;
  transition: background-size 0.6s ease, background-position 0.6s ease;
}
#toppage .business-block .flex-box:nth-of-type(1) a:hover div {
  background: url("images/home/business-img01.jpg") right center no-repeat;
  background-size: 110%;
}
#toppage .business-block .flex-box:nth-of-type(2) a:hover div {
  background: url("images/home/business-img02.jpg") right center no-repeat;
  background-size: 110%;
}
#toppage .business-block .flex-box:nth-of-type(3) a:hover div {
  background: url("images/home/business-img03.jpg") right center no-repeat;
  background-size: 110%;
}
#toppage .business-block .flex-box h3 {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  writing-mode: vertical-rl;
}
#toppage .business-block .flex-box h3 span {
  padding: 10px 0;
}
#toppage .business-block .flex-box .en-text {
  position: absolute;
  bottom: -5px;
  left: -5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: #4d4d4d 1px 0 5px;
  z-index: 1;
}
#toppage .business-block .flex-box:nth-of-type(1) h3 span {
  background: #006837;
}
#toppage .business-block .flex-box:nth-of-type(2) h3 span {
  background: #0071bc;
}
#toppage .business-block .flex-box:nth-of-type(3) h3 span {
  background: #998675;
}
@media(max-width:768px){
#toppage .business-block {
  padding: 60px 0;
}
#toppage .business-block .flex-left {
  width: 100%;
  margin-bottom: 20px;
}
#toppage .business-block .flex-right {
  width: 100%;
}
#toppage .business-block .flex-box a div {
  min-height: 250px;
}
#toppage .business-block .flex-box h3 {
  font-size: 1.8rem;
}
#toppage .business-block .flex-box .en-text {
  font-size: 1.4rem;
}
}
@media(max-width:480px){
#toppage .business-block .flex-box {
  width: 90%;
  margin: 0 auto 40px;
}
#toppage .business-block .flex-box h3 {
  font-size: 2.4rem;
}
#toppage .business-block .flex-box .en-text {
  font-size: 2.4rem;
}
#toppage .business-block .flex-box:nth-of-type(1) a div {
  background: url("images/home/business-img01.jpg") right center no-repeat;
  background-size: 100%;
  transition: background-size 0.6s ease, background-position 0.6s ease;
}
#toppage .business-block .flex-box:nth-of-type(2) a div {
  background: url("images/home/business-img02.jpg") right center no-repeat;
  background-size: 100%;
  transition: background-size 0.6s ease, background-position 0.6s ease;
}
#toppage .business-block .flex-box:nth-of-type(3) a div {
  background: url("images/home/business-img03.jpg") right center no-repeat;
  background-size: 100%;
  transition: background-size 0.6s ease, background-position 0.6s ease;
}
#toppage .business-block .flex-box:nth-of-type(1) a:hover div {
  background: url("images/home/business-img01.jpg") right center no-repeat;
  background-size: 100%;
}
#toppage .business-block .flex-box:nth-of-type(2) a:hover div {
  background: url("images/home/business-img02.jpg") right center no-repeat;
  background-size: 100%;
}
#toppage .business-block .flex-box:nth-of-type(3) a:hover div {
  background: url("images/home/business-img03.jpg") right center no-repeat;
  background-size: 100%;
}
}


/* 採用情報 */
#toppage .recruitment-block {
  position: relative;
}
#toppage .recruitment-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  background: #c1cee9;
  width: 95%;
  height: 100%;
  transform: translateX(100%);
}
#toppage .recruitment-block.animated-bg-box.active::before {
  border-radius: 50px 0 0 50px;
  transform: translateX(0);
}
#toppage .recruitment-blockinner {
  position: relative;
  padding: 100px 0;
  z-index: 10;
}
#toppage .recruitment-blockinner::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: -20px;
  background: url("images/home/recruit-illust01.png") center no-repeat;
  background-size: cover;
  width: 148px;
  height: 142px;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#toppage .recruitment-blockinner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: url("images/home/recruit-illust02.png") center no-repeat;
  background-size: cover;
  width: 205px;
  height: 200px;
  animation: floatUpDown 3s ease-in-out infinite;
}
#toppage .recruitment-block .ttl-box {
  text-align: center;
}
#toppage .recruitment-block .text01 {
  text-align: center;
}
#toppage .recruitment-block .btn-more {
  text-align: center;
}
#toppage .recruitment-block .img01 {
  position: absolute;
  bottom: -10px;
  right: -100px;
}
#toppage .recruitment-block .img01 div {
  position: relative;
}
#toppage .recruitment-block .img01 div::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: -10px;
  background: #053ca6;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
#toppage .recruitment-block .img01 img {
  position: relative;
  width: 500px;
  border-radius: 20px;
  transition: transform 0.2s ease;
  z-index: 1;
}
#toppage .recruitment-block .btn-more:hover + .img01 img {
  transform: rotate(-5deg);
}
@media(max-width:1600px){
#toppage .recruitment-block .img01 {
  right: -20px;
}
#toppage .recruitment-block .img01 img {
  width: 460px;
}
}
@media(max-width:1400px){
#toppage .recruitment-block .img01 {
  right: 0;
}
#toppage .recruitment-block .img01 img {
  width: 370px;
}
}
@media(max-width:768px){
#toppage .recruitment-blockinner {
  padding:100px 20px 150px 40px;
}
#toppage .recruitment-blockinner::before {
  right: 10px;
  width: 118px;
  height: 114px;
}
#toppage .recruitment-blockinner::after {
  left: 10px;
  width: 133px;
  height: 130px;
}
#toppage .recruitment-block .text01 {
  text-align: left;
}
#toppage .recruitment-block .img01 {
  position: absolute;
  bottom: -30px;
  right: 10px;
}
#toppage .recruitment-block .img01 img {
  width: 180px;
}
}


/* お知らせ */
#toppage .news-block {
  padding: 100px 0;
}
#toppage .news-block .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#toppage .news-block .flex-left {
  background: #053ca6;
  border-radius: 0;
  width: 65%;
  padding: 50px;
}
#toppage .news-block .flex-right {
  position: relative;
  width: 30%;
}
#toppage .news-block a {
  color: #fff;
}
#toppage .news-block dl {
  display: flex!important;
  border-bottom: solid 1px #e6e6e6;
  padding: 20px 0;
}
#toppage .news-block dl dt {
  color: #fff;
  padding-right: 20px;
	width: 230px;
}
#toppage .news-block dl dt span {
  display: inline-block;
  color: #053ca6;
  font-size: 1.2rem;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  width: 100px;
  padding: 2px 10px;
  margin-left: 10px;
}
#toppage .news-block a:hover {
  opacity: 1;
}
#toppage .news-block a:hover dl dt,
#toppage .news-block a:hover dl dd {
  color: #6cd4ff;
}
#toppage .news-block a:hover dl dt span {
  color: #fff;
  background: #6cd4ff;
}
#toppage .news-block .flex-right::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -70px;
  right: -70px;
  background: url("images/common/news-illust01.png") center no-repeat;
  background-size: cover;
  width: 148px;
  height: 145px;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
@media(max-width:768px){
#toppage .news-block {
  padding: 100px 0 60px;
}
#toppage .news-block .flex-left {
  border-radius: 30px;
  width: 100%;
  padding: 20px 20px 30px 20px;
  order: 2;
}
#toppage .news-block .flex-right {
  width: 100%;
  order: 1;
  margin-bottom: 20px;
}
#toppage .news-block dl {
	flex-wrap: wrap;
  padding: 10px 0;
}
#toppage .news-block dl dt {
  display: block;
  width: 100%;
  padding: 0px 20px 10px 0;
}
#toppage .news-block .flex-right::before {
  bottom: auto;
  top: 0px;
  right: 0;
  width: 108px;
  height: 105px;
}
}


/*　その他　*/
#toppage .other-block {
  padding: 0 0 100px;
}
#toppage .other-block .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#toppage .other-block .flex-box {
  position: relative;
  width: 31%;
}
#toppage .other-block .flex-box a {
  display: block;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
#toppage .other-block .flex-box img {
  transition: transform 0.3s ease;
}
#toppage .other-block .flex-box a:hover {
  opacity: 1;
}
#toppage .other-block .flex-box a:hover img {
  transform: scale(1.2); /* 少し拡大 */
}
#toppage .other-block .flex-box .box01 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background-color: rgb(5,60,166,0.5);
  background-image: url(images/common/btn-more01.png);
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 15px auto;
  width: 100%;
  padding: 5px 10px;
  transition: background-position 0.3s ease;
}
#toppage .other-block .flex-box a:hover .box01 {
  background-color: rgb(108,212,255,0.7);
  background-position: center right 5px;
}
#toppage .other-block .flex-box .box01 h3 {
  font-size: 2.2rem;
}
#toppage .other-block .flex-box .box01 h3 span.en {
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 10px;
}
@media(max-width:768px){
#toppage .other-block {
  padding: 0 0 60px;
}
#toppage .other-block .flex-box {
  width: 100%;
  margin-bottom: 20px;
}
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	サブページ　共通
	
------------------------------------------------------------------------------------------------------------------------------------------*/
.sub-page .bg-white {
  background: #fff;
  padding: 100px 0;
}
@media(max-width:768px){
.sub-page .bg-white {
  padding: 60px 0;
}
}

.sub-page .page-head {
  position: relative;
}
.sub-page .page-head::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #053ca6;
  width: 60%;
  height: 90%;
  transform: translateX(-300px);
  opacity: 0;
}
.sub-page .page-head.animated-bg-box.active::before {
  border-radius: 0 50px 50px 0;
}
.sub-page .page-head .flex-container {
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
}
.sub-page .page-head .flex-left {
  display: flex;
  align-items: center;
  width: 50%;
  padding-left: 20px;
}
.sub-page .page-head .flex-right {
  width: 50%;
  margin-top: 50px;
  overflow: hidden;
  border-radius: 0;
  transition: transform 1.5s ease, border-radius 0.6s ease 1.5s;
}
.sub-page .page-head .flex-right.show {
  border-radius: 50px 0 0 50px;
}
.sub-page .page-head .flex-left h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
}
.sub-page .page-head .flex-left .en-ttl {
  color: #fff;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.2;
}
@media(max-width:768px){
.sub-page .page-head::before {
  width: 90%;
  height: 90%;
}
.sub-page .page-head .flex-container {
  justify-content: end;
}
.sub-page .page-head .flex-left {
  width: 100%;
  padding: 30px 0 0 20px;
}
.sub-page .page-head .flex-right {
  width: 90%;
  margin-top: 10px;
}
.sub-page .page-head .flex-left h1 {
  font-size: 2rem;
}
.sub-page .page-head .flex-left .en-ttl {
  font-size: 4rem;
}
}

.sub-page .intro-box {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.sub-page .intro-box .img-box {
  width: 45%;
}
.sub-page .intro-box .img-box img {
  border-radius: 20px;
}
.sub-page .intro-box .text-box {
  width: 50%;
}
.sub-page .intro-box .text-box .catch {
  color: #053ca6;
  font-size: 2rem;
  font-weight: 600;
}
@media(max-width:768px){
.sub-page .intro-box {
  margin-bottom: 20px;
}
.sub-page .intro-box .img-box {
  width: 100%;
  order: 1;
  margin-bottom: 10px;
}
.sub-page .intro-box .text-box {
  width: 100%;
  order: 2;
}
.sub-page .intro-box .text-box .catch {
  font-size: 1.8rem;
}
}

.sub-page .table-box {
  position: relative;
}
.sub-page .table-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url(images/common/bg-deco02.png) center center / 80% no-repeat;
  animation: 50s linear 0s infinite normal none running rotateInfinite;
}
.sub-page .table-box dl {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  z-index: 1;
}
.sub-page .table-box dl dt {
  font-weight: 600;
  border-bottom: 1px solid #808080;
  padding: 15px 0;
}
.sub-page .table-box dl dd {
  border-bottom: 1px solid #808080;
  padding: 15px 0;
}
.sub-page .table-box dl dd a {
  color: #1a1a1a;
}
.sub-page .table-box dl dd ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
}
.sub-page .table-box dl dd ul li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #053ca6;
}
@media(max-width:768px){
.sub-page .table-box dl {
  display: block;
}
.sub-page .table-box dl dt {
  border-bottom: none;
  padding: 15px 0 0;
}
.sub-page .table-box dl dd {
  border-bottom: 1px solid #808080;
  padding: 5px 0 15px;
}
}

/* 背景画像固定 */
.sub-page .parallax-wrap {
  background: linear-gradient(to right, rgba(0,76,172,1), rgba(21,153,217,1));
  padding: 50px;
}
.sub-page .parallax-section {
  position: relative;
  min-height: 700px;
  border-radius: 50px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-page .parallax-section::after {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,113,188,0.2); /* 青オーバーレイ */
  border-radius: 50px;
  z-index: 1;
}
.sub-page .parallax-wrapinner {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 1100px;
}
.sub-page .parallax-section .text01 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
.sub-page .parallax-wrap {
  padding: 20px;
}
.sub-page .parallax-section {
  background-attachment: scroll;
  padding: 20px;
  min-height: 300px;
}
.sub-page .parallax-section::before {
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 20px;
}
.sub-page .parallax-section .parallax-wrapinner {
  font-size: 1.8rem;
  padding: 30px 0;
}
.sub-page .parallax-section .text01 {
  font-size: 2rem;
}
}

.sub-page ul.img-box02 {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.sub-page ul.img-box02 li {
  list-style: none;
  width: 33%;
}
.sub-page ul.img-box02 li img {
  border-radius: 20px;
}
@media(max-width:768px){
.sub-page ul.img-box02 {
  margin-top: 50px;
}
.sub-page ul.img-box02 li {
  width: 100%;
  margin-bottom: 5px;
}
}


.sub-page ul.list-style01 {
  margin: 20px 0 0;
}
.sub-page ul.list-style01 li {
  position: relative;
  list-style: none;
  padding-left: 20px;
}
.sub-page ul.list-style01 li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #053ca6;
}

.sub-page ul.list-style-num {
  margin: 20px 0 0;
}
.sub-page ul.list-style-num li {
  position: relative;
  list-style: none;
  padding: 0 0 5px 35px;
}
.sub-page ul.list-style-num li:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 600;
  background: #053ca6;
  border-radius: 50%;
  padding: 0 9px;
}
.sub-page ul.list-style-num li:nth-of-type(1):before {
  content: "1";
}
.sub-page ul.list-style-num li:nth-of-type(2):before {
  content: "2";
}
.sub-page ul.list-style-num li:nth-of-type(3):before {
  content: "3";
}

.sub-page .text-red {
  color: #c1272d;
  margin: 20px 0 0;
}




/*------------------------------------------------------------------------------------------------------------------------------------------

	会社情報
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* greeting */
#aboutus .greeting-block {
  padding: 100px 0;
}
#aboutus .greeting-block .name {
  font-weight: 600;
  text-align: right;
  margin-top: 30px;
}
#aboutus .greeting-block .name span {
  font-size: 2.4rem;
}
@media(max-width:768px){
#aboutus .greeting-block {
  padding: 60px 0;
}
#aboutus .greeting-block .name {
  margin-top: 10px;
}
#aboutus .greeting-block .name span {
  font-size: 2rem;
}
}

/* philosophy */
#aboutus .philosophy-block {
  position: relative;
}
#aboutus .philosophy-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(-100%);
}
#aboutus .philosophy-block.animated-bg-box.active::before {
    border-radius: 0 50px 50px 0;
}
#aboutus .philosophy-blockinner {
  position: relative;
  background: url(images/about/philosophy-illust01.png) bottom right 25% no-repeat;
  background-size: 255px auto;
  padding: 80px 20px 140px;
  z-index: 1;
}
#aboutus .philosophy-block .slogan {
  color: #053ca6;
  font-size: 6rem;
  font-family: "ah-hakushu-yan-zhenqing", sans-serif;
  font-weight: 900;
  font-style: normal;
  line-height: 1.4;
}
#aboutus .philosophy-block .box01 {
  width: 80%;
}
#aboutus .philosophy-block .box01 .item {
  font-weight: bold;
  margin-bottom: 50px;
}
#aboutus .philosophy-block .box01 .item h3 {
  position: relative;
  color: #053ca6;
  font-size: 2.2rem;
  padding-left: 45px;
  margin-bottom: 10px;
}
#aboutus .philosophy-block .box01 .item h3::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  background: url("images/common/icon-deco01.png") center no-repeat;
  background-size: cover;
  width: 42px;
  height: 50px;
}
#aboutus .philosophy-block .box01 .item ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
}
#aboutus .philosophy-block .box01 .item ul li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #053ca6;
}
@media(max-width:768px){
#aboutus .philosophy-block::before {
  width: 95%;
  border-radius: 0 50px 50px 0;
}
#aboutus .philosophy-blockinner {
  background: url(images/about/philosophy-illust01.png) bottom right 25% no-repeat;
  background-size: 155px auto;
  padding: 40px 40px 80px 20px;
}
#aboutus .philosophy-block .slogan {
  font-size: 3rem;
  margin-bottom: 20px;
}
#aboutus .philosophy-block .box01 {
  width: 100%;
}
#aboutus .philosophy-block .box01 .item {
  margin-bottom: 30px;
}
#aboutus .philosophy-block .box01 .item h3 {
  font-size: 2rem;
  padding-left: 40px;
}
#aboutus .philosophy-block .box01 .item h3::before {
  top: -5px;
  left: 0;
  width: 32px;
  height: 40px;
}
}

/* profile */
#aboutus .profile-block {
  padding: 100px 0;
}
#aboutus .profile-block .parallax-wrap {
  margin-top: 60px;
}
#aboutus .profile-block .parallax-section .text01 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
@media(max-width:768px){
#aboutus .profile-block {
  padding: 60px 0;
}
#aboutus .profile-block .parallax-section {
  min-height: 450px;
}
#aboutus .profile-block .parallax-section .text01 {
  font-size: 2rem;
}
}


#aboutus .parallax-section::after {
  display: none;
}


/* history */
#aboutus .history-block {
  position: relative;
  padding: 0 0 100px;
}
@media(max-width:768px){
#aboutus .history-block {
  padding: 0 0 60px;
}
#aboutus .history-block .table-box {
  padding: 0;
}
}

/* access */
#aboutus .access-block {
  position: relative;
  padding: 100px 0;
  margin-bottom: 100px;
}
#aboutus .access-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(100%);
}
#aboutus .access-block.animated-bg-box.active::before {
  border-radius: 50px 0 0 50px;
}
#aboutus .access-block .text-box ul li {
  list-style: none;
  padding: 10px 0 10px 50px;
}
#aboutus .access-block .text-box ul li:nth-of-type(1) {
  background: url(images/common/icon-car.png) center left no-repeat;
  background-size: 40px auto;
  border-bottom:  solid 1px #808080;
}
#aboutus .access-block .text-box ul li:nth-of-type(2) {
  background: url(images/common/icon-train.png) center left no-repeat;
  background-size: 35px auto;
}
#aboutus .access-block .map-box {
  position: relative;
  background: #dae2f2;
  width: 80%;
  padding: 80px 10%;
  margin: 100px 20px 0 auto;
}
#aboutus .access-block .map-box::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 50px;
  background: url("images/about/access-illust01.png") center no-repeat;
  background-size: cover;
  width: 254px;
  height: 108px;
}
#aboutus .access-block .map-box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  right: 50px;
  background: url("images/about/access-illust02.png") center no-repeat;
  background-size: cover;
  width: 214px;
  height: 94px;
}
@media(max-width:768px){
#aboutus .access-block {
  padding: 60px 0;
  margin-bottom: 60px;
}
#aboutus .access-block::before {
  width: 95%;
}
#aboutus .access-blockinner {
  padding: 0 20px 0 40px;
}
#aboutus .access-blockinner .wrap1100 {
  padding: 0;
}
#aboutus .access-block .map-box {
  border-radius: 30px;
  width: 100%;
  padding: 40px 20px;
  margin-top: 80px;
}
#aboutus .access-block .map-box::before {
  width: 164px;
  height: 74px;
}
#aboutus .access-block .map-box::after {
  bottom: -20px;
  right: 30px;
  width: 134px;
  height: 55px;
}
}




/*------------------------------------------------------------------------------------------------------------------------------------------

	事業情報
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* strength */
#business .strength-block {
  padding: 100px 0;
}
#business .strength-block img {
  border-radius: 20px;
}
#business .strength-block .ttl-box .en-ttl {
  font-size: 7rem;
}
#business .strength-block .box01-ttl-box {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 29px 20px 20px;
  margin: 80px 0;
}
#business .strength-block .box01-ttl-box.animated-bg-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  background: linear-gradient(to left, #053ca6, #053ca6);
  border-radius: 0 20px 20px 0;
  transform: translateX(-100%);
}
#business .strength-block .box01-ttl-box.animated-bg-box.active::after {
  transform: translateX(0);
  transition: transform 2s ease;
  z-index: -1;
}
#business .strength-block .box01-ttl-box .en-text {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
#business .strength-block .box01-ttl-box h2 {
  font-size: 2.2rem;
}
@media(max-width:768px){
#business .strength-block {
  padding: 60px 0;
}
#business .strength-block .ttl-box .en-ttl {
  font-size: 4.5rem;
}
#business .strength-block .box01-ttl-box {
  padding: 19px 10px 10px;
  margin: 30px 0;
}
#business .strength-block .box01-ttl-box .en-text {
  font-size: 2rem;
}
#business .strength-block .box01-ttl-box h2 {
  font-size: 1.6rem;
}
}

/* strength 核となる3つの技術 */
#business .strength-block .technologies-boxinner .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#business .strength-block .technologies-box .flex-left {
  position: relative;
  width: 45%;
}
#business .strength-block .technologies-box .flex-right {
  display: flex;
  align-items: center;
  width: 50%;
}
@media(max-width:768px){
#business .strength-block .technologies-box .flex-left {
  width: 100%;
  margin-bottom: 30px;
}
#business .strength-block .technologies-box .flex-right {
  width: 100%;
}
}

#business .strength-block .technologies-box .flex-left::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url(images/common/bg-deco01.png) center no-repeat;
  background-size: 80% auto;
  transform: translate(-50%, -50%);
  animation: rotateInfinite 50s linear infinite;/*回転*/
}
#business .strength-block .technologies-box .flex-left .text01 {
  position: relative;
  color: #053ca6;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  padding: 20px 0 10px;
}
#business .strength-block .technologies-box .flex-left .item:nth-of-type(1) {
  justify-content: center;
}
#business .strength-block .technologies-box .flex-left .item:nth-of-type(2) {
  justify-content: space-between;
}
#business .strength-block .technologies-box .flex-left .item .electronics {
  background: url(images/home/technologies-img01.png) center no-repeat;
  background-size: cover;
}
#business .strength-block .technologies-box .flex-left .item .mechatronics {
  background: url(images/home/technologies-img02.png) center no-repeat;
  background-size: cover;
}
#business .strength-block .technologies-box .flex-left .item .software {
  background: url(images/home/technologies-img03.png) center no-repeat;
  background-size: cover;
}
#business .strength-block .technologies-box .flex-left .item .box02 {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  width: 45%;
  overflow: hidden;
}
#business .strength-block .technologies-box .flex-left .item .box02 > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  margin: 0;
  padding: 0;
  width: 100%;
  word-wrap: break-word;
}
#business .strength-block .technologies-box .flex-left .item .box02 .text-box {
  background-color: rgb(208,218,238,0.9);
  padding: 5px 0;
}
#business .strength-block .technologies-box .flex-left .item .box02 .en-text {
  color: #053ca6;
  font-size: 1.2rem;
  text-align: center;
}
#business .strength-block .technologies-box .flex-left .item .box02 h2 {
  color: #1a1a1a;
  font-size: 1.4rem;
  text-align: center;
}
#business .strength-block .technologies-box .flex-right dl dt {
  color: #053ca6;
  font-size: 2.2rem;
  font-weight: 800;
}
#business .strength-block .technologies-box .flex-right dl dd {
  margin-bottom: 30px;
}


/* strength こんな時は東海テクノ! */
#business .strength-block .timetocall-box .item {
  border: solid 2px #053ca6;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
}
#business .strength-block .timetocall-box .item-ttl-box {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48%;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-right {
  width: 48%;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-left h3 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  padding-top: 80px;
}
#business .strength-block .timetocall-box .item:nth-of-type(1) .flex-left h3 {
  background: url(images/business/num01.png) center top no-repeat;
  background-size: auto 70px;
}
#business .strength-block .timetocall-box .item:nth-of-type(2) .flex-left h3 {
  background: url(images/business/num02.png) center top no-repeat;
  background-size: auto 70px;
}
#business .strength-block .timetocall-box .item:nth-of-type(3) .flex-left h3 {
  background: url(images/business/num03.png) center top no-repeat;
  background-size: auto 70px;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-left .text01 {
  color: #d2c700;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
@media(max-width:768px){
#business .strength-block .timetocall-box .item {
  padding: 20px 10px;
  margin-bottom: 30px;
}
#business .strength-block .timetocall-box .item-ttl-box {
  margin-bottom: 20px;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-left {
  width: 100%;
  margin-bottom: 10px;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-right {
  width: 100%;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-left h3 {
  font-size: 2rem;
  padding-top: 80px;
}
#business .strength-block .timetocall-box .item-ttl-box .flex-left .text01 {
  font-size: 1.6rem;
}
}

#business .strength-block .timetocall-box .timetocall02 .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#business .strength-block .timetocall-box .timetocall02 .flex-box {
  font-size: 1.4rem;
  background: #c1cee9;
  border-radius: 10px;
  width: 31%;
  padding: 20px 15px;
}
#business .strength-block .timetocall-box .timetocall02 .flex-box h4 {
  color: #053ca6;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media(max-width:768px){
#business .strength-block .timetocall-box .timetocall02 .flex-box {
  width: 100%;
  padding: 30px 20px;
  margin-bottom: 10px;
}
#business .strength-block .timetocall-box .timetocall02 .flex-box h4 {
  margin-bottom: 10px;
}
}

#business .strength-block .timetocall-box .timetocall03 dl.flow-list {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 5%;
  left: 50px;
  background: #053ca6;
  width: 2px;
  height: 90%;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: relative;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
  margin: 10px 0;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt span {
  font-size: 4rem;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt.blue01 {
  background: #29abe2;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt.blue02 {
  background: #0081cc;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt.blue03 {
  background: #005bac;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt.blue04 {
  background: #053ca6;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt > div {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  margin: 0;
  padding: 0;
  width: 100%;
  word-wrap: break-word;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dd {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #cccccc;
  padding: 0 0 20px 20px;
  margin: 10px 0;
}
@media(max-width:768px){
#business .strength-block .timetocall-box .timetocall03 dl.flow-list {
  grid-template-columns: 55px 1fr;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list::before {
  left: 27px;
  height: 90%;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt {
  font-size: 1.2rem;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt span {
  font-size: 2rem;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dt > div {
  top: 60%;
}
#business .strength-block .timetocall-box .timetocall03 dl.flow-list dd {
  padding: 0 0 10px 10px;
  margin: 10px 0;
}
}



/* business */
#business .business-block {
  position: relative;
}
#business .business-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(-100%);
}
#business .business-block.animated-bg-box.active::before {
    border-radius: 0 50px 50px 0;
}
#business .business-blockinner {
  position: relative;
  background: url("images/business/business-illust01.png") bottom left 80% no-repeat;
  background-size: 302px auto;
  padding: 80px 20px;
  z-index: 1;
}
#business .business-block .box01 {
  width: 80%;
  margin-top: 80px;
}
#business .business-block .box01 .item {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#business .business-block .box01 .item .flex-left {
  width: 35%;
}
#business .business-block .box01 .item .flex-right {
  width: 62%;
}
#business .business-block .box01 .item .flex-left img {
  border-radius: 20px;
}
#business .business-block .box01 .item .flex-right h3 {
  font-size: 2.2rem;
}
@media(max-width:768px){
#business .business-block::before {
  width: 95%;
  border-radius: 0 50px 50px 0;
}
#business .business-blockinner {
  background: url("images/business/business-illust01.png") bottom left 90% no-repeat;
  background-size: 152px auto;
  padding: 40px 40px 80px 20px;
}
#business .business-block .box01 {
  width: 100%;
  margin-top: 40px;
}
#business .business-block .box01 .item .flex-left {
  width: 100%;
  margin-bottom: 20px;
}
#business .business-block .box01 .item .flex-right {
  width: 100%;
}
#business .business-block .box01 .item .flex-right h3 {
  font-size: 2rem;
}
}


/* clients */
#business .clients-block {
  padding: 100px 0;
}
#business .clients-block .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#business .clients-block ul.flex-box {
  position: relative;
  width: 45%;
  margin-top: 20px;
  z-index: 1;
}
#business .clients-block ul.flex-box li {
  list-style: none;
  border-bottom: solid 1px #808080;
  padding: 10px 0;
}
@media(max-width:768px){
#business .clients-block {
  padding: 60px 0;
}
#business .clients-block ul.flex-box {
  width: 100%;
  margin-top: 0;
}
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	企業活動
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* point */
#csr .point-box {
  padding: 100px 20px;
}
#csr .point-boxinner {
  color: #fff;
  background: linear-gradient(to right, rgba(0, 76, 172, 1), rgba(21, 153, 217, 1));
  border-radius: 50px;
  padding: 50px;
}
@media(max-width:768px){
#csr .point-box {
  padding: 60px 20px;
}
#csr .point-boxinner {
  border-radius: 30px;
  padding: 20px;
}
}


/* sdgs */
#csr .sdgs-block {
  position: relative;
  padding: 0 0 100px;
}
#csr .sdgs-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(100%);
}
#csr .sdgs-block.animated-bg-box.active::before {
  border-radius: 50px 0 0 50px;
}
#csr .sdgs-block .sdgs-blockinner {
  position: relative;
  padding: 80px 20px 0;
  z-index: 1;
}
#csr .sdgs-block .box01 {
  width: 80%;
  margin: 0 0 0 auto;
}
#csr .sdgs-block .img-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
#csr .sdgs-block .certificate-box {
  text-align: center;
  margin: 50px 0;
}
#csr .sdgs-block .certificate-box img {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
#csr .sdgs-block .text01 {
  text-align: center;
}
@media(max-width:768px){
#csr .sdgs-block {
  padding: 0 0 60px;
}
#csr .sdgs-block::before {
  width: 95%;
}
#csr .sdgs-block .sdgs-blockinner {
  padding: 40px 0 0 20px;
}
#csr .sdgs-block .box01 {
  width: 100%;
  padding: 0 20px;
}
#csr .sdgs-block .certificate-box {
  margin: 20px 0;
}
}


/* ac-cert */
#csr .ac-cert-block {
  padding: 80px 0 0;
}
#csr .ac-cert-block .ttl-box .en-ttl {
  font-size: 6rem;
}
#csr .ac-cert-block img {
  border-radius: 20px;
}
#csr .ac-cert-block {
  position: relative;
  margin-bottom: 100px;
}
#csr .ac-cert-block .box01 {
  margin-top: 80px;
}
#csr .ac-cert-block .box01 .flex-container {
  flex-wrap: wrap;
  justify-content: space-between;
}
#csr .ac-cert-block .box01 .item {  
  width: 20%;
}
#csr .ac-cert-block .box01 .item img {
  border-radius: 0;
}
#csr .ac-cert-block .box01 .item04 img {
  border-radius: 20px;
}
#csr .ac-cert-block .box01 .item h3 {
  font-size: 1.8rem;
  text-align: center;
  margin: 20px 0 0;
}
#csr .ac-cert-block .box01 .item .flex-right dl {
  display: grid;
  grid-template-columns: 100px 1fr;
}
#csr .ac-cert-block .box01 .item .flex-right dl dt span {
  color: #fff;
  background: #053ca6;
  padding: 0 10px;
}
@media(max-width:768px){
#csr .ac-cert-block {
  padding: 40px 0 0;
}
#csr .ac-cert-block .ttl-box .en-ttl {
  font-size: 3.6rem;
}
#csr .ac-cert-block {
  margin-bottom: 60px;
}
#csr .ac-cert-block .box01 {
  margin-top: 40px;
  padding: 0;
}
#csr .ac-cert-block .box01 .item {  
  width: 48%;
  margin-bottom: 30px;
}
#csr .ac-cert-block .box01 .item .flex-left {
  width: 100%;
}
#csr .ac-cert-block .box01 .item .flex-right {
	text-align: center;
	justify-content: center;
  width: 100%;
}
#csr .ac-cert-block .box01 .item h3 {
  font-size: 1.6rem;
}
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	採用情報
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* intro */
#recruit .intro-block {
  padding: 100px 0;
}
#recruit .intro-block .catch {
  position: relative;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(to right, rgba(0, 76, 172, 1), rgba(21, 153, 217, 1));
  border-radius: 20px;
  padding: 30px;
  margin: 50px 0 30px;
}
#recruit .intro-block .catch::before {
  content: "";
  display: block;
  position: absolute;
  top: -32px;
  left: 10px;
  background: url(images/recruit/recruit-intro01.png) center no-repeat;
  background-size: cover;
  width: 65px;
  height: 75px;
  animation: floatUpDown 3s ease-in-out infinite;
}
#recruit .intro-block .catch::after {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  right: -60px;
  background: url(images/recruit/recruit-intro02.png) center no-repeat;
  background-size: cover;
  width: 106px;
  height: 208px;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#recruit .intro-block .text02 {
  color: #053ca6;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media(max-width:768px){
#recruit .intro-block {
  padding: 60px 0;
}
#recruit .intro-block .catch {
  font-size: 1.8rem;
  padding: 20px 30px 20px 20px;
  margin: 40px 0 20px;
}
#recruit .intro-block .catch::before {
  left: 0px;
  width: 45px;
  height: 55px;
}
#recruit .intro-block .catch::after {
  top: -30px;
  right: -20px;
  width: 57px;
  height: 123px;
}
#recruit .intro-block .text02 {
  font-size: 1.8rem;
}
}


/* interview */
#recruit .interview-block {
  padding: 0 0 100px;
}
#recruit .interview-block .qa-box {
  position: relative;
  background: #fff url(images/common/icon-Q.png) top -20px left -20px no-repeat;
  background-size: 135px;
  box-shadow: 0 0 20px rgba(153, 153, 153, 0.3);
  border-radius: 50px;
  margin-bottom: 50px;
  overflow: hidden;
}
#recruit .interview-block .qa-box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#recruit .interview-block .qa-box:nth-of-type(1)::after {
  background: url(images/recruit/interview-img02.png) bottom right no-repeat;
  background-size: 240px auto;
}
#recruit .interview-block .qa-box:nth-of-type(2)::after {
  background: url(images/recruit/interview-img03.png) bottom right no-repeat;
  background-size: 240px auto;
}
#recruit .interview-block .qa-box:nth-of-type(3)::after {
  background: url(images/recruit/interview-img04.png) bottom right no-repeat;
  background-size: 240px auto;
}
#recruit .interview-block .qa-box > div {
  position: relative;
  padding: 50px 220px 50px 50px;
  z-index: 1;
}
#recruit .interview-block .qa-box h3 {
  color: #053ca6;
  font-size: 2rem;
  padding: 20px 0 0 80px;
  margin: 0 0 40px;
}
#recruit .interview-block .qa-box.qa01 ul {
  margin-top: 20px;
}
#recruit .interview-block .qa-box.qa01 ul li {
  color: #053ca6;
  list-style: none;
  margin-bottom: 20px;
}
#recruit .interview-block .qa-box.qa01 ul li span {
  position: relative;
  border: solid 1px #053ca6;
  padding: 5px 20px;
}
#recruit .interview-block .qa-box.qa01 ul li span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  background: url("images/common/icon-arrow01.png") bottom left 20px no-repeat;
  background-size: auto 10px;
  width: 100%;
  height: 10px;
}
#recruit .interview-block .qa-box.qa01 ul li:nth-last-of-type(1) span::after {
  display: none;
}
#recruit .interview-block .qa-box.qa02 ul {
  margin: 20px 0;
}
#recruit .interview-block .qa-box.qa02 ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
}
#recruit .interview-block .qa-box.qa02 ul li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: #053ca6;
}
@media(max-width:768px){
#recruit .interview-block {
  padding: 0 0 60px;
}
#recruit .interview-block .qa-box {
  background: #fff url(images/common/icon-Q.png) top -10px left -10px no-repeat;
  background-size: 75px;
  box-shadow: 0 0 20px rgba(153, 153, 153, 0.3);
  border-radius: 20px;
  margin-bottom: 50px;
}
#recruit .interview-block .qa-box > div {
  position: relative;
	background: url("images/common/logo-blue-tin.png") left 10px bottom 50px no-repeat;
	background-size: 60%;
  padding: 50px 20px 160px;
}
#recruit .interview-block .qa-box > div p {
  grid-column: 1 / 2;
}
#recruit .interview-block .qa-box:nth-of-type(1)::after {
  background: url(images/recruit/interview-img02.png) bottom right no-repeat;
  background-size: 140px auto;
}
#recruit .interview-block .qa-box:nth-of-type(2)::after {
  background: url(images/recruit/interview-img03.png) bottom right no-repeat;
  background-size: 140px auto;
}
#recruit .interview-block .qa-box:nth-of-type(3)::after {
  background: url(images/recruit/interview-img04.png) bottom right no-repeat;
  background-size: 140px auto;
}
#recruit .interview-block .qa-box h3 {
  font-size: 1.8rem;
  padding: 0 0 0 50px;
  margin: 0 0 20px;
}
}
@media(max-width:480px){
#recruit .interview-block .qa-box > div {
	background: url("images/common/logo-blue-tin.png") left 10px bottom 70px no-repeat;
	background-size: 60%;
}
}


/* benefits */
#recruit .benefits-block {
  position: relative;
}
#recruit .benefits-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(-100%);
}
#recruit .benefits-block.animated-bg-box.active::before {
    border-radius: 0 50px 50px 0;
}
#recruit .benefits-blockinner {
  position: relative;
  padding: 80px 20px;
  z-index: 1;
}
#recruit .benefits-block .box01 {
  width: 80%;
  margin-top: 80px;
}
#recruit .benefits-block .box01 .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
#recruit .benefits-block .box01 .flex-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 100px 30px 30px;
  margin-bottom: 80px;
  width: 31%;
}
#recruit .benefits-block .box01 .flex-box::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 130px;
}
#recruit .benefits-block .box01 .flex-box:nth-of-type(1):before {
  background: url(images/recruit/benefits-icon01.png) top center no-repeat;
  background-size: auto 100%;
}
#recruit .benefits-block .box01 .flex-box:nth-of-type(2):before {
  background: url(images/recruit/benefits-icon02.png) top center no-repeat;
  background-size: auto 100%;
}
#recruit .benefits-block .box01 .flex-box:nth-of-type(3):before {
  background: url(images/recruit/benefits-icon03.png) top center no-repeat;
  background-size: auto 100%;
}
#recruit .benefits-block .box01 .flex-box:nth-of-type(4):before {
  background: url(images/recruit/benefits-icon04.png) top center no-repeat;
  background-size: auto 100%;
}
#recruit .benefits-block .box01 .flex-box:nth-of-type(5):before {
  background: url(images/recruit/benefits-icon05.png) top center no-repeat;
  background-size: auto 100%;
}
#recruit .benefits-block .box01 .flex-box:nth-of-type(6):before {
  background: url(images/recruit/benefits-icon06.png) top center no-repeat;
  background-size: auto 100%;
}
#recruit .benefits-block .box01 .flex-box h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}
#recruit .benefits-block .box01 .flex-box h3 span {
  position: relative;
}
#recruit .benefits-block .box01 .flex-box h3 span::before,
#recruit .benefits-block .box01 .flex-box h3 span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: #000;
  transform: rotate(60deg);
}
#recruit .benefits-block .box01 .flex-box h3 span::before {
  left: -25px;
  transform: rotate(60deg);
}
#recruit .benefits-block .box01 .flex-box h3 span::after {
  right: -25px;
  transform: rotate(-45deg);
}
#recruit .benefits-block .img-box02 {
  margin: 0;
}
@media(max-width:768px){
#recruit .benefits-block {
  margin-bottom: 60px;
}
#recruit .benefits-block::before {
  width: 95%;
  border-radius: 0 50px 50px 0;
}
#recruit .benefits-blockinner {
  padding: 40px 40px 40px 20px;
}
#recruit .benefits-block .box01 {
  width: 100%;
  margin-top: 60px;
}
#recruit .benefits-block .box01 .flex-box {
  padding: 60px 30px 30px;
  margin-bottom: 50px;
  width: 100%;
}
#recruit .benefits-block .box01 .flex-box::before {
  top: -30px;
  height: 80px;
}
#recruit .benefits-block .box01 .flex-box h3 {
  font-size: 2rem;
}
#recruit .benefits-block .img-box02 {
  padding: 0;
}
}


/* job */
#recruit .job-block {
  padding: 100px 0;
}
#recruit .job-block img {
  border-radius: 20px;
}
#recruit .job-block .box01 {
  margin-top: 80px;
}
#recruit .job-block .box01 .item .flex-container {
  position: relative;
  justify-content: space-between;
  flex-wrap: wrap;
  border: solid 2px #053ca6;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 50px;
}
#recruit .job-block .box01 .item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  right: -60px;
  width: 190px;
  height: 177px;
}
#recruit .job-block .box01 .item:nth-of-type(1)::after {
  background: url(images/recruit/job-illust01.png) center no-repeat;
  background-size: cover;
  animation: floatUpDown 3s ease-in-out infinite;
}
#recruit .job-block .box01 .item:nth-of-type(2)::after {
  background: url(images/recruit/job-illust02.png) center no-repeat;
  background-size: cover;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#recruit .job-block .box01 .item:nth-of-type(3)::after {
  bottom: -50px;
  background: url(images/recruit/job-illust03.png) center no-repeat;
  background-size: cover;
  animation: floatUpDown 3s ease-in-out infinite;
}
#recruit .job-block .box01 .item:nth-of-type(4)::after {
  right: -30px;
  background: url(images/recruit/job-illust04.png) center no-repeat;
  background-size: cover;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#recruit .job-block .box01 .item .flex-left {
  width: 46%;
}
#recruit .job-block .box01 .item .flex-right {
  width: 46%;
}
#recruit .job-block .box01 .item .flex-left h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
#recruit .job-block .box01 .item .flex-left .text01 {
  color: #053ca6;
  font-size: 1.8rem;
  font-weight: 600;
}
@media(max-width:768px){
#recruit .job-block {
  padding: 0 0 30px;
}
#recruit .job-block .box01 {
  margin-top: 20px;
}
#recruit .job-block .box01 .item {
  border-radius: 20px;
  padding: 30px 0 40px;
  margin-bottom: 10px;
}
#recruit .job-block .box01 .item::after {
  bottom: -40px;
  right: 0;
  width: 140px;
  height: 127px;
}
#recruit .job-block .box01 .item:nth-of-type(4)::after {
  right: 0;
}
#recruit .job-block .box01 .item .flex-container {
  padding: 20px;
  margin-bottom: 0;
}
#recruit .job-block .box01 .item .flex-left {
  width: 100%;
  margin-bottom: 10px;
}
#recruit .job-block .box01 .item .flex-right {
  width: 100%;
}
#recruit .job-block .box01 .item .flex-left h3 {
  font-size: 2rem;
}
#recruit .job-block .box01 .item .flex-left .text01 {
  font-size: 1.6rem;
}
}


/* entry */
#recruit .entry-block {
  padding: 100px 0 0;
}
#recruit .entry-block .link-box ul {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#recruit .entry-block .link-box ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  background: #053ca6 url(images/common/btn-more01.png) center right 20px no-repeat;
  background-size: 15px auto;
  border-radius: 100px;
  width: 48%;
  padding: 25px 35px 20px 15px;
  transition: background-color 0.3s ease, background-position 0.3s ease;
}
#recruit .entry-block .link-box ul li:hover {
  background: #053ca6 url(images/common/btn-more01.png) center right 15px no-repeat;
  background-size: 15px auto;
  transition: background-color 0.3s ease, background-position 0.3s ease;
}
#recruit .entry-block .link-box ul li:hover {
  background-color: #6cd4ff;
}
#recruit .entry-block .link-box ul li a {
  display: block;
  color: #fff;
}
#recruit .entry-block .link-box ul li a span {
  display:inline-block;
  transition: .5s;
}
#recruit .entry-block .link-box ul li:hover a span {
  transform: rotateX(360deg);
}
#recruit .entry-block .link-box ul li:nth-of-type(1) a span {
  background: url(images/common/icon-mail.png) center left no-repeat;
  background-size: 20px 15px;
  padding-left: 30px;
}
#recruit .entry-block .parallax-section {
  margin-top: 0;
}
#recruit .entry-block .parallax-section ul li {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  background: url(images/common/icon-arrow01.png) bottom center no-repeat;
  background-size: 40px 21px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  list-style: none;
}
#recruit .entry-block .parallax-section ul li:nth-last-of-type(1) {
  background: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
#recruit .entry-block .deco01 {
  width: 570px;
  margin: 30px auto 0;
}
@media(max-width:768px){
#recruit .entry-block {
  padding: 0;
}
#recruit .entry-block .link-box ul li {
  font-size: 1.6rem;
  border-radius: 50px;
  width: 100%;
  margin-bottom: 10px;
}
#recruit .entry-block .parallax-section ul li {
  font-size: 1.6rem;
  background: url(images/common/icon-arrow01.png) bottom center no-repeat;
  background-size: 20px 11px;
  padding-bottom: 15px;
  margin-bottom: 7px;
}
#recruit .entry-block .deco01 {
  width: 270px;
}
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	お問い合わせ
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* point */
#contact .point-box {
  padding: 100px 20px;
}
#contact .point-boxinner {
  color: #fff;
  background: linear-gradient(to right, rgba(0, 76, 172, 1), rgba(21, 153, 217, 1));
  border-radius: 50px;
  padding: 50px;
}
@media(max-width:768px){
#contact .point-box {
  padding: 60px 20px;
}
#contact .point-boxinner {
  border-radius: 30px;
  padding: 20px;
}
}


/* telfax */
#contact .telfax-block {
  padding: 0 0 100px;
}
#contact .telfax-block .telfax-blockinner {
  position: relative;
}
#contact .telfax-block .telfax-blockinner::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 70px;
  right: 30px;
  background: url("images/contact/telfax-illust01.png") center no-repeat;
  background-size: cover;
  width: 134px;
  height: 134px;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#contact .telfax-block .telfax-blockinner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -60px;
  right: -40px;
  background: url("images/contact/telfax-illust02.png") center no-repeat;
  background-size: cover;
  width: 160px;
  height: 160px;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#contact .telfax-block .text-tel,
#contact .telfax-block .text-fax {
  color: #c1272d;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
#contact .telfax-block .text-tel a {
  color: #c1272d;
  background: url(images/common/icon-tel.png) top 17px left no-repeat;
  background-size: 45px auto;
  padding-left: 55px;
}
#contact .telfax-block .text-fax span {
  background: url(images/common/icon-fax.png) top 17px left no-repeat;
  background-size: 41px auto;
  padding-left: 55px;
}
@media(max-width:768px){
#contact .telfax-block {
  padding: 0 0 130px;
}
#contact .telfax-block .telfax-blockinner::before {
  bottom: -110px;
  right: 100px;
  width: 94px;
  height: 94px;
}
#contact .telfax-block .telfax-blockinner::after {
  bottom: -130px;
  right: 10px;
  width: 100px;
  height: 100px;
}
#contact .telfax-block .text-tel,
#contact .telfax-block .text-fax {
  font-size: 3rem;
}
#contact .telfax-block .text-tel a {
  background: url(images/common/icon-tel.png) top 7px left no-repeat;
  background-size: 32px auto;
  padding-left: 41px;
}
#contact .telfax-block .text-fax span {
  background: url(images/common/icon-fax.png) top 7px left no-repeat;
  background-size: 27px auto;
  padding-left: 35px;
}
}


/* enquiry */
#contact .enquiry-block {
  position: relative;
  padding: 100px 0;
  margin-bottom: 100px;
}
#contact .enquiry-block .ttl-box .en-ttl {
  font-size: 7rem;
}
#contact .enquiry-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(-100%);
}
#contact .enquiry-block.animated-bg-box.active::before {
    border-radius: 0 50px 50px 0;
}
#contact .enquiry-blockinner {
  position: relative;
  padding: 80px 20px 0;
  z-index: 1;
}
#contact .enquiry-block ul.catch li {
  padding-left: 30px;
}
#contact .enquiry-block span.required {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  background: #c1272d;
  border-radius: 3px;
  padding: 0 10px;
}
#contact .enquiry-block .box01 {
  width: 80%;
  margin-top: 80px;
}
#contact .enquiry-block .box01 h3 {
  font-size: 2.4rem;
  background: url(images/common/icon-mail-blue.png) top 3px left no-repeat;
  background-size: 40px auto;
  padding-left: 50px;
  margin-bottom: 30px;
}
#contact .enquiry-block .box01 dl dt {
  font-weight: 600;
}
#contact .enquiry-block .box01 dl dd {
  margin-bottom: 30px;
}
#contact .enquiry-block .box01 dl dd.bg-fff {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
}
#contact .enquiry-block .btn-send {
  text-align: center;
}
#contact .enquiry-block .btn-send span {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  text-align: center;
  background: #053ca6 url(images/common/btn-more01.png) center right 20px no-repeat;
  background-size: 15px auto;
  border-radius: 40px;
  transition: background-color 0.3s ease, background-position 0.3s ease;
}
#contact .enquiry-block .btn-send span:hover {
	color: #fff;
  background: #6cd4ff url(images/common/btn-more01.png) center right 15px no-repeat;
  background-size: 15px auto;
	opacity: 1;
}
#contact .enquiry-block .btn-send span input {
  min-width: 223px;
  padding: 10px 15px;
}
#contact .enquiry-block .btn-send span:hover input {
  transition: .5s;
  transform: rotateX(360deg);
}

@media screen and (max-width : 768px){
#contact .enquiry-block .btn-send span {
  font-size: 1.8rem;
  min-width: 223px;
  padding: 5px 10px;
}
}
@media(max-width:768px){
#contact .enquiry-block {
  padding: 60px 0;
  margin-bottom: 60px;
}
#contact .enquiry-block .ttl-box .en-ttl {
  font-size: 4.5rem;
}
#contact .enquiry-block::before {
  width: 95%;
  border-radius: 0 50px 50px 0;
}
#contact .enquiry-blockinner {
  padding: 0 40px 0 20px;
}
#contact .enquiry-block .box01 {
  width: 100%;
  margin-top: 40px;
}
#contact .enquiry-block .box01 h3 {
  font-size: 2rem;
  background: url(images/common/icon-mail-blue.png) top 3px left no-repeat;
  background-size: 30px auto;
  padding-left: 40px;
  margin-bottom: 20px;
}
#contact .enquiry-block .box01 dl dd {
  margin-bottom: 20px;
}
}


/* qa */
#contact .qa-block {
  padding: 100px 0;
}
#contact .qa-block .qa-box {
  position: relative;
  background: #fff url(images/common/icon-Q.png) top -20px left -20px no-repeat;
  background-size: 135px;
  box-shadow: 0 0 20px rgba(153, 153, 153, 0.3);
  border-radius: 50px;
  margin-bottom: 50px;
  overflow: hidden;
}
#contact .qa-block .qa-box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
#contact .qa-block .qa-box > div {
  position: relative;
  padding: 50px 220px 50px 50px;
  z-index: 1;
}
#contact .qa-block .qa-box:nth-of-type(1)::after {
  background: url(images/contact/qa-ollust01.png) bottom right no-repeat;
  background-size: 204px auto;
}
#contact .qa-block .qa-box:nth-of-type(2)::after {
  background: url(images/contact/qa-ollust02.png) bottom right no-repeat;
  background-size: 204px auto;
}
#contact .qa-block .qa-box:nth-of-type(3)::after {
  background: url(images/contact/qa-ollust03.png) bottom right no-repeat;
  background-size: 204px auto;
}
#contact .qa-block .qa-box h3 {
  color: #053ca6;
  font-size: 2rem;
  padding: 20px 0 0 80px;
  margin: 0 0 40px;
}
@media(max-width:768px){
#contact .qa-block {
  padding: 60px 0 20px;
}
#contact .qa-block .qa-box {
  background: #fff url(images/common/icon-Q.png) top -10px left -10px no-repeat;
  background-size: 75px;
  box-shadow: 0 0 20px rgba(153, 153, 153, 0.3);
  border-radius: 20px;
  margin-bottom: 50px;
}
#contact .qa-block .qa-box > div {
  padding: 50px 20px 140px 20px;
}
#contact .qa-block .qa-box:nth-of-type(1)::after {
  background: url(images/contact/qa-ollust01.png) bottom center no-repeat;
  background-size: 124px auto;
}
#contact .qa-block .qa-box:nth-of-type(2)::after {
  background: url(images/contact/qa-ollust02.png) bottom center no-repeat;
  background-size: 124px auto;
}
#contact .qa-block .qa-box:nth-of-type(3)::after {
  background: url(images/contact/qa-ollust03.png) bottom center no-repeat;
  background-size: 124px auto;
}
#contact .qa-block .qa-box h3 {
  font-size: 1.8rem;
  padding: 0 0 0 50px;
  margin: 0 0 20px;
}
}


/* privacy */
#contact .privacy-block {
  position: relative;
  padding: 100px 0;
  margin-bottom: 100px;
}
#contact .privacy-block .ttl-box .en-ttl {
  font-size: 7rem;
}
#contact .privacy-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0;
  background: rgb(193, 206, 233);
  transform: translateX(-100%);
}
#contact .privacy-block.animated-bg-box.active::before {
  border-radius: 0 50px 50px 0;
}
#contact .privacy-blockinner {
  position: relative;
  padding: 80px 20px 0;
  z-index: 1;
}
#contact .privacy-block .box01 {
  width: 80%;
  margin-top: 80px;
}
#contact .privacy-block .box01 h3 {
  font-size: 2.4rem;
  background: url(images/common/icon-privacy.png) top 2px left no-repeat;
  background-size: 38px auto;
  padding: 5px 0 5px 50px;
  margin-bottom: 30px;
}
#contact .privacy-block .box01 .text01 {
  margin-bottom: 30px;
}
#contact .privacy-block .box01 dl dt {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
#contact .privacy-block .box01 dl dd {
  margin-bottom: 50px;
}
#contact .privacy-block .box01 dl dd ul li {
  list-style-position: inside;
  margin: 10px 0 0;
}
#contact .privacy-block .box01 dl dd .name {
  font-size: 2rem;
  font-weight: 600;
  margin: 30px 0 10px;
}
#contact .privacy-block .box01 dl dd a {
  color: #1a1a1a;
}
#contact .privacy-block .box01 dl dd a:hover {
  color: #6cd4ff;
}
@media(max-width:768px){
#contact .privacy-block {
  padding: 60px 0 40px;
  margin-bottom: 60px;
}
#contact .privacy-block .ttl-box .en-ttl {
  font-size: 4.5rem;
}
#contact .privacy-block::before {
  width: 95%;
  border-radius: 0 50px 50px 0;
}
#contact .privacy-blockinner {
  padding: 0 40px 0 20px;
}
#contact .privacy-block .box01 {
  width: 100%;
  margin-top: 40px;
}
#contact .privacy-block .box01 h3 {
  font-size: 2rem;
  background: url(images/common/icon-privacy.png) top 5px left no-repeat;
  background-size: 28px auto;
  padding: 5px 0 5px 40px;
  margin-bottom: 20px;
}
#contact .privacy-block .box01 dl dt {
  font-size: 2rem;
}
#contact .privacy-block .box01 dl dd {
  margin-bottom: 30px;
}
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	フォーム
	
------------------------------------------------------------------------------------------------------------------------------------------*/
.wpcf7-spinner {
	position: absolute;
	top: 30%;
  right: 7px;
	background: #fff;
	opacity: 1;
}
.wpcf7-spinner::before {
	background: #C1272D;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0 20px 0 0;
}


/*  */
.aptoenq_qa {
  margin: 0!important;
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	製品情報一覧
	
------------------------------------------------------------------------------------------------------------------------------------------*/
/* point */
#archive-products .point-box {
  padding: 100px 20px;
}
#archive-products .point-boxinner {
  color: #fff;
  background: linear-gradient(to right, rgba(0, 76, 172, 1), rgba(21, 153, 217, 1));
  border-radius: 50px;
  padding: 50px;
}
@media(max-width:768px){
#archive-products .point-box {
  padding: 40px 20px 20px;
}
#archive-products .point-boxinner {
  border-radius: 30px;
  padding: 20px;
}
}

/* archive-block */
#archive-products .archive-block {
  padding: 0 0 100px;
}
#archive-products .archive-block .flex-container {
  flex-wrap: wrap;
}
#archive-products .archive-block a {
  position: relative;
  display: block;
  color: #1a1a1a;
  border: solid 1px #053ca6;
  border-radius: 20px;
  width: 32%;
  margin: 0 2% 40px 0;
}
#archive-products .archive-block a:nth-of-type(3n) {
  margin: 0 0 40px 0;
}
#archive-products .archive-block a:hover {
  opacity: 1;
  border: solid 1px #fff;
}
#archive-products .archive-block a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  background: url("images/common/btn-more02.png") center no-repeat;
  background-size: cover;
  width: 27px;
  height: 27px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
#archive-products .archive-block a:hover::after {
  background: url("images/common/btn-more02-hover.png") center no-repeat;
  background-size: cover;
  transform: scale(1.3);
  z-index: 3;
}
#archive-products .archive-block .flex-box {
  position: relative;
  border-radius: 20px;
  padding: 30px 30px 70px 30px;
  height: 100%;
  overflow: hidden;
}
#archive-products .archive-block .flex-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(to top, rgba(0, 104, 159, 0.5) 0%, rgba(132, 200, 168, 0.5) 50%);
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: top 0.4s ease;
}
#archive-products .archive-block .flex-box:hover::before {
  top: 0;
}
#archive-products .archive-block .flex-box .icatch {
  margin-bottom: 20px;
}
#archive-products .archive-block .flex-box .icatch img {
  border-radius: 20px;
  transition: transform 0.3s ease;
}
#archive-products .archive-block a:hover .flex-box .icatch img {
  transform: translateY(-10px);
}
#archive-products .archive-block .flex-box h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}
@media(max-width:768px){
#archive-products .archive-block {
  padding: 0 0 60px;
}
#archive-products .archive-block a {
  width: 100%;
  margin: 0 0 20px 0;
}
#archive-products .archive-block a:nth-of-type(3n) {
  margin: 0 0 20px 0;
}
#archive-products .archive-block a::after {
  bottom: 10px;
}
#archive-products .archive-block a .flex-box {
  padding: 30px 20px 40px 20px;
}
#archive-products .archive-block .flex-box .icatch {
  margin-bottom: 10px;
}
#archive-products .archive-block .flex-box h2 {
  font-size: 2rem;
}
}


/*------------------------------------------------------------------------------------------------------------------------------------------

	製品情報一覧
	
------------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 768px) {
#single-products .page-head .flex-left .en-ttl {
  font-size: 3rem;
}
}
@media (max-width: 480px) {
#single-products .page-head .flex-left .en-ttl {
  font-size: 2.6rem;
}
}

#single-products .single-block {
  padding: 100px 0;
}
@media(max-width:768px){
#single-products .single-block {
  padding: 60px 0;
}
}


#single-products .single-block h3.animated-bg-box {
	position: relative;
	background: none!important;
}
#single-products .single-block h3.animated-bg-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 2s ease;
  z-index: -1;
}
#single-products .single-block h3.h3ttl-tokuchou::after {
  background: linear-gradient(to left, #053ca6, #053ca6);
}
#single-products .single-block h3.h3ttl-shiyou::after {
  background: linear-gradient(to left, #006837, #006837);
}
#single-products .single-block h3.h3ttl-seisaku::after {
  background: linear-gradient(to left, #df6037, #df6037);
}
#single-products .single-block h3.h3ttl-katsuyou::after {
  background: linear-gradient(to left, #E7B800, #E7B800);
}
#single-products .single-block h3.h3ttl-kyouryoku::after {
  background: linear-gradient(to left, #754C24, #754C24);
}
#single-products .single-block h3.animated-bg-box.active {
  opacity: 1;
}
#single-products .single-block h3.animated-bg-box.active::after {
	border-radius: 0 10px 10px 0;
  transform: translateX(0);
}


/* kadence-block　設定 */
#single-products .single-block ul.wp-block-list li {
  margin: 0 0 10px 20px;
}
#single-products .single-block ol.wp-block-list li {
  margin: 0 0 20px 20px;
}
#single-products .single-block hr {
  opacity: 1!important;
}
#single-products .single-block .products-btn-more > span {
  background-image: url("images/common/btn-more01.png");
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 15px auto;
}
#single-products .single-block h5 .kb-adv-heading-icon {
  padding-top: 2px;
}


#single-products .single-block table.advgb-table-frontend {
  border: solid 1px #ccc!important;
}
#single-products .single-block table.advgb-table-frontend td {
  border: solid 1px #ccc!important;
}

#single-products .single-block .link-list a {
  color: #053ca6;
}
#single-products .single-block .link-list a::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 8px;
}
#single-products .single-block .link-list a:hover {
  color: #6cd4ff;
}


#single-products .single-block .wp-block-video video {
  border-radius: 20px;
  overflow: hidden;
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	お知らせ一覧
	
------------------------------------------------------------------------------------------------------------------------------------------*/
#archive-news {
  position: relative;
  background: none;
}
.news .cat-list {
  position: relative;
  padding: 80px 0;
  z-index: 1;
}
.news .cat-list ul li {
  list-style: none;
  margin-right: 1%;
  width: 16%;
}
.news .cat-list ul li a {
  display: block;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: #053ca6;
  border-radius: 50px;
  padding: 15px 10px;
  width: 100%;
  transition: background-color 0.3s ease, right 0.3s ease;
}
.news .cat-list ul li a:hover {
  background: #29abe2;
  transition: background-color 0.3s ease, right 0.3s ease;
}
.news .cat-list ul li a span {
  display: inline-block;
  transition: .5s;
}
.news .cat-list ul li a:hover span {
  transform: rotateX(360deg);
}
@media(max-width:768px){
.news .cat-list {
  padding: 20px 0;
}
.news .cat-list ul {
	justify-content: space-between;
	flex-wrap: wrap;
}
.news .cat-list ul li {
  margin-right: 0;
  width: 48%;
	margin-bottom: 10px;
}
.news .cat-list ul li a {
  font-size: 1.6rem;
  padding: 10px 10px;
}
}


#archive-news .archive-block {
  position: relative;
  margin-bottom: 50px;
}
#archive-news .archive-block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 85%;
  height: 100%;
  border-radius: 0 50px 50px 0;
  background: rgb(5, 60, 166);
}
#archive-news .archive-block::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url(images/common/bg-deco02.png) center center / auto 80% no-repeat;
  animation: 50s linear 0s infinite normal none running rotateInfinite;
  opacity: 0.5;
}
#archive-news .archive-inner {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
#archive-news .archive-inner::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  right: -140px;
  background: url(images/common/news-illust01.png) center no-repeat;
  background-size: cover;
  width: 148px;
  height: 145px;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
#archive-news .archive-block a {
  color: #fff;
}
#archive-news .archive-block dl {
  display: flex!important;
  border-bottom: solid 1px #e6e6e6;
  padding: 20px 0;
}
#archive-news .archive-block dl dt {
  color: #fff;
  padding-right: 20px;
	width: 220px;
}
#archive-news .archive-block dl dt span {
  display: inline-block;
  color: #053ca6;
  font-size: 1.2rem;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  width: 100px;
  padding: 2px 10px;
  margin-left: 10px;
}
#archive-news .archive-block a:hover {
  opacity: 1;
}
#archive-news .archive-block a:hover dl dt,
#archive-news .archive-block a:hover dl dd {
  color: #6cd4ff;
}
#archive-news .archive-block a:hover dl dt span {
  color: #fff;
  background: #6cd4ff;
}
@media(max-width:768px){
#archive-news .archive-block {
  margin-bottom: 80px;
}
#archive-news .archive-inner {
  padding: 0;
}
#archive-news .archive-inner::before {
  bottom: -70px;
  right: 0;
  width: 98px;
  height: 95px;
}
#archive-news .archive-block::before {
  width: 95%;
  border-radius: 0 30px 30px 0;
}
#archive-news .archive-inner {
  padding: 40px 40px 40px 20px;
}
#archive-news .archive-block dl {
	flex-wrap: wrap;
  padding: 10px 0;
}
#archive-news .archive-block dl dt {
  display: block;
  width: 100%;
  padding: 0px 20px 0 0;
}
}


/*------------------------------------------------------------------------------------------------------------------------------------------

	お知らせ詳細
	
------------------------------------------------------------------------------------------------------------------------------------------*/
#single-news .post-navigation .nav-previous a,
#single-news .post-navigation .nav-next a {
	font-weight: 600;
  background: none;
  padding: 10px 20px;
  margin: 0 10px;
}
#single-news .post-navigation .nav-previous a:hover,
#single-news .post-navigation .nav-next a:hover {
	color: #29abe2;
}
@media(max-width:768px){
#single-news .post-navigation {
  margin-top: 0;
}
}

#single-news .single-block {
  padding: 0 0 100px;
}
#single-news .single-block img {
  border-radius: 20px;
}
#single-news .single-block .article-ttl-box {
  position: relative;
  padding: 20px 0;
}
#single-news .single-block .article-ttl-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  background: linear-gradient(to left, #053ca6, #053ca6);
  border-radius: 0 20px 20px 0;
  transform: translateX(0);
  transition: transform 2s ease;
  z-index: -1;
}
#single-news .single-block .article-ttl-box div {
  position: relative;
  z-index: 1;
}
#single-news .single-block .day {
	display: inline-block;
  color: #ddd;
  margin-right: 15px;
}
#single-news .single-block .cat {
  display: inline-block;
  color: #053ca6;
  font-size: 1.2rem;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  width: auto;
  padding: 3px 10px 2px;
}
#single-news .single-block h3 {
  color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
	margin: 5px 0 0;
}
#single-news .single-block .icatch {
  margin-bottom: 30px;
}
#single-news .single-inner {
  padding: 50px 0;
}
#single-news .single-block .btn-more {
	text-align: center;
}
@media(max-width:768px){
#single-news .single-block {
  padding: 0;
}
#single-news .single-block h3 {
	font-size: 2rem;
}
#single-news .single-block {
  padding: 0 0 60px;
}
}



/*------------------------------------------------------------------------------------------------------------------------------------------

	404
	
------------------------------------------------------------------------------------------------------------------------------------------*/
#notFound .intro-block {
  padding: 80px 0;
}
#notFound .intro-block h3 {
	color: #053ca6;
	font-size: 4rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}
#notFound .intro-block .text01 {
	text-align: center;
}
#notFound .intro-block .btn-more {
  text-align: center;
}
@media (max-width:768px){
.error404 .sub-page .page-head .pagettl h2 {
  font-size: 1.7rem;
}
.error404 .sub-page .page-head .img-box {
  padding-top: 70px;
}
#notFound .intro-block {
  padding: 40px 0;
}
#notFound .intro-block h3 {
	font-size: 2rem;
	margin-bottom: 20px;
}
}


