@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

↓↓↓↓↓↓コメントアウト表記サンプル Comment out sample ↓↓↓↓↓↓
*/
/*----------------------------------------------
	大くくりコメントアウト large part
---------------------------------------------*/

/*  中くくりコメントアウト middle part
------------------------------------- */

/* 小くくりコメントアウト small part */
/*
↑↑↑↑↑↑コメントアウト表記サンプル Comment out sample ↑↑↑↑↑↑

*/

/*----------------------------------------------
	common
---------------------------------------------*/
.c_size_btn{
  color: #68358F;
  background: #E3D5F8;
  padding: 8px 10px;
  font-weight: 600;
}
.c_size_btn.is_active{
  background: #68358F;
  color: #fff;
}
.c_size_btn:hover{
  cursor: pointer;
  background: #8553ab;
}

.c_section{
  margin-bottom: 45px;
}

.c_new {
	display: inline-block;
	text-align: center;
	font-weight: 600;
	background: #eb0045;
	color: #FFF;
	padding: 2px 8px;
	margin-bottom: 10px;
}

/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02{
  position: relative;
  font-weight: 600;
  font-size: 3rem;
  color: #68358F;
  text-align: center;
  margin-bottom: 50px;
}
.c_ttl_type02::after{
  position: absolute;
  content: '';
  display: inline-block;
  border-bottom: 5px solid #E3D5F8;
  width: 500px;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -22px;
  margin: auto;
}

/*----------------------------------------------
  	.c_ttl_type03
---------------------------------------------*/
.c_ttl_type03{
  position: relative;
  background: #E3D5F8;
  padding: 10px 25px;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 45px;
}
.c_ttl_type03::before{
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 3px;
  content: '';
  background: #A487CF;
}
/*----------------------------------------------
  	.c_ttl_type04
---------------------------------------------*/
.c_ttl_type04{
  /*border-top: 3px solid #E3D5F8;
  border-bottom: 3px solid #E3D5F8;*/
  margin-bottom: 25px;
  /*display: flex;
  justify-content: space-between;
  align-items: flex-start;*/
}
.c_ttl_type04 p:first-child{
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/*----------------------------------------------
  	.c_icon_ttl
---------------------------------------------*/
.c_icon_ttl{
  position: relative;
  padding-left: 15px;
  font-size: 1.8rem;
}
.c_icon_ttl::before{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #FFDD00;
  bottom: 34%;
  left: 0;
}

/*----------------------------------------------
  	.c_nav_type01
---------------------------------------------*/
.c_nav_type01{
  display: inline-block;
  width: 690px;
  font-size: 2.2rem;
  font-weight: 600;
  background: #A487CF;
  padding: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.c_nav_type01:hover{
  opacity: .5;
}
.c_nav_type01.active{
  position: relative;
  font-size: 2.5rem;
  background: #68358F;
  padding: 25px;
}
.c_nav_type01.active::after{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 20px solid #68358F;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (min-width:767px){
  .c_nav_type01{
    max-width: 49.5%;
  }
}
/*----------------------------------------------
  	.c_btn_type01
---------------------------------------------*/
.c_btn_type01{
  display: inline-block;
  background: #68358F;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  min-width: 210px;
  box-shadow: 0 4px 0 rgba(0,0,0,.1);
}
a.c_btn_type01:hover{
  opacity: .5;
  color: #fff;
}
.c_btn_type01.is_pdf::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 23px;
  height: 29px;
  margin: auto;
  vertical-align: middle;
  background: url("../images/icon_btn_pdf.png") no-repeat;
  background-size: 100%;
}

/*----------------------------------------------
  	.c_btn_type02
---------------------------------------------*/
.c_btn_type02{
  display: inline-block;
  background: #68358F;
  border-radius: 10px;
  font-size: 1.8rem;
  padding: 15px 10px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  min-width: 480px;
  box-shadow: 0 5px 0 rgba(0,0,0,.1);
  transition: .3s all;
  position: relative;
}
.c_btn_type02:hover{
  cursor: pointer;
  opacity: .5;
  color: #fff;
}
.c_btn_type02.is_questant::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 32px;
  height: 41px;
  margin: auto;
  vertical-align: middle;
  background: url("../images/icon_btn_questant.png") no-repeat;
  background-size: 100%;
}
.c_btn_type02.is_leaflet::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 32px;
  height: 41px;
  margin: auto;
  vertical-align: middle;
  background: url("../images/icon_btn_pdf.png") no-repeat;
  background-size: 100%;
}
.c_btn_type02.is_application::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 32px;
  height: 41px;
  margin: auto;
  vertical-align: middle;
  background: url("../images/icon_btn_excel.png") no-repeat;
  background-size: 100%;
}

/*----------------------------------------------
  	.c_list_type01
---------------------------------------------*/
.c_list_type01 {
  display: grid;
  list-style-type: none;  
  grid-template-columns: 18% 18% 18% 18% 18%;
  grid-gap: 30px 2.5%;
}
.c_list_type01 p {
  font-size: 1.3rem!important;
  text-align: left;
}
.c_list_type01 p.img,
.c_new_pdf{
  line-height: 0;
}
.c_list_type01 li img,
.c_new_pdf a img
{
  width: 100%;
  border: 1px solid #D5D5D5;
}
.c_list_type01 li a,
.c_new_pdf a{
  display: inline-block;
}
.c_list_type01 li a:hover,
.c_new_pdf a:hover{
  opacity: 0.7;
}
/*----------------------------------------------
  	.c_para_type01
---------------------------------------------*/
.c_para_type01 {
  font-size: 1.7rem;
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_para_type02
---------------------------------------------*/
.c_para_type02 {
  text-indent: 1em;
  text-align: justify;
  -ms-text-justify: inter-ideograph;
  text-justify: inter-ideograph;
}

/*----------------------------------------------
  	.c_detail
---------------------------------------------*/
.c_detail{
  display: flex;
  justify-content: flex-start;
}
.c_detail:first-of-type{
  margin-bottom: 40px;
}
.c_detail_ttl{
  position: relative;
  background: #E3D5F8;
  padding: 15px 25px;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.c_detail_ttl::before{
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 3px;
  content: '';
  background: #A487CF;
}
.c_detail span{
  font-size: 2.2rem;
}
.c_detail p:nth-child(2){
  padding: 5px 0;
  font-size: 1.8rem;
}

/*----------------------------------------------
  	.c_mv
---------------------------------------------*/
.c_mv{
  display: flex;
  justify-content: space-between;
  /*align-items: flex-start;*/
  align-items: center;
  margin-bottom: 45px;
  padding-bottom: 45px;
  border-bottom: 3px solid #E3D5F8;
}
.c_mv:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}
.c_mv_box{
  text-align: center;
  /*margin-right: 50px;*/
}
.c_mv_img a{
  transition: .3s all;
}
.c_mv_img img{
  height: 179px;
  margin-bottom: 25px;
}
.c_mv_img a:hover{
  opacity: .5;
}
.c_mv_content{
  width: 100%;
}
.c_mv_name{
  display: flex;
  align-items: center;
}
.c_mv_name img{
  width: 100px;
  margin-right: 25px;
}
.c_mv_name p{
  font-size: 1.6rem;
  font-weight: normal;
}
.c_mv_name span:not(.u_red){
  font-size: 2.2rem;
  font-weight: bold;
}

/*----------------------------------------------
	.c_questant
  .c_contact
---------------------------------------------*/
.c_questant,
.c_contact{
  font-size: 1.8rem;
}
/*----------------------------------------------
	.c_bnr
---------------------------------------------*/
.c_bnr{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c_bnr img{
  margin: 0 20px 40px;
  height: 99px;
}