﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css?v=1.000";
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;1,400;1,600&family=Oswald:wght@300;400;500&display=swap');*/
:root {
	--f-main: "Montserrat", sans-serif;
	--txt: #ffffff;
	--mcolor: #005baa;
	--scolor: #c82435;
}
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #ffc10d;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.5em;
}
#totop {
position: fixed;
    bottom: 10px;
    right: 2%;
    z-index: 10;
    margin-bottom: 0;
    width: 40px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #353535;
  font-family: 'Nunito', sans-serif;
}
#wrapper {
  overflow: hidden;
}
.container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
.h_top {
  background: var(--mcolor);
  color: #000;
  padding: 5px 0;
}
.h_top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h_top_info {
  display: flex;
}
.h_top_info li {
  font-size: 14px;
  position: relative;color: var(--txt);
}
.h_top_info li:before {
	filter: invert(1);
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/icon_tel.png") no-repeat center center/100% auto;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  top: 3px;
}
.h_top_info a {
  text-decoration: none;
  color: var(--txt);
}
.h_top_info li:not(:last-child) {
  margin-right: 40px;
}
.h_top_info li:nth-child(2):before {
  background-image: url("../W_images/icon_mail.png");
}
.h_top_social {
  margin: 0;
  display: flex;
}
.h_top_social a {
	filter: invert(1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  width: 25px;
  height: 25px;
  font-size: 14px;
  border-radius: 50%;
  margin-left: 7px;
}
.h_main {
  padding: 10px 0;
}
.h_main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0;
}
.gnavi {
  display: flex;
  font-family: 'Oswald', sans-serif;
}
.gnavi li {
  position: relative;
}
.gnavi > li{  margin: 0 5px;}
.gnavi > li > a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 10px;
  text-transform: uppercase;
  transition: all 0.3s;
  font-size: 16px;
}
.gnavi > li:hover > a {
  color: var(--scolor);
}
.submenu {
  position: absolute;
  width: 275px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
}
.submenu a {
  display: block;
  text-decoration: none;
  background: var(--mcolor);
  color: var(--txt);
  padding: 10px 20px;
  margin-top: 1px;
  font-size: 15px;
  transition: all 0.3s;
}

.submenu a:hover {
  opacity: 0.7;
}
.subsubmenu{
	 position: absolute;
	 width: 275px;
  left: calc(100% + 3px);
  top:0;
  z-index: 10;
  display: none;
}
.subsubmenu li:first-child a{ margin-top:0;}
.gnavi > li.over > a:after {
  content: '';
  position: relative;
  display: inline-block;
  border: solid black;
  border-width: 0 1px 1px 0;
  padding: 2px;
  margin-left: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -7px;
  transition: all 0.5s;
}
.gnavi > li:hover > a:after {
  border-color:  var(--scolor);
}
.h_search_icon{
	font-size: 20px;
    color: #ca2436;padding: 1px 5px;
}
.h_box_search{display:none;}
.h_search .form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.h_search .form img{
	filter: invert(1);
	
	
}
.h_search .button {
  flex-shrink: 0;
  background: var(--scolor);
  padding: 9px 10px;
  line-height: 0;
  border: none;
  height: 100%;
}
.h_search input {
  border: none;
  background: #f1f1f1;
  padding: 6px 10px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  line-height: 0;
  font-size:14px;min-width: 180px;
}
.h_search input::-webkit-input-placeholder {
  color: #939598;font-size:14px;
}
.h_search input::-moz-placeholder {
  color: #939598;font-size:14px;
}
.h_search input:-ms-input-placeholder {
  color: #939598;font-size:14px;
}
.h_search input:-moz-placeholder {
  color: #939598;font-size:14px;
}
@media screen and (min-width: 769px) {
  #header {
    -webkit-animation: remove-fixed 0.3s linear;
    -moz-animation: remove-fixed 0.3s linear;
    -ms-animation: remove-fixed 0.3s linear;
    animation: remove-fixed 0.3s linear;
  }
  #header.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-animation: header-fixed 0.6s;
    -moz-animation: header-fixed 0.6s;
    -ms-animation: header-fixed 0.6s;
    animation: header-fixed 0.6s;
  }
  #header.fixed .h_top {
    display: none;
  }
}
@keyframes remove-fixed {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }
}
@-webkit-keyframes remove-fixed {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }
}
@-moz-keyframes remove-fixed {
  0% {
    opacity: 0.9;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -moz-transform: translateY(20%);
    transform: translateY(20%)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
.mainvisual {
  background: url("../W_images/idx_main_bg.jpg") no-repeat center center/cover;
  color: #fff;
  position: relative;
  z-index: 2;
}
.main_slide.slick-initialized .slick-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
.main_itm_img {
  margin: 0;
  width: calc(50% - 55px);
}
.main_itm_img img {
  width: 100%;
}
.main_itm_txt01 {
  display: inline-block;
  background: var(--mcolor);
  color:  var(--txt);
  font-size: 20px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
}
.main_itm_txt02 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'UTMAvo';
}
.main_itm_txt02 > span:nth-child(1) {
  display: block;
  font-size: 140%;
  font-weight: bold;
  line-height: 1.5em;
}
.main_itm_txt02 > span:nth-child(2) {
  color: #ffc20e;
  font-weight: bold;
}
.main_itm_info {
  width: 50%;
}
.main_itm_txt03 {
  font-size: 20px;
  font-family: 'UTMAvo';
  text-align: justify;
}
.idx_btn {
  margin: 0;
}
.idx_btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--mcolor);
  border: 1px solid var(--mcolor);
  color: var(--txt);
  font-size: 16px;
  text-transform: uppercase;
  padding: 7px 7px 6px 20px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
}
.idx_btn a:after {
  width: 35px;
  height: 35px;
  background: url("../W_images/icon_arr.png") no-repeat center center #fff;
  border-radius: 5px;
  margin-left: 15px;
  content: '';
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.idx_btn a:hover {
  background-color: #fff;
  color: #000;
}
.idx_btn a:hover:after {
  background-image: url("../W_images/icon_arr_hv.png");
  background-color: #ffc20e;
}
.main_thumb.slick-initialized .slick-slide {
  height: 93px;
  background: #ebebeb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
  margin: 5px 15px;
  -webkit-box-shadow: 9px 0px 5px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 9px 0px 5px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 9px 0px 5px 0px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.main_thumb img {
  max-height: 100%;
}
.main_thumb {
  width: 470px;
  margin: 0 -15px;
  bottom: -45px;
  position: relative;
}
.slick-dots {
  display: flex;
justify-content: center;
    padding-bottom: 20px;
}
.slick-dots li {
  margin-left: 20px;
  line-height: 0;
}
.slick-dots li button {
  transition: all 0.3s;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border: 2px solid #8c8c8c;
  border-radius: 10px;
  text-indent: -50000px;
  display: block;
  background: transparent;
}
.slick-dots li.slick-active button, .slick-dots li:hover button {
  border-color: #fff;
    background: #fff;
}
.box01 {
  padding: 65px 0;
}
.box01 .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
.b01_img {
  width: calc(50% - 60px);
  margin: 0 75px 0 0;
  flex-shrink: 0;
  position: relative;
  text-align: center;
  padding: 53px;
}
.b01_img img {
  width: 100%;
}
.b01_img_border:before, .b01_img_border:after, .b01_img_border span:before, .b01_img_border span:after {
  content: '';
  position: absolute;
  width: 72px;
  height: 52px;
  border-color: #ccc;
  border-style: solid;
}
.b01_img_border:before {
  border-width: 1px 0 0 1px;
  border-top-left-radius: 15px;
  top: 0;
  left: 0;
}
.b01_img_border:after {
  border-width: 1px 1px 0 0;
  border-top-right-radius: 15px;
  top: 0;
  right: 0;
}
.b01_img_border span:before {
  border-width: 0 0 1px 1px;
  border-bottom-left-radius: 15px;
  bottom: 0;
  left: 0;
}
.b01_img_border span:after {
  border-width: 0 1px 1px 0;
  border-bottom-right-radius: 15px;
  bottom: 0;
  right: 0;
}
.b01_img:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff0000;
  top: 24px;
  right: 24px;
  border-radius: 50%;
}
.idx_h2 {
  font-size: 34px;
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 25px;
  color: var(--mcolor);
  font-family: 'UTMAvo';
}
.idx_h2 span {
  display: inline-block;
  font-size: 60%;
  padding: 0 30px;
  position: relative;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color:#ffc20e;
}
.idx_h2 span:before, .idx_h2 span:after {
  content: '';
  position: absolute;
  border-color: #ffc20e;
  border-style: solid;
  width: 30px;
  height: 42px;
}
.idx_h2 span:before {
  border-width: 2px 0 0 2px;
  top: 0;
  left: 0;
}
.idx_h2 span:after {
  border-width: 0 2px 2px 0;
  right: 0;
  bottom: 0;
}
.b01_ttl {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
}
.b01_txt {
  text-align: justify;
}
.box02 {
  background: url("../W_images/b02_bg.jpg") no-repeat center center/cover;
  padding: 60px 0;
}
.box02 .idx_h2 {
  text-align: center;
  text-transform: uppercase;
}
.b02_list {
	width:760px;margin: 0 auto;
  /*display: flex;
  justify-content: space-between;
  flex-wrap: wrap;*/
}
/*.b02_item {
  width: calc(50% - 15px);
  margin-bottom: 30px;
}*/
.b02_list .slick-arrow {
    position: absolute;
    z-index: 3;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: #d1d1d1a1;
    border: none;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    text-indent: -5000000px;
}
.b02_list .slick-arrow:after {
    content: '';
    position: absolute;
    background: url(/assets/images/chevron-left-solid.svg) no-repeat center center / 12px auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.b02_list .slick-prev {
    left: -60px;
}
.b02_list .slick-next {
    right: -60px;
}
.b02_list .slick-next:after {
    background-image: url(/assets/images/chevron-right-solid.svg);
}
.b02_list .slick-prev:hover, .b02_list .slick-next:hover {opacity:0.8;}
.b02_item a {
  display: flex;
  text-decoration: none;
  background: #fff;
  height: 100%;
  color: #353535;
  transition: all 0.3s;
}
.b02_itm_img {
  margin: 0;
  flex-shrink: 0;
  width: 30%;
}
.b02_itm_img img {
  width: 100%;height: 100%;
    object-fit: cover;
}
.b02_itm_ttl {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--txt);
  background: var(--mcolor);
  padding: 12px 30px;
  line-height: 1.5em;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
}
.b02_itm_txt {
  margin: 0;
  text-align: justify;
  padding: 15px 30px;
}
.b02_itm_txt span {
  color: var(--mcolor);
  display: inline-block;
  font-style: italic;
  font-size: 80%;
}
/*.b02_item a:hover {
  transform: translateY(-10px);
}*/

.solution_itm {background: #00000094;
    padding: 40px 30px;}
.solution_itm a{text-decoration:none;color:#fff;}
.solution_itm_main{}
.solution_itm_ttl {text-align: center;
    margin-bottom: 20px;color: #f30c0c;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;}
.solution_itm_txt {}
.solution_itm_more{margin-bottom:0;    text-align: center;transition:all 0.5s;color: #ffbf30;}
.solution_itm:hover .solution_itm_more{}
.box03 {
  padding: 80px 0;
}
.box03 .idx_h2 {
  text-align: center;
  text-transform: uppercase;
}
.b03_txt {
  width: 80%;
  margin: 0 auto 30px;
  text-align: center;
}
.b03_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b03_item {
  width: calc(33.33% - 20px);
  margin: 0 0 30px;
}
.b03_item a {
  display: block;
  text-decoration: none;
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  color: #353535;
  height: 100%;
}
.b03_item a:hover {
  background: var(--mcolor);
}

.b03_itm_img {
  margin: 0;
  overflow: hidden;
}
.b03_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b03_item a:hover .b03_itm_img img {
  transform: scale(1.1, 1.1);
}
.b03_itm_main {
  padding: 20px;
}
.b03_itm_ttl {
  font-size: 20px;
  color: #000;
  text-transform: uppercase;
  line-height: 1.3em;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-align: justify;
}
.b03_itm_txt {
  font-size: 16px;
  text-align: justify;
  margin-bottom: 20px;
  display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b03_itm_btn {
  margin: 0;
  font-size: 12px;
  color: var(--txt);
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px 7px 7px 15px;
  background: var(--mcolor);
  border-radius: 5px;
  font-family: 'Oswald', sans-serif;
  transition: all 0.3s;
}
.b03_itm_btn:after {
  content: '';
  position: relative;
  display: inline-block;
  background: url("../W_images/icon_arr.png") no-repeat center center/11px auto #fff;
  transition: all 0.3s;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  margin-left: 10px;
}
.b03_item a:hover .b03_itm_ttl, .b03_item a:hover .b03_itm_txt{
	color:var(--txt);
}
.b03_item a:hover .b03_itm_btn {
  background: #fff;
  color:#000;
}
.b03_item a:hover .b03_itm_btn:after {
  background-image: url("../W_images/icon_arr_hv.png");
  background-color: #ffc20e;
}
.box04 {
  padding: 80px 0;
  background: url("../W_images/b04_bg.jpg") top center #f4f4f4;
}
.box04 .idx_h2 {
  text-align: center;
  text-transform: uppercase;
}
.b04_list {
  display: flex;
  flex-wrap: wrap;
}
.b04_item {
  width: 20%;
}
.b04_item a {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.b04_itm_img {
  margin: 0;
  position: relative;
}
.b04_itm_img img {
  width: 100%;
}
.b04_itm_img:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
}
.b04_item:nth-child(2n+1) .b04_itm_img:after, .b04_item:nth-child(2n+3) .b04_itm_img:after {
  opacity: 0.5;
}
.b04_itm_main {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  background: rgb(255, 194, 14);
 background: linear-gradient(0deg, rgb(0 91 170) 20%, rgb(0 91 170 / 60%) 100%);
  color: #000;
  transition: all 0.5s;
  top: 50%;
  opacity: 0;
  z-index: 2;
}
.b04_itm_ttl {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.3em;
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif;
}
.b04_itm_txt {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b04_item a:hover .b04_itm_main {
  top: 0;
  opacity: 1;
}
.b04_itm_main:before {
  width: 40px;
  height: 40px;
  background: #000;
  content: '+';
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  margin: 0 auto 20px;
  font-size: 30px;
}
.box05 {
  padding: 80px 0;
}
.b05_slide_01 {margin-bottom:60px;}
/*.b05_list.slick-initialized .slick-slide {
  margin: 0 15px;
  border: 1px solid #ebebeb;
  border-left: 5px solid var(--mcolor);
  padding: 40px;
  height: auto;
}
.b05_list {
  margin: 0 -15px;
}
.b05_list .slick-track {
  display: flex;
}
.b05_itm_main {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.b05_itm_img {
  flex-shrink: 0;
  margin: 0 20px 0 0;
}
.b05_itm_ttl {
  margin: 0;
  font-size: 14px;
}
.b05_itm_ttl span {
  display: block;
  font-size: 172%;
  font-weight: 600;
  line-height: 1.3em;
  font-family: 'Roboto', sans-serif;
}
.b05_itm_txt {
  margin: 0;
}
.b05_list .slick-dots {
  bottom: auto;
  top: -40px;
  right: 15px;
}
*/
.b05_list p{margin:0 10px 0;border:1px solid #e1e1e1;display: flex !important;
    background: #fff;
    justify-content: center;
    align-items: center;
    height: 90px;}
.b05_list p img{margin:auto auto;}
#footer {
  background: url("../W_images/f_bg.jpg") no-repeat center center/cover;
  padding: 60px 0;
  color: #fff;
}
.f_main {
  display: flex;
  justify-content: space-between;
}
.f_mod {
  width: calc(25% - 22.5px);
}
.f_txt {
  font-size: 14px;
  text-align: justify;
}
.f_social {
  margin: 0;
  display: flex;
}
.f_social a {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  color: #000;
  align-items: center;
  font-size: 25px;
  margin-right: 15px;
}
.f_ttl {
  font-size: 24px;
  color: #ffc20e;
  position: relative;
  padding: 10px 0 0;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 20px;
}
.f_ttl:before {
  content: '';
  position: absolute;
  width: 56px;
  height: 2px;
  background: #ffc20e;
  left: 0;
  top: 0;
}
.f_menu a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}
.f_menu a:hover {
  color: #ffc20e;
}
.f_menu li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
}
.f_menu li:before {
  content: '';
  position: absolute;
  background: url("../W_images/icon_arr_hv.png") no-repeat center center/100% auto;
  width: 17px;
  height: 7px;
  left: 0;
  top: 9px;
}
.f_info {
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.f_info:before {
  content: '';
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 15px;
  background: url("../W_images/f_add.png") no-repeat center center/20px auto;
  width: 25px;
  height: 27px;
}
.f_home:before {
  background-image: url("../W_images/f_home.png");
  background-size: 100% auto;
}
.f_tel:before {
  background-image: url("../W_images/f_tel.png");
  background-size: 18px auto;
}
.f_mail:before {
  background-image: url("../W_images/f_mail.png");
  background-size: 19px auto;
}
.f_info:last-child {
  margin-bottom: 0;
}
.f_info a {
  text-decoration: none;
  color: #fff;
}
.copyright {
  font-size: 14px;
  text-align: center;
  margin: 40px 0 0;
  padding: 25px 0;
  border-top: 1px solid #444;
}
.copyright a {
  text-decoration: none;
  color: #fff;
}
/*
  font-family: 'Nunito', sans-serif;
  font-family: 'Oswald', sans-serif;
*/
@media screen and (min-width: 1600px) {
  h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 22px;
  }
  .h_top_info li, .h_top_social a {
    font-size: 18px;
  }
  .h_top_social a {
    width: 30px;
    height: 30px;
  }
  .submenu a {
    font-size: 18px;
  }
  .main_thumb {
    width: 550px;
  }
  .main_thumb.slick-initialized .slick-slide {
    height: 120px;
  }
  .idx_h2 {
    font-size: 46px;
  }
  .b01_ttl, .b02_itm_ttl, .b03_itm_ttl {
    font-size: 26px;
  }
  .idx_btn a, .b03_itm_txt {
    font-size: 20px;
  }
  .b03_itm_btn, .b05_itm_ttl, .f_txt, .f_menu a {
    font-size: 18px;
  }
  .f_menu li:before {
    top: 14px;
  }
  .f_ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 1400px) {
  .container {
  
  }
}
@media screen and (max-width: 1300px) {
	.logo{max-width:180px;}
	.gnavi > li > a{font-size: 15px;}
	.h_search input{width: 145px;min-width: 145px;}
	
}

@media screen and (max-width: 1100px) {
	.container{width:100%;padding:0 3%;}
}

@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 14px;
  }
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 82px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: #005baaf0;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 52px;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  .h_top{
    display: none;
  }
  #header {
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
  }
  #gnavi {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    height: calc(100% - 82px);
    background: #005baaeb;
    overflow: auto;
    padding: 30px 3%;
    display: none;
  }
  .gnavi {
    display: block;
  }
  .gnavi > li > a {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--txt) !important;
  }
  .gnavi > li.over > a:after {
    display: none;
  }
  .submenu,.subsubmenu {
    width: 100%;
    position: relative;
  }
  .submenu a {
    background: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
  }
  .subsubmenu {left:0;}
  .subsubmenu a{background: #242424;}
  .logo {
    
  }
  .h_group_mobile{display:flex;align-items:center;}
  .h_search_icon{font-size: 26px;margin-right: 20px;}
  .h_main {
    padding: 5px 0;
  }
  .main_slide.slick-initialized .slick-slide {
    display: block;
  }
  .main_itm_info {
    width: 100%;
  }
  .main_itm_txt01 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .main_itm_txt02 {
    font-size: 20px;
  }
  .main_itm_txt03 {
    font-size: 14px;
  }
  .main_itm_img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .idx_btn a:after {
    width: 28px;
    height: 28px;
    background-size: 14px auto;
  }
  .idx_btn a {
    font-size: 12px;
    padding: 5px 5px 5px 15px;
  }
  .box01 {
    padding: 80px 0 40px;
  }
  .box01 .container {
    display: block;
  }
  .idx_h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .idx_h2 span:before, .idx_h2 span:after {
    width: 20px;
    height: 25px;
  }
  .b01_ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .b01_img {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    padding: 30px;
  }
  .box02 {
    padding: 40px 0 10px;
  }
  .b02_list{ width: 100%;}
  .b02_item {
    width: 100%;
  }
  .b02_itm_ttl {
    font-size: 16px;
    padding: 10px 20px;
  }
  .b02_itm_txt {
    padding: 0 12px 10px;text-align: left;
  }
  .box03 {
    padding: 40px 0 20px;
  }
  .b03_item {
    width: 48%;
  }
  .b03_itm_main {
    padding: 20px;
  }
  .b03_itm_txt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
  }
  .b03_itm_ttl {
    font-size: 16px;
  }
  .box04 {
    padding: 40px 0;
  }
  .b04_item {
    width: 50%;
  }
  .b04_itm_main {
    top: auto !important;
    opacity: 1;
    height: 50%;
    bottom: 0;
    padding: 20px;
   /* background: rgb(255, 194, 14);
    background: linear-gradient(0deg, rgba(255, 194, 14, 1) 20%, rgba(255, 194, 14, 0) 100%);*/
  }
  .b04_itm_main:before {
    display: none;
  }
  .box05 {
    padding: 40px 0;
  }
 /* .b05_list.slick-initialized .slick-slide {
    padding: 20px;
  }
  .b05_itm_main {
    margin-bottom: 15px;
  }
  .b05_itm_ttl span {
    font-size: 140%;
  }*/
  #footer {
    padding: 40px 0 0;
  }
  .f_main {
    display: block;
  }
  .f_mod {
    width: 100%;
    margin: 0 0 30px;
  }
  .f_social a {
    width: 30px;
    height: 30px;
    font-size: 16px;
    margin-right: 5px;
  }
  .f_ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .f_menu a {
    font-size: 14px;
  }
  .f_menu li:before {
    width: 14px;
    top: 6px;
  }
  .f_menu li {
    padding-left: 24px;
  }
  .f_info {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .f_info:before {
    width: 20px;
    height: 26px;
    background-size: contain;
  }
  .copyright {
    font-size: 12px;
    margin: 0;
    padding: 15px 0;
  }
}
@media screen and (max-width: 480px) {
	
.idx_btn {
    margin: 0 0 10px;
}
.b03_item{width: 100%;}
  .main_thumb {
    width: 100%;
    margin: 0;
  }
  .main_thumb.slick-initialized .slick-slide {
    margin: 10px;
    padding: 5px;
  }
  .main_itm_txt02 {
    font-size: 18px;
  }
  .b02_item a{display:block;}
  .b02_itm_img {
    width: 100%;
  }
  .b02_itm_txt {
  
    margin-top: 10px;
  }
  .solution_itm_ttl{font-size:20px;}
  .solution_itm{padding: 20px 10px;}
}
@media screen and (max-width: 430px) {
.logosearch{max-width:130px;}
}
@media screen and (max-width: 390px) {
.logosearch{max-width:110px;}
}
@media screen and (max-width: 375px) {
	
  .b02_itm_ttl {
    font-size: 14px;
    padding: 12px 10px;
  }
  .b03_item {
    width: 100%;
    margin-bottom: 20px;
  }
  .b04_item {
    width: 100%;
  }
}