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

/*
---layout----------------------------------

パンくずリスト

--------------------------------------------
*/

.breadcrumb{
	background-color: #F5F7F9;
	font-size: 1.2rem;
	padding: 10px 0;
	vertical-align: middle;
}
.breadcrumb,
.breadcrumb a{
	color: #959595;
}
.breadcrumb a:hover{
	color: #333;
}
.current-item{
	color: #4B4B4B;
}
.breadcrumb-area > span{
	margin: 0 5px;
}
.breadcrumb-area .home:before{
	font-family: 'Material Icons';
	content: 'home';
	font-size: 1.4rem;
	vertical-align: -0.2em;
	color: #8ACFE1;
}

/*
---layout----------------------------------

パンくずリスト

--------------------------------------------
*/

.breadcrumb2024{
	font-size: 1rem;
	padding: 10px 0;
	vertical-align: middle;
}
.breadcrumb2024,
.breadcrumb2024 a{
	color: #959595;
}
.breadcrumb2024 a:hover{
	color: #333;
}
.current-item{
	color: #4B4B4B;
}
.breadcrumb2024 > span{
	margin: 0 5px;
}
.breadcrumb2024 .home:before{
	font-family: 'Material Icons';
	content: '\e9b2';
	font-size: 1.4rem;
	vertical-align: -0.2em;
	color: #8ACFE1;
}
@media (min-width:768px){
	.breadcrumb2024{
		font-size: 1.2rem;
	}
}

/* Section Separator---------------------------------------------------------

　ページヘッダー2024

----------------------------------------------------------------------------*/
.page_header{
	padding: 5px;
	margin-bottom: 25px;
}
.page_title{
	color: #FFF;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	background-image: url("../image/header-common.jpg");
	background-size: cover;
	background-position: center center;
}
.page_title::after{
	content: "";
	color: #000;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.30);
	z-index: 0;
}

.page_title h1{
	font-weight: 600;
	font-size: 2.2rem;
	z-index: 1;
}

@media (min-width:768px){
	.page_header{
		padding: 5px 20px;
		margin-bottom: 50px;
	}
	.page_title{
		height: 330px;
	}
	.page_title h1{
		font-size: 4rem;
	}
}





/*
---layout----------------------------------

ページヘッダー

--------------------------------------------
*/
.page-header{
	margin-bottom: 50px;
}
.page-header h1{
	font-size: 2.4rem;
	background-color: #01A1E6;
	color: #FFF;
	margin: 0 -20px;
	padding: 20px 20px;
}

@media (min-width:600px){
	
	.page-header h1{
		font-size: 3rem;
		background-color: #FFF;
		color: #333;
		padding: 30px 20px;
	}
	.sp-eyecatch{
		display: none;
	}
}

/*
---layout----------------------------------

ページボディ

--------------------------------------------
*/

.page-body{
	font-size: 1.6rem;
}


/*
---library----------------------------------

見出し・段落等

--------------------------------------------
*/
.page-body h2{
	font-size: 2.4rem;
	line-height: 1.2;
	margin-top: 3em;
	margin-bottom: 1em;
	/*以下・仮スタイル*/
	padding: 8px;
	border-bottom: 1px solid #CBCBCB;
	border-left: 5px solid #01A1E6;
}

.page-body h3{
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: bold;
	color: #00A0E6;
	margin-top: 3rem;
	margin-bottom: 1rem;
}

.page-body p{
	line-height: 2;
	margin-bottom: 1em;
}


/*
---library----------------------------------

リスト形式
.post-body下でのみ適用

--------------------------------------------
*/

.page-body ul{
	text-indent: -1em;
	padding-left: 1em;
}
.page-body ul li:before{
	content: "・";
}

.page-body ol{
	text-indent: 0;
	padding-left: 1.5em;
}
.page-body ol li{
	list-style-type: decimal;
}
.page-body li{
	margin-bottom: 0.8em;
	line-height: 1.6;
}


.page-body ol li ol{
	margin-top: 0.8em;
}
.page-body ol li ol li{
	list-style-type: lower-roman;
}

.page-body ol li ul{
	margin-top: 0.4em;
}
.page-body ol li ul li{
	list-style-type: none;
	margin-bottom: 0em;
}



/*
---library----------------------------------

定義リスト
.post-body下でのみ適用

--------------------------------------------
*/

.page-body dl{
}
.page-body dt{
	margin-bottom: 0.5em;
}
.page-body dd{
	margin-bottom: 1em;
	line-height: 1.6;
}


/*
---library----------------------------------

汎用見出し

--------------------------------------------
*/

.h3-style-01{
	background-color:#EEEEEE;
	color: #333!important;
	font-size: 1.6rem!important;
	border-radius: 2px;
	padding: 0.8em;
	margin: 2rem 0 1rem;
}

/*
---library----------------------------------

リンクボタン

--------------------------------------------
*/

a.btn{
	text-decoration:none;
	color: #FFF;
	background: #01A1E6;
	border: 1px solid #01A1E6;
	padding: 15px 35px 15px 25px;
	display: inline-block;
	transition-duration: 0.5s;
	position: relative;
}
a.btn:hover{
	color: #006A9C;
	background: #FFF;
}
.btn + .btn{
	margin-left: 15px;
}

a.btn::after{
	content:"chevron_right";
	font-family: 'Material Icons';
	color: #FFF;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	transition-duration: 0.5s;
}
a.btn:hover::after{
	right: 2px;
	color: #006A9C;
}



/*
---library----------------------------------

汎用テーブル

--------------------------------------------
*/

/*スタイル01---------------------------------*/
.wp-block-table.tb-style-01 table{
	width: 100%;
	margin-bottom: 20px;
}
.wp-block-table.tb-style-01 th,
.wp-block-table.tb-style-01 td{
	border: 1px solid #CCC;
	padding: 1em;
}
.wp-block-table.tb-style-01 th{
	font-weight: normal;
	text-align: center;
	white-space: nowrap;
	background-color: #EEE;
}
.wp-block-table.tb-style-01 table p{
	margin-bottom: 0.5em;
}

/*スタイル01-レスポンシブ------------------------*/
/*.tb-style-01_rwd,*/
.wp-block-table.tb-style-01_rwd table{
	width: 100%;
	margin-bottom: 20px;
}
.wp-block-table.tb-style-01_rwd th,
.wp-block-table.tb-style-01_rwd td{
	display: block;
	padding: 0.8em 0.8em 1.6em;
	border: none;
}
.wp-block-table.tb-style-01_rwd td + td{
	margin-top: -1.6em;
}
.wp-block-table.tb-style-01_rwd th{
	background-color: #EEE;
	font-weight: normal;
	padding-bottom: 0.8em;
}

.wp-block-table.tb-style-01_rwd p{
	margin-bottom: 0.5em;
}
@media (min-width:768px){
	.wp-block-table.tb-style-01_rwd th,
	.wp-block-table.tb-style-01_rwd td{
		display: table-cell;
		padding: 1em;
		border: 1px solid #CCC;
	}
	.wp-block-table.tb-style-01_rwd th{
		white-space: nowrap;
		text-align: center;
	}
}

/*横スクロールテーブル------------------------*/
.wp-block-table.tb-style-yoko{
	margin-bottom: 2em;
	overflow-x: scroll;
	white-space: nowrap;
	
}
.wp-block-table.tb-style-yoko thead{
	border-bottom: none;
}
.wp-block-table.tb-style-yoko th,
.wp-block-table.tb-style-yoko td{
	padding: 0.75em 1em;
	border: 1px solid #CCC;
	font-feature-settings: "palt" 1;
}
.wp-block-table.tb-style-yoko th{
	background: rgba(238,238,238,1.00);
	text-align: center;
	vertical-align: middle;
}
.wp-block-table.tb-style-yoko td{
	vertical-align: middle;
	text-align: center;
}
.wp-block-table.tb-style-yoko table{
	margin-bottom: 5px;
}

/*スタイル-学費------------------------*/
.tb-expenses table{
	width: 100%;
	font-size: 1.4rem;
}
.tb-expenses table th,
.tb-expenses table td{
	border: 1px solid #CCC;
	padding: 0.8em;
	vertical-align: middle;
	text-align: center;
}
.tb-expenses table th{
	background-color: #EEE;
	font-weight: normal;
}
.tb-expenses tr:nth-of-type(1){
	text-align: center;
}
.tb-expenses tr td:last-child{
	font-size: 1.2rem;
	text-align: left;
}
.tb-expenses tr:last-child{
	background-color: #F9D7CD;
	font-weight: bold;
}
.tb-expenses tr:last-child th{
	background-color: transparent;
}

.tb-scroll{
	overflow: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

/*スタイル-入試区分のテーブル（rwd対応）------------------------*/

.tb-style_exam-kubun tr:first-child{
	text-align: center;
	
}
.tb-style_exam-kubun th,
.tb-style_exam-kubun td{
	vertical-align: middle;
	font-family: YakuHanJP, "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

/*.tb-style_exam-kubun th a{
	display: block;
	font-weight: bold;
	font-size: 1rem;
	width: 10em;
	margin: 5px auto;
	padding: 3px;
	background-color: #01A1E6;
	color: #FFF;
	border-radius: 15px;
	transition-duration: 0.5s;
}
.tb-style_exam-kubun th a:hover{
	opacity: 0.7;
}*/
@media (max-width:767px){
	.tb-style_exam-kubun{
	}
	.tb-style_exam-kubun tr:first-child{
		display: none;
	}
	.tb-style_exam-kubun td:nth-child(even):before{
		content: "［試験日］";
		display: block;
	}
	.tb-style_exam-kubun td:nth-child(odd):before{
		content: "［出願期間］";
		display: block;
	}
}
/*P学生募集要項
　入試区分のテーブル
------------------------*/
.tb-style_exam-kubun th a{
	text-decoration: none;
	display: inline-block;
	font-size: 1.2rem;
	width: 10em;
	text-align: center;
	margin: 0 0 0 10px;
	padding: 3px;
	background-color: #46A5CE;
	color: #FFF;
	border-radius: 15px;
	transition-duration: 0.5s;
}
@media (min-width:768px){
	.tb-style_exam-kubun th a{
		display: block;
		margin: 5px auto 0;
	}
}


/*
---page-------------------------------------

汎用／２カラム・写真・見出し・キャプションのセット

--------------------------------------------
*/
.lib_2col-box-set h3{
	font-size: 1.4rem;
	line-height: 1;
	padding: 15px 0 10px;
	margin: 0;
}
.lib_2col-box-set p{
	font-size: 1.3rem;
	line-height: 1.6;
	margin: 0;
}
.lib_2col-box-set figure{
	margin-bottom: 0!important;
}
.lib_2col-box-set figure img{
	width: 100%;
	height: auto;
}
.lib_2col-box-set > div{
	margin-bottom: 30px;
}
@media (min-width:768px){
	.lib_2col-box-set{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.lib_2col-box-set > div{
		flex-basis: 48.5%;
	}
}

/*
---page-------------------------------------

PC４列スマホ２列 組み写真

--------------------------------------------
*/
.lib-ph2x2{
	display: flex;
	flex-wrap: wrap;
	line-height: 0;
}
.lib-ph2x2 > div{
	flex-basis: 50%;
}
@media (min-width:768px){
	.lib-ph2x2 > div{
		flex-basis: 25%;
	}
}


/*
---page-------------------------------------

学生寮photoswipe 3*2

--------------------------------------------
*/
.photoswipe_area{
	display: flex;
	flex-wrap: wrap;
}
.photoswipe_area figure{
	flex-basis: 32%;
	margin-bottom: 2%;
}
@media (max-width:767px){
	.photoswipe_area figure:not(:nth-child(3n)){
		margin-right: 2%;
	}
}
@media (min-width:768px){
	.photoswipe_area figure{
		flex-basis: 16%;
	}
	.photoswipe_area figure:not(:nth-child(6n)){
		margin-right: 0.8%;
	}
}


/*
---library----------------------------------
--------------------------------------------

入学案内

--------------------------------------------
--------------------------------------------
*/

/*P学生募集要項
　入試区分のテーブル

.exam_tb{
	line-height: 1.5;
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
.exam_tb p{
	margin-bottom: 0.5em;
}
.exam_tb li{
	margin-bottom: 0.3em;
}
.exam_tb th,
.exam_tb td{
	border: 1px solid #CCC;
	padding: 1em;
}
.exam_tb th{
	white-space: nowrap;
	background-color: #EDEDED;
	font-weight: normal;
}

------------------------*/



/*---------------------------------------------------------------------------------------------------*/



/*
---library----------------------------------
--------------------------------------------

カテゴリートップのリスト表示

--------------------------------------------
--------------------------------------------
*/
.cate-top_intro{
	margin-bottom: 35px;
}
.cate-top-list{
}
.cate-top-list_block{
	margin-bottom: 30px;
	
}
.cate-top-list_block figure{
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #1FC0DB;
}
.cate-top-list_block　img{
	width: 100%;
	height: auto;
	opacity: 1;
	transition-duration: 0.3s;
}
.cate-top-list_block img:hover{
	opacity: 0.6;
	transition-duration: 0.3s;
}
.cate-top-list_block h2{
	/*border-top: 3px solid #01A1E6;
	border-right:none;
	border-bottom:none;
	border-left:none;
	background-color:#F6F6F6;
	*/
	line-height: 1;
	padding: 10px 0 10px 35px;
	border: none;
	font-weight: 300;
	font-size: 1.9rem;
	margin: 10px 0 2px ;
	position: relative;
	z-index: 0;
}
.cate-top-list_block h2:before{
	content: "";
	display: block;
	width: 24px;
	aspect-ratio: 1 / 1;
	background-image: url("../image/icon_arrow_circle.svg");
	background-repeat: none;
	background-size: cover;
	position: absolute;
	left:0;
	top: 50%;
	transform: translateY(-54%);
}
/*.cate-top-list_block h2:before{
	content: "play_circle_filled";
	font-family: "Material Icons";
	font-size: 2rem;
	line-height: 1;
	vertical-align: -4px;
	color: #01A1E6;
	margin-right: 5px;
	font-weight: normal;
}*/
/*.cate-top-list_block h2:after{
	content: "";
	border-top: 3px solid #FA9EC2;
	position: absolute;
	width: 40%;
	top: -3px;
	right: 0;
	z-index: 1;
}*/
.cate-top-list_block p{
	font-size: 1.3rem!important;
	line-height: 1.6;
	padding: 0 0 0 35px;
}
.cate-top-list_block a{
	text-decoration: none;
	color: #555;
}

@media (min-width:600px){
	.cate-top-list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.cate-top-list_block{
		flex-basis: 49%;
	}
}
@media (min-width:1024px){
	.cate-top-list{
		justify-content: flex-start;
	}
	.cate-top-list_block{
		flex-basis: 32%;
		margin-right: 2%;
	}
	.cate-top-list_block:nth-child(3n){
		margin-right: 0;
	}
	.cate-top-list-narrow{
		justify-content: space-between;
	}
	.cate-top-list-narrow .cate-top-list_block{
		flex-basis: 49%;
		margin-right: 0;
	}
}


/*
---page------------------------------------------------------------
-------------------------------------------------------------------

学生募集要項
総合型（AO）

-------------------------------------------------------------------
-------------------------------------------------------------------
*/

.ao_flow-box{
	border: 1px solid #CCC;
	padding: 20px 0;
	display: flex;
	font-size: 1.4rem;
	margin: 0 0 40px;
	position: relative;
}
.ao_flow-box h5{
	color: #5aa0e3;
	align-self: center;
	padding: 0 1.5em;
	white-space: nowrap;
	font-size: 110%;
}
.ao_flow-box dl{
	border-left: 1px solid #CCC;
	padding: 0 1.5em;
}
.ao_flow-box dt{
	color: #5aa0e3;
	font-weight: 300;
	font-size: 110%;
}
.ao_flow-box dd{
	margin: 0;
}

.ao_flow-box + .ao_flow-box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate( -50% , -25px );
	
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 12px solid transparent;
	border-left: 12px solid transparent;
	border-top: 12px solid #5aa0e3;
	border-bottom: 0;
}



/*
---page------------------------------------------------------------
-------------------------------------------------------------------

学校案内／ご挨拶

-------------------------------------------------------------------
-------------------------------------------------------------------
*/

.about_greeting-president-column-ph{
	max-width: 250px!important;
	margin: 0 auto 25px!important;
}
.about_greeting-president-column-ph figcaption{
	text-align: center;
	font-size: 1.4rem;
	padding-top: 15px;
}

@media (min-width:600px){
	.about_greeting-president-columns{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	.about_greeting-president-column-body{
		flex-basis: calc( 100% - 240px )!important;
	}
	.about_greeting-president-column-ph{
		flex-basis: 200px!important;
		margin: 0;
	}
	
}
/*style.min.cssの打ち消し*/
@media (min-width:782px){
	.about_greeting-president-column:not(:first-child){
		margin-left: 0!important;
	}
}

.wp-bloc-colum{
	margin-left: 0!important;
	margin-right: 0!important;
}

/*
---page------------------------------------------------------------
-------------------------------------------------------------------

看護学科／３年間の学び

-------------------------------------------------------------------
-------------------------------------------------------------------
*/
h2.h2_learning{
	text-align: center;
	border: none;
	margin: 0;
	color: #79BCC5;
	font-size: 1.6rem;
	
}
h2.h2_learning:first-letter {
	font-size: 5rem;
	font-family: dinosaur, sans-serif;
	font-weight: 300;
	font-style: normal;
	margin-right: 10px;
}

h3.h3_learning{
	font-size: 2rem;
	color: #79BCC5;
	text-align: center;
	margin: 10px 0 30px;
	font-weight: 300;
	line-height: 1.6;
}
@media (min-width:768px){
	.learning-box{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		margin-bottom: 50px;
	}
	h3.h3_learning{
		font-size: 2.8rem;
	}
	.learning-box > div {
		flex-basis: 48%;
	}

}

/*
---page------------------------------------------------------------
-------------------------------------------------------------------

看護学科／カリキュラム

-------------------------------------------------------------------
-------------------------------------------------------------------
*/
.h3_curriculum{
	color: #555!important;
	font-weight: normal!important;
	padding:10px;
	background-color: #E4E4E4;
	font-size: 1.3rem!important;
	line-height: 1;
	margin-top: 15px!important;
}
.ul_curriculum{
	text-indent: 0!important;
	padding-left: 10px!important;
	font-size: 1.3rem;
}
.ul_curriculum li{
	display: inline;
	/*white-space: nowrap;*/
	margin-right: 1em;
}
.ul_curriculum li:before{
	content: ""!important;
}

/*
---page------------------------------------------------------------
-------------------------------------------------------------------

キャンパスライフ／卒業生の声

-------------------------------------------------------------------
-------------------------------------------------------------------
*/

.c-life_int-block figure{
	overflow: hidden;
	border-radius: 5px;
	position: relative;
}
.c-life_int-block figure:before{
	content: '';
	position: absolute;
	bottom: 6%;
	display: block;
	width: 26%;
	height: 13%;
	background-image: url("../image/int-obog-shoulder.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

.c-life_int-block.stu figure:before{
	background-image: url("../image/int-stu-shoulder.svg");
}

.c-life_int-block dl{
	margin: 40px 0 0;
	font-size: 1.2rem;
	text-align: center;
}
.c-life_int-block dl dt{
	font-weight: normal;
	font-size: 1.2rem;
}
.c-life_int-block dl dd{
	margin: 0;
}
.c-life_int-block dl dd:first-of-type{
	font-size: 1.6rem;
	margin: 0.5em 0;
}

.c-life_int-block h2{
	padding: 0;
	border: none;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 2em 0;
}

.c-life_int-block p{
	font-size: 1.4rem;
}

.c-life_int-block + .c-life_int-block{
	border-top: 1px dashed rgba(0,0,0,0.30);
	padding: 50px 0 0 ;
	margin: 50px 0 0 ;
}

@media (min-width:768px){
	.c-life_int-block dl{
		text-align: left;
	}
	.c-life_int-block h2{
		font-size: 3rem;
		margin: 1em 0;
		line-height: 1.5;
	}
	.c-life_int-block + .c-life_int-block{
		padding: 100px 0 0 ;
		margin: 100px 0 0 ;
	}
}



/*OBOG各人のブロック*/
.campuslife_obog-block{
	display: flex;
	flex-wrap: wrap;
	padding: 40px 20px 20px;
	border-radius: 5px;
	margin-bottom: 30px;
	/*background-color: #FFFAF6;*/
}
/*写真・プロフィール部分*/
.campuslife_obog-profile{
	max-width: 300px;
	text-align: center;
	margin: 0 auto;
}
/*.campuslife_obog-profile img{
	width: 100%;
	border-radius: 50%;
	margin-bottom: 20px;
}*/
.campuslife_obog-profile figure{
	border-radius: 5px;
	overflow: hidden;
	margin: 0 auto 20px;
}
.campuslife_obog-profile p{
	line-height: 1.4;
	margin-bottom: 0;
}
p.obog-name{
	font-size: 1.6rem;
	margin-bottom: 10px;
}
p.obog-career{
	font-size: 1.4rem;
	margin-bottom: 30px;
}
/*コメント部分*/
.campuslife_obog-comment h2{
	color:#EE7100;
	padding: 0;
	border: none;
	font-size: 2rem;
	line-height: 1.8;
	margin: 0 0 10px;
}
.campuslife_obog-comment p:last-child{
	margin-bottom: 0;
}
@media (min-width:768px){
/*	.campuslife_obog-block{
		flex-direction: row-reverse;
		justify-content: space-between;
		padding: 60px 50px;
	}
	.campuslife_obog-profile{
		flex-basis: 30%;
		text-align: left;
		margin: 0;
	}
	.campuslife_obog-comment{
		flex-basis: 65%;
	}
	.campuslife_obog-comment h2{
		margin-top: 0px;
	}*/
	p.obog-name{
	font-size: 1.4rem;
	}
	p.obog-career{
		font-size: 1.2rem;
		margin-bottom: 0px;
	}
}

/*借り上げアパート間取り*/
.domitory-madori{
	display: flex;
	justify-content: space-between;
}

.domitory-madori-block{
	flex-basis: 100px;
	margin-top: 10px;
	text-align: right;
}


/*
---page------------------------------------------------------------
-------------------------------------------------------------------

進学・就職

-------------------------------------------------------------------
-------------------------------------------------------------------
*/
@media (min-width:768px){
	.course_result-list{
		text-indent: 0em!important;
		padding-left:0em!important;
	}
	.course_result-list li{
		display: inline;
		text-indent: 0;
	}
	.course_result-list li:before{
		content: ""!important;
	}
	.course_result-list li:after{
		content: "／";
	}
	.course_result-list li:last-child:after{
		content: "";
	}
}

.lib-ul-expenses-note{
	margin-top: 1em;
}

.lib-ul-expenses-note li{
	font-size: 1.2rem;
	margin-bottom: 0.5em!important;
	padding-left: 1.5em!important;
	text-indent: -2.5em!important;
}
.lib-ul-expenses-note li:before{
	content: none!important;
}
/*
---page------------------------------------------------------------
-------------------------------------------------------------------

進学・就職

-------------------------------------------------------------------
-------------------------------------------------------------------
*/


.acc__item {
	cursor: pointer;
	display: block;
	position: relative;
	border: 1px solid #01A1E6;
	margin-bottom: 20px;
}
.acc__item a{
	text-decoration:none !important;
}
.acc__item__link {
	display: block;
	position: relative;
	color: #555!important;
	padding: 20px 55px 20px 15px;
	transition-duration: 0.5s;
}
.acc__item__link.on{
	color:#01A1E6!important;
}
.acc__item__link:after{
	font-family: "Material Icons";
	content:"add";
	font-size: 1.6rem;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	color: #FFF;
	background-color: #03A0E6;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: center;
}
.acc__item__link.on:after{
	font-family: "Material Icons";
	content:"remove";
}
 
.acc__answer {
	color: #555;
	border-top: 1px solid #01A1E6;
	font-size: 1.4rem;
	padding: 20px 20px 10px ;
	display: none;
}


.employee-image{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.employee-image div{
	flex-basis: 49%;
	margin-bottom: 2%;
}
.employee-image p{
	margin-bottom: 0!important;
}

.employee-image img{
	width: 100%;
}

/*
---page------------------------------------------------------------
-------------------------------------------------------------------

ダウンロード

-------------------------------------------------------------------
-------------------------------------------------------------------
*/
.dl-box{
	background-color: #F4F4F4;
	margin-bottom: 15px;
}
h3.dl-h3{
	background-color: #02A1E6;
	color: #FFF;
	padding: 5px 10px;
	margin: 0;
	font-size: 1.6rem;
}
.dl-wrap{
	padding: 20px;
}
.dl-image{
	max-width: 130px;
	margin: 0 auto;
	background-color:#FFF;
}
.dl-image a{
	transition-duration: 0.3s;
}
.dl-image a:hover{
	opacity: 0.6;
}
.dl-filearea{
	padding: 10px 0 0;
}
.dl-file-name{
	text-align: center;
	margin-bottom: 10px;
	padding: 10px 0 0;
}
.dl-file-name a{
	color: #137099;
}
.dl-note{
	font-size: 1.4rem;
}



@media (min-width:768px){
	.dl-wrap{
		display: flex;
		justify-content: space-between;
	}
	.dl-image{
		flex-basis: 120px;
		max-width: 120px;
		margin: 0;
	}
	.dl-files{
		flex-basis: calc( 100% - 150px );
	}
	.dl-file-name{
		text-align: left;
	}

}

/* Section Separator---------------------------------------------------------

　lineページ 2026/07/06

----------------------------------------------------------------------------*/

.line-intro{
	max-width: 860px;
	margin: 0 auto 50px;
	font-size: 1.6rem;
	padding: 0 20px;
}
.line-4-merit{
	background: #fffbc4;
	padding: 75px 0 ;
}
.line-title{
	margin: 0 auto;
	text-align: center;
	padding: 0 10% 50px;
}
.line-merit{
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	gap: 10px 5%;
	max-width: 1000px;
	margin: 0 auto;
}
.line-merit img{
	width: 47.5%;
}
.line-cta{
	background: #00cc66;
	color: #FFF;
	text-align: center;
	padding: 100px 20px;
}
.line-cta p{
	line-height: 1.4;
	font-size: clamp( 1.4rem , 2.6vw , 3rem);
}

.line-cta p span{
	display: block;
}
@media (min-width:768px){
	.line-cta p span{
		display: inline;;
	}
}

.btn-line-friend{
	color: #333;
}
.btn-line-friend a{
	color: #333;
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 1em 0;
	font-size: clamp( 1.6rem , 2.4vw , 3rem);
	border-radius: 999px;
	background: #fff020;
	max-width: 590px;
	margin: 0 auto;
}

.page-id-8964 .page_title::after{
	background: rgba(0,0,0,0.0);
}


/* PDFのリンクにはアイコン表示*/
.dl-file-name a[href$='.pdf']:after{
	content: url("icons/file-pdf-regular.svg");
	display: inline-block;
	margin: 0 5px;
}

/* wordのリンクにはアイコン表示*/
.dl-file-name a[href$='.doc']:after,
.dl-file-name a[href$='.docx']:after{
	content: url("icons/file-word-regular.svg");
	display: inline-block;
	margin: 0 5px;
}


/* エクセルのリンクにはアイコン表示*/
.dl-file-name a[href$='.xls']:after,
.dl-file-name a[href$='.xlsx']:after{
	content: url("icons/file-excel-regular.svg");
	display: inline-block;
	margin: 0 5px;
}
