/* ==========================================================
*
*  共有パーツスタイル
*
========================================================== */

@charset "UTF-8";

/******************************************
*
Title
*
******************************************/

/* ---------------------------------------------
*   H1 title
--------------------------------------------- */
h1{
	display:block;
	overflow:hidden;
	margin:30px 0;
	padding:1em 0;
	font-size:2.8rem;
	color:#012169;
	text-align:center;

	border-top:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
}

.headerMain__logo h1 {
    width: 300px;
    margin: 0;
    padding: 0;
    font-size: 0;
    color: 0;
    border: none;
}

h1 > span{
    display:inline-block;
    line-height:100%;
	color:#012169;
    padding-left:35px;
    background-position:0 50%;
    background-repeat:no-repeat;
    background-size:contain;
}

h1 > span > small{
    font-size:1.4rem;
}

#support h1 > span{
    padding-left: 45px;
    background-image: url('../../images/icon/title_icon_file.png');
}

#commentary h1 > span{
    background-image: url('../../images/icon/title_icon_info.png');
}

#elearning h1 > span{
    background-image: url('../../images/icon/title_icon_elearning.png');
}

#resolution h1 > span{
    background-image: url('../../images/icon/title_icon_overview.png');
}

#registinfo h1 > span,
#withdrawal h1 > span{
    background-image: url('../../images/icon/title_icons_registi.png');
}
#cmsnews h1 > span,
#news h1 > span{
    background-image: url('../../images/icon/title_icon_news.png');
}

#sitemap h1 > span{
    background-image: url('../../images/icon/title_icons_sitemap.png');
}

#cmnews h1 > span{
    background-image: url('../../images/icon/title_icon_news2.png');
}


/* for Sp --------------------*/
@media screen and (max-width: 738px) {
    h1{
        font-size:2.0rem;
    }
    
    .headerMain__logo h1 {
        font-size: 0;
    }
}


/* ---------------------------------------------
*   H2 title
--------------------------------------------- */
h2{
	display:block;
	overflow:hidden;
}

/*下線付きタイトル*/
h2.lined{
    display:block;
    /*overflow:hidden;*/
    text-align:center;
    color:#002269;
    font-size:2.0rem;
    margin:30px 0;
    line-height:125%;
}

h2.lined > span{
    display:inline-block;
}

h2.lined::after{
    display: block;
    content: "";
    width: 3em;
    margin: 1em auto 0;
    border-bottom: 2px solid #f4a153;
}


/* for Sp --------------------*/
@media screen and (max-width: 738px) {

}



/* ---------------------------------------------
*  パンクズリスト
--------------------------------------------- */
#breadcrumbs{
    display:block;
    overflow:hidden;
    padding:1em 0;
}

#breadcrumbs > ul{

}

#breadcrumbs > ul > li{
    display:inline-block;
    font-size:1.2rem;
}

#breadcrumbs > ul > li:after{
    font-family: 'ycota_ift';
    content:"\e90b";
    margin:0 0.5em;
}

#breadcrumbs > ul > li:last-child:after{
    content:"";
    margin-left:0;
}

#breadcrumbs > ul > li > a{
    text-decoration:none;
    color:#000000;
}


/* for Sp --------------------*/
@media screen and (max-width: 738px) {

    #breadcrumbs {
        display:none;
    }
}



/******************************************
*
From
*
******************************************/
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password']{
	border:none;
	display:inline-block;
    /*font-size:1.0em;*/
    font-size: 16px;
    /*transform: scale(0.8);*/
    height:38px;
    line-height:38px;
    padding: 0 0.75em;
    width:100%;
	border: 1px solid #cccccc;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	background-color:#ffffff;

    -webkit-appearance: none;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus {
  border: 1px solid #fc9b5f;
  outline: 0;
}

button[type='submit']{
	border:0;
	padding:0;
	width:auto;
	height:38px;
	background-color:#012169;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    cursor:pointer;
}

button[type='submit']:focus{
	outline:0;
}
button[type='submit']:active{
	opacity:0.5;
}

button[type='submit'] > span{
	padding:0 1em;
    display:block;
	color:#ffffff;
	/*font-weight:bold;*/
	font-size:1.8rem;
	line-height:35px;
	text-align:center;
}

/*button[type='submit'] > span:after{
	content:"\e903";
	font-size:9px;
	margin-left:1em;
}*/

/* ---------------------------------------------
*  セレクタ
--------------------------------------------- */
.selectMenu{
    display:inline-block;
    overflow:hidden;
    margin:0;
    /*text-align: center;*/
    position: relative;
    border-radius: 2px;
    border: 1px solid #cccccc;
    border-radius: 50px;
    background: #ffffff;
}

.selectMenu::after {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    pointer-events: none;
}

.selectMenu select{
    width: 100%;
    height:100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;

    padding: 0.5em 1.5em;
    color: #000000;
    font-size:1.4rem;
    line-height:125%;

    font-size:16px;
}

.selectMenu select:disabled{
    background-color:#c3c3c3;
    pointer-events:none;
    /*color:#ffffff;*/
}

.selectMenu select::-ms-expand {
  display: none;
}


/* for Sp --------------------*/
@media screen and (max-width: 738px) {

    .selectMenu{
        width:100%!important;
    }

}


/* ---------------------------------------------
*  送信ボタン
--------------------------------------------- */
.submitbox{
    display:block;
    width:880px;
    margin:50px auto 0;
    overflow:hidden;
    background-color:#f2f2f2;
    padding:20px 0;
}

.submitbox > button[type='submit']{
    width:60%;
    height:auto;
}
.submitbox > button[type="submit"] > span{
    width:100%;
    padding:1em 0;
    line-height:100%;
    position:relative;
}

.submitbox > button[type="submit"] > span::after{
    display:inline-block;
    font-family: 'ycota_ift';
    content:"\e90b";
    /*color:#eb7730;*/
    margin-left:0;
    margin-right:0.5em;
    font-weight:normal;
    color:#fc9b5f;
    font-size:1.2em;
    position:absolute;
    top:50%;
    right:1em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}

.pc .submitbox > button[type="submit"]:hover > span::after{
    margin-left:0.5em;
    margin-right:0;
}



/* for Sp --------------------*/
@media screen and (max-width: 980px) {
    .submitbox{
        width:100%;
    }

    .submitbox > button[type='submit']{
        width:90%;
    }
    .submitbox > button[type="submit"] > span{
        width:100%;
        padding:1em 1em 1em 0;
        line-height:100%;
        position:relative;
    }

}


/******************************************
*
ボタン
*
******************************************/
/* ---------------------------------------------
*  矢印ボタン
--------------------------------------------- */
a.arrow-link{
	text-decoration:none;
}
a.arrow-link::after{
	font-family: 'ycota_ift';
    content:"\e917";
    color:#eb7730;
    font-weight:normal;
    margin-left:0.5em;
    margin-right:0.5em;
    padding: 3px 0;

    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}

.pc a.arrow-link:hover::after{
    margin-left:1.0em;
    margin-right:0;
}


/* ---------------------------------------------
*  ボックスボタン
--------------------------------------------- */

a.btn_orange {
    display: block;
    position: relative;
    width: 290px;
    height: 60px;
    background: linear-gradient(rgba(238, 145, 51, 1), rgba(238, 118, 0, 1));
    border-radius: 5px;
    text-decoration: none;
    margin: 0 auto;
    box-shadow: 2px 2px #000;
}

a.btn_orange p {
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    width: calc(100% - 55px);
    height: 18px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 0.9em;
    transform: translateY(-50%);
    text-align: left;
    z-index: 1;
}

a.btn_orange::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #FFF;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    z-index: 1;
}

a.btn_orange:hover::after {
    right: 20px;
}

#new_contactBox a.btn_orange {
    width: 380px;
}


@media screen and (max-width: 768px) {
    
    a.btn_orange {
        width: 260px;
        height: 50px;
        border-radius: 4px;
    }

    a.btn_orange p {
        top: 50%;
        left: 20px;
        width: calc(100% - 45px);
        height: 14px;
        color: #FFF;
        font-size: 14px;
        line-height: 0.9em;
    }

    a.btn_orange::after {
        top: 50%;
        right: 20px;
        border-width: 7px 0 7px 10px;
    }

    a.btn_orange:hover::after {
        right: 20px;
    }

    #new_contactBox a.btn_orange {
        width: 260px;
    }
}



/* ---------------------------------------------
*  角丸ボタン
--------------------------------------------- */
a.roundBtn{
	display:inline-block;
	overflow:hidden;
	padding:0.5em 1.5em;
	text-decoration:none;
	color:#012169;
	font-size:1.4rem;
	/*font-weight:bold;*/
	background-color:#ffffff;
	border:1px solid #012169;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;

    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -o-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -ms-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

.pc a.roundBtn:hover{
	opacity:0.5;
}

a.wide{
    padding:0.5em 4em;
}

/* ---------------------------------------------
*  タブボタン
--------------------------------------------- */
.tabBtn{
    display:block;
    overflow:hidden;
    width:100%;
    margin:40px 0;
}

.tabBtn > ul{
    display:block;
    overflow:hidden;
    width:100%;
    height:50px;
    letter-spacing:-.4em;
    text-align:center;
    border-bottom:1px solid #cccccc;
}

.tabBtn > ul > li{
    display:inline-block;
    overflow:hidden;
    width:50%;
    max-width:300px;
    letter-spacing:normal;
}

.tabBtn > ul > li > a{
    display:block;
    overflow:hidden;
    margin:0 15px;
    height:50px;

    text-align:center;
    color:#012169;
    font-size:2.0rem;
    line-height:50px;
    text-decoration:none;
    background-color:#ffffff;

    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;

    border-top:1px solid #012169;
    border-left:1px solid #012169;
    border-right:1px solid #012169;
}

.tabBtn > ul > li.current > a{
    color:#ffffff;
    background-color:#012169;
    pointer-events:none;
}

.pc .tabBtn > ul > li > a:hover{
    opacity:0.5;
}

.tabBtn > ul > li.current > a > span{
    line-height:100%;
}



/* for Tb --------------------*/
@media screen and (max-width:980px) {
/*@media screen and (max-width: 738px) {*/

    .tabBtn > ul{
        /**/
    }

    .tabBtn > ul > li:nth-child(1){
        width:60%;
    }
    .tabBtn > ul > li:nth-child(2){
        width:40%;
    }

    .tabBtn > ul > li > a{
        font-size:1.5rem;
        margin:0 5px;
    }

}


/* ---------------------------------------------
*  PDFボタン
--------------------------------------------- */
a.pdflink{
    /*color:#000000!important;*/
}
a.pdflink > span:after{
    display:inline-block;
    content:"";
    width:1em;
    height:1.0em;
    margin-left:0.5em;
    background:url('../../images/icon/icn_pdf.png') no-repeat 0 50%;
    background-size:contain;
}

/* ---------------------------------------------
*  商品詳細ボタン
--------------------------------------------- */
a.lintToItem{
    display:inline-block;
    overflow:hidden;
    width:150px;
    font-size:1.4rem;
    padding:0.5em 0;
    text-align:center;
    background-color:#ef5d1f;
    /* background-color:#fc9b5f; */
    color:#ffffff;

    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;

    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -o-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    -ms-box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

a.lintToItem.arrow-link::after{
    color:#ffffff;
}

a.lintToItem.dsiable{
    background-color:#cfcfcf;
    pointer-events:none;
}




/******************************************
*
ページャー
*
******************************************/
.pager{
    display:block;
    overflow:hidden;
    text-align:center;
    margin:30px 0 0;
}

.pager > ul{
    display:inline-block;
    letter-spacing:-.4em;
}


.pager > ul > li{
    display:inline-block;
    letter-spacing:normal;
    margin:0 5px;
}

.pager >  ul > li > a,
.pager >  ul > li > span{
    display:block;
    overflow:hidden;
    width:35px;
    height:35px;
    line-height:32px;
    text-align:center;
    font-size:1.6rem;
    text-decoration:none;
    color:#012169;
    border:1px solid #cccccc;
    /*border:1px solid #012169;*/
}

.pager >  ul > li > a > span{
    line-height:100%;
}

.pager >  ul > li .current{
    color:#ffffff;
    background-color:#012169;
    pointer-events:none;
}

.pager >  ul > li .prev,
.pager >  ul > li .next{
    background-color:#cccccc;
    color:#012169;
}

.pager >  ul > li .next::before{
    font-family: 'ycota_ift';
    content:"\e90b";
}
.pager >  ul > li .prev::before{
    font-family: 'ycota_ift';
    content:"\e90a";
}

.pc .pager >  ul > li > a:hover{
    /*color:#ffffff;
    background-color:#012169;*/
    opacity:0.5;
}

/* for Sp --------------------*/
@media screen and (max-width: 738px) {

    /**/

}

/******************************************
*
リスト
*
******************************************/

/* ---------------------------------------------
*  黒丸リスト
--------------------------------------------- */
ul.discList{
    display:block;
    overflow:hidden;
    line-height:200%;
}

ul.discList > li{
    margin-left:1.25em;
    text-indent:-1.25em;
    line-height:155%;
}
ul.discList > li:before{
    content:"●";
    margin-right:0.25em;
}


/* ---------------------------------------------
*  ナンバーリスト
--------------------------------------------- */
ol.numList{
    display:block;
    overflow:hidden;
    line-height:200%;
}

ol.numList > li{
    margin-left:1.5em;
    line-height:155%;
    list-style-type: decimal;
}


/******************************************
*
本文要素
*
******************************************/

/* ---------------------------------------------
*  商品画像
--------------------------------------------- */
.itemPct{
    display:block;
    overflow:hidden;
    position:relative;
    background-color:#ffffff;
    line-height:100%;
    font-size:0;
}

.itemPct > img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;

    position:absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

/* for Sp --------------------*/
@media screen and (max-width: 738px) {

    .itemPct{

    }

}


/* ---------------------------------------------
*  処理完了
--------------------------------------------- */
#formComplete{
    display:block;
    overflow:hidden;
    padding:100px 0 250px;
    margin-bottom:60px;
    text-align:center;
    border-bottom:1px solid #cccccc;
}

#formComplete > h3{
    font-size:2.4rem;
    color:#002269;
    font-weight:normal;
    line-height:125%;
    margin-bottom:2em;

}


/* for Tb --------------------*/
@media screen and (max-width: 980px) {

    #formComplete{
        padding:50px 0;
        margin-bottom:30px;
    }

    #formComplete > h3{
        font-size:1.8rem;
    }

}




/******************************************
*
共通要素
*
******************************************/

.nopc{
    display:none;
}
.nosp{
    /*display:block;
    display:initial;*/
}


/* for Tb --------------------*/
@media screen and (max-width:980px) {

    .nopc{
        display:block;
        display:initial;
    }

    .nosp{
        display:none;
    }

}

/* ---------------------------------------------
*  文字ボックス
--------------------------------------------- */
.topText{
    display:block;
    overflow:hidden;
    font-size:1.6rem;
    line-height:200%;
    text-align:center;
}


.idtbox{
    margin-left:1em;
    text-indent:-1em;
}

/* for Sp --------------------*/
@media screen and (max-width: 738px) {

    .topText{
        font-size:1.5rem;
        line-height:155%;
    }


}

/* ---------------------------------------------
*  配置管理
--------------------------------------------- */

.alCenter{
    text-align:center;
}

.alRight{
    text-align:right;
}

/* ---------------------------------------------
*  文字管理
--------------------------------------------- */

.smallTxt{
    font-size:0.8em;
}

.txtS{
    font-size:1.0rem;
}

.txtM{
    font-size:1.4rem;
}

.txtL{
    font-size:1.6rem;
}


.idtbox{
    margin-left:1em;
    text-indent:-1em;
}


sup{
    color:#ff0000;
}

/* ---------------------------------------------
*  スペース管理
--------------------------------------------- */

.mgt1em{
    margin-top:1em;
}
.mgb1em{
    margin-bottom:1em;
}

.mgb60px{
    margin-bottom:60px;
}
.mgb30px{
    margin-bottom:30px;
}
.mgt30px{
    margin-top:30px;
}
.pd1em{
    padding:1em!important;
}
.pdb30px{
    padding-bottom:30px;
}

