@charset "UTF-8";

/*==========================================================================
 common css
========================================================================== */
html,body{
	width:100%;
	height:100%;
}
html{
	font-size: 62.5%; /*10px*/
	overflow-x:hidden;
}
body {
	background-color: #fff;
	color:#444;
	font-size: 14px;
	line-height: 2;
	font-family:"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "Osaka‐等幅", "sans-serif";
}
a {
	text-decoration:none;
	}
a:link{color: #444;}
a:visited{color: #444;}
a:active{color: #999;}
a:hover{color: #666;}


/*==========================================================================
 header css
========================================================================== */
header {
	width: 100%;
	min-width: 769px;
	height: 80px;
	margin: 0 auto;
	background-color: #fff;
	border-bottom:1px solid #eee;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
.header_wrap {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}
header img {
	width: 300px;
	margin: 25px 0 0 30px;
}
@media screen and (max-width: 768px) {
	header {
		min-width: 100%;
		height: 60px;
	}
	.header_wrap {
		max-width: 100%;
	}
	header img {
		height: 30px;
		width: auto;
		margin: 0 ;
	}
}

/*==========================================================================
 header menu css
========================================================================== */
.menu-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.ul_style_off {
	list-style: none;
	width: 455px;
}
/* 基本CSS */
 li {
	margin: 0;
	padding: 15px 0;
	font-size: 14px;
} 
li a:link{color: #333;}
li a:active{color: #ccc;}
li a:visited{color: #333;}
li a:hover{color: #999;}

/* チェックボックスを非表示 */
#navi input {
	display: none;
}
/* 左上ロゴ */
.menu-left {
	line-height: 60px;
}
.menu-left img {
	vertical-align: middle;
	margin-left: 10px;
}
/* 上部メニュー */
.menu-parent {
	display: inline-block;
	margin-top: 28px;
	padding: 0 30px;
	white-space: nowrap;
	border-right: #999 1px solid;
	
}
/* パソコンではvを非表示 */
.menu-parent .pd {
	display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
	border-right: none;
	padding-right: 0;
}
#menu-navibtn {
	display: none;
	cursor: pointer;
	cursor: hand;
}

@media screen and (max-width: 768px) {
	#navi {
		background: #fff;
		position: fixed;
		height: 60px;
		width: 100%;
	}
	/* スマホの際はvを表示 */
	.menu-wrap {
	display: inline;
	}
	.menu-parent .pd {
	display: inline-block;
	width: 100%;
	}
	.menu {
	display: none;
	margin: 0 ;
	}
	.menu .menu-parent a {
		margin-left: 15px;
	}
	.menu-parent {
	height: auto;
	width: 100%;
	margin-top: 0;
	padding: 15px 0;
	line-height: 2;
	border-bottom: 1px solid #ccc;
	/* background-color: #eee; */
	border-right: none;
	}
	.menu-parent:first-child {
	border-top: 1px solid #ccc;
	}
	.menu-parent i {
	padding: 0px 6px;
	}

	/* メニューを移動させないため */
	#menu-navibtn:checked ~ #navi {
	position: fixed;
	overflow-y: scroll;
	overflow-x: hidden;
	height: 100%;
	}
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: auto;
  box-sizing: border-box;
  padding: 0 20px;
  background-color: #FFF;
  border: 1px solid #eee;
}
/* パソコン用 */
@media screen and (min-width: 769px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}
/* スマホ用 */
@media screen and (max-width: 768px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border :none;
	background-color: #eee;
    position: relative;
    padding: 0;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: url(/_layout/images/sp_menu_arrow.gif?0202);
	display: inline-block;
	transform: rotateX(180deg);
	transition:.1s ease-in;
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: url(/_layout/images/sp_menu_arrow.gif?0202);
	display: inline-block;
	transform: rotateX(0deg);
	transition:.1s ease-in;
  }
}
/* 子メニュー */
.menu-child li {
	font-size: 14px;
	width: 100%;
	margin-left: 10px;
	margin-right: 10px;
}
@media screen and (max-width: 768px) {
	.menu-child li {
		background-color: #eee;
	}
}

/* 余分な最後の線を消去 */
.menu-child li i {
  margin-right: 0px;
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 768px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #333;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* ハンバーガー　上の棒 */
  #navibtn span span::before {
    top:10px;
	transition:.15s ease-in;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
	transition:.15s ease-in;
  }
  /* ハンバーガー　下の棒 */
  #navibtn span::after {
    bottom:10px;
	transition:.15s ease-in;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
	transition:.15s ease-in;
  }
  /* ハンバーガー　中の棒 */
  #navibtn span span::after {
    top:18px;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
  .indent {
	text-indent: -1em;
	padding-left: 1em;
  }
}

/*==========================================================================
 swiper css
========================================================================== */
.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #fff;
}
.swiper-container {
	margin-top: 80px;
    width: 100%;
	min-width: 850px;
    height: 450px;
	object-fit: cover;
}
.swipe_img {
    width: 100%;
    height: 450px;
	object-fit: cover;
}
.textbox {
	position: relative;
	width: 100%;
	height: 450px;
}
.text_wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin: 0 auto;
	text-align: center;
	width: 480px;
}
.textbox h1.mv1title {
	color: #fff;
	font-size: 50px;
	font-weight: normal;
	margin-bottom: 10px;
	text-shadow: 3px 3px 6px rgb(0, 0, 0, 0.75);
}
.textbox p.mv1read span {
	display: inline-block;
}
.textbox p.mv1read,
.textbox p.mv2read {
	color: #ffffff;
	width: 480px;
	font-size: 16px;
	text-align: center;
	line-height: 2;
	padding: 15px 20px;
	text-shadow: 2px 2px 4px rgb(0, 0, 0, 0.75);
	background-image: url("../images/pillow.png");
	background-repeat: repeat-y;
	background-size: cover;
}
.textbox p.mv2read {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: 30px;
	font-weight: 500;
	padding: 0 30px;
	background-size: cover;
}
.textbox img.logo {
margin: 20px auto 0;
filter:drop-shadow(2px 2px 2px #000);
width: 330px;
}
@media screen and (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
	--swiper-navigation-size: 30px;
	}
	.swiper-container {
		margin-top: 60px;
		min-width: 100%;
		height: 220px;
	}
	.swipe_img {
		width: auto;
		height: 100%;
		object-fit: cover;
	}
	.textbox {
		position: relative;
		width: auto;
		height: 100%;
	}
	.text_wrap {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		margin: 0 auto;
		text-align: center;
		width: 420px;
		width: auto;
	}
	.textbox h1.mv1title {
		font-size: 25px;
		margin-bottom: 0;
	}
	.textbox p.mv1read {
		font-size: 10px;
		width: 290px;
		background-size: cover;
		padding: 10px 0;
		line-height: 2;
	}
	.textbox p.mv2read {
		font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
		font-size: 24px;
		letter-spacing: 0.05em;
		line-height: 1;
		font-weight: 500;
		padding: 10px 0;
		width: 240px;
		background-size: cover;
	}
	.textbox img.logo {
		margin: 0 auto;
		filter:drop-shadow(2px 2px 2px #000);
		width: 50%;
	}
	.mvone_sp .mv{
		font-size: 50px;
	}
  }
  @media screen and (max-width: 320px) {
	.textbox h1.mv1title {
		line-height: 1.75;
	}
	.textbox p.mv1read {
		font-size: 10px;
		width: 290px;
		background-size: contain;
		padding: 7px 0;
		line-height: 1.75;
	}
	.textbox img.logo {
		vertical-align: middle;
	}
  }
/*==========================================================================
 News css
========================================================================== */
section.news_public_list {
    margin-top: 70px;
  }
  .ul_style_off {
    width: 471px;
  }
  @media screen and (max-width: 768px) {
    section.news_public_list {
    margin-top: 30px;
  }
  .accordion-button {
    text-align: left;
  }
}
.news_wrap {
	width: 100%;
	background-color: #0033a1;
}
.news_box {
	width: 950px;
	margin: 0 auto;
    padding: 10px 0;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.news_title {
	font-weight: bold;
	font-size: 14px;
	width: 140px;
	text-align: center;
	color: #fff;
	border: 1px #fff solid;
	display: inline-block;
}
.news_read {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	width: 700px;
}
.news_link {
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	padding-top: 4px;
	width: 80px;
	height: 30px;
	text-align: center;
	background-color: #fff;
}
.badge {
	background-color: #0033a1;
}
.news_link a:link{color: #333;}
.news_link a:hover{color: #666;}
.news_link a:active{color: #999;}
.news_link a:visited{color: #333;}
@media screen and (max-width: 768px) {
	.news_wrap {
		padding: 10px 0 10px;
	}
	.news_box {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		padding:0 10px;
		align-items: flex-start;
		flex-direction: column;
	}
	.news_title {
		font-size: 12px;
		padding: 0 5px;
		margin: 5px auto 0;
		width: 40%;
	}
	.news_read {
		width:90% ;
		line-height: 1.5;
		margin: 0 auto;
	}
	.news_read p {
		margin-top: 24px;
	}
	.news_link {
		padding: 1px 10px 0;
		margin: 10px auto 5px;
		width: auto;
		height: auto;
	}
	.br_hi {
		height: 30px;
	}
}
	#news span ,
	#pub span {
		display: block;
	}
/*==========================================================================
 public css
========================================================================== */
.public_wrap {
	width: 100%;
	background-color: #333;
}
@media screen and (max-width: 768px) {
	.public_wrap {
		padding: 10px 0 10px;
	}
}
/*==========================================================================
 CMS css
========================================================================== */
.cms__topvisual{
	position: absolute;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    filter: drop-shadow(0px 0px 2px #000);
}
.cms__topvisual span{
	font-size: 14px;
    font-weight: normal;
	line-height: 2.4;
}
.news_public_list .SECTION__WRAPPER {
    max-width: 1200px;
    margin: auto;
}
.cms__wrapper {
	max-width: 800px;
    width: fit-content;
    margin: auto;
}
.cms__item {
	position: relative;
	padding: 24px 24PX 24PX 0;
    font-weight: 600;
    border-bottom: solid 1px #ccc;
}
.cms__item::after{
	content: '';
    position: absolute;
    right: 16px;
    top: 35px;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
}
.cms__title {
    display: flex;
	align-items: center;
    font-size: 1.6rem;
    margin-bottom: 0;
    font-weight: 400;
}
.cms__title time {
	font-weight: normal;
	margin-right: 24px;
}
.cms__title p {
	margin: 0 24px 0 0;
	padding: 0;
	line-height: 1.6;
}
.cms__page-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 70px 0 40px;
	font-weight: bold;
}
.cms__page-title time {
	font-size: 1.2rem;
	margin-bottom: 8px;
}
.cms__page-title h1 {
	font-size: 1.8rem;
    line-height: 1.6;
}
.cms__article a {
	color: #0033a1;
}
@media screen and (max-width: 768px) {
	.cms__topvisual{
		font-size: 14px;
		width: 100%;		
	}
	.cms__topvisual span{
		line-height: 1.6;
	}
	.cms__header{
		display: flex;		
		align-items: center;
		height: 60px;
	}
	.cms__item::after{
		display: none;
	}
	.cms__item {
		padding: 24px 0;
	}
	.cms__title {
		flex-direction: column;
    	align-items: flex-start;
		line-height: 1.6;
	}
	.cms__title time {
		font-size: 1.2rem;
		font-weight: bold;
		margin-bottom: 8px;
	}
	.cms__title p {
		margin: 0;
	}
	.cms__page-title {
		margin: 30px 0;
	}
}
/*==========================================================================
 section css
========================================================================== */
section {
	width: 950px;
	margin: 0 auto;
}
section h2 {
	display: block;
	color: #444;
	font-size: 18px;
	line-height: 1.2;
	font-weight: bold;
	padding-bottom: 5px;
	text-align: center;
	margin: 80px 0 40px 0;
}
.flex_bnr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.two_col_bnr,
.three_col_bnr {
	position: relative;
	display: inline-block;
	width: 470px;
	height: 210px;
	margin-top: 10px;
}
.three_col_bnr {
	width: 310px;
	height: 180px;
}
.two_col_bnr p,
.three_col_bnr p {
	position: absolute;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	filter:drop-shadow( 0px 0px 2px #000);
}
.two_col_bnr p span,
.three_col_bnr p span {
	font-size: 12px;
	font-weight: normal;
}
.hover_green,
.hover_red,
.hover_yellow,
.hover_blue {
	overflow: hidden;
}
.hover_green {
	background: #00913a;
}
.hover_red {
	background: #e60012;
}
.hover_yellow {
	background: #ff9900;
}
.hover_blue {
	background: #00a0e9;
}
.hover_green img,
.hover_red img,
.hover_yellow img,
.hover_blue img {
	width: 100%;
	cursor: pointer;
	transition-duration: 0.2s;
}
.hover_green:hover img,
.hover_red:hover img,
.hover_yellow:hover img,
.hover_blue:hover img {
	opacity: 0.5;
	transition-duration: 0.2s;
}
@media screen and (max-width: 768px) {
	section, section.officer{
		width: calc(100% - 48px);
		margin: 0 auto 80px;
	}

	section h2 {
		display: block;
		font-size: 16px;
		font-weight: bold;
		width: 100%;
		text-align: center;
		margin: 40px 0 20px;
	}
	.flex_bnr {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.two_col_bnr,
	.three_col_bnr {
		position: relative;
		display: inline-block;
		width: 100%;
		height: auto;
		margin: 0 auto;
		margin-top: 10px;
	}
	.two_col_bnr p,
	.three_col_bnr p {
		font-size: 18px;
		line-height: 1.4;
		width: 300px;
	}
	.two_col_bnr p span,
	.three_col_bnr p span {
		font-size: 12px;
		line-height: 1;
	}
}

/*==========================================================================
 footer css
========================================================================== */
footer nav a:link{color: #fff;}
footer nav a:visited{color: #fff;}
footer nav a:active{color: #999;}
footer nav a:hover{color: #ccc;}

footer {
	width: 100%;
	color: #fff;
	background-color: #333;
	margin-top: 100px;
}
nav {
	width: 950px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
nav dl {
	margin: 30px 0 40px;
	font-size: 14px;
	width: 205px;
}
nav dt {
	font-weight: bold;
	border-bottom: solid 1px #00913a;
	padding-bottom: 5px;
}
nav .nav_aboutus dt {
	border-bottom-color: #e60012;
}
nav .nav_recruit dt {
	border-bottom-color: #ff9900;
}
nav .nav_contact dt {
	border-bottom-color: #00a0e9;
}
dd {
	font-size: 12px;
	line-height: 1.5;
	margin-left: 0em;
	margin: 15px 0 0 0em;
}
nav .others {
	width: 950px;
	border-top:1px solid #777;
	text-align: center;
	font-size: 12px;
	padding: 30px 0;
}
nav .others a {
	margin: 16px;
}
.credit {
	font-size: 14px;
	color: #fff;
	height: 60px;
	width: 100%;
	background-color: #181818;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	footer {
		height: auto;
		margin-top: 80px;
		padding: 30px 0 0 0;
	}
	nav {
		width: 90%;
	}
	nav dl {
		margin: 0;
		font-size: 16px;
		width: 100%;
		margin-bottom: 30px;
	}
	dd {
		font-size: 14px;
		line-height: 1.5;
		margin: 15px 0;
		padding-top: 5px;
	}
	nav .others {
		width: 100%;
		margin-left: 0;
		font-size: 12px;
		padding: 30px 0;
	}
	nav .others a {
		margin: 0 10px;
	}
	.credit {
		font-size: 12px;
		font-size: 1.2rem;
	}
}
.up_btn{
	display: block;
	width:60px;
	height:60px;
	border-radius:60px;
	border:1px solid #cccccc;
	background:#fff;
	position:fixed;
	bottom:40px;
	top:auto;
	right:80px;
	left:auto;
}
.up_btn::before,
.up_btn::after{
	content:"";
	display: block;
	width:24px;
	height:24px;
	border-radius: 0 6px 0 0;
	position:absolute;
	right:50%;
	left:50%;
	transform: translate(-50%) rotate(-45deg);
}
.up_btn::before{
	border-top:3px solid #0033a1;
	border-right:3px solid #0033a1;
	top:16px;
}
.up_btn::after{
	border-top:3px solid #00a0e9;
	border-right:3px solid #00a0e9;
	top:24px;
}
@media screen and (max-width:768px){
	.up_btn{
		bottom:24px;
		right:24px;
	}
}

/*==========================================================================
 各ページタイトル css
========================================================================== */
.pagetitle {
	position: relative;
	width: 100%;
	margin-top: 80px;
}
.pagetitle h1 {
	position: absolute;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.2;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	filter:drop-shadow( 0px 0px 2px #000);
}
.pagetitle h1 span {
	font-size: 14px;
	font-weight: normal;
}
.crumb {
	width: 100%;
	background-color: #0033a1;
}
.crumb p {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	font-size: 14px;
	color: #fff;
}
.crumb p a:link{color: #fff;}
.crumb p a:visited{color: #fff;}
.crumb p a:active{color: #999;}
.crumb p a:hover{color: #ccc;}

@media screen and (max-width: 768px) {
	.pagetitle {
		margin-top: 60px;
	}
	.crumb p {
		width: 90%;
		max-width: 90%;
		font-size: 10px;
	}
	.pagetitle h1 {
		position: absolute;
		color: #fff;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.2;
		width: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
		filter:drop-shadow( 0px 0px 2px #000);
	}
}


/*==========================================================================
History page css
========================================================================== */
.history_menu {
	width: 760px;
	margin:60px auto 0;
	padding-bottom: 10px;
	background-image: url("../images/history_bar.png");
}
label.his {
    display: block;
    margin: 0;
	padding: 0 0 15px 16px;
    line-height: 0.75;
	font-size: 18px;
	font-weight: bold;
    color :#0033a1;
    cursor :pointer;
}

input.input_his {
    display: none;
}
.history_menu ul.link {
	width: 600px;
	margin: 10px 0 10px 150px;
    padding: 0;
	line-height: 1;
	text-align: left;
    background :#fff;
    list-style: none;
}
.history_menu ul.link li {
    height: 0;
	text-indent: -6.7em;
    padding: 0 0 0 6.7em;
	line-height: 1.5;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.history_menu ul#links04 li {
	height: auto;
	margin: 20px 0;
    opacity: 1;
}
.history_menu ul#links05 li {
	height: auto;
	margin: 20px 0;
    opacity: 1;
}
#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li,
#menu_bar04:checked ~ #links04 li,
#menu_bar05:checked ~ #links05 li {
    height: auto;
	margin: 20px 0;
    opacity: 1;
}
li span {
    color :#0033a1;}

	@media screen and (max-width: 768px) {
	.history_menu {
		width: 100%;
		margin-top:40px;
		padding-bottom: 15px;
	}
	.history_menu ul.link {
		margin-left: 150px;
		width: 52%;
	}
	.history_menu ul.link li {
		height: 0;
		text-indent: 0;
		padding: 0;
	}
  label.his {
    padding: 0 0 15px 0;
  }
}
/*==========================================================================
contents page css
========================================================================== */
section.contents {
	text-align: center;
}
section.contents p {
	text-align: left;
}
section.contents h2 {
	text-align: center;
}
section.contents h2 span {
	font-size: 14px;
	font-weight: normal;
	color: #777;
}
section.contents p {
	font-size: 14px;
}
.innnerwrap {
	display: -webkit-flex;
    display: flex;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: center;
	width: 950px;
}
.--left{
	justify-content: flex-start;
}
.contents .description {
	text-align: center;
	margin-bottom: 40px;
}
.logo_ph_wrap {
	margin: 0 20px;
	text-align: center;
}
.logo_ph_wrap:nth-child(2n+1):not(:first-child) {
	margin-top: 40px;
}
.logo_ph_wrap.--half{
  width:calc(50% - 40px);
}
.logo_ph_wrap2 {
	width: 220px;
	margin: 0 20px;
	text-align: center;
}
.logo_ph_wrap3 {
	width: 950px;
	margin: 30px 0 0;
	text-align: center;
	display: flex;
	justify-content: space-around;
}
.logo .clinic_logo {
	height: 40px;
	margin: 40px 0;
}
.logo .medical_logo {
	margin: 40px 0 30px;
}
.logo .pcr_logo {
	margin: 44px 0 30px;
	height: 26px;
}
.logo .comm_logo1 {
	height: 40px;
	margin: 40px 0;
}
.logo .comm_logo2  {
	height: 80px;
	margin: 20px 0;
}
.logo .comm_logo3 {
	height: 20px;
	margin: 50px 0 50px;
}
.logo .comm_logo4  {
	height: 44px;
    margin: 32px 0 32px;
}
.logo_ph_wrap .photo{
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.logo_ph_wrap .photo img{
	width: auto;
	height: 150px;
}
.feemo_logo,.photo_feemo {
width: 270px;
}
.feemo_logo {
	margin-top: 50px;
	}
hr {
	margin: 60px auto 0;
}
.btn_space {
	width: 1000px;
}
.link_btn {
	margin: 50px 50px 0;
	display: inline-block;
	border-radius: 25pt;
	font-size: 12pt;
	text-align: center;
	cursor: pointer;
	padding: 20px 60px;
	background: #0033a1;
	color:#ffffff;
	line-height:1;
	transition:0.3s;
}
a.link_btn:hover {
	background: #333;
	color: #aaa;
  }
a.link_btn {
	color: #fff;
}
a.link_img {
	transition: opacity 0.3s ease;
}
a.link_img:hover{
	opacity: 0.7;
}
.arrow_btn {
	display: block;
	margin-top: 8px;
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.link_btn {
		margin: 50px 0 0;
		padding: 20px 40px;
	}
	.innnerwrap {
		display: block;
		width: 100%;
	}
	.contents .innnerwrap {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
	}
	.contents .description {
		text-align: center;
		margin-bottom: 20px;
	}
	.logo_ph_wrap {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	.logo_ph_wrap:nth-child(2n+1):not(:first-child) {
		margin-top: 0;
	}
	.logo_ph_wrap.--half{
		width:100%;
	}  
	.logo_ph_wrap3 {
		width: 100%;
		margin: 30px auto 0;
		text-align: center;
		display: block;
	}
	.innnerwrap .logo_ph_wrap2,
	.innnerwrap .logo_ph_wrap2	{
		margin: 30px auto;
		width: 100%;
	}
	.logo_ph_wrap3 .photo_feemo	{
		margin: 30px auto;
	}
	.feemo_total_img {
		width: 90%;
	}
}
/*==========================================================================
comm page css
========================================================================== */
.comm_innner {
	margin: 0 auto;
	text-align: center;
}
img.comm_kv_img {
	width: 300px;
	height: auto;
	float: left;
	margin-right: 30px;
}
.comm_innner p {
	max-width: 620px;
	float: right;
	text-align: left;
}
.comm_img_wrap {
	width: 620px;
	padding-top: 30px;
	display: flex;
	justify-content: flex-end;
}
.medical_img_wrap {
	width: 950px;
	padding-top: 30px;
	display: flex;
	justify-content: flex-end;
}
.read_illust_wrap {
	width: 150px;
	line-height: 1.5;
}
img.comm_gs_img {
	width: auto;
	height: 70px;
	margin-bottom: 15px;
}
.read_illust_jps_wrap {
	width: 190px;
	line-height: 1.5;
	margin-left: 25px;
}
img.comm_jps_img {
	width: auto;
	height: 70px;
	margin-bottom: 15px;
}
img.comm_nst_img {
	width: 200px;
	height: auto;
	margin-bottom: 15px;
}
.media_img_wrap {
	margin-left: 330px;
	width: 620px;
}

@media screen and (max-width: 768px) {
	.medical_wrap {
		width: calc(100% - 48px);
	}
	.comm_innner p {
		float: none;
		text-align: left;
		margin: auto;
	}
	img.comm_kv_img {
		width: 100%;
		height: auto;
		float: none;
		margin: 30px auto;
	}
	.medical_img_wrap {
		width: 100%;
		padding-top: 30px;
		display: flex;
		justify-content: flex-end;
	}
	.read_illust_jps_wrap {
		width: 50%;
		line-height: 1.5;
		margin-left: 0;
	}
	.comm_img_wrap {
		width: 100%;
		padding-top: 30px;
		display: flex;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	.comm_img_wrap_sp_colthree {
		width: 100%;
        padding-top: 30px;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
	}
	.media_img_wrap {
		margin-left: 0;
		width: 100%;
	}
}
/*==========================================================================
recruit page css
========================================================================== */
.contents .read {
	margin: 80px auto 60px;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.contents {
		width: 90%;
	}
	.contents .read {
		margin: 80px auto 60px;
		font-size: 14px;
		text-align: left;
	}
}
/*==========================================================================
job page css
========================================================================== */
.flex_box_parent {
	display: flex;
	flex-wrap: wrap;
}
.flex_box {
	width: 32%;
	border: #aaa 1px solid;
	text-align: center;
	padding: 20px;
	color: #777;
	display: flex;
	flex-direction: column;
}
.flex_box:not(:nth-child(3n+3)) {
	margin-right: 2%;
  }
.flex_box:nth-child(n+4) {
	margin-top: 30px;
  }
.flex_box h3 {
	margin: 30px auto 10px;
	height: 100%;
	display: flex;
	align-items: center;
}
.flex_box li {
	line-height: 0;
	color: #777;
}
.jobname {
	color: #777;
}
.flex_box .link_btn {
	width: 100%;
	padding: 10px 20px;
	margin: 20px auto 0;
}
.recruit_none {
	opacity: 0.5;
}
.recruit_none .link_btn {
	background: #aaa;
	pointer-events: none;
}
.job_read p {
text-align: center;
line-height: 2.5;
margin-top: 80px;
}
.job_read .bigger {
	font-size: 20px;
	font-weight: bold;
	color: #0033a1;
}
.group_shot {
	margin: 70px auto 0;
	text-align: center;
	width: 950px;
	position: relative;
}
.group_shot_bg_sp {
	display: none;
}
.balloon{
	filter: drop-shadow(1px 1px 3px #000);
}
.posi_abs {
	position: absolute;
}
.posi_abs a img:hover {
	transform:scale(1.05,1.05);
	transition:0.25s all;
}
@media screen and (max-width: 768px) {
	.flex_box_parent {
		display:block;
	}
	.flex_box:not(:nth-child(3n+3)) {
		margin-right: 0;
	  }
	.flex_box:nth-child(n+4) {
		margin-top: 0;
	  }
	.flex_box {
		border: none;
		width: 100%;
		border-bottom: #aaa 1px solid;
		text-align: center;
		padding: 40px 0;
		margin: 0 auto;
		color: #aaa;
	}
	.flex_box img {
		width: 100%;
	}
	.job_read p {
		line-height: 1.8;
		margin-top: 40px;
		font-size: 14px;
	}
	.group_shot {
		margin: 40px auto 0;
		width: 100%;
	}
	.job_type {
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

.bal_operations { top: 55px; left: 65px; z-index: 26;}
	.bal_operations img{ height: 76px; width: auto;}
.bal_account { top: 390px; left: 80px; z-index: 20;}
	.bal_account img{ height: 75px; width: auto;}
.bal_presidents { top: 415px; left: 225px; z-index: 27;}
	.bal_presidents img{ height: 79px; width: auto;}
.bal_system { top: 95px; left: 163px; z-index: 29;}
	.bal_system img{ height: 70px; width: auto;}
.bal_Intl { top: 330px; left: 280px; z-index: 24;}
	.bal_Intl img{ height: 79px; width: auto;}
.bal_airport { top: 70px; left: 345px; z-index: 21;}
	.bal_airport img{ height: 103px; width: auto;}
.bal_custom { top: 410px; left: 435px; z-index: 23;}
	.bal_custom img{ height: 104px; width: auto;}
.bal_logi { top: 40px; left: 505px; z-index: 25;}
	.bal_logi img{ height: 104px; width: auto;}
.bal_clinic { top: 50px; left: 685px; z-index: 22;}
	.bal_clinic img{ height: 98px; width: auto;}
.bal_mkt { top: 365px; left: 600px; z-index: 30;}
	.bal_mkt img{ height: 79px; width: auto;}
.bal_sales { top: 295px; left: 798px; z-index: 28;}
	.bal_sales img{ height: 79px; width: auto;}

.gs_l1 { top: 127px; left: 25px; z-index: 2;}
	.gs_l1 img{ height: 445px; width: auto;}
.gs_l2 { top: 127px; left: 120px; z-index: 1;}
	.gs_l2 img{ height: 445px; width: auto;}
.gs_l3 { top: 185px; left: 180px; z-index: 7;}
	.gs_l3 img{ height: 385px; width: auto;}
.gs_l4 { top: 127px; left: 244px; z-index: 3;}
	.gs_l4 img{ height: 445px; width: auto;}
.gs_l5 { top: 127px; left: 328px; z-index: 8;}
	.gs_l5 img{ height: 445px; width: auto;}
.gs_l6 { top: 127px; left: 400px; z-index: 4;}
	.gs_l6 img{ height: 445px; width: auto;}
.gs_l7 { top: 127px; left: 505px; z-index: 9;}
	.gs_l7 img{ height: 445px; width: auto;}
.gs_l8 { top: 127px; left: 555px; z-index: 5;}
	.gs_l8 img{ height: 445px; width: auto;}
.gs_l9 { top: 127px; left: 648px; z-index: 10;}
	.gs_l9 img{ height: 445px; width: auto;}
.gs_l10 { top: 127px; left: 730px; z-index: 6;}
	.gs_l10 img{ height: 445px; width: auto;}
.gs_l11 { top: 127px; left: 800px; z-index: 11;}
	.gs_l11 img{ height: 445px; width: auto;}

	.gs_wrapper_sp {
		display: none;
	}

@media screen and (max-width: 768px) {
	.group_shot {
		width: 100%;
		height: auto;
	}
	.group_shot_bg , .recruit_none , .posi_abs{
		display: none;
	}
	.gs_wrapper_sp {
		display: block;
	}
	.gs_wrapper {
		display: none;
	}
}
/*==========================================================================
各部署ページ css
========================================================================== */
.job_navi {
	font-size: 16px;
	margin: 0 50px;
}
.jobcopy {
	width: 950px;
	margin: 80px auto 0;
	font-size: 16px;
}
.jobcopy img {
	width: 100%;
	margin: 50px 0 0;
}

section.section_job {
	text-align: center;
}
section.jobpage .ubl {
	margin-bottom: 10px;
}
.job_list dl {
	display: flex;
	flex-wrap: wrap;
	width: 450px;
}
.job_list dt {
	width: 80px;
	border-bottom: solid 1px #bbb;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	padding: 20px 0;
	line-height: 1.3;
}
.job_list dd {
	margin: 0;
	width: 370px;
	border-bottom: solid 1px #bbb;
	font-size: 14px;
	padding: 20px 0;
	line-height: 2;
}
.jobpage .link_btn {
	width: 50%;
	margin: 50px auto 20px;
}
.job_talk_wrap {
	width: 700px;
	margin: 50px auto 0;
}
.job_talk_wrap img {
	float: right;
}
/* 吹き出し本体 */
.talkballoon{
	position: relative;
	padding: 30px 40px;
	width: 470px;
	background-color: #dfefff;
	text-align: center;
}
/* アイコンを右に表示 */
.talkballoon::before{
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	right: -30px;
	top: 90px;
	border-left: 30px solid #dfefff;
	border-bottom: 30px solid transparent;
}
/* 総務部人物写真なしのため配置調整 */
#page-generalaffairs .talkballoon {
  width:100%;
}
#page-generalaffairs .talkballoon::before {
  display: none;
}
/* 業務部人物写真なしのため配置調整 */
#page-ope .talkballoon {
  width:100%;
	margin-bottom: 40px;
}
#page-ope .talkballoon::before {
  display: none;
}
#anc_position .ubl {
	padding-top: 80px;
	margin-top: 0px;
}

/* 終了 */
.talkballoon > h2 {
	font-size: 24px;
	font-weight: bold;
	color: #0033a1;
	border-bottom: 1px solid #0033a1;
	margin-top: 20px;
}
.talkballoon > h3 {
	font-size: 18px;
	color: #0033a1;
	margin: 20px 0 5px;
}
.talkballoon > p {
	font-size: 16px;
	text-align: left;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .job_navi {
    margin: 0;
  }  
	.jobcopy {
		width: 100%;
		margin: 40px auto 0;
		font-size: 14px;
	}
	.jobcopy img {
		margin: 30px auto 20px;
	}
	.jobpage , .job_list dl {
		width: 95%;
		margin: 0 auto;
	}
	.jobpage .link_btn {
		width: 90%;
		margin: 50px auto 20px;
	}
	.job_list dt {
		width: 100%;
		font-size: 14px;
		line-height: 1.5;
		padding: 10px 20px;
		background-color: #eee;
		border:none;
		text-align: center;
	}
	.job_list dd {
		width: 100%;
		border:none;
		padding: 20px 10px;
	}
	.job_talk_wrap {
		width: 100%;
		margin: 10px auto 0;
	}
	.job_talk_wrap img {
		float: none;
		width: 50%;
		margin: 0 auto;
	}
	/* 吹き出し本体 */
	.talkballoon{
		padding: 5% 6%;
		width: 100%;
		margin: 0 auto;
	}
	/* beforeで三角を表現 */
	.talkballoon::before{
		content: '';
		position: absolute;
		left: 16%;
		top: -20px;
		display: block;
		width: 0;
		height: 0;
		border-bottom: 20px solid #dfefff;
		border-left: 20px solid transparent;
	}
	.talkballoon > h2 {
		line-height: 1.5;
		font-size: 18px;
		margin-top: 10px;
	}
	.talkballoon > h3 {
		line-height: 1.5;
		font-size: 16px;
	}
	.talkballoon > p {
		line-height: 1.8;
		font-size: 14px;
	}
}
/*==========================================================================
office page css
========================================================================== */
h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
}
.office p , .office_p {
	font-size: 14px;
}
.logo_ph_wrap p {
	margin-bottom: 20px;
}
.president_coment img {
	float: right;
	height: 240px;
	margin-left: 30px;
}
.president_coment p {
	margin-bottom: 12px;
}
.sclamble_square {
	background: #dcd7f2;
	padding: 40px;
	margin-top: 50px;
	border-radius: 20px;
}
.sclamble_square h2 {
	margin: 0 auto 25px;
	padding: 15px;
	width: 450px;
	border-radius: 25pt;
	font-size: 16pt;
	text-align: center;
	background: #333;
	color:#ffffff;
	line-height:1;
}
.office_photo , .scsc_logo {
	display: flex;
	justify-content: space-between;
}
.office_photo img {
	width: 210px;
	height: auto;
}
.scsc_logo a {
	display: block;
	width: 180px;
	margin: 30px auto 0;
}
.scsc_logo a img {
	width: 180px;
}
.sclamble_square .cap {
	font-size: 12px;
	margin-top: 5px;
}

@media screen and (max-width: 768px) {
	.president_coment img {
		margin: 0 20px;
	}
	.logo_ph_wrap .photo {
		width: 100%;
    flex-direction: column;
	}
  .logo_ph_wrap .photo img:not(:last-child){
    margin-bottom:16px;
  }
	.logo_ph_wrap .pcr_ph {
		width: 70%;
		margin: auto;
	}
	.logo_ph_wrap {
		margin: 20px 0;
	}
	.logo_ph_wrap .photo img {
    height: auto;
	}
	section.office {
		width: 90%;
	}
	.office .innnerwrap {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
	}
	.office h3 {
		width: 100%;
	}
	.sclamble_square {
		padding: 30px 20px;
		margin-top: 50px;
		margin-bottom: 0;
		border-radius: 0;
	}
	.sclamble_square h2 {
		padding: 15px;
		width: 100%;
		border-radius: 25pt;
		font-size: 12pt;
	}
	.sclamble_square p {
		width: 100%;
	}
	.office_photo , .scsc_logo {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 20px;
	}
	.office_photo img {
		width: 50%;
		height: auto;
	}
}
/*==========================================================================
phylosophy css
========================================================================== */
.philosophy h3 {
	font-size: 25px;
    text-align: center;
    line-height: 1.6;
    margin: 60px 0;
}
.philosophy figure{
	float: right;
	width: 330px;
	margin-left: 30px;
}
.philosophy .position{
	text-align: right;
	font-size: 16px;
	color: #000;
}
.philosophy .position .sign{
	font-size: 22px;
	vertical-align: middle;
	margin-left: 20px;
}
@media screen and (max-width: 768px) {
	.philosophy h3 {
		font-size: 20px;
		text-align: left;
	}
	.philosophy h3 br {
		display: none;
	}
	.philosophy figure {
		float: none;
		width: 100%;
		height: auto;
		margin: 20px 0;
	}
}
/*==========================================================================
ci css
========================================================================== */
.ci {
	text-align: center;
}
.ci h3 {
	font-size:70px;
	font-weight: normal;
}
.ci p.read {
	font-size: 16px;
	line-height: 2;
	width: 750px;
	margin: 0 auto;
}
.ci p.read span ,
.ci p.copy span {
	display: inline-block;
}
.ci .copy {
	font-size: 24px;
	font-weight: bold;
	margin-top: 70px;
	color: #0033a1;
	line-height: 1.2;
}
.ci .logo_read {
	text-align: left;
	width: 750px;
	margin: 60px auto 0;
}
.logo_explan_pc { display: block !important; }
.logo_explan_sp { display: none !important; }
.ci_ph img.logo_explan_pc {
	width: 600px;
	margin: 80px auto 0;
}
.ci_ph img.logo_mark {
	width: 500px;
	margin-top: 70px;
}
@media screen and (max-width: 768px) {
	.logo_explan_pc { display: none !important; }
	.logo_explan_sp { display: block !important; }
	.ci h3 {
		font-size: 45px;
		margin: 70px 0 50px;
	}
	img.logo_explan_sp {
		margin-top: 80px;
	}
	.ci p.read {
		width: 100%;
		font-size: 14px;
	}
	.ci .logo_read {
		width: 100%;
		margin: 60px auto 0;
	}
	.ci_ph img.logo_mark {
		margin-top: 70px;
	}
}
/*==========================================================================
company css
========================================================================== */
.company,
.jobpage {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.dl_list dl {
	display: flex;
	flex-wrap: wrap;
	width: 450px;
	margin-top: 70px;
}
.dl_list dt {
	width: 100px;
	border-top: solid 1px #bbb;
	font-size: 18px;
	font-weight: bold;
	padding: 20px;
}
.dl_list dt.space {
	border-top: none;
}
.dl_list dd {
	margin: 0;
	width: 350px;
	border-top: solid 1px #bbb;
	font-size: 14px;
	padding: 20px 0;
	line-height: 2;
}
.company .dl_list dl dd a ,.company .dl_list dl dd a:visited {
	color: #444444;
	text-decoration: underline;
}
.company .dl_list dl dd a:hover {
	color: #0033a1;
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.company {
		width: calc(100% - 48px);
		margin: 0 auto;
	}
  .dl_list dl{
    width:100%;
  }
	.dl_list dt {
		width: 16%;
		font-size: 15px;
		padding: 20px 4px 10px 0;
	}
	.dl_list dd {
		width: 84%;
	}
}
/*==========================================================================
officer css
========================================================================== */
.officer {
	width: 100%;
}
.officer dl {
	width: 769px;
	margin: 0 auto;
}
.dl_spacer {
	margin: 30px 0 40px ;
}
dt.name {
	padding-top: 25px;
	width: 100%;
	height: auto;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px #777 solid;
	margin-bottom: 20px;
}
dt.name span {
	font-size: 14px;
	font-weight: normal;
	color: #777;
	margin-left: 15px;
}
dd.year , dd.event {
	margin: 0;
	float: left;
	line-height: 2.2;
}
dd.event {
    width: 769px;
    padding-left: 70px;
    float: none;
}
@media screen and (max-width: 768px) {
	.officer dl {
		width: 100%;
	}
	dt.name {
		font-size: 16px;
		padding-left: 10px;
	}
	dd.year {
		margin-left: 10px;
	}
	dd.event {
		width: 100%;
	}
	dd.year , dd.event {
		line-height: 1.8;
		padding-top: 10px;
		font-size: 14px;
	}
}
/*==========================================================================
sitemap css
========================================================================== */
.sitemap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sitemap dl {
	margin-top: 90px;
}
.sitemap dl dt {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.75;
}
.sitemap dl dd {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	padding: 10px 0;
}
@media screen and (max-width: 768px) {
	.sitemap {
		margin: 0 auto;
		width: 290px;
	}
	.sitemap dl {
		margin-top: 50px;
	}
	.sitemap dl dt,
	.sitemap dl dd {
		width: 140px;
		font-size: 14px;
		line-height: 1.2;
	}
	.sitemap dl dd {
	font-size: 12px;
	}
}

/*==========================================================================
privacypolicy css
========================================================================== */
table{
	margin: 70px auto;
}
th{	
	border-right: solid 3px #fff;
	border-left: solid 3px #fff;
	padding: 10px 0;
	background-color: #555;
	color: #fff;
}
td{
	border-right: solid 3px #fff;
	border-left: solid 3px #fff;
	margin: 20px;
	padding: 20px 10px;
	border-bottom: solid 1px #777;
}
.t_a_right {
	text-align: right;
}
a.pp_link {
	color: #0033a1;
	cursor: pointer;
}
a.pp_link:link{color: #0033a1;}
a.pp_link:hover{color: #666;}
a.pp_link:active{color: #999;}

/*==========================================================================
Form css
========================================================================== */
.btn-primary {
	background-color: #0033a1;
    border-color: #0033a1;
}
.btn-primary:hover {
	background-color: #3156a6;
    border-color: #3156a6;
}
.boder-b {
border-bottom: 1px solid #ccc;
}
.background{
	border:1px solid #536da6;
	color: #0033a1;
    padding: 0px 7px;
    margin-top: 5px;
}
.btn-light{
	background-color:#b5cde7;
	border-color: #b5cde7;
}
.btn-light:hover{
	background-color:#cfddeb;
	border-color: #cfddeb;
}
/*==========================================================================
aboutsite css
========================================================================== */
.aboutsite p {
	width: 650px;
	margin: 0 auto;
}
/*==========================================================================
access css
========================================================================== */
.access {
	width: 700px;
	margin: 0 auto;
	text-align: center;
}
.access h2 {
	width: 100%;
	color: #0033a1;
	border-bottom: 1px solid #0033a1;
	padding: 0 0 2px;
	margin-bottom: 20px;
	font-size: 24px;
}
.access h3 {
	text-align: center;
	font-size: 20px;
	line-height: 1.2;
	margin: 30px 0 10px;
}
.access h4 {
	color: #0033a1;
	border-bottom: 1px solid #0033a1;
	width: 500px;
	padding: 0 0 2px;
	margin: 15px auto 10px;
}
.access p {
	width: 500px;
	margin: 0 auto;
	text-align: left;
}
.access div.link_btn {
	padding: 10px 20px;
	margin: 20px 0 0;
}
.access img {
	width: 500px;
	margin:40px auto 10px;
}
.access img.map {
	margin-top: 0;
}
.access hr {
	margin: 40px 0;
}
.access .attn {
	color: #e60012;
	font-size: 12px;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
}
.access p.cap {
	text-indent: -2.7em;
	padding-left: 2.7em;
}
@media screen and (max-width: 768px) {
	.access {
		text-align: left;
		width: calc(100% - 48px);
		margin: 0 auto;
	}
	.access img {
		margin:30px auto 10px;
	}
	.access h2 {
		font-size: 20px;
		line-height: 1.4;
	}
	.access h3 {
		text-align: left;
		font-size: 18px;
	}
	.access h4 {
		color: #0033a1;
		border-bottom: 1px solid #0033a1;
		width: 100%;
		text-align: left;
		line-height: 1.5;
		padding: 0 0 2px;
		margin: 15px auto 10px;
	}
	.access p {
		line-height: 1.8;
		margin-bottom: 20px;
		width: 100%;
	}
}

/*==========================================================================
option css
========================================================================== */
.ubl {
	border-bottom: 1px solid #bbb;
}
.t_a_left {
	text-align: left;
}
.u-mb-30 {
	margin-bottom: 30px;
}
.indent1em {
	text-indent: -1em;
	padding-left: 1em;
}
.br_sp {
	display: none;
}
.blue {
	color: #0033a1;
}
.for_sp_img {
	display: none;
}
@media screen and (max-width: 768px) {
	.br_pc {
		display: none;
	}
	.br_sp {
		display:inline;
	}
	.for_sp_img {
		display: block;
	}
	.for_pc_img {
		display: none;
	}
}


/*==========================================================================
/recruit/intern/ css
========================================================================== */

section.intern_main,
section.intern_bottom {
	width: 800px;
	text-align: center;
}
section.intern_main h2,
section.intern_bottom h2 {
	width: 100%;
	color: #0033a1;
    font-size: 20px;
	background: linear-gradient(transparent 60%, #22b6ed42 0%);
    display: inline-block;
}
.inner_wrap {
	margin-bottom: 36px;
}
.inner_wrap * {
	display: inline-block;
	vertical-align: top;
}
.inner_wrap .main_read {
  width: 50%;
  margin-right: 4%;
	text-align: left;
	display: inline-block;
}
.inner_wrap .main_ph {
    width: 45%;
	display: inline-block;
}
.mynavi_btn,
.mynavi_btn_b {
	margin: 0 0 36px;
}
.mynavi_entry_btn_mid {
	width: 480px;
}
.mynavi_entry_btn_mid:hover {
	opacity: 0.6;
}
.mynavi_entry_btn_btm {
	width: 480px;
  margin-bottom: 100px;
}
.mynavi_entry_btn_btm:hover {
	opacity: 0.6;
}
section.intern_bottom .contents_read {
	width: 50%;
    margin-right: 4%;
	text-align: left;
	display: inline-block;
	vertical-align: top;
}
section.intern_bottom .parent {
	width: 45%;
	display: inline-block;
	text-align: left;
	vertical-align: top;
}
section.intern_bottom .parent > li {
	font-size: 14px;
	padding: 8px 0;
    border-top: 2px dotted #111;
}
section.intern_bottom .parent > li:last-of-type {
border-bottom: 2px dotted #111;
}
section.intern_bottom .parent > li > ul {
padding-bottom: 10px;
}
section.intern_bottom .parent > li > ul > li {
	font-size: 12px;
	padding: 0;
	line-height: 1.4;
	text-indent: -12px;
    margin-left: 12px;
}
section.intern_bottom .cap {
	font-size: 12px;
	text-align: right;
}
section.intern_bottom .about_table {
	margin-top: 0;
	width: 100%;
}
section.intern_bottom .about_table tr th {
	border-bottom: 1px solid #fff;
	padding: 20px 10px;
	background-color: #3156a6;
}
.selection_sche {
	font-size: large;
	line-height: 1.5;
	margin-bottom: 50px;
}
.btn_attention{
	color: #f00;
	font-size: medium;
font-weight: 700;
margin-top: 20px;
}
.senior_messe {
	display: flex;
}
.mynavi_senior_btn {
 width: 240px;
 margin: 10px;
}
.mynavi_senior_btn:hover {
	transform:scale(1.05);
	transition:0.3s all;
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	section.intern_main,
	section.intern_bottom,
	.inner_wrap .main_read,
	.inner_wrap .main_ph,
	section.intern_bottom .contents_read {
		width: calc(100% - 48px);
	}
	section.intern_bottom .parent {
	  width: 90%;
    margin-top: 12px;
	}
	.inner_wrap .main_read,
	.inner_wrap .main_ph {
		display: block;
    width:100%;
	}
	.mynavi_btn,
	.mynavi_btn_b {
		width: 90%;
	}
	.mynavi_entry_btn_mid {
		width: 100%;
		margin-top: 0;
		margin-bottom: 10px;
	}
	.mynavi_entry_btn_btm {
		width: 100%;
		margin-bottom: 70px;
	}
	section.intern_bottom .about_table {
		width: 90%;
	}
	section.intern_bottom .about_table tr th {
		width: 33%;
		font-size: 12px;
		text-align: left;
	}
	section.intern_bottom .about_table tr td {
		font-size: 12px;
		text-align: left;
	}
	.mynavi_senior_btn {
		width: 90%;
		margin: 0 0 20px 0;
	 }
	 .mynavi_senior_btn:hover {
		transform:none;
		transition:none;
	}
}


/*==========================================================================
 list accordion css
========================================================================== */

.accordion {
	margin: 30px auto;
	max-width: 80%;
}
.toggle {
	display: none;
}
.option {
	position: relative;
	margin-bottom: 6px;
}
.title,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.title {
	border-bottom: solid 1px #ccc;
	padding: 20px 40px 20px 7em;
	text-indent: -7em;
	display: block;
	font-size: 15px;
	color: #333;
}
.title::after,
.title::before {
	content: "";
	position: absolute;
	right: 15px;
	top: 25px;
	width: 1px;
	height: 15px;
	background-color: #999;
	transition: all 0.3s;
}
.title::after {
	transform: rotate(90deg);
}
.content {
	max-height: 0;
	overflow: hidden;
}
.content p {
	padding: 25px 20px;
	font-size: 14px;
	line-height: 1.5;
	background-color: #eff7ff;
	border-bottom: solid 1px #ccc;
}
.toggle:checked + .title {
	color: #0033a1;
}
.toggle:checked + .title + .content {
	max-height: 1000px;
	transition: all 1.5s;
}
.toggle:checked + .title::before {
	transform: rotate(45deg) !important;
	background-color: #0033a1;
}
.toggle:checked + .title::after {
	transform: rotate(135deg) !important;
	background-color: #0033a1;
}
@media screen and (max-width: 768px) {
	.accordion {
    max-width: 90%;
	}
	.title {
		line-height: 1.5;
		padding-right: 35px;
	}
	.accordion .option .content > p {
		max-width: 100%;
	}
}


/*==========================================================================
 form placeholder css
========================================================================== */
input[type='text']::placeholder,
input[type='date']::placeholder,
input[type='tel']::placeholder,
input[type='radio']::placeholder,
input[type='email']::placeholder {
  color:#bbb;
}

/*------------------------------
新問い合わせフォームの装飾
------------------------------*/
section .contact__title span{
  font-size: 14px;
  font-weight: normal;
  color: #777;
}
.contact__wrapper{
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
}
.contact__wrapper .contact__link{
  border:1px solid #0033a1;
  color:#0033a1;
  display: flex;
  align-items: center;
  justify-content: center;
  width:calc((100% - 40px)/ 2);
  height:104px;
  margin-bottom:24px;
  font-size:16px;
  padding:16px;
  transition: .3s;
  line-height: 1.5;
}
.contact__wrapper .contact__link .contact__togglelabel{
  display: flex;
  align-items: center;
  height:100%;
  width:100%;
  justify-content: center;
}
.contact__wrapper #contact__toggle:checked + .contact__link,
.contact__wrapper .contact__link:hover{
  background:#0033a1;
  color:#fff;
}
.contact__wrapper p.attention__text{
  width:100%;
  text-align: center;
}
.contact__wrapper .contact__link.--toggle{
  position:relative;
  padding:0;
}
.contact__wrapper .contact__link .toggle__wrapper{
  width:100%;
  bottom:0;
  background:#eff7ff;
  position:absolute;
  padding:0 24px;
  text-align: center;
  transform: translateY(100%);
  color:#444;
  max-height: 0;
  overflow-y: hidden;
  transition: .3s;
}
.contact__wrapper .contact__link .toggle__wrapper p{
  text-align: center;
}
.contact__wrapper .contact__link .toggle__wrapper .toggle__title{
  color:#0033a1;
  font-size:18px;
  line-height:1.5;
  margin-bottom:8px;
}
.contact__wrapper .contact__link .toggle__wrapper .toggle__tel{
  font-size:28px;
  line-height: 1;
}
.contact__wrapper .contact__link .toggle__wrapper .toggle__time{
  font-size:14px;
  margin-top: 8px;
  margin-bottom:24px;
  line-height: 1;
}
.contact__wrapper .contact__link .toggle__wrapper .toggle__innerbutton{
  background:#0033a1;
  color:#fff;
  line-height:1;
  padding:16px;
  max-width:300px;
  display: block;
  margin:auto;
  border:1px solid #0033a1;
  transition: .3s;
  border-radius: 100vh;
}
.contact__wrapper .contact__link .toggle__wrapper .toggle__innerbutton:hover{
  background:#333;
  color:#aaa;
}
.contact__wrapper #contact__toggle{
  display: none;
}

.contact__wrapper #contact__toggle:checked + .contact__link .toggle__wrapper{
  max-height:none;
  padding:24px 24px;
}
@media screen and (max-width:768px){
  .contact__wrapper{
    flex-direction: column;
  }
  .contact__wrapper .contact__link{
    width:100%;
    margin-bottom:16px;
    font-size:14px;
    padding:8px;
  }
  .contact__wrapper .contact__link:hover{
    background:none;
    color:inherit;
    border: 1px solid #444;
  }
  .contact__wrapper .contact__link .toggle__wrapper{
    padding:0 16px;
  }
  .contact__wrapper .contact__link .toggle__wrapper .toggle__title{
    font-size:16px;
  }
  .contact__wrapper .contact__link .toggle__wrapper .toggle__time{
    font-size:14px;
    margin-bottom:16px;
  }
  .contact__wrapper .contact__link .toggle__wrapper .toggle__innerbutton:active{
    background:transparent;
    color:#0033a1;
  }
  .contact__wrapper #contact__toggle:checked + .contact__link{
    margin-bottom:280px;
    background:#0033a1;
    color:#fff;
    border:1px solid #0033a1;
  }
  .contact__wrapper #contact__toggle:checked + .contact__link .toggle__wrapper{
    max-height:none;
    padding:24px 24px;
  }
}

.inquiry_other_txt {
	color: #ff0000;
	text-align: center;
	margin-bottom: 25px;
	font-size: 13px;
}
.inquiry_other_txt a {
	color: #ff0000;
	text-decoration: underline;
}

/* 
  採用ページにバナーを設置
*/
.congra__wrapper {
  margin-top:32px;
  width: 100%;
  border: 10px solid #f1f6fb;
  padding: 48px 56px;}
  .congra__wrapper .congra__img{
    display: block;
    width:100%;
    margin-bottom:24px;}
  .congra__wrapper .congra__box{
    display: flex;
    align-items: center;
    padding: 24px 16px;}
    .congra__wrapper .congra__box:not(:last-child){
      border-bottom:2px solid #f1f6fb;}
    .congra__wrapper .congra__box .congla__dt {
      font-size: 16px;
      font-weight: bold;
      width: 184px;}
    .congra__wrapper .congra__box .congla__dd{
      margin:0;
      padding:0;
      font-size:16px;}
@media screen and (max-width:768px){
  .congra__wrapper {
    border: 5px solid #f1f6fb;
    padding: 24px 16px;}
    .congra__wrapper .congra__img{
      margin-bottom:16px;}
    .congra__wrapper .congra__box{
      padding: 16px 8px;}
      .congra__wrapper .congra__box .congla__dt {
        font-size: 13px;
        min-width: 104px;
        width: 104px;}
      .congra__wrapper .congra__box .congla__dd{
        font-size:12px;}}