@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Encode+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:300');
@import url('https://fonts.googleapis.com/css?family=Cinzel+Decorative:400,700');
@import url('https://fonts.googleapis.com/css?family=Lora:400,700');

/* ------------------------------------------------------------ */
/* Global */
/* ------------------------------------------------------------ */
/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	font-style: normal;
	vertical-align:baseline;
	background:transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	}
input, select {
	vertical-align:middle;
}
/* Root */
html {
	margin: 0;
	padding: 0;
	font-size: 85%;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 979px) {
}
@media screen and (max-width: 767px) {
	html {
		font-size: 77%;
	}
}
/* Base */
body,
button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', meiryo, 'メイリオ', 'ＭＳ Ｐゴシック', '游ゴシック Medium', YuGothic, sans-serif;
	line-height: 2;
	word-wrap: break-word;
	background-color: #fff;
	position: relative;
	word-wrap : break-word;
	overflow-wrap : break-word;
	-webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 14px;
	}
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-weight: normal;
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
}
/* Link */
a {
	color: #09357f;
	text-decoration: none;
	transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out, opacity .2s ease-in-out;
}
a:hover{
	color: #09357f;
}
/* Media */
img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
a img {
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}
a:hover img {
	opacity: 0.6;
	-webkit-opacity: 0.6;
	-moz-opacity: 0.6;
}
a img.opa {
	opacity: 0.4;
	-webkit-opacity: 0.4;
	-moz-opacity: 0.4;
}
a:hover img.opa {
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
}
figure {
	margin: 0;
}
embed, iframe, object {
	max-width: 100%;
}
ul, ol {
	list-style: none;
	margin: 20px 0;
}
sup {
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	_vertical-align: bottom;
	position: relative;
	bottom: 1ex;
	font-size: 0.8rem;
}

/* Google Font */
.encode-sans {
	font-family: 'Encode Sans', sans-serif;
	font-weight: 400;
}
.encode-sans-bold {
	font-family: 'Encode Sans', sans-serif;
	font-weight: 700;
}
.encode-condense-light {
	font-family: 'Encode Sans Condensed', sans-serif;
	font-weight: 300;
}
.cinzel {
	font-family: 'Cinzel Decorative', cursive;
	font-weight: 400;
}
.cinzel-bold {
	font-family: 'Cinzel Decorative', cursive;
	font-weight: 700;
}
.lora {
	font-family: 'Lora', serif;
	font-weight: 400;
}
.lora-bold {
	font-family: 'Lora', serif;
	font-weight: 700;
}
.mincho {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "游明朝", YuMincho, serif;
}

.post-thumbnail {
	overflow: hidden;
}
.post-thumbnail img {
	width: 100%;
	transition: 0.5s ease-in-out;
}
.post-thumbnail a:hover img {
	-webkit-transform: scale( 1.1 );
	-ms-transform: scale( 1.1 );
	transform: scale( 1.1 );
}

/* Form */
button, input, input[type="search"], select, textarea {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
	display: inline-block;
	background-color: #09357f;
	border: none;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
	padding: 1.2em 5em;
	text-transform: uppercase;
	transition: .3s ease-in-out;
	width: 250px;
	margin-top: 20px;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background-color: #818fb2;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	border: solid 1px #ccc;
	color: #333;
	padding: 5px 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	width: 95%;
}
input[name="your-byear"],
input[name="your-bmonth"],
input[name="your-bday"] {
	border: solid 1px #ccc;
	color: #333;
	padding: 5px 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	width: 85%;
}

input[name="your-manuscript-opt"],
input[name="your-file-opt"],
input[name="your-enq-opt"]{
	width: 65%;
}
input[name="your-period"],
input[name="your-file"]{
	width: 30%;
}
input[name="your-page"],
input[name="your-zip"]{
	width: 25%;
}
input[name="your-school4"] {
	width: 15%;
}
input[name="your-age"],
input[name="your-year"],
input[name="your-year2"] {
	width: 12.5%;
	padding: 5px 10px;
}
input[name="your-month"],
input[name="your-day"],
input[name="your-month2"],
input[name="your-day2"] {
	width: 9%;
	padding: 5px 10px;
}
select {
	padding: 0.4em;
}
textarea {
	max-width: 700px;
	width: 95%;
}
.list-block .wpcf7-list-item { display: block; }
.list-inline .wpcf7-list-item { display: inline; }
span.wpcf7-list-item{display: inline;}


/* Clearing */
.clear {
	clear: both;
	overflow: hidden;
}
.clear:before,
.clear:after {
	content: "";
	display: table;
}
.clear:after {
	clear: both;
}

/* Link button */
.more-link01 {
	display: inline-block;
	width: 50%;
}
.more-link01 a {
	display: block;
	height: 40px;
	border: 1px solid #09357f;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	font-size: 1.1rem;
	line-height: 40px;
	text-align: center;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	overflow: hidden;
}
.more-link01 a:hover {
	background: #09357f url(./images/arrow/arrow_icon03.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	color: #fff;
}

/* Content */
#page {
	position: relative;
	word-wrap: break-word;
	width: 100%;
	min-width :1200px;
}

/* Loading */
#loading {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: rgba( 255, 255, 255, 0.8 );
	z-index: 999;
}
#loader {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	margin-top: -150px;
	margin-left: -150px;
	text-align: center;
	z-index: 1000;
	background: transparent url(./images/loading_icon.gif) no-repeat 0 0;
}
body {
	margin: 0 auto;
	width: 100%;
	min-width :1200px;
}

/* Header */
.site-header {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 170px;
	border-top: 5px solid #09357f;
}
.header-inner {
	margin: 0 auto;
	width: 1200px;
}
.site-header-top {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 80px;
	overflow: hidden;
}
.site-branding {
	float: left;
	padding: 0;
	width: 350px;
}
.site-branding .site-title {
	float: left;
	margin: 0;
	padding: 0;
	width: 150px;
	height: 80px;
	overflow: hidden;
}
.site-branding .opt-logo {
	float: left;
	margin: 0 0 0 25px;
	padding: 0;
	width: 150px;
	height: 70px;
	overflow: hidden;
}
.site-branding .opt-logo img {
	width: 100%;
	height: auto;
}
.header-top-navi {
	float: right;
	width: 760px;
	height: auto;
}
.header-top-naviup {
	width: 100%;
	overflow: hidden;
}
#sub-navigation {
	float: right;
	overflow: hidden;
}
.header-top-naviup ul {
	margin: 0;
	padding: 5px 0 0 0;
	font-size: 1rem;
	line-height: 50px;
	overflow: hidden;
}
.header-top-naviup ul li {
	margin: 0 20px 0 0;
	padding: 0;
	float: left;
}
.header-top-naviup .top-navi01,
.header-top-naviup .top-navi02 {
	float: left;
	width: auto;
}
.header-top-naviup .top-navi01 li a {
	display: block;
	color: #333;
	vertical-align: middle;
}
.header-top-naviup .top-navi01 li a:hover {
	color: #09357f;
}
.header-top-naviup .top-navi01 li a span {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin: 0 10px 0 0;
	background-image: url(./images/header/icon_01.png);
	background-size: 200px 25px;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.header-top-naviup .top-navi01 .home-icon a span {
	background-position: 0px 0px;
}
.header-top-naviup .top-navi01 .estim-icon a span {
	background-position: -25px 0px;
}
.header-top-naviup .top-navi01 .inq-icon a span {
	background-position: -50px 0px;
}
.header-top-naviup .top-navi01 .rec-icon a span {
	background-position: -75px 0px;
}
.header-top-naviup .top-navi01 .faq-icon a span {
	background-position: -100px 0px;
}
.header-top-naviup .top-navi02 li a {
	display: block;
	color: #09357f;
	vertical-align: middle;
}
.header-top-naviup .top-navi02 li a:hover {
	color: #09357f;
}
.header-top-naviup .top-navi02 li a span {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin: 0 10px 0 15px;
	background-image: url(./images/header/icon_01.png);
	background-size: 200px 25px;
	background-position: -125px 0px;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.social-navigation {
	float: right;
	margin: 0;
}
.social-navigation ul {
	margin-top: 12px;
}
.social-navigation ul li {
	float: left;
	margin: 0 15px 0 0;
	width: 25px;
	height: 25px;
}
.social-navigation ul li a {
	display: block;
	width: 25px;
	height: 25px;
	background-image: url(./images/header/icon_01.png);
	background-size: 200px 25px;
	background-repeat: no-repeat;
	vertical-align: middle;
	text-indent: -999px;
}
.social-navigation ul li a[href*="facebook.com"],
.social-navigation ul li.fb a {
	background-position: -150px 0px;
}
.social-navigation ul li a[href*="twitter.com"],
.social-navigation ul li.tw a {
	background-position: -175px 0px;
}
.header-top-navibtm {
	margin: 0;
	padding: 0;
	width: auto;
	height: 48px;
}
.header-top-navibtm ul {
	margin: 0;
	padding: 0;
	line-height: 48px;
}
.header-top-navibtm ul li {
	float: left;
	width: 33.33333%;
	margin: 0;
	padding: 0;
	font-size: 0.95rem;
	color: #09357f;
	text-align: center;
}
.header-top-navibtm ul li:last-child {
	margin: 0;
}
.header-top-navibtm ul li em {
	font-size: 1.6rem;
	padding-left: 15px;
	letter-spacing: 1px
}

/* Menus */
.site-header-menu {
	margin: 0 auto;
	padding: 0;
	width: 1050px;
}
.main-navigation {
	margin: 0;
	padding: 0;
}
.main-navigation > ul {
	margin: 0;
	padding: 0;
	width: 1050px;
}
.main-navigation > ul > li {
	position: relative;
	float: left;
	width: 25%;
	height: 89px;
	background: url(./images/header/navi_sl_line01.png) no-repeat right center;
	background-size: 1px 20px;
	font-size: 1.1rem;
	text-align: center;
}
.main-navigation > ul > li:last-child {
	background: none;
}
.main-navigation li a {
	display: block;
	padding: 25px 0;
	color: #333;
	display: block;
	line-height: 1.1;
	border-top: 3px solid #fff;
	background: url(./images/arrow/arrow_icon02.png) no-repeat center bottom;
	background-size: 12px 12px;
}
.main-navigation li a:hover,
.main-navigation li a:focus {
	color: #09357f;
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
	border-top: 3px solid #09357f;
}
.main-navigation ul li ul {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}
.main-navigation ul li ul li {
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .2s;
}
.main-navigation ul li ul li a {
	padding: 18px 15px;
	background: #09357f;
	text-align: left;
	font-size: 14px;
	line-height: 14px;
	font-weight: normal;
	border: none;
	color: #fff;
}
.main-navigation ul li ul .current-menu-item > a,
.main-navigation ul li ul .current-menu-ancestor > a {
	border: none;
}
.main-navigation ul li ul li:hover > a {
	background: #062669;
	color: #fff;
}
.main-navigation ul li:hover > ul > li {
	overflow: visible;
	height: 50px;
}
.main-navigation ul li ul li ul {
	top: 0;
	left: 100%;
	width: 100%;
}
.main-navigation ul li:last-child ul li ul {
	left: -100%;
	width: 100%;
}
.main-navigation ul li ul li ul li a {
	background: #47689f;
}
.main-navigation ul li:hover ul li ul li:hover > a {
	background: #09357f;
}
.main-navigation ul li ul li ul:before {
	position: absolute;
	content: "";
	top: 20px;
	left: -20px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left-color: #fff;
}
.main-navigation ul li:last-child ul li ul:before {
	position: absolute;
	content: "";
	top: 13px;
	left: 200%;
	margin-left: -20px;
	border: 5px solid transparent;
	border-right-color: #454e08;
}

/* footer */
.site-footer {
	margin: 125px 0 0 0;
	padding: 0;
}
#ftr-navi {
	position: relative;
	margin: 0 auto 100px auto;
	padding: 0;
	width: 1050px;
	overflow: hidden;
}
#ftr-navi ul {
	position: relative;
	left: 50%;
	float: left;
	margin: 0 0 0 0;
	padding: 0;
}
#ftr-navi ul li {
	position: relative;
	left: -50%;
	float: left;
	text-align: center;
}
#ftr-navi ul li a {
	display: block;
	padding: 0 35px;
	font-size: 1rem;
	color: #666666;
}
#ftr-navi ul li span {
	display: block;
	margin: 0 auto 20px auto;
	padding: 20px;
	width: 50px;
	height: 50px;
	-webkit-border-radius: 45px;
	-moz-border-radius: 45px;
	border-radius: 45px;
	background-color: #47689f;
}
#ftr-navi ul li span:hover {
	background-color: #09357f;
}
#footer-area {
	margin: 0;
	padding: 0;
	background: #09357f;
}
#footer-area .footer-inner {
	margin: 0 auto;
	padding: 50px 0;
	width: 1050px;
}
#footer-area .left {
	float: left;
	width: 500px;
}
#footer-area .right {
	float: right;
	width: 500px;
}
#footer-area .ftr-tbl {
	margin: 0;
	border-collapse: separate;
	border-spacing: 0px 15px;
	width: 100%;
}
#footer-area .ftr-tbl th {
	width: 22.5%;
	font-size: 1rem;
	font-weight: normal;
	vertical-align: middle;
	text-align: left;
	border-right: 2px solid #333333;
}
#footer-area .ftr-tbl td {
	width: 72.5%;
	padding-left: 5%;
	font-size: 0.9rem;
	font-weight: normal;
	line-height: 1.5;
	vertical-align: middle;
	text-align: left;
}
#footer-area .ftr-tbl td span {
	font-size: 1.5rem;
}
#footer-area .ftr-tbl td .tel em {
	padding-left: 5px;
	font-size: 2.5rem;
}
#footer-area .ftr-tbl td .fax em {
	padding-left: 5px;
	font-size: 1.75rem;
}
#ftr-sub-navi {
	margin: 20px 0 0 0;
	padding: 0;
}
#ftr-sub-navi ul {
	margin:0;
	padding: 0;
	font-size: 0.9rem;
	text-align: right;
}
#ftr-sub-navi ul li {
	display: inline;
	padding: 1px 15px;
	border-right: 1px solid #a4a4a4;
}
#ftr-sub-navi ul li:last-child {
	padding: 1px 0 1px 15px;
	border-right: none;
}
#ftr-sub-navi ul li a  {
	color: #333333;
}
#copy {
	margin: 15px auto 0 auto;
	padding-bottom: 50px;
	font-size: 0.85rem;
	text-align: center;
	color: #fff;
}

/* Page Top */
.page-top {
	display: none;
	margin: 0 ;
	padding: 0 ;
}
.page-top span {
	display: block;
	margin: 0;
	padding: 0;
	position: fixed ;
	right: 25px ;
	bottom: 25px ;
	z-index: 900;
	overflow: hidden;
}
.move-page-top {
	display: block ;
	background: #09357f url(./images/arrow/arrow_icon05.png) no-repeat center center;
	background-size: 35px 35px;
	width: 55px ;
	height: 55px ;
	color: #fff ;
	text-indent: -9999px;
	-webkit-transition:all 0.3s ;
	-moz-transition:all 0.3s ;
	transition:all 0.3s ;
	cursor:pointer;
}
.move-page-top:hover {
	opacity: 0.85 ;
}

/* flickity */
.main-carousel {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	min-width :1200px;
	height: 490px;
	overflow: hidden;
}
#page .bx-wrapper {
	margin-bottom: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	background: #fff;
	height: 490px;
}
#page .bx-wrapper .bx-pager,
#page .bx-wrapper .bx-controls-auto {
	bottom: 20px;
}
#page .bx-wrapper .bx-pager.bx-default-pager a {
	background: #fff;
	width: 12px;
	height: 12px;
	margin: 0 7px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
#page .bx-wrapper .bx-pager.bx-default-pager a:hover,
#page .bx-wrapper .bx-pager.bx-default-pager a.active,
#page .bx-wrapper .bx-pager.bx-default-pager a:focus {
	background: #09357f;
}
#page .bx-wrapper .bx-prev {
	top: 50%;
	left: 50px;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background: url('./js/bxSlider/images/slidarw_left.png') no-repeat 0 0;
	background-size: 50px 50px;
	cursor: pointer;
}
#page .bx-wrapper .bx-next {
	top: 50%;
	right: 50px;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background: url('./js/bxSlider/images/slidarw_right.png') no-repeat 0 0;
	background-size: 50px 50px;
	cursor: pointer;
}
#page .bx-wrapper .bx-prev:hover,
#page .bx-wrapper .bx-prev:focus,
#page .bx-wrapper .bx-next:hover,
#page .bx-wrapper .bx-next:focus {
	opacity: 0.75;
}
.main-carousel .carousel-cell {
	margin: 0;
	padding: 0;
	width: 100%;
	min-width :1200px;
	height: 490px;
	background-position:  center center;
}
/* top page all section */
.tp-sec-inner {
	margin: 0 auto;
	padding: 0;
	width: 1050px;
	height: auto;
}
.tp-sec-inner .left {
	float: left;
	width: 50%;
	text-align: center;
}
.tp-sec-inner .right {
	float: right;
	width: 50%;
	text-align: center;
}
.tp-sec-head h1 {
	margin-top: 45px;
	font-size: 1.8rem;
}
.tp-sec-head h2 {
	margin-top: 5px;
	font-size: 0.8rem;
	color: #818fb2;
}
.tp-sec-head p {
	margin: 25px 0;
	padding: 0 50px;
	font-size: 1rem;
	text-align: left;
}
.page-inner {
	margin: 0 auto;
	padding: 0;
	width: 1050px;
	height: auto;
}

/* top page section1 */
#tp-sec01 {
	margin: 100px auto;
	padding: 0;
}
#tp-sec01-head {
	background: #e6eaf2;
}
#tp-sec01-btm {
	margin: 25px 0 0;
}
.trans-svc-list {
	display: flex;
	justify-content: space-around;
	margin: 0;
	width: 1050px;
	height: auto;
}
.trans-svc-list li {
	width: 40%;
	height: auto;
}
.trans-svc-list li:last-child {
	margin: 0;
}
.trans-svc-list li div {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 220px;
	text-align: center;
	background: #000;
	overflow: hidden;
}
.trans-svc-list li div figcaption {
	display: block;
	position: absolute;
	left: 0;
	top: 50px;
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.75;
	color: #fff;
	text-align: center;
	z-index: 5;
}
.trans-svc-list li div:hover figcaption {
	text-shadow: 3px  3px 5px #000000, -3px  3px 5px #000000, 3px -3px 5px #000000, -3px -3px 5px #000000;
}
.trans-svc-list li div .trimg {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 65%;
	overflow: hidden;
	margin: 0 auto;
}
.trans-svc-list li div .trimg img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.trans-svc-list li div:hover .trimg img {
transform-origin: center center;
	-webkit-transform: translate(-50%, -50%) scale( 1.1 );
	-ms-transform: translate(-50%, -50%) scale( 1.1 );
	transform: translate(-50%, -50%) scale( 1.1 );
}
.trans-svc-list li div em {
	position: absolute;
	left: 50%;
	bottom: 40px;
	display: inline-block;
	width: 200px;
	color: #fff;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.trans-svc-list li div em span {
	display: block;
	height: 32px;
	border: 1px solid #ffffff;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	font-size: 1rem;
	line-height: 32px;
	background: url(./images/arrow/arrow_icon03.png) no-repeat 90% 50%;
	background-size: 12px 12px;
}
.trans-svc-list li div:hover em span {
	background: #ffffff url(./images/arrow/arrow_icon01.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	color: #09357f;
}
#tp-sec01-opt {
	margin: 0;
}
#tp-sec01-opt dl {
	margin: 0;
}
#tp-sec01-opt dl dt {
	float: left;
	clear: both;
	margin: 30px 0 0 0;
	width: 20%;
	color: #666666;
	font-size: 1.2rem;
	line-height: 3;
	text-align: center;
}
#tp-sec01-opt dl dd {
	float: right;
	margin: 30px 0 0 0;
	padding-left: 4%;
	width: 75%;
	font-size: 1.0rem;
	text-align: left;
	border-left: 1px solid #e5e5e5;
}

/* top page section2 */
#tp-sec02 {
	margin: 100px auto;
	padding: 0;
}
#tp-sec02-head {
	background: #d3dbe8;
}
#tp-sec02-btm {
	margin: 0 0;
}
.animal-list {
	margin: 0 auto;
	width: 1050px;
	height: auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.animal-list > li {
	width: 31.5%;
	height: auto;
	margin-top: 25px;
}
.animal-list > li:nth-child(3n+2) {
	margin-left: 2.75%;
	margin-right: 2.75%;
}
.animal-list > li div {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 220px;
	text-align: center;
	background: #000;
	overflow: hidden;
}
.animal-list li div figcaption {
	display: block;
	position: absolute;
	left: 0;
	top: 50px;
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.75;
	color: #fff;
	text-align: center;
	z-index: 5;
}
.animal-list li div:hover figcaption {
	text-shadow: 3px  3px 5px #000000, -3px  3px 5px #000000, 3px -3px 5px #000000, -3px -3px 5px #000000;
}
.animal-list li div .trimg {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 85%;
	overflow: hidden;
	margin: 0 auto;
}
.animal-list li div .trimg img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.animal-list li div:hover .trimg img {
	transform-origin: center center;
	-webkit-transform: translate(-50%, -50%) scale( 1.1 );
	-ms-transform: translate(-50%, -50%) scale( 1.1 );
	transform: translate(-50%, -50%) scale( 1.1 );
}
.animal-list li div em {
	position: absolute;
	left: 50%;
	bottom: 35px;
	display: inline-block;
	width: 200px;
	overflow: hidden;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.animal-list li div em span {
	display: block;
	height: 32px;
	border: 1px solid #ffffff;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	font-size: 1rem;
	line-height: 32px;
	color: #fff;
	background: url(./images/arrow/arrow_icon03.png) no-repeat 90% 50%;
	background-size: 12px 12px;
}
.animal-list li div:hover em span {
	background: #ffffff url(./images/arrow/arrow_icon01.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	color: #09357f;
}

/* top page section3 */
#tp-sec03 {
	margin: 100px auto;
	padding: 0;
}
#tp-sec03-head {
	background: #c1ccdf;
}
#tp-sec03-opt {
margin: 30px 0 0 0;
}
#tp-sec03-opt h3 {
	float: left;
	margin: 20px 0 0 0;
	width: 17%;
	color: #666666;
	font-size: 1.2rem;
	text-align: center;
}
#tp-sec03-opt ul {
	float: left;
	margin: 0;
	padding-left: 4%;
	width: 60%;
	font-size: 1.0rem;
	text-align: left;
	border-left: 1px solid #e5e5e5;
}
#tp-sec03-opt ul li {
	margin: 0;
	font-size: 1.0rem;
	text-align: left;
}
#tp-sec03-opt ul li a {
	display: block;
	margin: 0;
	padding: 5px 0 5px 20px;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 0% 50%;
	background-size: 8px 8px;
}
#tp-sec03-opt ul li a em {
	background: #09357f;
	color: #fff;
	font-size: 0.85rem;
	padding: 3px 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#tp-sec03-opt .more-link01 {
	float: right;
	width: 15%;
	margin: 10px 0 0 0;
}
#tp-sec03-opt .more-link01 a {
	height: 32px;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	line-height: 32px;
	text-align: center;
}

/* Page Format */
.page-header {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 200px;
	background: #e6eaf2;
	border-bottom: 5px solid #09357f;
}
.page-header .page-header-inner {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 200px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
}
.page-header .page-header-inner h1{
	margin: 0;
	padding: 95px 0 0 0;
	color: #09357f;
	font-size: 2.2rem;
	font-weight: normal;
}
.page-header .page-header-inner h2 {
	margin: 0;
	padding: 0;
	color: #818fb2;
	font-size: 0.85rem;
	font-weight: normal;
}
.page-contents .page-contents-mttl {
	margin: 0 0 25px 0;
	padding: 0;
	font-size: 2.4rem;
	font-weight: normal;
	text-align: center;
}
.page-contents .page-contents-mttl em {
	padding-bottom: 20px;
	border-bottom: 3px solid #09357f;
}
.page-contents .ttl-sub {
	display: block;
	margin: 25px 0 125px 0;
	padding: 0;
	font-size: 0.9rem;
	font-weight: normal;
	text-align: center;
	color: #818fb2;
}
.page-contents .page-contents-sttl {
	margin: 100px 0 50px 0;
	padding: 0;
	font-size: 1.75rem;
	font-weight: normal;
	text-align: center;
}
.page-contents .page-contents-sttl em {
	padding-bottom: 15px;
	border-bottom: 3px solid #818fb2;
}
.center-copy {
	text-align: center;
	line-height: 2;
}
.page-contents .entry-content {
	margin: 50px auto 100px auto;
}

.entry-header figure.circle_thmb {
	display: block;
	margin: 0 auto;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
}
.entry-header figure.big_thmb {
	position: relative;
	display: block;
	margin: 0 auto 75px auto;
	padding-top: 25%;
	overflow: hidden;
}
.entry-header figure.big_thmb img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.entry-header .page-contents-mttl {
	margin: 30px auto 30px auto;
	font-size: 2.0rem;
}
.entry-content .side-margin,
.page-contents .side-margin {
	margin-left: 15%;
	margin-right: 15%;
}
.entry-content p {
	margin-bottom: 30px;
	line-height: 2;
}
.entry-content p.center {
	text-align: center;
}
.entry-content p.note,
.entry-content .clm-area-inner p.note {
	margin-bottom: 50px;
	font-size: 0.85rem;
	line-height: 1.75;
}
.entry-content ul.head-dot {
	margin-bottom: 50px;
	list-style-type: disc;
	padding-left: 2.25rem;
}
.entry-content ul.head-dot li {
	margin-bottom: 10px;
}
.entry-content h2 {
	margin: 75px auto 15px auto;
	color: #09357f;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}
.entry-content table {
	margin: 25px auto 15px auto;
	border-collapse: collapse;
	font-size: 1rem;
	line-height: 1.75;
	text-align: left;
	empty-cells: hide;
}
.entry-content table th {
	padding: 10px 15px;
	background: #e5e5e5;
	vertical-align: middle;
	white-space: nowrap;
	border: 1px solid #aaa;
}
.entry-content table .center {
	text-align: center;
}
.entry-content table td {
	padding: 10px 15px;
	vertical-align: middle;
	background: #fff;
	border: 1px solid #aaa;
}
.entry-content .more-link01 {
	display: block;
	margin: 50px auto 0 auto;
	padding: 0;
	width: 40%;
}
.entry-content .clm-area-1 {
	margin: 125px 0 0 0;
	padding: 0;
}
.entry-content .clm-area-2 {
	margin: 125px 0 0 0;
	padding: 0;
}
.entry-content .clm-area-2.mt0 {
	margin: 0 0 0 0;
}
 .entry-content .clm-area-3 {
	margin: 125px 0 0 0;
	padding: 0;
}
.entry-content .clm-area-2 .clm-area-inner.w100 {
	float: left;
	width: 100%;
}
.entry-content .clm-area-2 .clm-area-inner {
	float: left;
	width: 50%;
}
.entry-content .clm-area-3 .clm-area-inner {
	float: left;
	width: 33.3333%;
}
.entry-content .clm-area-padding {
padding: 0 25px;
}
.entry-content .clm-area-inner .clm-ttl {
	border-bottom: 2px solid #e5e5e5;
	font-size: 1.5rem;
	font-weight: normal;
	margin: 0;
	padding: 0 0 10px 0;
	color: #666;
	text-align: center;
}
.entry-content .clm-area-inner .clm-stl {
	margin: 35px 0 5px 0;
	padding-left: 10px;
	font-size: 1.25rem;
	font-weight: bold;
	color: #09357f;
	text-align: left;
	border-left: 5px solid #818fb2;
}
.entry-content .clm-area-inner ul {
	margin: 0;
	padding: 30px 0 30px 0;
	font-size: 1rem;
	break-inside: avoid-column;
	overflow: hidden;
}
.entry-content .clm-area-inner ul li {
	margin: 0;
	padding: 0;
}
.entry-content .clm-area-inner ul.harf li:nth-child(odd) {
	float: left;
	width: 47.5%;
}
.entry-content .clm-area-inner ul.harf li:nth-child(even) {
	float: right;
	width: 47.5%;
}
.entry-content .clm-area-inner ul li span,
.entry-content .clm-area-inner ol li span {
	display: block;
	padding: 0 0 15px 0;
	vertical-align: middle;
}
.entry-content .clm-area-inner dl {
	margin: 0;
	padding: 0px 0 15px 0;
	overflow: hidden;
}
.entry-content .clm-area-inner dl dt {
	margin: 0;
	padding: 20px 0 0 0;
	font-size: 1.1rem;
	font-weight: bold;
}
.entry-content .clm-area-inner dl dd {
	margin: 0;
	padding: 5px 0 10px 0;
	font-size: 1rem;
}
.entry-content .clm-area-inner p {
	margin: 0;
	padding: 20px 0 20px 0;
	font-size: 1.1rem;
	line-height: 2;
}
#contens-link-navi {
	margin: 100px auto 0 auto;
	padding-top:20px;
	border-top: 1px solid #e5e5e5;
}
#contens-link-navi .contens-link-navi-inner {
	position: relative;
	margin: 0 0 20px 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
	overflow: hidden;
}
#contens-link-navi .contens-link-navi-ttl {
	float: left;
	margin: 0;
	width: 15%;
	padding: 10px 0 5px 0;
	font-size: 1rem;
	color: #666;
}
#contens-link-navi ul {
	float: right;
	margin: 0;
	width: 82.5%;
	font-size: 0.95rem;
	clear:none;
}
#contens-link-navi ul li {
	float: left;
	width: 33.333%;
}
#contens-link-navi ul li a {
	display: block;
	padding: 5px 10px 5px 15px;
	background: url(./images/arrow/arrow_icon01.png) no-repeat left center;
	background-size: 8px 8px;
}
.pageinner-head-navi {
	position: relative;
	overflow: hidden;
	margin: 50px 0 0 0;
}
.pageinner-head-navi ul {
	position: relative;
	left: 50%;
	float: left;
}
.pageinner-head-navi ul .more-link01 {
	position: relative;
	left: -50%;
	float: left;
	margin: 0 25px;
	width: 200px
}
.pageinner-head-navi ul .more-link01 a {
	display: block;
	background: url(./images/arrow/arrow_icon02.png) no-repeat 90% 50%;
	background-size: 12px 12px;
}
.pageinner-head-navi ul .more-link01 a:hover {
	background: #09357f url(./images/arrow/arrow_icon04.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	color: #fff;
}

/* Translate */
/* Translate Index */
#translate-index01 {
	margin: 50px 0 0 0;
	text-align: center;
}
#translate-index02 {
	margin: 100px auto;
}
#translate-index02 .country-list {
	margin: 75px 0;
}
#translate-index02 .country-list .country-list-inner {
	clear: none;
	float: left;
	width: 25%;
}
#translate-index02 .country-list .country-list-inner div {
	margin-bottom: 35px;
}
#translate-index02 .country-list .country-list-inner span {
	display: table-cell;
	width: 50px;
	padding: 0;
	font-size: 1rem;
	color: #999999;
	border-right: 2px solid #e5e5e5;
}
#translate-index02 .country-list .country-list-inner p {
	display: table-cell;
	width: 215px;
	padding: 0 0 0 15px;
	font-size: 1rem;
}
#translate-index02 .country-list .country-list-inner span em {
	font-size: 1.8rem;
}
#translate-index02 .trans-field-list {
	margin: 75px auto 0 auto;
	overflow: hidden;
}
#translate-index02 .trans-field-list li {
	margin-bottom: 75px;
	width: 33.33%;
	float: left;
	text-align: center;
}
#translate-index02 .trans-field-list li figure div {
	margin: 0 auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
#translate-index02 .trans-field-list li figure div img {
	position: relative;
	z-index: 1;
}
#translate-index02 .trans-field-list li figure figcaption {
	margin: 25px auto 15px auto;
	font-size: 1.1rem;
	color: #09357f;
}
#translate-index02 .trans-field-list li .more-link01 {
	width: 75%;
}
#translate-index02 .trans-field-list li .more-link01 a {
	height: 32px;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
	font-size: 1rem;
	line-height: 32px;
}
#translate-index02 .mgnfx {
	margin-top: 25px;
}
#translate-index02 .trans-svc-list p {
	margin: 20px 20px 0;
	font-size: 1.0rem;
}
#translate-index02 .faq,
#translate-index03 .faq {
	display: block !important;
	margin: 75px auto 0 auto !important;
	width: 25% !important;
}
#translate-index03 {
	padding: 75px 0 75px 0;
	background: #e6eaf2;
}
#translate-index03 .left {
	float: left;
	width: 47.5%;
}
#translate-index03 .right {
	float: right;
	width: 47.5%;
}
#translate-index03 .clm-ttl {
	font-size: 1.35rem;
	font-weight: bold;
	margin: 40px 0 0 0;
	padding: 0;
	color: #09357f;
	text-align: center;
}
#translate-index03 .bdr-btm {
	padding-bottom: 50px;
	border-bottom: 1px solid #c0c7d8;
}
#translate-index03 .inter-area p {
	margin: 25px 0;
	font-size: 1.1rem;
}
#translate-index03 .inter-area .note {
	display: block;
	font-size: 0.95rem;
	line-height: 1.5;
}
#translate-index03 .inter-area ul {
	margin: 25px 0;
	padding: 0;
	font-size: 1.1rem;
	text-align: left;
	list-style-type: disc;
	padding-left: 2rem;
}
#translate-index03 .inter-area ol {
	margin: 25px 0;
	padding: 0;
	font-size: 1.1rem;
	text-align: left;
	list-style-type: decimal;
	padding-left: 2rem;
}
#translate-index03 .inter-area ol li {
	padding: 0 0 10px 0;
}
#translate-index03 .ttl-sub {
	margin-bottom: 75px;
}
#translate-index03 .page-contents-sttl {
	margin-top: 50px;
}

/* Translate Page */
#translate-page01 {
	margin: 75px auto 0 auto;
	padding: 0;
}

/* Animal Hearth */
/* Animal Hearth Index */
#animalhearth-index01 {
	margin: 50px 0 0 0;
	text-align: center;
}
#animalhearth-index02 {
	margin: 100px auto;
}
#animalhearth-index02 .animal-list {
	justify-content: space-between;
}
#animalhearth-index02 .animal-list > li:nth-child(odd) {
	margin: 0 auto 25px 0 !important;
	width: 45%;
	height: auto;
}
#animalhearth-index02 .animal-list > li:nth-child(even) {
	margin: 0 0 25px auto !important;
	width: 45%;
	height: auto;
}
#animalhearth-index02 .animal-list li div {
	width: 100%;
	height: 260px;
}
#animalhearth-index02 .animal-list li div figcaption {
	top: 75px;
	width: 100%;
	font-size: 1.5rem;
	line-height: 1.75;
}
#animalhearth-index02 .animal-list li div .trimg {
	position: relative;
	display: block;
	width: 100%;
	padding-top: 65%;
	overflow: hidden;
	margin: 0 auto;
}
#animalhearth-index02 .animal-list li div em {
	left: 50%;
	bottom: 50px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#animalhearth-index02 p {
	margin: 20px 0 0;
	font-size: 1.0rem;
}
#animalhearth .entry-content .clm-area-inner ul {
	margin: 0;
	padding: 30px 0 30px 2rem;
	font-size: 1rem;
	list-style-type: disc;
	overflow: hidden;
}
#animalhearth .entry-content .clm-area-inner ul li {
	margin: 0;
	padding: 0;
}
#animalhearth .entry-content .clm-area-inner ol {
	margin: 0;
	padding: 30px 0 0 2rem;
	font-size: 1rem;
	list-style-type: decimal;
	overflow: hidden;
}
#animalhearth .entry-content .clm-area-inner ul.mb0,
#animalhearth .entry-content .clm-area-inner ol.mb0 {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}
#animalhearth .entry-content .clm-area-inner ul.mt0,
#animalhearth .entry-content .clm-area-inner ol.mt0 {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
#animalhearth .entry-content .clm-area-inner ol li {
	margin: 0;
	padding: 0;
}
#animalhearth .entry-content .clm-area-inner p.note {
	margin: 0 0 !important;
	padding: 0;
	font-size: 0.9rem;
}
#animalhearth .entry-content .clm-area-inner p.lead {
	margin: 0 0 35px;
	padding: 0;
	font-size: 1.2rem;
	text-align: center;
}
#animalhearth .page-contents .page-contents-sttl {
	margin: 75px 0 50px 0;
}
#animalhearth .page-contents .clm-ttl.sub {
	font-size: 1.4rem;
}
#animalhearth .page-contents .clm-ttl.sub.mb25 {
	margin-bottom: 30px;
}
#animalhearth .page-contents .clm-mtl.sub {
	font-size: 1.3rem;
	font-weight: bold;
	color: #09357f;
	margin: 10px 0 10px;
}

/* Animal Hearth Page */
#animalhearth-page01 {
	margin: 75px auto 0 auto;
	padding: 0;
}
#animalhearth #contens-link-navi ul {
	float: none;
	margin: 0;
	width: 100%;
}

/* About Page */
#about-page01 {
	margin: 25px auto 0 auto;
	padding: 0;
}
#about-page01 p.mt75 {
	margin-top: 75px;
}
#about-page01 p.corp-name {
	font-size: 2rem;
}
#about-page01 ruby {
	line-height: 2.5;
	letter-spacing: 2px;
}
#about-page01 ruby em {
	font-size: 3rem;
	color: #09357f;
	line-height: 2.75;
}
#about-page01 .signature {
	text-align: right;
}
#about-page01 .pageinner-head-navi {
	margin: 25px auto 75px auto;
	width: 1200px;
}
#about-page01 .pageinner-head-navi ul .more-link01 {
	margin: 0 5px;
	width: auto;
}
#about-page01 .pageinner-head-navi ul .more-link01 a {
	display: block;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	padding-left: 35px;
	padding-right: 40px;
}
#about-page01 .pageinner-head-navi ul .more-link01 a:hover {
	background: #09357f url(./images/arrow/arrow_icon03.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	color: #fff;
}
#about-page01 .entry-content table {
	margin: 25px auto 0 auto;
	width: auto;
	font-size: 1.15rem;
	border-collapse: separate;
	border-spacing: 20px;
}
#about-page01 .entry-content table th {
	padding: 10px 15px;
	font-weight: normal;
	background: #fff;
	border-top: none;
	border-right: 5px solid #e5e5e5;
	border-bottom: none;
	border-left: none;
	text-align: right;
}
#about-page01 .entry-content table td {
	padding: 10px 15px;
	vertical-align: middle;
	background: #fff;
	border: none;
	white-space: nowrap;
}
#about .page-contents .entry-content {
	margin: 50px auto 50px auto;
}
#about .entry-content p small {
	display: inline-block;
	margin-top: 10px;
	font-size: 1rem;
	line-height: 2;
	color: #666;
}
#about .gmap-block {
	padding-bottom: 50px;
	border-bottom: 1px solid #ccc;
}
#about .gmap-block:last-child {
	border-bottom: none;
}
#about .page-contents .entry-content .link-list {
	margin: 0;
}
#about .page-contents .entry-content .link-list dt {
padding: 0 0 5px 0;
	font-size: 1.2rem;
}
#about .page-contents .entry-content .link-list dt a {
	padding: 5px 0 5px 20px;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 0% 50%;
	background-size: 8px 8px;
}
#about .page-contents .entry-content .link-list dd {
	font-size: 1rem;
	padding: 0 0 25px 20px;
}
#about-page01.recruit-list {
	margin: 0;
	padding: 0;
}
#about-page01 .recruit-list li {
	padding-bottom: 50px;
	border-bottom: 1px solid #ccc;
}
#recruit-indexlist {
	width:100%;
	margin:0;
	padding:0;
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}
#recruit-indexlist li {
	position: relative;
	width: 45%;
	margin: 0 2.5%;
	padding-bottom: 150px;
	border-bottom: 1px solid #ccc;
}
#about-page01 .entry-content table {
	margin: 0 auto 25px auto;
	width: 100%;
	font-size: 1rem;
	border-collapse: separate;
	border-spacing: 10px 15px;
}
#about-page01 .entry-content table th {
	padding: 5px 15px;
}
#about-page01 .entry-content table td {
	padding: 5px 15px;
	white-space: normal;
}
#about-page01 .pageinner-bottom-navi {
	position: relative;
	overflow: hidden;
	clear: both;
}
#about-page01 .pageinner-bottom-navi ul {
	position: relative;
	left: 50%;
	float: left;
}
#about-page01 .pageinner-bottom-navi ul .more-link01 {
	position: relative;
	left: -50%;
	float: left;
	margin: 0 20px;
	padding: 0;
	width: 320px;
	border: none !important;
}
#about-page01 .pageinner-bottom-navi ul .more-link01 span {
	width: auto;
	margin: 0;
	padding: 0;
	border: none !important;
}
#about-page01 .pageinner-bottom-navi ul .more-link01 a {
	width: auto;
	margin: 0;
	padding: 0;
	height: 60px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	font-size: 1.2rem;
	line-height: 60px;
	border: 1px solid #09357f;
	background: #09357f url(./images/arrow/arrow_icon03.png) no-repeat 92.5% 50%;
	background-size: 12px 12px;
	color: #fff;
}
#about-page01 .pageinner-bottom-navi ul .more-link01 a:hover {
	background: #ffffff url(./images/arrow/arrow_icon01.png) no-repeat 92.5% 50%;
	background-size: 12px 12px;
	color: #09357f;
}
#recruit-indexlist li .pageinner-bottom-navi {
	position: absolute;
	bottom: 50px;
	width:100%;
	text-align:center;
 }
 #about-page01 .more-link01.ctg-link {
	 clear:both;
	 margin: 75px auto;
 }
 #about-page01 .more-link01.ctg-link a {
 	height: 60px;
 	border-radius: 30px;
 	-webkit-border-radius: 30px;
 	-moz-border-radius: 30px;
 	font-size: 1.25rem;
 	line-height: 60px;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 95% 50%;
	background-size: 13px 13px;
 }
 #about-page01 .more-link01.ctg-link a:hover {
 	background: #09357f url(./images/arrow/arrow_icon03.png) no-repeat 95% 50%;
 	background-size: 13px 13px;
 	color: #fff;
 }

/* Staff */
/* Staff Index */
#staff-index01 {
	margin: 50px 0 0 0;
	text-align: center;
}
#staff .pageinner-head-navi ul .more-link01 {
	margin: 0 15px;
	width: 240px
}
#staff .pageinner-head-navi ul .more-link01 a {
	display: block;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 90% 50%;
	background-size: 12px 12px;
}
#staff .pageinner-head-navi ul .more-link01 a:hover {
	background: #09357f url(./images/arrow/arrow_icon03.png) no-repeat 90% 50%;
	background-size: 12px 12px;
	color: #fff;
}
#staff-index02 {
	margin: 125px auto 125px auto;
}
#staff-index02 .ttl-sub,
#staff-index03 .ttl-sub,
#staff-index04 .ttl-sub {
	margin: 25px 0 50px 0;
}
#staff-index02 .page-contents-sttl,
#staff-index04 .page-contents-sttl {
	margin: 0 0 50px 0;
}
#staff-index02 .left,
#staff-index04 .left {
	float: left;
	width: 47.5%;
}
#staff-index02 .right,
#staff-index04 .right {
	float: right;
	width: 47.5%;
}
#staff-index02 a {
	display: block;
	padding: 10px 0 10px 20px;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 0% 50%;
	background-size: 8px 8px;
}
#staff-index02 a em {
	background: #09357f;
	color: #fff;
	font-size: 0.9rem;
	padding: 5px 10px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#staff-index03 {
	margin: 125px auto 125px auto;
	text-align: center;
}
#staff-index03 img {
	display: block;
	margin: 30px auto 0 auto;
	text-align: center;
}
#staff .pageinner-bottom-navi {
	position: relative;
	overflow: hidden;
	margin-top: 75px;
	clear: both;
}
#staff .pageinner-bottom-navi ul  {
	position: relative;
	left: 50%;
	float: left;
}
#staff .pageinner-bottom-navi ul .more-link01 {
	position: relative;
	left: -50%;
	float: left;
	margin: 0 20px;
	width: 320px;
}
#staff .pageinner-bottom-navi ul .more-link01 a {
	width: auto;
	height: 60px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	font-size: 1.2rem;
	line-height: 60px;
	margin: 0;
	background: #09357f url(./images/arrow/arrow_icon03.png) no-repeat 92.5% 50%;
	background-size: 12px 12px;
	color: #fff;
}
#staff .pageinner-bottom-navi ul .more-link01 a:hover {
	background: #ffffff url(./images/arrow/arrow_icon01.png) no-repeat 92.5% 50%;
	background-size: 12px 12px;
	color: #09357f;
}
#staff-index04 {
	margin: 125px auto 125px auto;
	text-align: center;
}
#staff-index04 dl {
	text-align: left;
}
#staff-index04 dl dt {
	margin-top: 20px;
	font-size: 1.1rem;
	font-weight: bold;
}
#staff-index04 dl dt:first-child {
	margin-top: 0;
}
#staff-index04 dl dd {
	font-size: 1rem;
	font-weight: normal;
}

/* Staff Page */
#staff-page01 .entry-copy {
	margin-bottom: 50px;
}
#staff-page01 .clm-area-inner {
	margin-top: 50px;
}
#staff-page01 .page-contents-mttl {
	margin-top: 75px;
}
#staff-page01 .entry-content .left {
	clear: both;
	float: left;
	width: 50%;
}
#staff-page01 .entry-content .right {
	float: right;
	width: 50%;
}
#staff-page01 #staff-index02 {
	margin: 100px auto 0 auto;
}
#staff-page01 #staff-index02 .page-contents-sttl {
	font-size: 1.5rem;
}
#staff-page01 #staff-index02 .jobindex-list {
	font-size: 1rem;
}
#staff-page01 table {
	width: 100%;
}
#staff-page01 table th {
	width: 15%;
}
#staff-page01 table td {
	width: 80%;
}
#staff .job-list-index {
	margin: 50px auto 0 auto;
}
#staff .job-list-index li {
	float: left;
	width: 30.333333%;
	margin: 0 1.5% 75px 1.5%;
}
#staff .job-list-index li h2 {
	margin: 0 auto 20px auto;
	font-size: 1.4rem;
	text-align: center;
	color: #09357f;
}
#staff .job-list-index li figure {
	display: block;
	margin: 0 auto 20px auto;
	padding: 20px;
	width: 60px;
	height: 60px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	background-color: #09357f;
}
#staff .job-list-index li p {
	margin: 20px 0;
	font-size: 1rem;
}
#staff .job-list-index li .more-link01 {
	margin: 30px auto 0 auto;
	display: block;
	width: 75%;
}
#staff .edit-list dt {
	margin: 45px 0 10px 0;
	color: #09357f;
	font-weight: bold;
}
#staff .edit-list dd {
	font-size: 1rem;
}
#staff .note {
	font-size: 0.9rem;
}

/* FAQ*/
/* FAQ Index */
#faq-index01 {
	margin: 50px 0 0 0;
	text-align: center;
}
#faq-index01 .pageinner-head-navi ul .more-link01 {
	width: 250px
}
#faq-index02 {
	margin: 100px auto;
}
#faq-index02 .ttl-sub,
#faq-index03 .ttl-sub {
	margin: 25px 0 50px 0;
}
#faq .faq-list {
	margin: 0;
	font-size: 1.1rem;
}
#faq .faq-list dt {
	padding: 15px 0;
	width: auto;
	border-bottom: 1px solid #e5e5e5;
	cursor: pointer;
}
#faq .faq-list dt.active {
	border-bottom: none;
}
#faq .faq-list dt em {
	display: block;
	float: left;
	width: 7.5%;
	padding: 2px 0;
	background-color: #47689f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
	font-size: 1rem;
	text-align: center;
}
#faq .faq-list dt span {
	display: block;
	float: right;
	width: 82.5%;
	padding-right: 7.5%;
	background: url(./images/arrow/arrow_icon02.png) no-repeat 97.5% 50%;
	background-size: 12px 12px;
}
#faq .faq-list dt.active span {
	background: url(./images/arrow/arrow_icon06.png) no-repeat 97.5% 50%;
	background-size: 12px 12px;
}
#faq .faq-list dd {
	display: none;
	width: auto;
	padding: 15px 0 ;
}
#faq .faq-list dd em {
	display: block;
	float: left;
	width: 7.5%;
	padding: 2px 0;
	background-color: #999999;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #fff;
	font-size: 1rem;
	text-align: center;
}
#faq .faq-list dd span {
	display: block;
	float: right;
	width: 80%;
	padding: 0 10% 35px 0;
}
#faq-index03 {
	padding: 100px 0 100px 0;
	background: #e6eaf2;
}
#faq-index03 .faq-list dt {
	border-bottom: 1px solid #aaaaaa;
}

/* Sub Page*/
#sub-page {
	margin: 0;
}
#sub-page .entry-header {
	margin: 0;
	padding: 0;
	width: 100%;
	border-top: 2px solid #09357f;
}
#sub-page .entry-header h1 {
	margin: 75px 0 35px 0;
	padding: 0;
	font-size: 2.0rem;
	font-weight: normal;
	text-align: center;
}
#sub-page .entry-header h1 em {
	padding-bottom: 20px;
	border-bottom: 3px solid #09357f;
}
#sub-page .entry-content {
	margin: 75px auto 100px auto;
	padding: 0;
	width: 900px;
	height: auto;
}
#sub-page .entry-content .cap {
	font-size: 0.85rem;
}
#sub-page .entry-content p{
	margin:  30px 0;
	padding: 0;
}
#sub-page .entry-content ol {
	margin:  0 0 30px 2rem;
	padding: 0;
	list-style-type: decimal;
}
#sub-page .entry-content ol li {
	margin:  0 0 10px 0;
	padding: 0;
	list-style-type: decimal;
}
/* Policy */

/* inquiry */
#sub-page .page-contents-sttl {
	margin: 75px 0 50px 0;
	padding: 0;
	font-size: 1.75rem;
	font-weight: normal;
	text-align: center;
}
#sub-page .page-contents-sttl em {
	padding-bottom: 15px;
	border-bottom: 3px solid #818fb2;
}
#sub-page .clm-ttl {
	border-bottom: 1px solid #e5e5e5;
	font-size: 1.4rem;
	font-weight: normal;
	margin: 100px 0 0 0;
	padding: 0 0 10px 0;
	text-align: center;
}
#sub-page .bdr-btm {
	padding-bottom: 50px;
	border-bottom: 1px solid #c0c7d8;
}
#sub-page .bdr-btm.ta-center p {
	text-align: center;
}
#sub-page .more-link01 {
	display: block;
	margin: 30px auto;
	width: 65%;
}
#sub-page .more-link01 a {
	height: 50px;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	line-height: 50px;
}
#sub-page .more-link-list {
		position: relative;
}
#sub-page .more-link-list ul {
	position: relative;
	left: 50%;
	float: left;
	margin: 0;
	padding: 0;
}
#sub-page .more-link-list ul li {
	position: relative;
	left: -50%;
	float: left;
	text-align: center;
}
#sub-page .more-link-list ul li .more-link01 {
	display: block;
	width: 230px;
	margin: 0 15px;
}
#sub-page .note {
	font-size: 1rem;
}
#sub-page .lead-tel {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	background-color: #e6eaf2;
	padding: 15px 30px;
	border-radius: 10px;
}
#sub-page .lead-tel dl {
	text-align: center;
}
#sub-page .lead-tel dl dt {
	font-size: 1.4rem;
	font-weight: bold;
}
#sub-page .lead-tel dl dd.tel {
	font-size: 2.4rem;
	font-weight: bold;
}
#sub-page .lead-tel dl dd.tel i {
	font-size: 2rem;
}
sup.kome {
	 color: #f00;
	 font-size: 0.8rem;
}
span.kome {
	 color: #f00;
}
table.form-tbl {
	margin: 25px auto 50px auto;
	padding: 0;
	width: 100%;
	max-width: 850px;
	font-size: 1.1rem;
	border-collapse: separate;
	border-spacing: 15px 25px;
}
table.form-tbl th {
	padding: 0px 15px;
	font-weight: normal;
	background: #fff;
	border-top: none;
	border-right: 5px solid #e5e5e5;
	border-bottom: none;
	border-left: none;
	text-align: right;
	vertical-align:middle;
	width: 27.5%;
}
table.form-tbl td {
	padding: 0px 15px;
	vertical-align: middle;
	background: #fff;
	border: none;
	width: 70%;
	vertical-align:middle;
}
table.form-tbl .note {
	 font-size: 1rem;
}
table.form-tbl table.in-tbl {
	margin: 0;
	padding: 0;
	width: auto;
	border-collapse: collapse;
}
table.form-tbl td table.in-tbl td {
	padding: 0;
	width: auto;
	white-space: nowrap;
	text-align: left;
	vertical-align:middle;
}

#sub-page iframe,
#staff iframe {
	border: 1px solid #ccc;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

#mailing-entry {
	margin-top: 75px;
	padding: 30px 50px;
	background: #e5e5e5;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
#mailing-entry h2 {
	margin: 0 0 10px 0;
	padding: 0;
	text-align: left;
}
#mailing-entry dl dt {
	margin-top: 20px;
	font-weight: bold;
}

/* Sitemap */

ul.sitemap,
ul.sitemap {
	font-size: 1rem;
}
ul.sitemap > li {
	border-bottom: 1px solid #e5e5e5;
	padding: 15px 0;
}
ul.sitemap li ul li {
	padding: 5px 0 5px 2rem;
}
ul.sitemap li ul.fl50 li {
	width: 45%;
	margin-right: 0;
	float: left;
}
ul.sitemap a {
	padding-left: 20px;
	background: url(./images/arrow/arrow_icon01.png) no-repeat 0% 50%;
	background-size: 8px 8px;
}

/*ぱんくず*/
#breadcrumbs {
	margin: 0;
	padding: 0;
	border-top: 1px solid #e8e8e8;
}
#breadcrumbs ol {
	width: 1050px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
#breadcrumbs ol li {
	float: left;
	width: auto;
}
#breadcrumbs ol li a {
	display: block;
	background: url(./images/arrow/brd_arrow.png) no-repeat 100% 50%;
	background-size: 12px 60px;
}
#breadcrumbs ol li span {
	display: block;
	padding: 0 30px 0 30px;
	height: 60px;
	font-size: 1.1rem;
	line-height: 60px;
}

#footer-navigation {
	display: flex;
	justify-content: space-between;
}
#footer-navigation a {
	color: #fff;
}
#footer-navigation div > ul {
	margin: 0;
	padding: 0;
}
#footer-navigation div > ul > li {
	font-size: 1rem;
	font-weight: bold;
	margin: 0;
	padding: 0.25rem 0;
}
#footer-navigation div > ul > li > .sub-menu {
	margin: 0;
	padding: 0 0 0 10px;
}
#footer-navigation div > ul > li > .sub-menu > li {
	position: relative;
	font-size: 1rem;
	font-weight: normal;
	margin: 0;
	padding: 0.25rem 0 0.25rem 10px;
}
#footer-navigation div > ul > li > .sub-menu > li::before {
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	box-sizing: border-box;
	border: 4px solid transparent;
	border-left: 5px solid #fff;
	z-index: 2;
}
