@charset "UTF-8";

/*
CSS Document
Copyright (C) GLOBAL ASSET MOTIONS CO., LTD All Rights Reserved.
URL:www.glam.ne.jp
*/





ul.pdf_menu,
ul.pdf_menu_3{
    padding: 0px;
    width: 100%;
    height: auto;
	margin: 0;
	list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.pdf_menu li{
	width: 49%;
    height: auto;
    top: 0%;
    margin: 0;
    padding: 0px;
    display: inline-block;
    text-decoration: none;
}

ul.pdf_menu li:nth-child(n+3) {
   margin-top: 15px;
}


ul.pdf_menu_3::after{
  content:"";
  display: block;
  width: 32%;
}

ul.pdf_menu_3 li{
	width: 32%;
    height: auto;
    top: 0%;
    margin: 0;
    padding: 0px;
    display: inline-block;
    text-decoration: none;
}

ul.pdf_menu_3 li:nth-child(n+4) {
   margin-top: 15px;
}


/*== ボタン共通設定 */
.btn{
	width: 100%;
	height: auto;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #823c35;/* ボーダーの色と太さ */
	border-radius: 10px; 
    padding: 22px 0;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#333;
}

.btn:hover span{
	color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#823c35;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


.btn span::before{
    content: "";
    background: url("../about/img/pdf_img.png") no-repeat;
    background-size: 100%;
	background-position: top 50% left;
	padding: 3% 6%;
}

.btn span.word_link::before{
	content: "";
    background: url("../about/img/word_img.png") no-repeat;
    background-size: 100%;
	background-position: top 50% left;
	padding: 3% 6%;
}

.btn span.excel_link::before{
	content: "";
    background: url("../about/img/excel_img.png") no-repeat;
    background-size: 100%;
	background-position: top 50% left;
	padding: 3% 6%;
}


.btn span.movie_link::before{
	content: "";
    background: url("../about/img/movie_img.png") no-repeat;
    background-size: 100%;
	background-position: top 50% left;
	padding: 3% 5.5%;
}



/*ボタン設定ここまで*/

@media only screen and (max-width: 1199px){
    
ul.pdf_menu_3 li{
	  width: 48%;
    }
ul.pdf_menu_3 li:nth-child(n+3) {
      margin-top: 13px;
    }
    
ul.pdf_menu li:nth-child(n+3) {
   margin-top: 13px;
}
    
    
    
    
}


@media only screen and (max-width: 599px){
	
    ul.pdf_menu,
	ul.pdf_menu_3{
      display: block;
	  width: 100%;
    }
	
	
	ul.pdf_menu li:nth-child(n+2) {
      margin-top: 8px;
    }
	
	ul.pdf_menu_3 li:nth-child(n+2){
	  margin-top: 8px;
	}
	
    ul.pdf_menu li,
    ul.pdf_menu_3 li{
	  width: 100%;
    }
    
.btn{
	width: 100%;
	height: auto;
	border-radius: 10px; 
    padding: 16px 0;
}
    
}



/*** END ***/