@charset "utf-8";
/* CSS Document */

/* course */

#course, #itemLineup {
    position:relative;
}

@media screen and (max-width:840px) {
#course, #itemLineup {
    margin:0;
}
    
}

.course-list{
	display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.course-list section{
    width:24%; /* 28% */
	color: #000000;
	position: relative;
	margin:0 0 0px 0;
/*	border-left: 2px solid rgba(0,102,210,1.00);
	border-bottom: 3px solid rgba(0,102,210,1.00);
*/	box-sizing: border-box;
    /*padding:20px 20px 50px 20px;
	border: 1px solid #000000;*/
}
.course-list section:nth-child(1){
     animation-delay: 1.0s;   
}
.course-list section:nth-child(2){
     animation-delay: 1.2s;   
}
.course-list section:nth-child(3){
     animation-delay: 1.4s;   
}
.course-list section:nth-child(4){
     animation-delay: 1.6s;   
}


@media screen and (max-width:991.98px) {
.course-list section{
    width:46%;
}
}

@media screen and (max-width:575.98px) {
.course-list section{
    width:50%;
	padding: 0.2em;
}
.course-list section:nth-child(2),
.course-list section:nth-child(3),
.course-list section:nth-child(4){
     animation-delay: 0s;   
}
}

.course-list section .course-img, .course-list section .course-imgEN {
	padding-top:70%;
	background-size:cover!important;
	margin-bottom: 20px;
}



.course-list section:nth-of-type(1) .course-img{
    background:url("../images/chara-01-tx.svg") no-repeat center;
    background-size: cover;
}

.course-list section:nth-of-type(2) .course-img{
     background:url("../images/chara-02-tx.svg") no-repeat center;
    background-size: cover;
}

.course-list section:nth-of-type(3) .course-img{
     background:url("../images/chara-03-tx.svg") no-repeat center;
    background-size: cover;
}
.course-list section:nth-of-type(4) .course-img{
     background:url("../images/chara-04-tx.svg?0513") no-repeat center;
    background-size: cover;
}

.course-list section:nth-of-type(1) .course-imgEN{
    background:url("../images/chara-01-txEN.svg") no-repeat center;
    background-size: cover;
}

.course-list section:nth-of-type(2) .course-imgEN{
     background:url("../images/chara-02-txEN.svg") no-repeat center;
    background-size: cover;
}

.course-list section:nth-of-type(3) .course-imgEN{
     background:url("../images/chara-03-txEN.svg") no-repeat center;
    background-size: cover;
}
.course-list section:nth-of-type(4) .course-imgEN{
     background:url("../images/chara-04-txEN.svg") no-repeat center;
    background-size: cover;
}

/*------Lineup img-------*/
#itemLineup .course-list section .course-img{
	padding-top:70%;
	background-size:cover!important;
}

#itemLineup .course-list section:nth-of-type(1) .course-img{
    background:url("../images/item-01.jpg") no-repeat center;
    background-size: cover;
}

#itemLineup .course-list section:nth-of-type(2) .course-img{
     background:url("../images/M011-02.jpg") no-repeat center;
    background-size: cover;
}

#itemLineup .course-list section:nth-of-type(3) .course-img{
     background:url("../images/item-03.jpg") no-repeat center;
    background-size: cover;
}
#itemLineup .course-list section:nth-of-type(4) .course-img{
     background:url("../images/item-04.jpg") no-repeat center;
    background-size: cover;
}
.course-list section p{
   /* font-size: 1.3rem;*/
	color: #ffffff;
	position: absolute;
	top: 50%;
	left: 10%;
	text-align: center!important;
}

#itemLineup .course-list section a {
	text-decoration: none;
	color:#000000;
}

#itemLineup .course-list section a:hover {
	text-decoration: underline;
}


@media screen and (max-width:1090px) {
.course-list section p{
    font-size: 1rem;
}    
}




/*==================================================
共通　横並びのための設定
===================================*/

.gnavi{
    display: flex;
    flex-wrap: wrap;/*スマホ表示折り返し用なのでPCのみなら不要*/
    margin:0 0 50px 0;
    list-style: none;
}

.gnavi li a{
    display: block;
    padding:10px 30px;
    text-decoration: none;
    color: #fbaa05;
}

.gnavi li{
    margin-bottom:20px;
}

/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#fbaa05;
}

.gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#fbaa05;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}



/*==================================================
アコーディオンのためのcss 9-2-1
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}
.company-line .accordion-area {
	list-style: none;
	width: 30rem;
	margin: 0;
}

.accordion-area li{
    margin: 10px 0;
}
.company-line .accordion-area li{
    margin: 0px 0;
}
.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 2% 2% 2% 50px;
	margin-bottom: 0;
    transition: all .5s ease;
}

.kaihatsu-box .accordion-area .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 1% 1% 1% 50px;
	margin-bottom: 0;
    transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
	margin:0 3% 3% 3%;
    padding: 3%;
}



/*---------------------------------------------*/
/* button 7-1-1
============================================== */
.btn-st {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #3b74a6;/* ボーダーの色と太さ */
    padding: 0.5rem;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn-st span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#3b74a6;
}

.btn-st:hover span{
	color:#fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#3b74a6;/*背景色*/
 	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);
}

/*---------------------------------------------*/
/* button 7-1-47
============================================== */
/*矢印が右に移動して背景がつく*/

.btnarrow5{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	border: 1px solid #555;
    padding: 8px 30px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #333;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
	background: #fff;
}

.btnarrow5:hover{
	background:#cc99ff;
	color:#fff;
}

/*矢印と下線の形状*/
.btnarrow5::before{
	content:"";
    /*絶対配置で下線の位置を決める*/
	position: absolute;
	top:50%;
	right:-26px;
    /*下線の形状*/
	width:40px;
	height:1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btnarrow5::after{
	content:"";
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top: 20%;
    right: -21px;
    /*矢印の形状*/
	width:1px;
	height:12px;
	background:#333;
    transform:skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
}

/*hoverした際の移動*/
.btnarrow5:hover::before{
	right:-40px;
}

.btnarrow5:hover::after{
	right:-35px;
}


