@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* CSS Document */

/*--------------------
reset
---------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 62.5%;
  color: #222;
  overflow-x: hidden;
}
body {
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, select {
  vertical-align: middle;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
* {
  box-sizing: border-box;
}
/*--------------------
common
---------------------*/
html {
  font-size: 10px;
  word-wrap: break-word;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  font-size: 1.4rem;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
.notoSans {
  font-family: 'Noto Sans Japanese', sans-serif;
  ;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
.pc_sp {
  display: block;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.mgt10{
  margin-top: 10px
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc( 20 * 100vw / 640 );
  }
  body {
    /* font-size: 1.8rem; */
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/*--------------------
共通パーツ
---------------------*/

main {
  display: block;
  padding-top: 70px;
}
/*div + .contact_sec,article + .contact_sec{
  margin-top: 100px;

}*/
.site_wrapper {
  position: relative;
}
.header_inner {
}
.container {
  width: 1080px;
  margin: 0 auto;
}
.common_text {
  font-size: 1.4rem;
  line-height: 1.71;
  margin-bottom: 30px;
}
.link_btn_common {
  width: 250px;
  margin: 0 auto;
}
.link_btn_270 {
  width: 270px;
}
.link_btn_common a {
  display: block;
  border: 2px solid #222;
  text-align: center;
  font-weight: bold;
  padding: 8px 0;
  border-radius: 25px;
  transition: .3s;
}
.link_btn_common a:hover {
  background: #222;
  color: #fff;
}
.link_btn_black {
  width: 200px;
  margin: 0 auto;
}
.link_btn_black a {
  display: block;
  background: #222;
  color: #fff;
  text-align: center;
  border-radius: 25px;
  padding: 7px 9px;
  transition: .3s;
  border: 2px solid #222;
}
.link_btn_black a:hover{
  background: #fff;
  color: #222;
  border: 2px solid #222;
}
.link_btn_black a:focus-visible{
  background: #fff;
  color: #222;
  border: 2px solid #222;
}
/* .link_btn_box {
  width: 270px;
  margin: 0 auto;
  border: 1px solid #a3a3a2;
  box-sizing: border-box;
}
.link_btn_box a:after {
  display: inline-block;
  content: "";
  background: url(../images/common/icon_link_01.png) no-repeat center center;
  width: 26px;
  height: 16px;
  vertical-align: text-top;
  margin-left: .6rem;
}
.link_btn_box.pdf a:after {
  background: url(../images/common/icon_link_02.png) no-repeat center center;
}
.link_btn_box a {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 13px 0;
} */
.bread_list {
  /*  background: #747d7f;*/
  border-bottom: 1px solid #d9ddde;
  margin-bottom: 80px;
}
.bread_list ul {
  display: flex;
  padding: 11px 0;
}
.bread_list ul li {
  /*  color: #fff;
*/  font-size: 1.2rem;
}
.bread_list ul li:not(:last-child) {
  white-space: nowrap;
}
.bread_list ul li:last-child {
  display: flex;
}
.bread_list ul li + li{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.bread_list ul li + li:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
  position: absolute;
  top: 0.5em;
  left: 0.4em;
  /* bottom: 0; */
  margin: auto;
}
/* .bread_list ul li + li:before {
  content: ">";
  display: inline-block;
  margin: 0 .5em;
} */
.bread_list ul li a {
  text-decoration: underline;
}
.container_mid {
  width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.container_min {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.container_950 {
  width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.em_text {
  font-weight: bold;
}
.em_text.blue {
  color: #1e5881;
}
.arr_text {
  font-size: 1.4rem;
  line-height: 1.7;
  padding-left: 2rem;
  background: url(../images/common/icon_list_arrow_blue01.png) no-repeat left 0 top .6rem;
}
.arr_list li {
  font-size: 1.4rem;
  line-height: 1.7;
  padding-left: 2rem;
  background: url(../images/common/icon_list_arrow_blue01.png) no-repeat left 0 top .6rem;
}
p a {
  color: #005fb4;
  text-decoration: underline;
  transition: .2s;
}
p a:hover {
  color: #ca2800;
}
.table_style1 {
  width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.table_style1 tr {
  border: 1px solid #d2d2d2;
  font-size: 1.4rem;
}
.table_style1 tr th {
  background: #00498C;
  color: #fff;
  font-weight: 500;
  text-align: left;
  width: 150px;
}
.table_style1 tr th, .table_style1 tr td {
  padding: 15px;
  box-sizing: border-box;
}
.table_style1_2 tr:not(:first-child) th {
  background: #808080;
}
.table_style2 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.table_style2 tr {
  border-bottom: 1px dashed #000;
  font-size: 1.4rem;
}
.table_style2 tr th {
  font-weight: bold;
  text-align: left;
  width: 190px;
}
.table_style2 tr th, .table_style2 tr td {
  padding: 14px 20px;
  box-sizing: border-box;
}
.relation_link_wrap {
  background: #e9e9e9;
  padding: 40px 0;
}
.relation_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.relation_links .box {
  width: 48%;
  background-image: url(../images/common/relation-links_banner_01.jpg);
  color: #fff;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 30px;
  text-align: center;
}
.relation_links .box a {
  display: block;
  padding: 120px 20px 30px;
  background-color: rgba(0,0,0,0.7);
  height: 100%;
  transition: .6s;
}
.relation_links .box a:hover{
  background-color: transparent;
}
.box a:focus-visible{
  background-color: transparent;
}

/*.relation_links .box:nth-child(2){
  background-image: url(../images/common/relation-links_banner_02.png);
}
.relation_links .box:nth-child(3){
  background-image: url(../images/common/relation-links_banner_02.png);
}
.relation_links .box:nth-child(4){
  background-image: url(../images/common/relation-links_banner_02.png);
}*/
.relation_links .box .title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.relation_links .box .title:before {
  position: absolute;
  content: "";
  background: url(../images/common/relation-links_icon.png) no-repeat center center /cover;
  width: 51px;
  height: 51px;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}
.relation_links .box .text {
  font-size: 1.4rem;
}
/*----見出し----*/
.heading_page {
  background-image: url(../images/common/heading_bg01.jpg);
  background-repeat: no-repeat;
  text-align: center;
  min-width: 1080px;
  background-size: cover;
  height: 250px;
  display: flex;
  justify-content: center;
}
.heading_page h2 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}
.heading_section {
  text-align: center;
  font-weight: bold;
  font-size: 3.85rem;
  margin-bottom: 20px;
}
.heading_border {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-bottom: 40px;
}
.heading_border:after {
  display: block;
  content: "";
  width: 50px;
  height: 6px;
  background: #b5b9ba;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}
.heading_border_left {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
  line-height: 1.2;
  text-indent: -26px;
  padding-left: 28px;
}
.heading_border_left:before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 32px;
  background: #b5b9ba;
  margin-right: 20px;
  border-radius: 4px;
  vertical-align: middle;
  margin-top: -2px;
}
.heading_mid {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.heading_mini {
  font-size: 1.8rem;
  color: #434748;
  font-weight: bold;
}
.note {
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .container, .container_mid, .container_min {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
main {
 padding-top:  calc( 67 * 100vw / 640 );
  overflow-x: hidden;
}
.container, .container_mid, .container_min, .container_950 {
  width: 100%;
 padding-left:  calc( 30 * 100vw / 640 );
 padding-right: calc( 30 * 100vw / 640 );
}
.bread_list {
  margin-bottom: 30px;
}
.bread_list ul {
  display: block;
}
.bread_list li {
  display: inline-block;
}
.bread_list ul li + li:before {
  left: 0.2em;
}
.link_btn_common {
 width: calc( 450 * 100vw / 640 );
  margin: 0 auto;
}
.link_btn_common a {
  display: block;
 padding:  calc( 10 * 100vw / 640 );
}
.link_btn_270 {
 width: calc( 380 * 100vw / 640 );
}
.heading_page h2 {
  font-size: 2.6rem;
}
.heading_section {
  font-size: 2.8rem;
}
.heading_border {
  font-size: 2rem;
  margin-bottom: 20px;
}
.heading_border:after {
  margin-top: 10px;
}
.heading_border_left {
  font-size: 2rem;
}
.heading_border_left:before {
}
.heading_mid {
  font-size: 2rem;
  margin-bottom: 10px;
}


.heading_section {
 margin-bottom: calc( 30 * 100vw / 640 );
}
.table_style1, .table_style1 tbody, .table_style1 tr, .table_style1 th, .table_style1 td,  .table_style2, .table_style2 tbody, .table_style2 tr, .table_style2 th, .table_style2 td {
  display: block!important;
  width: 100%!important;
}
.table_style1 tr th + th {
  border-top: 1px solid #fff;
}
.table_style1 tr:not(:last-child) {
  border-bottom: none;
}
.table_style1 tr td + td {
  border-top: 1px dashed #d2d2d2;
}
.table_style2 tr th {
  padding-bottom: 10px;
}
.table_style2 tr td {
  padding-top: 0;
}
.relation_links .box .title {
  font-size: 1.8rem;
}
}
/*--------------------
ヘッダー
---------------------*/
.header_fix {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
}
.header_inner {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.header_inner h1 {
  padding-top: 18px;
}
header nav > ul {
  display: flex;
}
header nav > li {
  margin-left: 10px;
}
header nav > ul > li > a {
  text-decoration: underline;
  display: block;
  padding: 25px 12px;
  transition: .2s ease-in-out;
  font-size: 1.4rem;
}
header nav > ul > li > a:hover {
  background: #00498C;
  color: #fff;
}
header nav > ul > li.active a {
  background: #00498C;
  color: #fff;
}
.sub_nav {
  background: #00498C;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  display: none;
}
/*#navi01{
  display: block!important;
}*/
.sub_nav .inner > ul {
  display: flex;
  flex-wrap: wrap;
}
.sub_nav.pattern2 ul {
  width: 1202px;
}
.sub_nav ul li {
  transition: .2s ease-in-out;
}
/*.sub_nav ul li:nth-child(n + 5) {
  margin-top: -30px;
}*/
.sub_nav.pattern2 ul li:nth-child(n + 5) {
  margin-top: 0;
  border-top: 1px solid #0268BA;
}
.sub_nav ul li a:hover {
  opacity: 0.7;
}
.sub_nav .inner {
  width: 1080px;
  margin: 0 auto;
}
.sub_nav .title {
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding-bottom: 15px;
  border-bottom: 1px solid #0268BA;
  padding-top: 18px;
  line-height: 1;
  margin-bottom: 20px;
}
.sub_nav .inner > ul {
  padding-bottom: 15px;
}
.sub_nav .inner > ul > li {
  width: 50%;
  /*border-left: 1px solid #0268BA;*/
  box-sizing: border-box;
}
.sub_nav .inner > ul > li + li {
  border-left: 1px solid #0268BA;
}
.sub_nav .inner > ul > li a:focus-visible {
  outline:2px solid #fff;
}

/* NTTフィールドテクノとは */
.sub_nav .inner > .p_1 > li {
  padding-top: 28px;
}
.sub_nav .inner > .p_1 > li a{
  display: inline-block;
}
.sub_nav .p_1 .text {
  color: #fff;
  margin: 10px 0 7px;
}
.sub_nav .p_1 .link_btn_black {
  width: 160px;
  margin-bottom: 5px;
  background: #000;
  text-align: center;
  border-radius: 25px;
  padding: 4px 0;
  color: #fff;
  border: 1px solid #000;
  transition: .3s;
}
.sub_nav .p_1 .link_btn_black:hover {
  color: #000;
  background: #fff;
}
.sub_nav .p_1 .link_btn_black a {
}

/*  */
.sub_nav .p_2 {
  color: #fff;
}
.sub_nav .p_2 > li:first-child {
  display: flex;
  width: 55.5%;
}
.sub_nav .p_2 > li:nth-child(2) {
  padding: 0 25px;
  width: 44.5%;
}
.sub_nav .p_2 .box {
  padding: 0 20px;
}
.sub_nav .p_2 .box + .box {
  border-left: 1px solid #0268BA;
}
.sub_nav .p_2 .text2 {
    font-size: 1.3rem;
    margin: 6px 0;
    padding-left: 5px;
}
.sub_nav .p_2 .text {
  font-weight: bold;
  text-align: left;
}
.sub_nav .p_2  li.delete{
  margin-top: 10px;
}
.sub_nav .p_2 > li li {
  padding-left: 25px;
  background: url(../images/common/icon_circle_black.png) no-repeat top 3px left 5px;
  text-align: left;
}
.sub_nav .p_2 > li li + li {
  margin-top: 5px;
}
.sub_nav .p_2 > li .thumb {
  margin-top: 5px;
  margin-bottom: 20px;
}
.sub_nav .p_2 .ul_wrap {
  display: flex;
  flex-wrap: wrap;
}
.sub_nav .p_2 .ul_wrap > div {
  width: 50%;
}
.sub_nav .p_2 .ul_wrap > div ul {
  margin-top: 7px;
}

/* 企業情報 */
.sub_nav .p_3 {
  color: #fff;
  padding-bottom: 25px;
}
.sub_nav .p_3 > li {
  flex-wrap: wrap;
}
.sub_nav .p_3 > li {
  padding: 0 32px 0;
}
.sub_nav .p_3 > li .text {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
.sub_nav .p_3 > li:first-child ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
/*   width: 83%; */
}
.sub_nav .p_3 > li:first-child ul li {
  width: 50%;
}
.sub_nav .p_3 > li li {
  margin-bottom: 12px;
}
.sub_nav .p_3 > li:nth-child(2) {
  padding-right: 0;
}
.sub_nav .p_3 > li:nth-child(2) .text {
  margin-right: 25px;
}

.sub_nav .p_3 > li a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-right: 15px;
}
.sub_nav .p_3 > li .thumbnail {
  width: 67px;
  text-align: left;
}
.sub_nav .p_3 > li .thumbnail img{
  max-width: none;
}
.sub_nav .p_3 > li .navi_text {
  padding-left: 25px;
  background: url(../images/common/icon_circle_black.png) no-repeat top 3px left 5px;
  text-align: left;
}

.sub_nav .p_4 {
  color: #fff;
}
.sub_nav .inner .p_4 > li {
  padding: 0 23px;
  width: 33.33%;
}
.sub_nav .inner .p_4 > li:first-child {
}
.sub_nav .p_4 .box {
  width: 50%;
  padding: 0 20px;
}
.sub_nav .p_4 .box + .box {
  border-left: 1px solid #0268BA;
}
.sub_nav .p_4 .text {
  font-weight: bold;
  text-align: left;
}
.sub_nav .p_4 > li ul {
  display: flex;
  flex-wrap: wrap;
}
.sub_nav .p_4 > li li {
  padding-left: 30px;
  background: url(../images/common/icon_circle_black.png) no-repeat top 3px left 5px;
  text-align: left;
  width: 50%;
}
.sub_nav .p_4 > li li:nth-child(n +3) {
  margin-top: 5px;
}
.sub_nav .p_4 > li .thumb {
  margin-top: 5px;
  margin-bottom: 20px;
}

#pc_nav .sub_nav .p_voice{
	justify-content: center;
}
#pc_nav .sub_nav .p_voice .text {
  color: #fff;
  margin: 10px 0 7px;
}
#pc_nav .sub_nav .p_voice li {
  width: 25%;
}
#pc_nav .sub_nav .link_btn_voiceNav {
	margin-top: 30px;
	margin-bottom: 40px;
}
#pc_nav .sub_nav .link_btn_voiceNav a{
	color: #000;
	background: #fff;
	border:none;
}
#pc_nav .sub_nav .link_btn_voiceNav a:hover{
	background: #000;
	color: #fff;
}
.sub_nav .p_voice .link_btn_black {
  width: 160px;
  margin-bottom: 5px;
  background: #000;
  text-align: center;
  border-radius: 25px;
  padding: 4px 0;
  color: #fff;
  border: 1px solid #000;
  transition: .3s;
}
.sub_nav .p_voice .link_btn_black:hover {
  color: #000;
  background: #fff;
}
.sub_nav .p_voice .link_btn_black a {
}

@media screen and (max-width: 1024px) {
  .header_inner, .sub_nav .inner {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
.header_inner {
  position: relative;
  width: 100%;
 height: calc( 67 * 100vw / 640 );
 padding-top: calc( 20 * 100vw / 640 );
 padding-left: calc( 20 * 100vw / 640 );
  box-sizing: border-box;
  z-index: 9999;
}
.header_inner h1 {
  padding-top: 0;
  width: calc( 220 * 100vw / 640 );
}
.header_inner h1 a:focus-visible {
  outline: 2px solid #f2694a;
}
.menu_toggle {
  position: absolute;
 right: calc( 20 * 100vw / 640 );
 top: calc( 20 * 100vw / 640 );
 width: calc( 40 * 100vw / 640 );
  cursor: pointer;
}
.menu_toggle:focus-visible{
  outline: 2px solid #f2694a;
}

.menu_toggle span {
  display: block;
  width: 100%;
  border-bottom: 2px solid #22150D;
  transition: .2s;
}
.menu_toggle span:nth-child(2) {
 margin-top: calc( 9 * 100vw / 640 );
}
.menu_toggle span:nth-child(3) {
 margin-top: calc( 9 * 100vw / 640 );
}
header .sp_navi {
  position: fixed;
  top: -2000px;
  transition: .5s ease-in-out;
  width: 100%;
  left: 0;
  background: rgba(13,84,175,0.8);
  opacity: 0;
  z-index: 99;
  overflow: hidden;
  overflow-y: scroll;
  height: 95vh;
}
header.open .sp_navi {
  top: calc( 67 * 100vw / 640 );
  opacity: 1;
}
header .sp_navi > ul {
  display: block;
}
header .sp_navi > ul > li {
}
header .sp_navi > ul > li:last-child {
}
header .sp_navi > ul > li > a, header .sp_navi > ul > li > span {
  text-decoration: none;
  padding:  calc( 20 * 100vw / 640 ) calc( 12 * 100vw / 640 );
  font-size: 1.6rem;
  display: block;
  position: relative;
  color: #fff;
  background: #00498C;
  cursor: pointer;
  border-bottom: 1px solid #0059AA;
  box-sizing: border-box;
}
header .sp_navi > ul > li > a:after, header .sp_navi > ul > li > span:after, .sp_navi .parent ul li a:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: -4px;
  transform: rotate(-45deg);
}
header .sp_navi > ul > li > span:after {
  transform: rotate(45deg);
  transition: .3s;
}
header .sp_navi > ul > li.on > span:after {
  transform: rotate(-135deg);
}
.sp_navi .parent ul li a:after {
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
}
.sp_navi .parent ul li a {
  position: relative;
  font-size: 1.6rem;
  display: block;
  background: #fff;
  text-decoration: none;
 padding:  calc( 15 * 100vw / 640 ) calc( 18 * 100vw / 640 );
  border-bottom: 1px solid #22150D;
  box-sizing: border-box;
}
.sp_navi .parent ul {
  display: none;
}
 .sp_navi::-webkit-scrollbar {
 display: none;
}
.sp_navi a:focus-visible{
  background-color: black;
  outline: 0px;
 }
 .sp_navi .parent a:focus-visible{
  background-color: gray;
  outline: 0px;
 }
 .sp_navi li:focus-visible{
  outline: 0px;
 }
}

/*----------------
footer
----------------*/
footer a {
  transition: .2s;
}
footer a:hover {
  color: #0059B2;
  text-decoration: underline;
}
.footer_container {
  padding: 25px 0 20px;
  background: #f6f6f6;
}
.footer_navi_main {
  display: flex;
  flex-wrap: wrap;
  margin-left: 60px;
  margin-bottom: 25px;
}
.footer_navi_main li {
  margin-right: 35px;
}
.footer_navi_main li a {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid #222;
  line-height: 1;
}
.footer_navi_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.footer_navi_wrap .box {
  box-sizing: border-box;
  width: 24.333%;
  margin-bottom: 20px;
  padding: 20px 0 20px 25px;
  border-left: 1px solid #e0e0e0;
}
/*.footer_navi_wrap .box +.box {
}
 .footer_navi_wrap .box:nth-child(3n) {
  border-right: 1px solid #e0e0e0;
} */
.footer_navi_wrap .box .heading {
  margin-bottom: 12px;
}
.footer_navi_wrap .box ul + .heading {
  margin-top: 20px;
}
.footer_navi_wrap .box .heading a {
  font-size: 1.8rem;
  border-bottom: 1px solid #222;
  line-height: 1;
}
.footer_navi_wrap .box .heading a:hover {
  text-decoration: none;
  border-bottom: 1px solid #0059B2;
}
.footer_navi_wrap .box li a, .footer_navi_sub li a {
  font-size: 1.2rem;
  line-height: 2;
}
.footer_navi_sub {
  display: flex;
  flex-wrap: wrap;
}
.footer_navi_sub li {
  width: 25%;
}
footer address {
  background: #222;
  color: #fff;
  padding: 20px 0;
  font-size: 12px;
  font-style: normal;
}

.footer_navi_sub li a[target="_blank"]:after {
  content: "";
  display: inline-block;
  background: url(../images/common/icon_blank.png) no-repeat 0 0;
  background-size: 12px auto;
  width: 12px;
  height: 11px;
  margin-left: .5em;
}



@media screen and (max-width: 1024px) {
  .footer_container .container {
    width: 100%;
  }

  .footer_navi_wrap .box {
    width: 50%;
  }

  .footer_navi_sub {
    padding: 0 25px;
  }

  .footer_navi_sub li {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .footer_navi_main {
    display: none;
  }
  .footer_navi_wrap {
    /* display: none; */
    margin-bottom: 0;
    padding: 0 25px;
  }
  .footer_navi_wrap .box {
    width: 50%;
    margin-bottom: 0;
    padding: 0;
    border: none;
  }
  .footer_navi_wrap .box:nth-of-type(2n){
    border-left: 1px solid #e0e0e0;
  }
  .footer_navi_wrap .box:nth-of-type(3),
  .footer_navi_wrap .box:nth-of-type(4){
    border-top: 1px solid #e0e0e0;
  }
  .footer_navi_wrap .box .heading{
    margin-bottom: 0;
  }
  .footer_navi_wrap .box .heading a {
    border-bottom:none;
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    text-decoration: underline;
    padding-top:  calc( 18 * 100vw / 640 );
    padding-bottom:  calc( 18 * 100vw / 640 );
    padding-right:  calc( 25 * 100vw / 640 );
    padding-left:  calc( 25 * 100vw / 640 );
  }
  .footer_navi_wrap .box:nth-of-type(4) .heading:first-child a{
    padding-bottom: calc( 9 * 100vw / 640 );
  }

  .footer_navi_wrap .box:nth-of-type(4) .heading + .heading a {
    padding-top: calc( 9 * 100vw / 640 );
  }
  .footer_container {
    padding: 0
  }
  .footer_navi_sub li {
    width: 50%;
    border-bottom: 1px solid #E1E1E1;
    box-sizing: border-box;
  }
  .footer_navi_sub li:nth-child(2n) {
    border-left: 1px solid #E1E1E1;
  }
  .footer_navi_sub li:nth-last-child(-n +2) {
    border-bottom: none;
  }
  .footer_container .container {
    padding: 0;
  }
  .footer_navi_wrap .box li a, .footer_navi_sub li a {
    display: block;
    padding-top:  calc( 18 * 100vw / 640 );
    padding-bottom:  calc( 18 * 100vw / 640 );
    padding-right:  calc( 25 * 100vw / 640 );
    padding-left:  calc( 25 * 100vw / 640 );
    line-height: 1.5;
  }
}
/*----------------
contact_sec
----------------*/
.contact_sec {
  padding: 35px 0 50px;
  background: #337ca0;
  text-align: center;
}
.contact_sec .title {
  font-weight: bold;
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 15px;
}
.contact_sec p {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 32px;
}
.link_btn_common.contact_link a {
  background: #fff;
  color: #02507d;
  font-size: 1.8rem;
  padding: 11px 0;
  border: none;
  transition: .3s;
}
.link_btn_common.contact_link a:hover {
  color: #fff;
  background: #02507d;
}
/*----------------
effort_sec
----------------*/
.effort_sec {
  background: #fff;
  padding-top: 32px;
  padding-bottom: 35px;
}
.effort_sec .title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 30px;
}
.effort_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.effort_sec .box {
  display: flex;
  width: 25%;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.effort_sec .heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.effort_sec .box p {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.effort_sec .box .link {
  display: inline-block;
  width: 170px;
  margin-top: auto;
}
.effort_sec .box .link a {
  display: block;
  background: #c8e1eb;
  font-size: 1.4rem;
  line-height: 1;
  padding: 9px 0;
  border-radius: 25px;
  transition: .2s;
}
.effort_sec .box .link a:hover {
  color: #0059B2;
  text-decoration: underline;
}
.effort_sec .box .link a:after {
  content: "";
  display: inline-block;
  background: url(../images/common/icon_blank.png) no-repeat 0 0;
  background-size: 12px auto;
  width: 12px;
  height: 11px;
  margin-left: .5em;
}

@media screen and (max-width: 768px) {
  .contact_sec .title {
    font-size: 2.8rem;
  margin-bottom: 8px;
}
.contact_sec p {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}
  .effort_sec .title{
    font-size: 2rem;
    margin-bottom: 15px;
  }
.effort_sec .box {
  width: 48%;
 margin-bottom: calc( 30 * 100vw / 640 );
  border: 1px solid #C9E2E9;
  border-radius: 4px;
  box-sizing: border-box;
 padding:  calc( 20 * 100vw / 640 );
}
.effort_sec .box .link {
 width: calc( 170 * 100vw / 640 );
}
  .effort_sec .box p {
    font-size: 1.1rem;

}
  .effort_sec .heading {
    font-size: 1.16rem;
  }
  .effort_sec .box p br{

  }
  .effort_sec .box .link a{
        font-size: 1.1rem;

  }
  .effort_sec .box .link a:after{
    /* display: none; */
    margin-left: .3em;
  }
}
/*------------下層ページ共通-----*/
article {
  padding-bottom: 70px;
}
.relation_link_wrap + .contact_sec {
  margin-top: 0;
}
.kakomi {
  background: #eef0f0;
  padding: 20px;
  margin-bottom: 25px;
}
/* ページトップリンク */
.c-bottom_pagetop_btn{
  text-align: right;
}
.c-bottom_pagetop_btn a {
  background: url(../images/common/pagetop01.png) no-repeat left 2px;
  padding-left: 20px;
  text-decoration: underline;
  margin-bottom: 50px;
  color: #333;
}

/* お問い合わせボタン */
.inqury_btn {
  margin-bottom: 27px;
}
.inqury_btn a {
  display: block;
  width: 98%;
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
  border: 3px solid #b5b5b5;
}
.sinsa_box {
  text-align: right;
  width: 100%;
  margin: 20px auto 0;
}
.inqury_btn a:hover {
  background: #81CCFE;
}
.sinsa {
  display: inline-block;
  text-align: right;
  font-size: 1rem;
  border: 1px solid #67686a;
  padding: 1px 5px;
  margin-bottom: 20px;
}
section + .effort_sec {
  margin-top: 0;
}
section + section {
  margin-top: 100px;
}
.second_header {
  margin-bottom: 70px;
}
.section_min + .section_min {
  margin-top: 70px;
}
.main_img {
  margin-bottom: 40px;
  text-align: center;
}
.page_nav {
  font-size: 0;
  text-align: center;
  margin-bottom: 70px;
}
.page_nav li {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 10px;
}
.page_nav li:before {
  display: inline-block;
  content: "";
  border-top: 1rem solid #2c3d6f;
  border-left: .6rem solid transparent;
  border-right: .6rem solid transparent;
  margin-right: .9rem;
}
.page_nav li + li {
  margin-left: 30px;
}
.colum3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.colum3 .box + .box {
  margin-left: 20px;
}
.caution {
  padding-left: 1.8em;
  text-indent: -1.8em;
}
.caution2 {
  padding-left: 1.8em;
  text-indent: -1.3em;
}
.support section {
  margin-bottom: 90px;
}
.support01 .colum3 {
  margin-bottom: 48px;
}
.support01 .colum3 .box {
  width: 285px;
  background: #eaeaeb;
  text-align: center;
}
.colum3 .box {
  width: 30%;
}
.colum6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.colum6 li {
  width: 16%;
  text-align: center;
}
.colum6 li:nth-child(n + 7) {
  margin-top: 40px;
}
.colum3 .box p span {
  display: block;
  font-size: 1.2rem;
}
.colum3 .box:nth-child(n + 4) {
  margin-top: 65px;
}
.support01 .colum3 .box {
  padding: 40px 0 25px;
  width: 285px;
}
.support01 .colum3 .box:nth-child(2) {
  padding-top: 25px;
}
.support01 .colum3 .box:nth-child(2) .title {
  margin-bottom: 0;
}
.colum3 .box .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 20px;
}
.support01 .colum3 .box .title span {
  color: #00a2db;
  font-size: 2.6rem;
  line-height: 1;
}
.support02 .colum3 .box {
  width: 250px;
}
.support02 .colum3 .box .img {
  text-align: center;
  margin-bottom: 20px;
}
.support02 .colum3 .box + .box {
  margin-left: 75px;
}
.support02 .colum3 .box:nth-child(3n + 1) {
  margin-left: 0;
}
.support02 .colum3 + h4 {
  margin-top: 100px;
}
.support03 .p-img {
  margin-bottom: 50px;
}
.flow_box {
  position: relative;
  margin-bottom: 50px;
}
.flow_box .img {
  position: absolute;
  right: 0;
  top: 300px;
}
.flow_box dl {
  display: flex;
  margin-bottom: 36px;
  position: relative;
}
.flow_box dl:after {
  display: block;
  content: "";
  position: absolute;
  border-top: solid #fff 16px;
  border-left: solid transparent 22px;
  border-right: solid transparent 22px;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.flow_box dl:before {
  display: block;
  content: "";
  position: absolute;
  border-top: solid #00a2db 19px;
  border-left: solid transparent 25px;
  border-right: solid transparent 25px;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}
.flow_box dl:nth-child(7):after, .flow_box dl:nth-child(7):before {
  display: none;
}
.flow_box dl.green:before {
  border-top: solid #009e99 19px;
}
.flow_box dl.green dt {
  background: #0b837f;
}
.flow_box dl.green dd {
  width: 74%;
  border-top: 3px solid #009e99;
  border-bottom: 3px solid #009e99;
  border-right: 3px solid #009e99;
}
.flow_box dl.green dd .title {
  color: #009e99;
}
.flow_box dl:nth-child(6) dt {
  padding-top: 20px;
}
.flow_box dl dt {
  width: 138px;
  color: #fff;
  font-weight: bold;
  background: #007fac;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.2;
  padding: 9px 0;
}
.flow_box dl dt span {
  display: block;
  font-size: 1.7rem;
}
.flow_box dl dd {
  width: 84.7%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-top: 3px solid #00a2db;
  border-bottom: 3px solid #00a2db;
  border-right: 3px solid #00a2db;
}
.flow_box dl dd .title {
  font-size: 2.2rem;
  color: #00a2db;
  width: 220px;
  box-sizing: border-box;
  margin-left: 1rem;
  font-weight: bold;
  line-height: 1.27;
  padding: 5px 0;
}
.flow_box dl:nth-child(7) .title {
  width: 100%;
  text-align: center;
  margin-left: 0;
}
.flow_box dl dd .text {
  font-size: 1.6rem;
}
.case_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_heading_pallax {
  color: #fff;
  padding: 100px 0 0;
  position: relative;
  height: 350px;
  text-align: center;
}
.page_heading_pallax .tri {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}
.page_heading_pallax .tri img {
  width: 100%;
  max-width: none;
}
.page_heading_pallax .title {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}
.page_heading_pallax .text {
  font-size: 1.5rem;
  line-height: 1.8;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
}
.page_heading_pallax .text span {
  font-weight: bold;
}
.page_heading_pallax .bread_list {
  border-bottom: none;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
section + section {
  margin-top: 17%;
}
.second_header, .page_nav {
  margin-bottom: 7%;
}
.heading_page {
  width: 100%;
  min-width: auto;
  height: calc( 250 * 100vw / 640 );
}
.colum3 .box + .box {
  margin-left: 0;
  margin-top: 20px;
}
main .task_list li {
}
.support02 .colum3 .box + .box {
  margin-left: 0;
}
.case_wrap .box + .box {
  margin-top: 15px;
}
.flow_box dl dt {
  width: 20%;
  color: #fff;
  font-weight: bold;
  background: #007fac;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.2;
  padding: 9px 0;
}
.flow_box dl dt span {
  display: block;
  font-size: 1.7rem;
}
.flow_box dl dd, .flow_box dl.green dd {
  width: 80%;
  display: block;
  padding: 1rem;
}
.flow_box dl dd .title {
  width: 100%;
  padding: 0;
  margin: 0 0 10px 0;
}
.flow_box .img {
  display: none;
}
.flow_box dl:nth-child(7) .title {
  text-align: left;
  margin-bottom: 0;
  margin-top: 3%;
}
  .page_nav li{
    margin-right: 10px;
  }
.page_nav li + li {
  margin-left: 0;
}
}
/*-------service_sec-------*/
.service_container {
  margin-top: 90px;
  margin-bottom: 110px;
}
.service_container .heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-bottom: 40px;
}
.service_container .heading:after {
  display: block;
  content: "";
  width: 50px;
  height: 6px;
  background: #b5b9ba;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
}
.service_container .link_btn_common a {
  padding: 11px 0;
}
.service_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 78px;
}
.service_box {
  width: 340px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 1px 2px 4px 2px rgba(0,0,0,0.1);
}
.service_box .text_area {
  padding: 30px 18px;
}
.service_box .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.service_box .text_area p {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.multinet05 + .task_list_min_wrap {
}
.task_list_min_wrap {
  margin-top: 70px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}
.task_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 60px;
}
.task_list li {
  display: flex;
  width: 340px;
  margin-bottom: 30px;
  margin-right: 30px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 2px 4px 2px rgba(0,0,0,0.1);
  padding-left: 0;
  box-sizing: border-box;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;

}
.task_list li:nth-child(3n){
    margin-right: 0;
}
.task_list li a{
  display: block;
  width: 253px;
}
.task_list li:before{
  width: 87px;
  height: 100%;
  display: block;
  content: "";
    background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

}
/*.task_list li:nth-child(4) {
  margin-right: 0;
}*/
.task_list li .text_area {
  padding: 16px 10px 20px 14px;
}
.task_list li.mu .text_area, .task_list li.io .text_area {
  padding-top: 11px;
  padding-bottom: 15px;
}
.task_list li .title2 {
  color: #6f7171;
  font-weight: bold;
}
.task_list li .title {
  padding-left: 65px;
  height: 70px;
  display: flex;
  align-items: center;
  line-height: 1.375;
  margin-bottom: 4px;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: left 8px center;
  background-size: 47px;
}
/*.task_list li:nth-child(4) .title, .task_list li:nth-child(5) .title {
  height: 60px;
}*/
.task_list_mini li {
  background-size: 87px;
  height: 106px;
}
.task_list_mini li .title {
  height: 66px;
}
.task_list_mini li.mu .title, .task_list_mini li.io .title {
  height: 55px;
}
.task_list li .text_area p {
  font-size: 1.4rem;
  line-height: 1.43;
}
@media screen and (min-width: 769px) {
	.task_list li.fo .title {
	background-size: 35px;
}
.task_list li.in .title {
	background-size: 35px;
}}

/*---------------
マウスオーバー効果
-----------------*/
.task_list li:hover {
  background-color: rgba(90,113,132,0.8);
}
.task_list li:hover .title, .task_list li:hover .title2, .task_list li:hover .text_area p {
  color: #fff;
}
@media screen and (max-width: 768px) {
.task_list {
  display: block;
 margin-bottom: calc( 30 * 100vw / 640 );
}
.task_list li {
  display: flex;
 width: calc( 500 * 100vw / 640 );
 margin-bottom: calc( 15 * 100vw / 640 );
  margin-left: auto;
  margin-right: auto;
 background-size: calc( 150 * 100vw / 640 ) 100%;
  min-height: 100px;
}
  .task_list_mini li{
  background-size: 87px;
  height: auto;
}
  .task_list li:nth-child(3n) {
    margin-right: auto;
}
  .task_list li:before{
    width: calc( 180 * 100vw / 640 );
  height: auto;
  }
  .task_list li a{
    width: calc( 460 * 100vw / 640 );
  }
.task_list li:nth-child(3) {
  margin-right: auto;
}
.task_list li .text_area {
 padding:  calc( 30 * 100vw / 640 ) calc( 10 * 100vw / 640 ) calc( 18 * 100vw / 640 ) calc( 20 * 100vw / 640 );
}
.task_list li .title {
 padding-left:  calc( 65 * 100vw / 640 );
  line-height: 1.375;
  margin-bottom: 4px;
  background-position: left center;
 height: auto;
 background-size:  calc( 47 * 100vw / 640 );
  min-height: 30px;
}
.task_list li:nth-child(3) .title, .task_list li:nth-child(4) .title {
 height: auto!important;
}
.task_list li:nth-child(3) .text_area, .task_list li:nth-child(4) .text_area {
 padding-top: calc( 20 * 100vw / 640 );
 padding-bottom: calc( 10 * 100vw / 640 );
}
.task_list li:nth-child(4) {
    margin-right: auto;
}
.service_box {
 width: calc( 500 * 100vw / 640 );
  margin: 0 auto;
}

.service_box +.service_box {
 margin-top: calc( 30 * 100vw / 640 );
}
}
/*-------------------
フロートメニュー追加
--------------------*/
/* .float_label {
  position: absolute;
  top: 380px;
  z-index: 999;
  right: 15px;
    transition: .3s ease-in-out;

}
.float_label.hide{
    right: -358px;

}
.float_label .contents {
  right: 0;
}
.float_label.hide .contents {
} */

/*@media screen and (-webkit-min-device-pixel-ratio:0) {
.float_label .switch {
  left: -90px;
}
}
*/

/* .float_label .switch {
  position: absolute;
  left: -84px;
  top: 90px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  background: url(../images/float_menu/icon_float_switch.png) no-repeat center top 9px rgba(2,168,239,0.8);
  padding: 52px 9px 9px;
  cursor: pointer;
  width: 66px;
}
.float_label .switch span:nth-child(2){
  display: none;
}
.float_label .switch.off {
  width: 28px;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 28px;
  left: -34px;
  background: url(../images/float_menu/icon_close2.png) no-repeat center top 9px rgba(2,168,239,0.8);
}
.float_label .switch.off span:nth-child(1){
  display: none;
}
.float_label .switch.off span:nth-child(2){
  display: block;
}

@-moz-document url-prefix() {
 .float_label .switch {
  left: -66px;
}
  .float_label .switch.off {
      left: -28px;
  }
}
@media all and (-ms-high-contrast: none) {
 .float_label .switch {
  left: -66px;
}
  .float_label .switch.off {
      left: -28px;
  }
}
@supports (-ms-ime-align: auto) { .float_label .switch {
  left: -66px;
}
  .float_label .switch.off {
      left: -28px;
  }

}
@media screen and (min-width: 1501px) { */
/*  .float_label .switch{
    display: none;
  }*/
/* }

@media screen and (max-width: 768px) {
.float_label {
  display: none
}
}
.float_label {
}
.float_label .inner {
  background: rgba(255,255,255,0.8);
  border: 1px solid #d9d9d9;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.4);
}
.float_label .link {
  text-align: right;
  margin-top: 7px;
}
.float_label .link span {
  font-size: 13px;
  display: inline-block;
  background: url(../images/float_menu/icon_close.png) no-repeat left center;
  padding-left: 25px;
  cursor: pointer;
}
.float_label .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-shadow: black 1px 1px 10px, black -1px 1px 10px,  black 1px -1px 10px, black -1px -1px 10px;
  background: #2c3d6f;
  padding: 12px 0;
}
.float_label .title_s {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background: #0168ba;
  padding: 4px 0 4px 8px;
}
.float_label .box:nth-child(3) .title_s {
  background: #469fe6;
}
.float_label .box:nth-child(4) .title_s {
  background: #8dc4ef;
}
.float_label .title_xs {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1px;
}
.float_label .box_inner {
  padding: 11px 15px 15px 15px;
}
.float_label .box ul {
  display: flex;
  flex-wrap: wrap;
  width: 326px;
}
.float_label .box ul + .title_xs {
  margin-top: 7px;
}
.float_label .box ul li {
}
.float_label .box ul li a {
  width: 160px;
  height: 40px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  line-height: 1.2;
  transition: .2s;
  background-color: #eaebec;
  font-size: 12px;
}
.float_label .box ul li a:before {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .2s;
}
.float_label .box ul li.on a, .float_label .box ul li a:hover {
  background: #2C2C2E;
  color: #fff;
}
.float_label .box ul li:nth-child(2n) {
  margin-left: 6px;
}
.float_label .box ul li:nth-child(n+ 3) {
  margin-top: 6px;
}
.float_label .box ul.list01 li:nth-child(1) a:before {
  background-image: url(../images/float_menu/fm_icon_01.png);
}
.float_label .box ul.list01 li:nth-child(2) a:before {
  background-image: url(../images/float_menu/fm_icon_02.png);
}
.float_label .box ul.list02 li:nth-child(1) a:before {
  background-image: url(../images/float_menu/fm_icon_03.png);
}
.float_label .box ul.list02 li:nth-child(2) a:before {
  background-image: url(../images/float_menu/fm_icon_04.png);
}
.float_label .box ul.list02 li:nth-child(3) a:before {
  background-image: url(../images/float_menu/fm_icon_05.png);
}
.float_label .box ul.list03 li:nth-child(1) a:before {
  background-image: url(../images/float_menu/fm_icon_06.png);
}
.float_label .box ul.list03 li:nth-child(2) a:before {
  background-image: url(../images/float_menu/fm_icon_07.png);
}
.float_label .box ul.list04 li:nth-child(1) a:before {
  background-image: url(../images/float_menu/fm_icon_08.png);
}
.float_label .box ul.list04 li:nth-child(2) a:before {
  background-image: url(../images/float_menu/fm_icon_09.png);
}
.float_label .box ul.list04 li:nth-child(3) a:before {
  background-image: url(../images/float_menu/fm_icon_10.png);
}
.float_label .box ul.list05 li:nth-child(1) a:before {
  background-image: url(../images/float_menu/fm_icon_11.png);
}
.float_label .box ul.list06 li:nth-child(1) a:before {
  background-image: url(../images/float_menu/fm_icon_12.png);
}
.float_label .box ul.list06 li:nth-child(2) a:before {
  background-image: url(../images/float_menu/fm_icon_13.png);
}
.float_label .box ul.list06 li:nth-child(3) a:before {
  background-image: url(../images/float_menu/fm_icon_14.png);
} */
/*-------アクティブ切り替え---------*/
/* .float_label .box ul.list01 li.on:nth-child(1) a:before, .float_label .box ul.list01 li:nth-child(1) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_01_on.png);
}
.float_label .box ul.list01 li.on:nth-child(2) a:before, .float_label .box ul.list01 li:nth-child(2) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_02_on.png);
}
.float_label .box ul.list02 li.on:nth-child(1) a:before, .float_label .box ul.list02 li:nth-child(1) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_03_on.png);
}
.float_label .box ul.list02 li.on:nth-child(2) a:before, .float_label .box ul.list02 li:nth-child(2) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_04_on.png);
}
.float_label .box ul.list02 li.on:nth-child(3) a:before, .float_label .box ul.list02 li:nth-child(3) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_05_on.png);
}
.float_label .box ul.list03 li.on:nth-child(1) a:before, .float_label .box ul.list03 li:nth-child(1) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_06_on.png);
}
.float_label .box ul.list03 li.on:nth-child(2) a:before, .float_label .box ul.list03 li:nth-child(2) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_07_on.png);
}
.float_label .box ul.list04 li.on:nth-child(1) a:before, .float_label .box ul.list04 li:nth-child(1) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_08_on.png);
}
.float_label .box ul.list04 li.on:nth-child(2) a:before, .float_label .box ul.list04 li:nth-child(2) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_09_on.png);
}
.float_label .box ul.list04 li.on:nth-child(3) a:before, .float_label .box ul.list04 li:nth-child(3) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_10_on.png);
}
.float_label .box ul.list05 li.on:nth-child(1) a:before, .float_label .box ul.list05 li:nth-child(1) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_11_on.png);
}
.float_label .box ul.list06 li.on:nth-child(1) a:before, .float_label .box ul.list06 li:nth-child(1) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_12_on.png);
}
.float_label .box ul.list06 li.on:nth-child(2) a:before, .float_label .box ul.list06 li:nth-child(2) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_13_on.png);
}
.float_label .box ul.list06 li.on:nth-child(3) a:before, .float_label .box ul.list06 li:nth-child(3) a:hover:before {
  background-image: url(../images/float_menu/fm_icon_14_on.png);
} */


/*--------------------
FT追加分 2023/11/28
---------------------*/

/* テキスト寄せ */
.txt_left { text-align:left !important; }
.txt_center { text-align:center !important; }
.txt_right { text-align:right !important; }

/* margin */
.m-all00 { margin:0 !important; }
.m-all05 { margin:5px !important; }
.m-all10 { margin:10px !important; }
.m-all15 { margin:15px !important; }
.m-all20 { margin:20px !important; }
.m-all25 { margin:25px !important; }
.m-all30 { margin:30px !important; }
.m-all35 { margin:35px !important; }
.m-all40 { margin:40px !important; }
.m-all45 { margin:45px !important; }
.m-all50 { margin:50px !important; }

.m-t00 { margin-top:0 !important; }
.m-t05 { margin-top:5px !important; }
.m-t10 { margin-top:10px !important; }
.m-t15 { margin-top:15px !important; }
.m-t20 { margin-top:20px !important; }
.m-t25 { margin-top:25px !important; }
.m-t30 { margin-top:30px !important; }
.m-t35 { margin-top:35px !important; }
.m-t40 { margin-top:40px !important; }
.m-t45 { margin-top:45px !important; }
.m-t50 { margin-top:50px !important; }

.m-b00 { margin-bottom:0px !important; }
.m-b05 { margin-bottom:5px !important; }
.m-b10 { margin-bottom:10px !important; }
.m-b15 { margin-bottom:15px !important; }
.m-b20 { margin-bottom:20px !important; }
.m-b25 { margin-bottom:25px !important; }
.m-b30 { margin-bottom:30px !important; }
.m-b35 { margin-bottom:35px !important; }
.m-b40 { margin-bottom:40px !important; }
.m-b45 { margin-bottom:45px !important; }
.m-b50 { margin-bottom:50px !important; }

.m-l00 { margin-left:0px !important; }
.m-l05 { margin-left:5px !important; }
.m-l10 { margin-left:10px !important; }
.m-l15 { margin-left:15px !important; }
.m-l20 { margin-left:20px !important; }
.m-l25 { margin-left:25px !important; }
.m-l30 { margin-left:30px !important; }
.m-l35 { margin-left:35px !important; }
.m-l40 { margin-left:40px !important; }
.m-l45 { margin-left:45px !important; }
.m-l50 { margin-left:50px !important; }

.m-r00 { margin-right:0px !important; }
.m-r05 { margin-right:5px !important; }
.m-r10 { margin-right:10px !important; }
.m-r15 { margin-right:15px !important; }
.m-r20 { margin-right:20px !important; }
.m-r25 { margin-right:25px !important; }
.m-r30 { margin-right:30px !important; }
.m-r35 { margin-right:35px !important; }
.m-r40 { margin-right:40px !important; }
.m-r45 { margin-right:45px !important; }
.m-r50 { margin-right:50px !important; }
