@charset "UTF-8";

header {
  z-index: 1;
	position: relative;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .head-nav {
  /*
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  */
  position: relative;
	height:50px;
}

header .head-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
	padding-left:0;
	width:100%;
	max-width:1200px;
  margin:0 auto;
}

header .head-nav > ul > li {
  margin: 0 18px;
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

header .head-nav > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
	font-size:1.4rem;
  padding-bottom:10px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .head-nav > ul > li > a > span{
	display:block;
}

header .head-nav > ul > li > a:hover {
  text-decoration: none;
}

header .head-nav > ul > li > a:after {
  position:absolute;
	bottom:0;
	left:44%;
	content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #FFF transparent transparent transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .head-nav > ul > li > a:hover::after{
	 border-top-color: #444;
	 bottom:-8px;
}

header .head-nav > ul > li.hover .hidden {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-x:visible;
}


header .head-nav > ul > li.hover > a {
  border-bottom-color: #444;
}

header .head-nav > ul > li.hover > a:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  border-top-color: #444;
	bottom:-8px;
}
header .head-nav > ul > li.current > a,
header .head-nav > ul > li.current > a:after {
  border-top-color: #444;
}

header .head-nav .hidden {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding-top: 75px;
  padding-bottom: 55px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
  overflow-x: hidden;
}

header .head-nav .hidden:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 98vw;
  height: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  background-color: #444;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
@media all and (-ms-high-contrast: none){
  .header .head-nav .hidden:before{
    left: 30%; /* IE10以上 */
  }
}


header .head-nav .hidden .txt {
	color:#ccc;
	text-align:center;
}
header .head-nav .hidden .link {
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
  padding: 10px 0;
  margin-bottom: 35px;
  margin-right: 0;
}

header .head-nav .hidden .link a {
  color: #FFF;
	-webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
	padding-right:20px;
}
header .head-nav .hidden .link a:hover {
  color: #09f;
	text-decoration:none;
}
header .head-nav .hidden .link a:before{
	content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight:900;
  padding-right:0.3em;
}

header .head-nav .hidden .link a[target="_blank"] {
  background-repeat: no-repeat;
  background-position: left 6px;
  background-size: 15px auto;
  padding-left: 20px;
}

header .head-nav .hidden .link a[target="_blank"]::after {
  display: none;
}

header .head-nav .hidden .tabs {
  margin-bottom: 15px;
  margin-right: 0;
	padding-left: 0;
}

header .head-nav .hidden .tabs li:last-child {
  margin-right: 0;
}

header .head-nav .hidden .tabs li a {
  background-color: transparent;
  color: #FFF;
  border: 1px solid #999;
  height: 40px;
  font-size: 1.2rem;
}
header .head-nav .hidden .tabs li a:hover{
	background-color: #666;
}

header .head-nav .hidden .tabs li.current a {
  background: #ddd;
  color: #333;
  height: 50px;
  border: none;
  position:relative;
}
header .head-nav .hidden .tabs li.current a:after {
	position: absolute;
  content: '';
  border-bottom: 8px solid #444;/*三角を作る*/
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

header .head-nav .hidden .tab-content {
  background-color: transparent;
  border: none;
  padding: 0;
}

header .head-nav .hidden .tab-content .tab {
  display: none;
}

header .head-nav .hidden .tab-content .tab.current {
  display: block;
}
header .head-nav .hidden .tab-content .tab p.tab-logo{
	text-align:center;
}
header .head-nav .hidden .tab-content .tab p.tab-logo img{
  display: block;
  margin:0 auto;
}
header .head-nav .hidden .tab-content .tab p.tab-logo a{
  color: #fff;
  font-size: 1.2rem;
}
header .head-nav .hidden .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}


header .head-nav .hidden .inside > div {
  width: 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

header .head-nav .hidden .inside > div:not(:last-child) {
  border-right: 1px solid #555;
  padding-right: 20px;
  margin-right: 20px;
}

header .head-nav .hidden .inside > div p.title {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #eee;
  color: #444;
	display:block;
  padding: 3px 20px;
	width:100%;
	text-align:center;
  margin-bottom: 5px;
}
header .head-nav .hidden .inside > div span.title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  display:block;
  padding: 20px 0 3px;
}
@supports (-ms-ime-align: auto) {
  header .head-nav .hidden .inside > div span.title {
    padding:20px 0 10px;
  }
}
header .head-nav .hidden .inside > div p.title + ul.link-list-arrow{
  margin-top:20px;
}

header .head-nav .hidden .inside > div .link-list-arrow li {
  width: calc(50% - 32px);
}
header .head-nav .hidden .link-list-arrow {
  width: calc(100% + 32px);
  width: 100%;
	padding-left:0;
	margin-bottom:20px;
}
@supports (-ms-ime-align: auto) {
  header .head-nav .hidden .link-list-arrow {
    margin-top:-20px;
  }
  header .head-nav .hidden .inside > div .link-list-arrow li {
    margin-bottom: -5px;
    line-height: 1;
  }
}

header .head-nav .hidden .link-list-arrow li {
  width: calc(25% - 32px);
}

header .head-nav .hidden .link-list-arrow li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #ddd;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}
header .head-nav .hidden .link-list-arrow li a::before{
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight:900;
  padding-right:0.3em;
}
.blank a::after{
  content: "\f2d2";
  font-family: "Font Awesome 5 Free";
  font-weight:900;
  padding-left:0.4em;
	color:#999;
}

header .head-nav .hidden .link-list-arrow li a:hover {
  background-color: #666666;
  text-decoration: none;
  color: #FFF;
  background-image: url(../img/icon/link_white_02.svg);
}

header .head-menu,
header .head-hidden {
  display: none;
}

header .head-hidden {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-top: 100px;
  background: #444;
  z-index: 3;
  pointer-events: none;
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  color: #FFF;
}

header .head-hidden a {
  color: #FFF;
}

header .head-hidden .inside {
  height: 100%;
  overflow: scroll;
}

header .head-hidden .item-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px 0;
}

header .head-hidden .item-tel a {
  width: 100%;
  color: #fff;
  padding: 10px 20px;
}

header .head-hidden .item-tel a:hover {
  text-decoration: none;
  color: #FF4B00;
}

header .head-hidden .item-tel__caption {
  display: flex;
  align-items: flex-end;
}

header .head-hidden .item-tel__caption > * + * {
  margin-left: 0.5em;
}
header .head-hidden .item-tel__caption span{
	font-size:1.2rem;
}

header .head-hidden .item-tel__title {
  display: flex;
  align-items: center;
}


header .head-hidden .item-tel__telNumber {
  color: #fff;
  font-size: 1.8em;
}
header .head-hidden .item-tel__telNumber a {
  display: flex;
  align-items: center;
}

header .head-hidden .item-nav-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #333;
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
	padding-left: 0;
}

header .head-hidden .item-nav-01 li {
  width: 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
	list-style:none;
}

header .head-hidden .item-nav-01 li:not(:last-child) {
  border-right: 1px solid #555555;
}

header .head-hidden .item-nav-01 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-size: 1.2rem;
}

header .head-hidden .item-nav-01 li a:hover {
  text-decoration: none;
  color: #FF4B00;
}

header .head-hidden .item-nav-02 {
	padding-left:0;
	border:1px solid #555;
}

header .head-hidden .item-nav-02 li {
  position: relative;
	list-style:none;
}
header .head-hidden .item-nav-02 > li{
	padding-left:0px;
}
header .head-hidden .item-nav-02 > li > a:before{
	position:absolute;
	content:"";
	display:inline-block;
	width:20px;
	height:20px;
	left:10px;
	top:15px;
}
header .head-hidden .item-nav-02 > li:nth-child(1) > a:before{
	background:url(https://futsal.itembox.design/item/images/icons/header-brand.png) no-repeat;
	background-size:contain;
}
header .head-hidden .item-nav-02 > li:nth-child(2) > a:before{
	background:url(https://futsal.itembox.design/item/images/icons/header-category.png) no-repeat;
	background-size:contain;
}
header .head-hidden .item-nav-02 > li:nth-child(3) > a:before{
	background:url(https://futsal.itembox.design/item/images/icons/header-teamorder.png) no-repeat;
	background-size:contain;
}
header .head-hidden .item-nav-02 > li:nth-child(4) > a:before{
	background:url(https://futsal.itembox.design/item/images/icons/header-boas.png) no-repeat;
	background-size:contain;
}

header .head-hidden .item-nav-02 li.parent .plus {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  right: 0;
  background: #444 url(https://futsal.itembox.design/item/images/svg/mega-open.svg) no-repeat center;
	-webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
header .head-hidden .item-nav-02 li.parent ul li .plus {
  background-color: #555;
}
header .head-hidden .item-nav-02 li.parent ul li ul li .plus {
  background-color: #666;
}
header .head-hidden .item-nav-02 li.parent.opened > .plus {
  background-image: url(https://futsal.itembox.design/item/images/svg/mega-close.svg);
}
header .head-hidden .item-nav-02 li.parent.opened > .plus:after{
	position: absolute;
  content: '';
  border-top: 10px solid #444;/*三角を作る*/
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
header .head-hidden .item-nav-02 li.parent.opened > ul > li > .plus:after{
  border-top: 10px solid #555;
}
header .head-hidden .item-nav-02 li.parent.opened > ul > li > ul > li > .plus:after{
  border-top: 10px solid #666;
}
header .head-hidden .item-nav-02 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0px;
  height: 50px;
}

header .head-hidden .item-nav-02 li a:hover {
  text-decoration: none;
}

header .head-hidden .item-nav-02 li a:after {
  border-left: 1px solid #555555;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin-left: auto;
  background: url(https://futsal.itembox.design/item/images/svg/mega-click.svg) no-repeat center;
}
header .head-hidden .item-nav-02 li ul li a{
	font-size:1.3rem;
}
header .head-hidden .item-nav-02 li ul li a:after {
  border-left: 1px solid #666;
}
header .head-hidden .item-nav-02 li ul li ul li a{
	font-size:1.2rem;
}
header .head-hidden .item-nav-02 li ul li ul li a:after {
  border-left: 1px solid #777;
}
header .head-hidden .item-nav-02 li ul li ul li ul li a:after {
  border-left: 1px solid #777;
}

header .head-hidden .item-nav-02 > li {
  border-bottom: 1px solid #555;
}
header .head-hidden .item-nav-02 > li > ul{
	background:#555;
}
header .head-hidden .item-nav-02 > li > ul > li{
  border-bottom: 1px dotted #666;
}
header .head-hidden .item-nav-02 > li > ul > li > ul{
	background:#666;
}
header .head-hidden .item-nav-02 > li > ul > li > ul > li{
  border-bottom: 1px dotted #777;
}
header .head-hidden .item-nav-02 > li > ul > li > ul > li > ul{
  background:#777;
}
header .head-hidden .item-nav-02 > li > ul > li > ul > li > ul > li{
  border-bottom: 1px dotted #888;
}
header .head-hidden .item-nav-02 > li > ul > li > ul > li > ul > li.title{
  margin-left: -10px;
  padding:5px;
  background: #999;
}


header .head-hidden .item-nav-02 > li > a {
  padding-left: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 32px;
}

header .head-hidden .item-nav-02 > li ul {
  display: none;
	padding-left:10px;
	margin-left:15px;
}
header .head-hidden .item-nav-02 > li ul li ul{
	margin-left:5px;
}



header.hide {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

header.hide .head-nav > ul > li.hover .hidden {
  pointer-events: none;
}

header .head-nav:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #009a43;
  z-index: 2;
  pointer-events: none;
}





@media screen and (min-width: 769px) and (max-width: 964px) {
  header .head-nav {
    padding-left: 0;
    padding-right: 15px;
  }
  header .head-nav > ul {
    margin-left: auto;
    margin-right: auto;
  }
  header .head-nav > ul > li {
    margin: 0 12px;
  }
  header .head-nav > ul > li > a {
    font-size: 1.2rem;
  }
	header .head-nav .hidden .tabs li a {
    font-size: 1.1rem;
  }
	header .head-nav > ul > li.hover > a:after {
		bottom:-9px;
	}
	header .head-nav .hidden .link-list-arrow li a {
		font-size:1.2rem;
	}
}

@media screen and (max-width: 768px) {

  header .head-nav ul {
    display: none;
  }
  header .head-menu {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10;
    cursor: pointer;
  }
  header .head-menu span {
    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    background-color: #333;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .head-menu span:last-child {
    margin-bottom: 0;
  }
  header .head-menu span.top {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  header .head-menu span.middle {
    margin-top: -2px;
    left: 0;
    position: relative;
  }
  header .head-menu span.bottom {
    margin-top: -2px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
  }
  header.active .head-menu .middle {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=0);
    opacity: 0;
    left: 20px;
  }
  header.active .head-menu .top {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
		border:1px solid #fff;
  }
  header.active .head-menu .bottom {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    border:1px solid #fff;
  }
  header .head-hidden {
    padding-top: 0px;
    padding-bottom:100px;
    display: block;
  }
  header.active .head-hidden {
    -ms-filter: "alpha( opacity=$number*100 )";
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position:all:sticky;
  }
  header.fs-l-header.active{
    position: fixed;
  }
  header {
    position: fixed;
    width: 100%;
    top: 0;
	right:0;
  }
  header .head-menu {
    top: 0;
    right: 8px;
	border:1px solid #333;
	background:#fff;
    position: fixed;
  }
	header.active .head-menu{
		border:1px solid #aaa;
		background:#444;
	}
  header .head-nav {
    display: none;
  }
  header.fs-ll-header.active div.fs-l-header__logo {
  	display: none;
  }
}






/* 内部メニュー
------------------------------------------------------------*/
.link-list-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -10px;
  margin-right: -32px;
}

.link-list-arrow.column-01 {
  margin-right: 0;
}

.link-list-arrow.column-01 li {
  width: 100%;
  margin-right: 0;
}

.link-list-arrow:not(:last-child) {
  margin-bottom: 6px;
}

.link-list-arrow li {
  width: calc(50% - 32px);
  margin-right: 32px;
  margin-bottom: 0px;
}

.link-list-arrow li a {
  display: -moz-inline-box;
  display: inline-block;
  padding-left: 0px;
}


.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-right: -7px;
}

.tabs.sp {
  display: none;
}

.tabs > * {
  width: 10px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  margin-right: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tabs > li.current span:first-child img {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}

.tabs > li.current span:first-child img:not(:first-child) {
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

.tabs > li.current span:last-child {
  font-size: 1.1rem;
}

.tabs > li > a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  position: relative;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}

.tabs > li > a:hover {
  text-decoration: none;
}

.tabs span:first-child img:not(:first-child) {
  position: absolute;
  left: 0;
  top: 0;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
}

.tabs span:last-child {
  line-height: 1.4;
}

@media screen and (min-width: 661px) and (max-width: 1024px) {
  .tabs span:last-child {
    font-size: 14px;
    font-size: 0.93333rem;
  }
}

.tabs.sml > li > a {
  height: 60px;
}

.tabs.sml > li.current > a {
  height: 75px;
  font-size: 1.6px;
  font-weight: bold;
}

.tab-content {
  border-top: 3px solid #004BA5;
  padding: 15px 30px 30px;
  background-color: #FFF;
}

.tab-content.b-orange {
  border-top-color: #FF4B00;
}

.tab-content.blank {
  padding: 30px 0 0;
  border-top: none;
}

.tab-content:not(:last-child) {
  margin-bottom: 45px;
}

.tab-content .tab {
  display: none;
}

.tab-content .tab.current {
  display: block;
}

.tab-content .tab section:not(:last-child) {
  margin-bottom: 40px;
}

.tab-content .tab .link-list li.current a {
  color: #FFF;
}

.tab-content .tab .link-list li.current a:after {
  background-image: url(../img/icon/arrow-link_white.svg);
}

.tab-content .tab .link-list li a:hover {
  color: #FFF;
}

.tab-content .tab .link-list li a:hover:after {
  background-image: url(../img/icon/arrow-link_white.svg);
}








.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

*[data-emergence], *.eg {
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -ms-filter: "alpha( opacity=$number*100 )";
  filter: alpha(opacity=0);
  opacity: 0;
}

*[data-emergence=visible] {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* floating */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(30%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

@keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    -ms-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

.flipIn {
  -webkit-animation-name: flipIn;
  animation-name: flipIn;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}


/* ユニフォーム見積依頼遷移ボタン  */
.custom_btn_anotherForm {
    margin: 40px 0 40px auto;
    width: 30%;
    background: #F39800;
    font-size: 16px;
    font-weight: bold;
    transition: .7s;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom_btn_anotherForm:hover {
    opacity: .7;
}
.custom_btn_anotherForm a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 8px;
    position: relative;
    color: #fff;
}

@media screen and (max-width:640px){
    .custom_btn_anotherForm {
        width: 100%;
    }
}

