@charset "UTF-8";
/*!
* "jost" is lisenced under the SIL Open Font License 1.1
* by https://indestructibletype.com/Renner.html
*/

/* CSS Document */

html{
	overflow-x: hidden;
      scroll-behavior: smooth;
}

body{
	position: relative;
	overflow-x: hidden;
	font-family: 'Jost',serif,'Helvetica Neue','Helvetica','Arial';
	-webkit-text-size-adjust: 100%;
	color: #000000;
	background-color: #FFF !important;
	-webkit-font-smoothing: antialiased;	
	font-family: a-otf-midashi-go-mb31-pr6n, sans-serif;
	font-style: normal;
}

img {
    width: 100%;
}

main #concept,
main #lineup,
main #message {
    font-size: 17px;
    line-height: 3;
    color: #0055aa;
    font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

.flex_box {
    display: flex;
    justify-content: space-between;
}

.only-PC {
    display: block;
}
    
.none-PC {
    display: none;
}

.only-TB {
    display: none;
}


/*既存のヘッダー、フッター修正*/
header #head{
	z-index:1000;
}

.l-header__inner{
	position:relative !important;
}

.l-header__logo{
	position:absolute !important;
}

.inner{
	width:1000px;
	margin:auto;
}

/*フェードイン*/
.fadeInWrapTop{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	bottom: -50px;
}

.fadeInWrapTop.active{
	opacity: 1;
	bottom: 0;
}

.fadeInWrapBegin{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	bottom: -50px;
}

.fadeInWrapBegin.active{
	opacity: 1;
	bottom: 0;
}

.fadeInWrapRight{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	right: -50px;
}

.fadeInWrapRight.active{
	opacity: 1;
	right: 0;
}

.fadeInWrapLeft{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	left: -50px;
}

.fadeInWrapLeft.active{
	opacity: 1;
	left: 0;
}

main{
	position: relative;
	top: 120px;
    background-color: #FFF;
}



/*********************************************
カーテンアニメーション
*********************************************/
.curtain {
  position: relative;
	display:inline-block;
  font-size: 30px;
}
/* span要素 最初は非表示 */
.curtain span {
  transition: all 0s 0.4s ease;
  opacity: 0;
/*  padding: 0 0.2em;*/
}
/* .curtainに.activeがついたらspanを表示（この場合は1s後に表示させる） */
.curtain.active span {
  opacity: 1;
  color:#333;
}
/* .curtainに擬似要素を追加して、transformで横幅を0にしておく scaleX(0)
		あと、position→left:0 でスタート位置を左にしておく
*/
.curtain:after {
  display: inline;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  background: #0055aa;
}
/* .curtainに.activeがついたら擬似要素のアニメーションを開始させる */
.curtain.active:after {
  animation: curtainEffect 0.7s ease-in-out 0.5s 1 normal both running;
}
/* アニメーションname duration 変化の度合い delay 回数 再生方向 アニメーションの開始前、終了後のスタイル アニメーションの再生・停止*/

/*　transform-originで変形における原点を設定（最初は左・上下の中央にセット）
		そのままscaleX(1)で右側いっぱいまで要素を伸ばし、
		伸ばした状態で原点を右・上下中央にセットし直す。
		原点が右に変わったことでscaleX(0)に戻る際、右側に消えるように流れる*/

@keyframes curtainEffect {
  0% {
    transform-origin: left center;
    transform: scaleX(0);
  }
  49.999% {
    transform-origin: left center;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right center;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right center;
    transform: scaleX(0);
  }
}





/*********************************************
ふわっとディレイ表示
*********************************************/
.delayed-image {
 	animation: fadeIn 4s ease 0s 1 normal;
    -webkit-animation: fadeIn 4s ease 0s 1 normal;
}
 
@keyframes fadeIn { 
    0% {opacity: 0}
    100% {opacity: 1} 
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



/*********************************************
横からカーテン
*********************************************/

.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap:before {
  animation: img-wrap 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}



/*********************************************
フェードイン
*********************************************/

.animation_img01{
    opacity: 0; 
    -webkit-transform: translate3d(0, 20%, 0); 
    transform: translate3d(0, 20%, 0);
    -webkit-transition: all 0.5s ease; 
    transition: all 1s ease;
}

.animation_img01.active{
    opacity: 1; 
    -webkit-transform: translate3d(0, 0, 0); 
    transform: translate3d(0, 0, 0);
}


/*********************************************
サイドメニュー
*********************************************/
.sidemenu {
    position:fixed;
    width: 13px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 35px;
}



.sidemenu li {
    width: 100%;
}

.sidemenu li:nth-child(1),
.sidemenu li:nth-child(2) {
    margin-bottom: 36px;
}

.sidemenu li:nth-child(1) .white {
    z-index: 11;
}

.sidemenu li:nth-child(2) .white {
    z-index: 11;
}

.sidemenu li:nth-child(3) .white {
    z-index: 11;
}

.sidemenu li:nth-child(1) .blue {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 10;
}

.sidemenu li:nth-child(2) .blue {
    position: absolute;
    left: 0;
    z-index: 10;
    opacity: 0;
}

.sidemenu li:nth-child(3) .blue {
    position: absolute;
    left: 0;
    z-index: 10;
    opacity: 0;
}


/*********************************************
メインビジュアル
*********************************************/
#mainVisual {
    background-image: url("../img/mv02.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    padding: 190px 0;
    margin-bottom: 224px;
}

#mainVisual .mv_inner {
    width: 1560px;
    margin: 0 auto;
}

#mainVisual .mv_inner h1 {
    width: 839px;
    height: auto;
    margin-bottom: 80px;
}

#mainVisual .mv_inner .mv_logo {
    width: 475px;
    height: auto;
    margin-bottom: 168px;
    margin-left: 95px;
}


#mainVisual .mv_inner .btn_wrap {
    width: 400px;
    height: auto;
    margin-left: 95px;
}





/*********************************************
コンセプト
*********************************************/
#concept {
/*    background-color: #e4eef7;*/
    padding-top: 233px;
    position: relative;
    width: 100%;
}

#concept .concept_imgwrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
}


#concept .concept_imgwrap h2 {
    width: 250px;
    position: absolute;
    top: 0;
    left: 0;
}

#concept .concept_imgwrap .concept_img01 {
    width: 290px;
    position: absolute;
    top: 135px;
    left: 0;
}

#concept .concept_imgwrap .concept_img02 {
    width: 600px;
    position: absolute;
    top: 0;
    right: 0;
}

#concept .concept_txtwrap {
    background-color: #e4eef7;
    padding: 320px 0 250px;
}

#concept .concept_txtwrap .concept_txt_inner {
    width: 1000px;
    margin: 0 auto;
}

#concept .concept_txtwrap .concept_txt_inner .concept_logo {
    width: 373px;
    margin-top: 62px;
}

#concept .concept_txtwrap .concept_txt_inner .concept_txt {
    text-align: left;
    font-weight: 300;
}




/*********************************************
ラインナップ
*********************************************/
#lineup {
    margin: 243px 0;
    width: 100%;
}

#lineup .inner {
    padding-top: 12px;
    position: relative;
    color: #666666;
    line-height: 1;
}

#lineup .inner h2 {
    width: 238px;
    position: absolute;
    top: 0;
    left: 0;
}

#lineup .inner .lineup_item {
    flex-wrap: wrap;
}

#lineup .inner .lineup_item li {
    width: 440px;
}

#lineup .inner .lineup_item li:nth-child(odd) {
    margin-top: 77px;
}

#lineup .inner .lineup_item li:nth-child(1),
#lineup .inner .lineup_item li:nth-child(2){
    margin-bottom: 130px;
}


#lineup .inner .lineup_item li figure .img_box {
    margin-bottom: 56px;
    position: relative;
}

#lineup .inner .lineup_item li figure figcaption {
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 300;
}

#lineup .inner .lineup_item li figure .caps{
    margin-bottom: 49px;
}

#lineup .inner .lineup_item li figure .txt {
    font-size: 15px;
    font-weight: 300;
}

#lineup .inner .lineup_item li:nth-child(1) figure .caps {
    width: 186px;
}

#lineup .inner .lineup_item li:nth-child(2) figure .caps {
    width: 287px;
}

#lineup .inner .lineup_item li:nth-child(3) figure .caps {
    width: 228px;
}

#lineup .inner .lineup_item li:nth-child(4) figure .caps {
    width: 203px;
}

#lineup .inner .lineup_item li:nth-child(1) figure .img_box .number {
    width: 256px;
    position: absolute;
    top: 51px;
    left: -63px;
}

#lineup .inner .lineup_item li:nth-child(2) figure .img_box .number {
    width: 252px;
    position: absolute;
    bottom: 19px;
    right: -60px;
}

#lineup .inner .lineup_item li:nth-child(3) figure .img_box .number {
    width: 251px;
    position: absolute;
    top: 52px;
    left: -63px;
}

#lineup .inner .lineup_item li:nth-child(4) figure .img_box .number {
    width: 206px;
    position: absolute;
    bottom: 24px;
    right: -51px;
}


/*横からフェードイン*/
.animation_slide_left{
    opacity: 0; 
    -webkit-transform: translate3d(-50%, 0, 0); 
    transform: translate3d(-50%, 0, 0);
    -webkit-transition: all 1s ease 0.2s; 
    transition: all 1s ease 0.5s;
}

.animation_slide_left.active{
    opacity: 1; 
    -webkit-transform: translate3d(0, 0, 0); 
    transform: translate3d(0, 0, 0);
}


.animation_slide_right{
    opacity: 0; 
    -webkit-transform: translate3d(50%, 0, 0); 
    transform: translate3d(50%, 0, 0);
    -webkit-transition: all 1s ease 0.2s; 
    transition: all 1s ease 0.5s;
}

.animation_slide_right.active{
    opacity: 1; 
    -webkit-transform: translate3d(0, 0, 0); 
    transform: translate3d(0, 0, 0);
}

/*********************************************
メッセージ
*********************************************/

#message {
    background-color: #abcbe6;
    padding: 156px 0;
    width: 100%;
}

#message .inner {
    position: relative;
}

#message .inner h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 251px;
}

#message .inner .flex_box .message_logowrap .message_logo {
    width: 394px;
    margin-bottom: 56px;
    margin-top: 263px;
}

#message .inner .flex_box .message_logowrap .message_logo-phiten {
    width: 276px;
}

#message .inner .flex_box .message_txt {
    color: #FFF;
}



/*********************************************
ファイテンリンク
*********************************************/
#link{
	background-color:#FFF;
	padding: 20px 0;
	box-sizing: border-box;
}

#link .inner{
	padding: 100px 0 80px;
}

#link .btnWrap{
	width: 300px;
	margin: auto;
	display: block;
}

#link .btnWrap img{
	width: 100%;
}

/*下部ボタンエリア*/
#brand .inner{
	padding-top: 90px;
	padding-bottom:80px;
	text-align: center;
}

#brand .btnGroup li{
	display:inline-block;
	width:250px;
	box-sizing:border-box;
	border: 1px solid #000;
	margin: 10px 7px;
}

#brand .btnGroup{
	width: 910px;
	text-align: center;
	margin: 0 auto 80px;
}

#brand .btnGroup li a{
	color:#000;
	display: block;
	box-sizing:border-box;
	padding: 12px;
	background-color: inherit;
	transition: 300ms ;
}

#brand .btnGroup li a:hover{
	color:#FFF;
	background-color: #000;
	transition: 300ms ;
}

#brand .btnGroup li a.selected {
	color: #FFF;
	background-color: #000;
	cursor: default;
	pointer-events: none;
}

#brand .contact{
	display:inline-block;
	text-align:center;
	border-bottom:2px solid #000;
	font-size:15px;
	font-weight:bold;
	padding:0 5px 10px;
	color: #000;
}

/*改行クラス（PC）*/
.breakLinePC{
	display:block;
}
/*改行クラス（SP）*/
.breakLineSP{
	display:inline;
}

/*PCのみ表示コンテンツ*/
.onlyPC{
	display:block !important;
}
.onlyPCInline{
	display:inline-block !important;
}
.onlySP{
	display:none !important;
}
/*リンク要素にカーソル乗せた時の変化*/
a:hover{
	opacity:0.9;
}

/*回り込み解除クラス*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}


/*画面サイズが2000px以下の場合*/
@media screen and (max-width: 2000px) {

}


/*画面サイズが1500px以下の場合*/
@media screen and (max-width: 1600px) {
    #mainVisual {
        background-position: 70% center;
    }
	
    #mainVisual .mv_inner {
        width: 100%;
        margin: 0 auto 0 50px;
    }
    
    
/*画面サイズが1500px以下の場合*/
@media screen and (max-width: 1500px) {
	
}

/*画面サイズが1300px以下の場合*/
@media screen and (max-width: 1300px) {

}

/*画面サイズが1200px以下の場合*/
@media screen and (max-width: 1200px) {
    
    /*共通*/
    
    .only-PC {
        display: none;
    }
    
    .none-PC {
        display: block;
    }
    
    .only-TB {
        display: block;
    }

    
	.inner{
		width:auto!important;
		margin:0 auto!important;
        padding: 0 50px!important;
    }
        
    
    main {
        top: 55px;
    }
    
    /*メインビジュアル*/     
    #mainVisual {
        background-image: url("../img/mv_TB.jpg");
        padding: 13.4% 0;
        margin-bottom: 19.4%;
    }
    
    #mainVisual .mv_inner {
        width: 100%;
        padding: 0 50px;
        margin-left: 0;
    }
    
    #mainVisual .mv_inner h1 {
        width: 67.8%;
        height: auto;
        margin-bottom: 6.53%;
    }
    
    #mainVisual .mv_inner .mv_logo {
        width: 38.4%;
        height: auto;
        margin-bottom: 13.4%;
        margin-left: 7.6%;
    }
    
    #mainVisual .mv_inner .btn_wrap {
        width: 32.2%;
        height: auto;
        margin-left: 7.6%;
    }
    
    
    .sidemenu {
        position: fixed;
        width: 11px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 19px;
    }
    
    
    
    /*コンセプト*/ 
    #concept {
        padding-top: 20.2%;
    }
    
    #concept .concept_title-SP {
        width: 26%;
        position: absolute;
        top: 0;
        left: 50px;
    }

    #concept .concept_txtwrap {
        padding: 27.69% 50px 21.58%;
        width: auto;
    }
    
    #concept .concept_txtwrap .concept_txt_inner {
        width: auto;
    }
    
    #concept .concept_txtwrap .concept_txt_inner .concept_logo {
        width: 36.7%;
        margin-top: 6.13%;
    }
    
    #concept .concept_txtwrap .concept_txt_inner .concept_txt {
        width: 46.8%;
        font-size: 14px;
    }
    
    #concept .concept_img02-SP {
        position: absolute;
        width: 52%;
        right: 50px;
        top: 0;
    }
    
    #concept .concept_img01-SP  {
        position: absolute;
        width: 25%;
        left: 50px;
        top: 11%;
    }
    
    /*ラインナップ*/ 
    #lineup {
    margin: 19.7% 0;
    }
    
    #lineup .inner .lineup_item li {
        width: 43%;
    }
        
    #lineup .inner .lineup_item li figure figcaption {
        font-size: 12px;
    }
        
    #lineup .inner .lineup_item li figure .txt {
        font-size: 14px;
    }
        
    #lineup #lineup01 .pointGroup .point02 {
		right: 0px;
		top: 160px;
		width: 240px;
	}
	
	#lineup #lineup01 .pointGroup .point02:before {
		content: "";
		width: 240px;
		left: -130px;
	}
	
	#lineup #lineup01 .pointGroup .point02 .text {
		top: 155px;
		left: -70px;
	}
    
    #lineup .inner h2 {
        width: 27.7%;
        left: 50px;
    }
    
    #lineup .inner .lineup_item li:nth-child(1) figure .img_box .number {
        width: 58.2%;
        top: 8.2%;
        left: -14%;
    }
    
    #lineup .inner .lineup_item li:nth-child(2) figure .img_box .number {
        width: 57.2%;
        bottom: 3.5%;
        right: -13.6%;
    }
    
    #lineup .inner .lineup_item li:nth-child(3) figure .img_box .number {
        width: 57.2%;
        top: 9.3%;
        left: -14.5%;
    }
    
    #lineup .inner .lineup_item li:nth-child(4) figure .img_box .number {
        width: 46.8%;
        bottom: 4.2%;
        right: -11.6%;
    }
    
    #lineup .inner .lineup_item li figure .img_box {
        margin-bottom: 12.34%;
    }
    
    #lineup .inner .lineup_item li figure figcaption {
        margin-bottom: 6.3%;
    }
    
    #lineup .inner .lineup_item li figure .caps {
        margin-bottom: 11%;
    }
    
    #lineup .inner .lineup_item li:nth-child(1), 
    #lineup .inner .lineup_item li:nth-child(2) {
        margin-bottom: 12.8%;
    }
    
    
    
       
    /*メッセージ*/
    
    #message .inner h2 {
        left: 50px;
        width: 29.29%;
    }
    
    #message {
        padding: 13.5% 0;
    }
    
    #message .inner .flex_box .message_txt {
        width: 49.3%;
        font-size: 14px;
        line-height: 2.5;
    }
	
    #message .inner .flex_box .message_logowrap {
        width: 38.8%;
    }
    
    #message .inner .flex_box .message_logowrap .message_logo {
        width: 100%;
        margin-bottom: 14%;
        margin-top: 78.7%;
    }
    
    #message .inner .flex_box .message_logowrap .message_logo-phiten {
        width: 70%;
        margin: 0 auto;
    }
    
    #link {
        padding: 70px 0;
    }
    
}

/*画面サイズが1070px以下の場合*/
@media screen and (max-width: 1070px) {
	main{
		top: 50px;
	}
}

/*画面サイズが1100px以下の場合*/
@media screen and (max-width: 1100px) {
	.l-header__logo{
		position:relative !important;
	}
    
}

/*画面サイズが1000px以下の場合*/
@media screen and (max-width: 1000px) {

	
	#brand .btnGroup li{
		float: left;
		width: 30%;
		margin: 10px 1%;
		font-size:13px;
	}
	
	#brand .btnGroup{
		width: auto;
	}
}

/*画面サイズが900px以下の場合*/
@media screen and (max-width: 900px) {

}

/*画面サイズが800px以下の場合*/
@media screen and (max-width: 880px) {
	
	
}

/*画面サイズが800px以下の場合*/
@media screen and (max-width: 800px) {
	
	#brand .btnGroup{
		text-align:left;
		margin: 0 auto 40px;
	}
	
	#brand .btnGroup li{
		width: 44%;
		margin: 10px 3%;
		font-size: 13px;
		text-align: center;
	}
}

/*画面サイズが700px以下の場合*/
@media screen and (max-width: 700px) {
    
}

/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {

	
	#link .inner {
		padding: 50px 0;
	}
	

	
}

/*画面サイズが600px以下の場合*/
@media screen and (max-width: 600px) {
	#link {
		background-size: contain;
	}
}


/*画面サイズが600px以下の場合(SP)*/
@media screen and (max-width: 559px) {
    /*改行クラス（SP）*/
	.breakLineSP{
		display:block;
	}
	/*改行クラス（PC）*/
	.breakLinePC{
		display:inline;
	}
	/*PCのみ表示コンテンツ*/
	.onlyPC{
		display:none !important;
	}
	.onlyPCInline{
		display:none !important;
	}
	.onlySP{
		display:block !important;
	}
    
    .noneSP {
        display: none;
    }
    
    .inner {
        padding: 0 20px!important;
    }
    
    
    
    .flex_box {
    flex-wrap: wrap;
}
    
    /*メインビジュアル*/
    #mainVisual {
        background-image: url("../img/mv_SP.jpg");
        padding: 16.4% 0;
        margin-bottom: 38%;
    }
    
    #mainVisual .mv_inner {
        padding: 0 20px;
    }
    
    #mainVisual .mv_inner h1 {
        width: 62%;
        height: auto;
        margin-bottom: 6.53%;
    }
    
    #mainVisual .mv_inner .mv_logo {
        width: 51%;
        height: auto;
        margin-bottom: 13.4%;
        margin-left: 7.6%;
    }
    
    #mainVisual .mv_inner .btn_wrap {
        width: 42%;
        height: auto;
        margin-left: 7.6%;
    }

    
    
    
    /*コンセプト*/
    
    #concept .concept_title-SP {
        width: 48%;
        top: -7.4%;
        left: 20px;
    }
    
    
    #concept {
        padding-top: 33.6%;
    }
    
    #concept .concept_img01-SP {
        width: 36vw;
        left: 0;
        top: 11%;
        z-index: 2;
    }
    
    #concept .concept_img02-SP {
        width: 69vw;
        right: 0;
        top: 0;
    }

    #concept .concept_txtwrap {
        padding: 42% 20px 24%;
    }
    
    #concept .concept_txtwrap .concept_txt_inner .concept_logo {
        width: 80.5%;
        margin: 0 auto 15%;
    }

    
    #concept .concept_txtwrap .concept_txt_inner .concept_txt {
        width: 100%;
        line-height: 2.5;
    }
    
     /*ラインナップ*/ 
    main #lineup {
        margin: 30% 0;
        font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    }
    
    #lineup .inner {
        padding-top: 13.6% !important;
    }
    
    #lineup .inner h2 {
        width: 51%;
        left: 20px;
    }
    
    #lineup .inner .lineup_item li {
        width: 100%;
        margin-top: 0!important;
    }
    
    #lineup .inner .lineup_item li:nth-child(1),
    #lineup .inner .lineup_item li:nth-child(2),
    #lineup .inner .lineup_item li:nth-child(3) {
        margin-bottom: 28%!important;
    }
    
    #lineup .inner .lineup_item li:nth-child(1) figure .img_box .number {
        width: 57.6%;
        top: 8.2%;
        left: -5%;
    }
    
    #lineup .inner .lineup_item li:nth-child(2) figure .img_box .number {
        width: 57.2%;
        right: -3.58%;
    }
    
    #lineup .inner .lineup_item li:nth-child(3) figure .img_box .number {
        width: 57.2%;
        left: -4.1%;
    }
    
    #lineup .inner .lineup_item li:nth-child(1) figure .caps {
        width: 141px;
    }
    
    #lineup .inner .lineup_item li:nth-child(2) figure .caps {
        width: 218px;
    }
    
    #lineup .inner .lineup_item li:nth-child(3) figure .caps {
        width: 174px;
    }
    
    #lineup .inner .lineup_item li:nth-child(4) figure .caps {
        width: 154px;
    }

    
    /*メッセージ*/
    #message {
        padding: 26% 0;   
    }
    
    #message .inner {
        padding-top: 15.4% !important;
    }  
    
    #message .inner h2 {
        left: 20px;
        width: 50%;
    }
    
    #message .inner .flex_box .message_txt {
        width: 100%;
        order: 1;
    }
    
    #message .inner .flex_box .message_logowrap {
        width: 85%;
        order: 2;
        margin: 0 auto;
    }
    
    #message .inner .flex_box .message_logowrap .message_logo {
        margin-top: 30%;
    }
    
    #link .btnWrap {
        width: 250px;
    }

}



/*画面サイズが480px以下の場合*/
@media screen and (max-width: 480px) {

	
	#brand .btnGroup li{
		width: 100%;
		margin:0 auto 20px;
		font-size: 15px;
		text-align: center;
	}
	
	#brand .btnGroup li a{
		padding:15px;
	}
}