@charset "utf-8";

body {
  max-width: 1920px;
  width: 100%;
  margin: auto !important;
  font-family: "Zen Kaku Gothic New", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  position: relative;
}

#root {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.telWrap {
  color: inherit;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

a, button {
  transition: .3s;
}

p > a {
  color: inherit;
  text-decoration: underline;
}

p > a:hover {
  color: inherit;
}

/*-- TOP --------------------------------------------------------------*/

.updown{
  animation-name: updown;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: .5s;
}

@keyframes updown {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 10px);
  }
}

.coverTxt01 {
    font-size: 4vw;
}

/*-- 共通 --------------------------------------------------------------*/

/*-- アコーディオン --*/
.accordionBtn {
    cursor: pointer;
}

.accordionContent {
    display: none;
}

.accordionIcon {
	position: relative;
	width: 100%;
	height: 16px;
	margin-right: 5px;
	margin: 0 0 0 2%;
	max-width: 16px;
}

.accordionIconItem01 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #fff;
	top: 50%;
	transform: rotate(0deg);
}

.accordionIconItem02 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #fff;
	top: 50%;
	transform: rotate(90deg);
	transition: .5s;
}

/*＋、－切り替え*/
.accordionIcon.active > .accordionIconItem01 {
	display: none;
}

.accordionIcon.active > .accordionIconItem02 {
	top: 50%;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

/*タブ切り替え*/
.panel {
    display: none;
}

.panel.is-show {
    display: block;
}

/*-- 画像制御 --*/
.imgFit {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.imgControl {
  position: relative;
  padding: 0 0 100%;
}

.imgControl > img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.imgRounded01 {
    border-radius: 10px;
}

.imgClip01 {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 27% 100%);
}

.imgCircle {
    padding: 50%;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.imgCircle > img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*-- タイトル --*/
.tit01 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.45em;
}

.tit02 {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.45em;
}

.tit03 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.45em;
}

.enTit01 {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.16em;
}

.enTit02 {
    font-size: 40px;
    font-weight: bold;
	font-family: 'Catamaran', sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.65em;
}

.subEnTit01 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25em;
}

.titDeco01 {
    padding: 0 0 9px 0;
    border-bottom: 3px solid #C4C4C4;
}

.titDeco02 {
    border-bottom: solid 2px #707070;
    padding: 0 0 5px;
}

.titDeco03 {
    border-left: solid 5px #1DA3DE;
    background: rgb(29 163 222 / 10%);
    padding: 10px 2%;
}

.titDeco04 {
    background: #57C6F7;
    display: inline-block;
    padding: 30px 2%;
    border-radius: 10px;
    color: #fff;
}

.titDeco04:after {
    content: "";
    display: block;
    max-width: 24px;
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    border: 12px solid transparent;
    border-top: 20px solid #57C6F7;
    z-index: 1;
}

.titDeco05 {
  position: relative;
}
 
.titDeco05:before,
.titDeco05:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #1DA3DE;
  width: 4px;
  height: 2em;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}
 
.titDeco05:before {
  transform: rotate(-35deg);
}
 
.titDeco05:after {
  transform: rotate(35deg);
}

.titDeco05 > span {
  padding: .4em 0 0.2px;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1em .3em;
  background-image: radial-gradient(.15em .15em at center center,#333333,#333333 100%,transparent);
  border-bottom: solid 2px #333333;
}

/*==================================================
背景色が伸びて出現
===================================*/

/*全共通*/

.bgextend{
  animation-name:
  bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:
  forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
  display: inline-block;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
  animation-name:
  bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:
  forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /*伸びる背景色の設定*/
  background: rgb(0,255,240);
  background: -moz-linear-gradient(90deg, rgba(0,255,240,1) 0%, rgba(61,124,185,1) 60%);
  background: -webkit-linear-gradient(90deg, rgba(0,255,240,1) 0%, rgba(61,124,185,1) 60%);
  background: linear-gradient(90deg, rgba(0,255,240,1) 0%, rgba(61,124,185,1) 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00fff0",endColorstr="#3d7cb9",GradientType=1);
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}

/*-- テキスト --*/
.indent01 {
  padding-left: 1em !important;
  text-indent: -1em !important;
}

.txt01 {
	line-height: 2.25;
}

.txtColor01 {
    color: #1DA3DE;
}

/*-- フォント --*/
.enFont01 {
	font-family: 'Outfit', sans-serif;
}

.enFont02 {
	font-family: 'Catamaran', sans-serif;
}

.enFont03 {
	font-family: 'Lato', sans-serif;
}

/*-- ボタン --*/
.btn01 {
    max-width: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px #1DA3DE;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.25em;
    color: #1DA3DE;
    padding: 11px 2% 10px;
}

.btn01:after {
    content: "→";
    margin: 0 0 0 15px;
}

.btn01:hover {
    background: #1DA3DE;
    color: #fff;
}

.btn02 {
    max-width: 297px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.25em;
    color: #fff;
    background: #57C6F7;
    padding: 12px 2% 11px;
}

.btn02:after {
    content: "";
    display: block;
    max-width: 28px;
    width: 100%;
    height: 28px;
    background: url(https://plusinnovation.jp/system_panel/uploads/images/arrow_icon01.svg) center no-repeat;
	background-size: contain;
	margin: 0 0 0 30px;
}

.btn02:hover {
    background: #333;
    color: #fff;
}

.btn03 {
    max-width: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px #fff;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.25em;
    color: #fff;
    padding: 11px 2% 10px;
}

.btn03:after {
    content: "→";
    margin: 0 0 0 15px;
}

.btn03:hover {
    background: #fff;
    color: #1DA3DE;
}

/*-- ホバーアクション --*/
.hvr-img-grow {
    overflow: hidden;
}

.hvr-img-grow img {
    transition: .5s;
}

.hvr-img-grow:hover 
> img {
    transform: scale(1.2);
}

/*-- 下層カバー --*/
.incover {
  max-width: 1920px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  height: 180px;
  position: relative;
  text-align: center;
  padding: 0 15px;
}

.incover:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    background: rgb(0 0 0 / 40%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.incoverBox {
    width: 96%;
    text-align: center;
    color: #fff;
}

.incoverTit {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.6em;
}

.incoverSubTit {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.34em;
    margin: 3px 0 0;
}

/*-- パンくず --*/
.breadWrap {
  padding: 7px 30px;
}

.breadBox {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}

.breadLink {
  color: #333;
  text-decoration: underline;
  display: block;
}

.breadLink:hover {
  color: #333;
  text-decoration: underline;
}

/*-- レイアウト --*/
.wrap01 {
    padding: 55px 0;
}

.inner {
    max-width: 1230px;
    width: 100%;
    padding: 0 15px;
    margin: auto;
    min-height: 20px;
}

.bgColor01 {
    background-color: #F8FAFA;
}

/*-- テーブル --*/
.baseTb {
  width: 100%;
  margin: 0 auto;
  border: solid 1px #ccc;
  border-bottom: none;
}

.baseTh {
  padding: 15px;
  border-bottom: solid 1px #ccc;
  background-color: #1DA3DE;
  color: #fff;
  line-height: 1.5em;
  font-weight: bold;
  }

.baseTd {
  padding: 15px;
  border-bottom: solid 1px #ccc;
  background: #fff;
  line-height: 1.5em;
}

.baseTd>a {
  display: inline-block;
  color: #2B2939;
  text-decoration: underline;
}

.baseTd>a:hover {
  text-decoration: none;
}

/*-- header -----------------------------------------------------------------*/
.gnavSl .gnavSec {
  position: absolute;
  max-width: 320px;
  width: 100%;
  background: #939393;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  visibility: hidden;
  opacity: 0;
}

.gnavSl:hover > .gnavSec {
  visibility: visible;
  opacity: 1;
}

.gnavArrow {
    transform: translateY(-50%);
}

a.navLink01:before {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    transition: .5s;
}

a.navLink01:hover:before {
    width: 100%;
}

.humBtn {
    max-width: 35px;
    width: 100%;
    height: 35px;
    display: none;
    justify-content: center;
    align-items: center;
    background: #F4F4F4;
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
    position: fixed;
    top: 7px;
    right: 25px;
    z-index: 99999999;
}

.humBtnIn {
    max-width: 15px;
    width: 100%;
    height: 10px;
    position: relative;
}

.humBtnIn > div {
    width: 100%;
    height: 2px;
    margin: auto;
    background: #1DA3DE;
    position: absolute;
    transition: .5s;
}

.humBtnIn > div:nth-child(2) {
	top: 50%;
	right: 0;
	left: 0;
}

.humBtnIn > div:nth-child(3) {
    top: 100%;
    right: 0;
    left: 0;
}

.open > .humBtnIn div:nth-of-type(1) {
	top: 50%;
	transform: rotate(-225deg);
}

.open > .humBtnIn div:nth-of-type(2) {
	opacity: 0;
}

.open > .humBtnIn div:nth-of-type(3) {
	top: 50%;
	transform: rotate(225deg);
	width: 100%;
}

.navArea {
    opacity: 0;
    transition: .5s;
    visibility: hidden;
    z-index: 9999999999;
}

.navArea.open {
    opacity: 1;
    visibility: visible;
}

/*スマホ時のナビ*/

.spNav {
    max-width: calc(100% - 70px);
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.spNavArea {
    width: 100%;
    height: 100%;
    display: flex;
    background: #333;
}

.spNavBlock {
	flex: 1;
	display: flex;
}

.spNavConte-l {
	width: 33.33%;
	border-right: 1px solid #FFF;
}
.spNavLink {
    padding: 5px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spNavLinkIconBx {
	width: 100%;
	height: 30px;
	position: relative;
}

.spNavLinkIconBx > * {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spFa {
    font-size: 23px;
    color: #fff;
}

.spNavBtnBar {
    max-width: 36px;
    height: 26px;
    width: 100%;
    position: relative;
}

.spNavBtnTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: #FFF;
}

.spNavLinkTxt {
    margin: 5px auto 0;
    font-size: 12px;
    color: #fff;
}

.spNavBtn {
    padding: 10px 5px 5px;
    width: 70px;
    height: 70px;
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #1DA3DE;
    z-index: 9999999999;
}

.spNavBtnBarItem {
    width: 100%;
    height: 3px;
    background: #FFF;
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: ease .5s;
}

.spNavBtnBarItem:nth-of-type(1) {
    top: 0;
}

.spNavBtnBarItem:nth-of-type(2) {
    top: 12px;
}

.spNavBtnBarItem:nth-of-type(3) {
    bottom: 0;
}

.open .spNavBtnBarItem {
    transition: ease .5s;
}

.open .spNavBtnBarItem:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
}

.open .spNavBtnBarItem:nth-of-type(2) {
    opacity: 0;
}

.open .spNavBtnBarItem:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
}

.spMenu {
    margin: auto;
    padding: 0 15px;
    max-width: 1920px;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: -100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999999;
    transition: ease .5s;
}

.spMenu.open {
    right: 0;
}

.spMenuArea {
    width: 100%;
    height: 100%;
}

.spMenuConte {
    padding: 100px 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
}

.spMenuConte::-webkit-scrollbar {
    display:none;
}

.spMenuLink {
    padding: 20px 5px;
    text-align: center;
    display: block;
    color: #FFF;
    border-bottom: 1px solid #CCC;
}

.spMenuLink:hover {
    color: #FFF;
    background: #acacac;
}

.milab_title.tit01 {
    background-color: #f2f2f2;
    font-size: 25px;
    padding: 20px 0 20px 0;
    display: block;
    width: 500px;
    letter-spacing: 1px;
}

.tit01.milab_title.milab_title02 {
    font-size: 20px;
    font-weight: bold;
    color: rgb(51, 51, 51);
    width: 430px;
    padding: 20px 20px 20px 20px;
    display: block;
    text-align: center;
    border: #333333;
}

.inner.milab_inner {
    margin: 0 auto 120px auto;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:375px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.tit01.milab_title.milab_title02 {
    max-width: 100%;
}
 
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 375px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:414px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.tit01.milab_title.milab_title02 {
    max-width: 100%;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 414px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:544px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 544px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width: 768px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
body {
    font-size: 14px;
}

/*-- TOP --------------------------------------------------------------*/

.coverTxt01 {
    font-size: 3.5vw;
}
	
/*-- 共通パーツ --------------------------------------------------------------*/
  
/*-- 改行 --*/
.br768None br {
   display: none;
}

.vartical-text-md {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
  
/*-- 下層カバー --*/
.incoverTit {
    font-size: 28px;
}

.incoverSubTit {
    font-size: 21px;
}
	
/*-- パンくず --*/
.breadBox {
   font-size: 14px;
}
  
/*-- テーブル --*/
.baseTh {
    border-right: solid 1px #ccc;
}

/*-- タイトル --*/
.tit01 {
    font-size: 26px;
}

.tit02 {
    font-size: 19px;
}

.tit03 {
    font-size: 17px;
}

.enTit01 {
    font-size: 46px;
}

.subEnTit01 {
    font-size: 17px;
}

/*-- header -----------------------------------------------------------------*/

.humBtn {
    display: flex;
}
	
.spNav {
    display: none;
}

.spNavBtn {
    display: none;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:992px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
  
 
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 992px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width: 1024px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

body {
    font-size: 16px;
}

/*-- TOP --------------------------------------------------------------*/

.coverTxt01 {
    font-size: 2.6vw;
}
	
/*-- 共通 -----------------------------------------------------------------*/

/*-- 改行 --*/
.br1024None br {
	display: none;
}

/*-- 下層カバー --*/
.incover {
	height: 350px;
}

.incoverTit {
    font-size: 40px;
}

.incoverSubTit {
    font-size: 26px;
}

/*-- パンくず --*/
.breadWrap {
	padding: 15px 15px;
	background: #fff;
}

/*-- レイアウト --*/
.wrap01 {
    padding: 160px 0;
}

/*-- タイトル --*/
.tit01 {
    font-size: 35px;
}

.tit02 {
    font-size: 24px;
}

.tit03 {
    font-size: 23px;
}

.enTit01 {
    font-size: 65px;
}

.subEnTit01 {
    font-size: 20px;
}

/*-- ボタン --*/
.btn02:after {
    max-width: 55px;
    height: 55px;
}

/*-- header -----------------------------------------------------------------*/

.humBtn {
    max-width: 58px;
    height: 58px;
    top: 21px;
	right: 50px;
}

.humBtnIn {
    max-width: 20px;
    height: 15px;
}

.spMenuConte {
    padding: 100px 0;
}

.spMenuLink {
    padding: 20px 5px;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1200px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-- 共通パーツ --------------------------------------------------------------*/

/*-- 改行 --*/
.br1200None br {
	display: none;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1200px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1300px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1300px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1400px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1600px) {
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
  
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
}/* min-width: 1600px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */