@import url('https://fonts.googleapis.com/css2?family=Dynalight&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* 全体
------------------------------------------------------------ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: YuGothic, "Yu Gothic medium", 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, "Hiragino Sans", "sans-serif";
	margin: 0px;
	padding: 0px;
	line-height: 2;
	color: #2f313c;
	-webkit-text-size-adjust: 100%;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.lato {
	font-family: 'Lato', sans-serif;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
.roboto-condensed {
	font-family: 'Roboto Condensed', sans-serif;
}
.dynalight-regular {
  font-family: "Dynalight", cursive;
  font-weight: 400;
  font-style: normal;
}
.mincho {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

html {
	font-size: 62.5%;
	overflow-y: auto;
/* //	border-left: solid 8px #f4b0b1;
//	border-right: solid 8px #f4b0b1; */
}
.opmenu {
  overflow: hidden;
  height: 100%;
}
body {
	font-size: 100%;
}
body img {
	vertical-align: bottom;
	border-style: none;
	max-width: 100%;
    height: auto;
}
body img.full {
	width: 100%;
}
a {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a.underlink {
	text-decoration: none;
}
a.underlink:hover {
	text-decoration: underline;
}
table {
	table-layout: auto;
	border-collapse: collapse;
	border-spacing: 0px;
}
strong {
    font-weight: bold;
}
.sp_br {
	display: none;
}
.nomal_size {
	font-size: 1.6rem;
}
.mid_size {
	font-size: 1.4rem;
}
.small_size {
	font-size: 1.2rem;
}
.inlineblock {
	display: inline-block;
}
.para {
	margin-bottom: 1.5em;
}
.para-half {
	margin-bottom: 1em;
}
.para-wide {
	margin-bottom: 2em;
}
.centernote {
    text-align: center;
}

/* 大枠 */
#allcontents {
    position: relative;
}

/* ヘッダ */
header {
	width: 100%;
    height: 200px;
    position: relative;
    z-index: 2;
    position: absolute;
    top: 0px;
    z-index: 1000;
}
header > div {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
header .head_logo {
	background: url("../images/logo_w.svg") no-repeat left top;
	background-size: contain;
    margin: 20px 0 0 22px;
    display: inline-block;
    position: absolute;
    z-index: 801;
	transition: .3s;
}
header .head_logo a {
	vertical-align: bottom;
	display: block;
}
header .head_logo img {
    width: 175px;
	vertical-align: bottom;
	display: block;
    opacity: 0;
	transition: .3s;
}
header .head_logo.UpMove{
	position: fixed;
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
header .head_logo.DownMove{
	position: fixed;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
header .DownMove img {
    opacity: 1;
	transition: .3s;
}
header .topfixity img {
    opacity: 0;
	transition: .3s;
}




header .head_logo.floating_logo {
	position: fixed;
    animation: logoAnime .5s ease-in forwards, topmv none;
}
@keyframes logoAnime{
  from {
    opacity: 0;
  transform: translateY(-200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.opmenu header {
	z-index: 20;
}
.opmenu header .head_logo {
	z-index: 900;
	transition: .3s;
}

/* コンテンツ */
article {
	margin: 0px auto;
	clear: both;
	background: #FFF;
    padding: 60px 20px 0;
}
article div.contents {
	max-width: 1280px;
	margin: auto;
}

/* ページタイトル */
.page_title_area {
    height: 300px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -webkit-flex-direction:column;
    -ms-flex-direction:column;
    flex-direction:column;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    position: relative;
}
.page_title_area .page_title_img {
    height: 300px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}
.page_title_area .page_title_img img {
    height: 300px;
    width: 100vw;
    object-fit: cover;
}
.page_title_area .cat_group {
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
}
.page_title_area .page_title {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}
.breadcrumb {
    display: none;
}

/* 見出し */
article h2.lineH2 {
    font-size: 2.2rem;
	font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
article h2.lineH2:after {
	content: '';
	display: block;
	width: 2.8em;
	height: 3px;
	margin-top: 5px;
	background: #364AA1;
	background: -webkit-linear-gradient(90deg,rgba(54, 74, 161, 1) 0%, rgba(81, 111, 208, 1) 100%);
	background: -moz-linear-gradient(90deg,rgba(54, 74, 161, 1) 0%, rgba(81, 111, 208, 1) 100%);
	background: linear-gradient(90deg,rgba(54, 74, 161, 1) 0%, rgba(81, 111, 208, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#364AA1",endColorstr="#516FD0",GradientType=1);
}

/* 記事一覧 */
article .list_index  {
    margin-bottom: 30px;
}
article .list_index .list_head  {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background: #172377;
    padding: 0.5em;
    display: table-cell;
    width: 200px;
    text-align: center;
}
article .list_index ul  {
    list-style: none;
}
article .list_index ul a  {
    text-decoration: none;
    display: block;
    padding: 1em 0 1em 1.5em;
    border-bottom: dashed 1px #838ab6;
    position: relative;
}
article .list_index ul a::after {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  background: url("../images/arrow_rb.svg") no-repeat center center;
    background-size: auto;
  background-size: contain;
  position: absolute;
  left: 0px;
  top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


@media (min-width: 768px) {
.sp_br {
	display: inline;
}
.nomal_size {
	font-size: 1.6rem;
}
.mid_size {
	font-size: 1.4rem;
}
.small_size {
	font-size: 1.2rem;
}

/* 大枠 */
#allcontents {
}
/* ヘッダ */
header {
    height: 300px;
}
header .head_logo {
	margin: 27px 0 0 39px;
}
header .head_logo img {
    width: 250px;
}

/* コンテンツ */
article {
	padding: 70px 50px 0;
    margin: auto;
}

/* ページタイトル */
.page_title_area {
    height: 400px;
}
.page_title_area .page_title_img {
    height: 400px;
}
.page_title_area .page_title_img img {
    height: 400px;
}
.page_title_area .cat_group {
    font-size: 2rem;
}
.page_title_area .page_title {
    font-size: 4rem;
}

/* 見出し */
article h2.lineH2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
}
article h2.lineH2:after {
}

/* 記事一覧 */
article .list_index  {
    margin-bottom: 30px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
article .list_index .list_head  {
    font-size: 1.8rem;
    max-height: 200px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
article .list_index ul  {
	width: 70%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 220px);/*Chrome19~25対応*/
	width: -moz-calc(100% - 220px);/*Firefox4~15対応*/
	width: calc(100% - 220px);  
}
article .list_index ul a  {
    padding: 1em 1em 1em 2em;
    border-bottom-width: 2px;
}
article .list_index ul a::after {
  left: 0.5em;
}

}

@media (min-width: 1200px) {
.opmenu {
  overflow: auto !important;
  height: auto;
}
.nomal_size {
	font-size: 1.8rem;
}
.mid_size {
	font-size: 1.6rem;
}
.small_size {
	font-size: 1.4rem;
}

/* ヘッダ */
header {
    height: 350px;
}
header > div {
	background-position: right -90px;
    background-size: 886px;
}
header > div:before {
	background-position: right top;
}
header .head_logo {
	margin: 50px 0 0 39px;
}
header .head_logo img {
    width: 290px;
}
.opmenu header .head_logo {
    opacity: 1 !important;
}
header .floating_logo {
	position: fixed;
	animation-name: logoAnime2;
}
@keyframes logoAnime2{
  from {
    opacity: 0;
	top: 52px;
  transform: translateY(-200px);
  }

  to {
    opacity: 1;
	top: 52px;
  transform: translateY(0);
  }
}

/* コンテンツ */
article {
	padding: 100px 50px 0;
}

/* ページタイトル */
.page_title_area {
    height: 500px;
    padding-top: 30px;
}
.page_title_area .page_title_img {
    height: 500px;
}
.page_title_area .page_title_img img {
    height: 500px;
}
.page_title_area .cat_group {
    font-size: 2.4rem;
}
.page_title_area .page_title {
    font-size: 4.8rem;
}
.breadcrumb {
    display: block;
    background: #f3f4f7;
    padding: 0 60px;
}
.breadcrumb p {
    font-size: 1.4rem;
    line-height: 55px;
    max-width: 1280px;
    margin: auto;
    text-align: right;
}

/* 見出し */
article h2.lineH2 {
    font-size: 3.2rem;
    margin-bottom: 60px;
}
article h2.lineH2:after {
	height: 4px;
}

/* 記事一覧 */
article .list_index  {
    margin-bottom: 40px;
}
article .list_index .list_head  {
    font-size: 2rem;
    max-height: 200px;
}
article .list_index ul  {
	width: 70%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 230px);/*Chrome19~25対応*/
	width: -moz-calc(100% - 230px);/*Firefox4~15対応*/
	width: calc(100% - 230px);  
}

}


/* フッタ
------------------------------------------------------------ */
footer {
}
footer .footer_sitemap {
    padding: 0 20px;
    display: none;
}
footer .footer_sitemap * {
    color: #364aa1;
    text-decoration: none;
}
footer .footer_sitemap dt {
    font-weight: bold;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    border-bottom: solid 1px #364aa1;
}
footer .footer_sitemap dd {
    margin-bottom: 2em;
}
footer .footer_sitemap dd ul {
    list-style: none;
}
footer .footer_sitemap p.level1 {
    margin-bottom: 1.6em;
}
footer .footer_sitemap p.level1 a {
    font-weight: bold;
}
footer .footer_sitemap dd ul.second {
    margin: 0 0 0.5em 2em;
}
footer .footer_sitemap dd.double {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
}
footer .footer_sitemap dd.double div {
    width: 50%;
}

footer .copyright {
	padding: 30px 10px;
    text-align: center;
}
footer .copyright img {
	width: 190px;
	height: auto;
	display: block;
	margin: 0 auto 10px;
}
footer .sitemap_bt {
    background: #364aa1;
    cursor: pointer;
}
footer .sitemap_bt p {
    color: #fff;
    height: 50px;
    line-height: 50px;
    display: table;
    margin: auto;
    padding-left: 15px;
    position: relative;
}
footer .sitemap_bt p:after {
    content: '　サイトマップを開く　';
    font-weight: bold;
}
footer .close p:after {
    content: '　サイトマップを閉じる';
    font-weight: bold;
}
footer .sitemap_bt p span {
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0px;
    top: 25px;
}
footer .sitemap_bt p span:before, footer .sitemap_bt p span:after {
  display: block;
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
}
footer .sitemap_bt p span:before {
  top: -6px;
}
footer .sitemap_bt p span:after {
  top: 6px;
}

footer .copyright * {
    color: #364aa1;
}
footer .footer_contact {
    background: #fff;
    border-left: solid 1px #364aa1;
    border-top: solid 1px #364aa1;
	-webkit-border-radius: 15px 0 0 0;
	-moz-border-radius: 15px 0 0 0;
	border-radius: 15px 0 0 0;
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 102;
}
footer .footer_contact .footer_contact_head {
    display: table-cell;
    text-align: left;
    text-decoration: none;
    min-width: 60px;
    height: 49px;
    vertical-align: middle;
    padding: 0 15px;
    position: relative;
    cursor: pointer;
    transition: .3s;
}
footer .footer_contact .footer_contact_head * {
    color: #364aa1;
}
footer .footer_contact .footer_contact_head:after {
    content: '';
    display: block;
    background: url("../images/arrow_rb.svg") center center / contain no-repeat;
    width: 9px;
    height: 15px;
    transform: rotate(90deg);
    position: absolute;
    top: 17px;
    right: 10px;
    transition: .5s;
}
footer .footer_contact.active .footer_contact_head:after {
    transform: rotate(-90deg);
    transition: .5s;
}
footer .footer_contact .footer_contact_head img {
    width: 20px;
    vertical-align: middle;
}
footer .footer_contact.active .footer_contact_head {
    transition: .3s;
}
footer .footer_contact .footer_contact_head strong {
    width: auto;
    text-indent: 0;
    padding-right: 1em;
}
footer .footer_contact .footer_contact_info  {
	display: none;
	text-align: center;
}
footer .footer_contact .footer_contact_info .footer_contact_day {
    background: #fff;
	padding-bottom: 5px;
}
footer .footer_contact .footer_contact_info .footer_contact_day * {
	font-size: 1.8rem;
    color: #364aa1;
    line-height: 1.5;
	text-decoration: none;
}
footer .footer_contact .footer_contact_info .footer_contact_day .footer_contact_title {
    font-size: 1.6rem;
    font-weight: bold;
}
footer .footer_contact .footer_contact_info .footer_contact_day .footer_contact_note1 {
    font-size: 1.4rem;
    font-weight: bold;
}
footer .footer_contact .footer_contact_info .footer_contact_day .footer_telno {
    font-size: 2.4rem;
    font-weight: 900;
}
footer .footer_contact .footer_contact_info .footer_contact_day .footer_telno img {
    width: 16px !important;
    height: auto;
    vertical-align: middle;
    margin: 0 3px 5px 0;
}
footer .footer_contact .footer_contact_info .footer_contact_night {
    background: #364aa1;
    padding: 10px 5px 5px;
}
footer .footer_contact .footer_contact_info .footer_contact_night * {
    color: #fff;
    line-height: 1.5;
	text-decoration: none;
}
footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_title {
    font-size: 1.6rem;
    font-weight: bold;
}
footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_note1 {
    font-size: 1.4rem;
    font-weight: bold;
}
footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_note2 {
    font-size: 1.1rem;
}
footer .footer_contact .footer_contact_info .footer_contact_night .footer_telno {
    font-size: 2.2rem;
    font-weight: 900;
}
footer .footer_contact .footer_contact_info .footer_contact_night .footer_telno img {
    width: 15px;
    height: auto;
    vertical-align: middle;
    margin: 0 3px 5px 0;
}

footer .pagetop {
    background: #fff;
    width: 50px;
    height: 50px;
    border: solid 1px #364aa1;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
    position: fixed;
    right: 10px;
    bottom: 100px;
    z-index: 101;
}
footer .pagetop a {
    display: block;
    width: 50px;
    height: 50px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
footer .pagetop img {
    width: 10px;
}

@media (min-width: 768px) {
footer .footer_sitemap {
    max-width: 1380px;
    margin: auto;
    padding: 0 50px;
}
footer .footer_sitemap > div {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
}
footer .footer_sitemap > div > div {
    width: 31%;
}
footer .footer_sitemap dd ul.second {
    margin: 0 0 0.5em 1em;
}

footer .copyright {
	padding: 30px 50px;
    text-align: left;
}
footer .copyright img {
	width: 220px;
	margin: 0 0 10px;
}
footer .sitemap_bt {
}
footer .sitemap_bt p {
    height: 70px;
    line-height: 70px;
    padding-left: 15px;
}
footer .sitemap_bt p span {
    width: 18px;
    top: 34px;
}
footer .sitemap_bt p span:before, footer .sitemap_bt p span:after {
  width: 18px;
}

footer .footer_contact {
    width: auto;
	-webkit-border-radius: 15px 0 0 0;
	-moz-border-radius: 15px 0 0 0;
	border-radius: 15px 0 0 0;
}
footer .footer_contact .footer_contact_head {
    padding: 0 20px;
    width: auto;
    height: 69px;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
footer .footer_contact .footer_contact_head img {
    width: 15px;
    margin-right: 6px;
}
footer .footer_contact .footer_contact_head strong {
    padding-right: 1.5em;
}
footer .footer_contact .footer_contact_head strong small {
    font-weight: bold;
    color: #364aa1;
}
footer .footer_contact .footer_contact_head:after {
    top: 40%;
    right: 20px;
}
footer .footer_contact .footer_contact_info .footer_contact_day {
  padding-bottom: 10px;
}
footer .footer_contact .footer_contact_info .footer_contact_day .footer_contact_title,
footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_title {
  font-size: 1.8rem;
}
footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_note2 {
  font-size: 1.4rem;
}
footer .footer_contact .footer_contact_info .footer_contact_day .footer_telno,
footer .footer_contact .footer_contact_info .footer_contact_night .footer_telno {
  font-size: 2.8rem;
}

footer .pagetop {
    width: 70px;
    height: 70px;
    right: 30px;
    bottom: 100px !important;
}
footer .pagetop a {
    width: 70px;
    height: 70px;
}
footer .pagetop img {
    width: 10px;
}
}
@media (min-width: 1200px) {
footer .footer_sitemap dd {
    margin-bottom: 3em;
}
footer .footer_sitemap dd ul.second {
    margin: 0 0 1em 1.5em;
}
footer .sitemap_bt p {
    height: 80px;
    line-height: 80px;
    padding-left: 20px;
}
footer .sitemap_bt p span {
    width: 22px;
    top: 40px;
}
footer .sitemap_bt p span:before, footer .sitemap_bt p span:after {
  width: 22px;
}
footer .footer_contact {
	-webkit-border-radius: 30px 0 0 0;
	-moz-border-radius: 30px 0 0 0;
	border-radius: 30px 0 0 0;
}
footer .footer_contact .footer_contact_head {
    padding: 0 30px;
    height: 79px;
}
footer .footer_contact .footer_contact_head img {
    width: 18px;
}
  footer .footer_contact .footer_contact_info .footer_contact_day .footer_contact_title, footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_title {
    font-size: 2rem;
  }
footer .footer_contact .footer_contact_info .footer_contact_day .footer_contact_note1,
footer .footer_contact .footer_contact_info .footer_contact_night .footer_contact_note1 {
  font-size: 1.5rem;
}
  footer .footer_contact .footer_contact_info .footer_contact_day .footer_telno, footer .footer_contact .footer_contact_info .footer_contact_night .footer_telno {
    font-size: 3.2rem;
  }
}


/* ■■■■■■■■■■■■■■■■■■■■■ メニュー ■■■■■■■■■■■■■■■■■■■■■ */

/* スマホ */
#menu-box {
	margin: 0px;
	width: 100%;
    height: 76px;
	clear: both;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 800;
	box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-o-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-ms-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
}

#menu-box.UpMove2{
    background: #fff;
	position: fixed;
	animation: UpAnime2 0.5s forwards;
}

@keyframes UpAnime2{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
#menu-box.DownMove2{
    background: rgba(255,255,255,0.95);;
	position: fixed;
	animation: DownAnime2 0.5s forwards;
}
@keyframes DownAnime2{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}



#menu-box.floating {
    background: #fff;
	position: fixed;
	box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-o-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-ms-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
    animation: logoAnime .5s ease-in forwards, topmv none;
}

@keyframes menuAnime{
  from {
    opacity: 0;
  transform: translateY(-200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#menu-box * {
}

#menu-box .ex_menu {
    position: absolute;
    top: 22px;
    right: 90px;
}
#menu-box .ex_menu * {
    font-size: 1.8rem;
    color: #fff;
    list-style: none;
	transition: .5s;
}
#menu-box.fixity .ex_menu *,
#menu-box.DownMove2 .ex_menu * {
    color: #262b2f;
	transition: .5s;
}
#menu-box.topfixity .ex_menu * {
    color: #fff;
	transition: .5s;
}
#menu-box .ex_menu .ex_menu_rec,
#menu-box .ex_menu .ex_menu_contact {
    display: none;
}



#toggle {
	cursor: pointer;
	padding: 0px;
	width: 44px;
	height: 44px;
    position: relative;
    z-index: 100;
    margin: 16px 30px 0px auto;
}
#toggle a {
    font-size: 1.4rem;
    color: #00477c;
	display: block;
	height: 44px;
	margin: 0px;
    text-align: center;
    vertical-align: bottom;
    text-decoration: none;
	position: relative;
	transition: .3s;
}

#toggle span {
	display: block;
	width: 44px;
	height: 2px;
	background: #364aa1;
	position: absolute;
	top: 21px;
	left: 0px;
	transition: .3s;
}
#toggle span:before, #toggle span:after{
	display: block;
	content: "";
	width: 44px;
	height: 2px;
	background: #364aa1;
	position: absolute;
	transition: .3s;
}
#toggle span:before{
	top: -12px;
}
#toggle span:after{
	top: 12px;
}
#toggle span.close {
  background: transparent !important;
}
#toggle span.close:before, #toggle span.close:after{
	top: 0;
}
#toggle span.close:before{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#toggle span.close:after{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#toggle span {
	background: #fff;
}
.DownMove2 #toggle span {
	background: #364aa1;
}
#toggle span:before, #toggle span:after{
	background: #fff;
}
#toggle span.close:before, #toggle span.close:after,
.DownMove2 #toggle span:before, .DownMove2 #toggle span:after{
    background: #00477c;
}

#menu-box.topfixity {
    background: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	transition: 1s;
}
.topfixity #toggle span,.topfixity #toggle span:before, .topfixity #toggle span:after {
	background: #fff;
}
.opmenu .topfixity #toggle span:before, .opmenu .topfixity #toggle span:after {
	/* background: #00477c; */
}


#menu-box #menu {
	background: #364aa1;
	display: none;
	width: 90%; /*IE9未満とかプレフィックス使ってもだめなブラウザやOS対応*/
	widht: -webkit-calc(100% - 40px);/*Chrome19~25対応*/
	width: -moz-calc(100% - 40px);/*Firefox4~15対応*/
	width: calc(100% - 40px);  
	height: 90vh;
	height: -webkit-calc(100vh - 210px);/*Chrome19~25対応*/
	height: -moz-calc(100vh - 210px);/*Firefox4~15対応*/
	height: calc(100vh - 210px);  
	padding: 0px;
	position: fixed;
	left: 20px;
	top: 76px;
	z-index: 99;
    overflow-y: auto;
	/* position: relative; */
}
#menu nav {
}
#menu nav div {
}
#menu nav ul {
	list-style: none;
	font-size: 1.8rem;
}
#menu-box #menu ul.menu_main * {
    color: #fff;
    text-decoration: none;
}
#menu-box #menu ul.menu_main > li {
    border-bottom: solid 1px #7381bd;
}
#menu-box #menu ul.menu_main > li > a {
	font-weight: 500;
	display: block;
    padding: 1em 15px;
    position: relative;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
}
#menu-box #menu ul.menu_main > li > a.sub_open:after {
    content: '';
    display: block;
	background: url("../images/arrow_rw.svg") no-repeat center center;
	background-size: cover;
    width: 7px;
    height: 12px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
#menu-box #menu ul.menu_main > li > a.sub_close:after {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
#menu-box #menu ul.menu_main .sub_menu {
    margin-bottom: 1em;
	display: none;
}
#menu-box #menu ul.menu_main .sub_menu .sub_title {
    display: none;
}
#menu-box #menu ul.menu_main .sub_menu a {
	font-size: 1.6rem;
    display: block;
    padding: 3px 15px;
}
#menu-box #menu ul.menu_main .sub_menu a:hover {
    background: #4a5cab;
}
#menu-box #menu ul.menu_main .sub_menu dt {
	font-size: 1.6rem;
    padding: 3px 15px;
}
#menu-box #menu ul.menu_main .sub_menu dd a {
    padding: 3px 30px;
}
#menu-box #menu ul.menu_main .sub_menu .sub_menu_close {
	display: none;;
}

@media (min-width: 360px) {
#menu-box #menu ul.menu_main > li .sub_menu > ul > li > a {
	font-size: 1.6rem;
}
}

@media (min-width: 375px) {
}

/* タブレット */
@media (min-width: 768px) {
#menu-box {
    height: 100px;
}
#menu-box .ex_menu {
    top: 32px;
    right: 130px;
}
#menu-box .ex_menu * {
    font-size: 2rem;
}
#toggle {
	width: 60px;
	height: 60px;
	margin: 20px 40px 20px auto;
}
#toggle a {
	height: 60px;
}

#toggle span {
	width: 60px;
	height: 3px;
	top: 28px;
}
#toggle span:before, #toggle span:after{
	width: 60px;
	height: 3px;
}
#toggle span:before{
	top: -16px;
}
#toggle span:after{
    top: 16px;
}
#toggle span.close:before, #toggle span.close:after{
}
#menu-box #menu {
	max-width: 890px;
	height: 90vh;
	height: -webkit-calc(100vh - 280px);/*Chrome19~25対応*/
	height: -moz-calc(100vh - 280px);/*Firefox4~15対応*/
	height: calc(100vh - 280px);  
	padding: 0px;
	position: fixed;
	left: 50%;
	top: 100px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 99;
    overflow-y: auto;
}
#menu-box #menu ul.menu_main > li > a {
    padding: 1em 30px;
}
#menu-box #menu ul.menu_main .sub_menu .sub_title {
    display: none;
}
#menu-box #menu ul.menu_main .sub_menu a {
    padding: 3px 30px;
}
#menu-box #menu ul.menu_main .sub_menu a:hover {
    background: #4a5cab;
}
#menu-box #menu ul.menu_main .sub_menu dt {
	font-size: 1.6rem;
    padding: 3px 30px;
}
#menu-box #menu ul.menu_main .sub_menu dd a {
    padding: 3px 50px;
}
}

/* PC */
@media (min-width: 1200px) {
/* メインメニュー */
#menu-box {
    width: 100%;
	height: 140px;
}
#menu-box.floating {
	height: 140px;
}
#menu-box.floating:after {
    background-position: right top;
}
#toggle {
	display: none;
}
#menu-box .ex_menu {
    top: 10px;
    right: 55px;
    z-index: 60;
}
#menu-box .ex_menu ul {
	display: flex;
	display: -ms-flexbox; /* IE10 */
	display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */
	display: -webkit-flex; /* Safari6.1以降 */
}
#menu-box .ex_menu .ex_menu_rec,
#menu-box .ex_menu .ex_menu_contact {
    display: block;
    margin-right: 4em;
}
#menu-box .ex_menu * {
    font-size: 1.4rem;
}
#menu-box #menu {
	width: 100%;
	max-width: none;
	background: none;
	height: auto;
	padding: 0;
	overflow: visible;
	display: block !important;
    position: absolute;
	top: 50px;
	left: auto;
	right: 0px;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
#menu nav {
  margin: 0;
  padding: 0px;
  height: auto;
  max-height: none;
    overflow: visible;
    width: 100%;
	height: 100%;
}
#menu nav div {
    margin: 0;
}

#menu-box #menu ul.menu_main {
    background: rgba(0,0,0,0.03);
    border: solid 1px rgba(0,0,0,0.05);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	height: 50px;
    padding: 0 10px;
    margin: 0;
	display: table;
    position: absolute;
    top: 0px;
    right: 50px;
}
#menu-box.topfixity #menu ul.menu_main {
    background: rgba(255,255,255,0.1);
    border: solid 1px rgba(255,255,255,0.2);
}
#menu-box.floating #menu ul.menu_main {
    padding-left: 320px;
}
#menu-box #menu ul.menu_main > li {
    padding: 0 10px;
	display: table-cell;
    border: none;
    background: none;
    position: relative;
}
#menu-box #menu ul.menu_main > li.menu_owner,
#menu-box #menu ul.menu_main > li.menu_dr,
#menu-box #menu ul.menu_main > li.menu_recruit {
	display: none;
}
#menu-box #menu ul.menu_main > li > a {
    padding: 0.5em 1em;
    white-space: nowrap;
    position: relative;
}
#menu-box #menu ul.menu_main > li > a:after {
    content: none;
}
#menu-box #menu ul.menu_main > li > a.sub_open:after {
    content: '';
    display: block;
	background: url("../images/arrow_rw.svg") no-repeat center center;
	background-size: cover;
    width: 7px;
    height: 12px;
    position: absolute;
    right: 0px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
    filter: brightness(100%);
	transition: .3s;
}
#menu-box #menu ul.menu_main > li > a.sub_close:after {
    content: '';
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
#menu-box.fixity #menu ul.menu_main > li > a.sub_open:after,
#menu-box.DownMove2 #menu ul.menu_main > li > a.sub_open:after {
    filter: brightness(0%);
	transition: .3s;
}
#menu-box.topfixity #menu ul.menu_main > li > a.sub_open:after {
    filter: brightness(100%);
	transition: .3s;
}

#menu-box #menu ul.menu_main > li > a {
    color: #fff;
}
#menu-box.DownMove2 #menu ul.menu_main > li > a {
    color: #262b2f;
}
#menu-box.topfixity #menu ul.menu_main > li > a {
    color: #fff;
	transition: 1s;
}
#menu-box #menu ul.menu_main .sub_menu {
	width: 1280px;
	max-width: 95%;
	background: #fff;
	margin: 0;
	position: fixed;
	top: 100px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-o-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	-ms-box-shadow: 0px 5px 5px 0px rgba(37,43,47,0.05);
	display: table;
	display: none;
}
#menu-box #menu ul.menu_main .sub_menu * {
    color: #364aa1;
}
#menu-box #menu ul.menu_main > li > a.sub_close:after {
    content: '';
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
#menu-box #menu ul.menu_main .sub_menu .sub_title {
    display: block;
	font-size: 2.8rem;
	font-weight: bold;
	color: #fff;
    background: #364aa1;
    background: -webkit-linear-gradient(90deg,#364aa1 0%, #516fd0 100%);
    background: -moz-linear-gradient(90deg,#364aa1 0%, #516fd0 100%);
    background: linear-gradient(90deg,#364aa1 0%, #516fd0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#364aa1",endColorstr="#516fd0",GradientType=0);
	width: 350px;
	display: table-cell;
	padding: 40px;
	vertical-align: middle;
	position: relative;
}
#menu-box #menu ul.menu_main > li > a.sub_close:after {
	position: absolute;
	right: 0px;
	top: 40%;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
#menu-box #menu ul.menu_main .sub_menu .sub_menu_close {
	font-size: 4rem;
	position: absolute;
	right: 20px;
	top: 0px;
	cursor: pointer;
	display: block;
}

#menu-box #menu ul.menu_main .sub_menu a {
	font-weight: bold;
	padding: 0 !important;
}
#menu-box #menu ul.menu_main .sub_menu a:hover {
	background: none;
}
#menu-box #menu ul.menu_main .sub_menu dl {
	padding: 20px 50px 30px;
}
#menu-box #menu ul.menu_main .sub_menu dl dt {
	font-weight: bold;
	padding: 0 0 0.3em;
	margin: 1em 0 0.3em;
	border-bottom: solid 1px #364aa1;
}
#menu-box #menu ul.menu_main .sub_menu ul li {
	display: inline-block;
	min-width: 30%;
}
#menu-box #menu ul.menu_main .sub_about ul {
	padding: 30px 50px;
}
#menu-box #menu ul.menu_main .sub_about ul li {
	width: 30%;
	margin: 1em 0;
}
#menu-box #menu ul.menu_main .sub_animal ul {	
    padding: 20px 60px 15px 40px;	
    display: flex;	
    display: -ms-flexbox; /* IE10 */	
    display: -webkit-box; /* Android4.3以下、Safari3.1～6.0 */	
    display: -webkit-flex; /* Safari6.1以降 */	
    -webkit-box-pack:justify;	
    -webkit-justify-content:space-between;	
    -ms-flex-pack:justify;	
    justify-content:space-between;	
}	
#menu-box #menu ul.menu_main .sub_animal ul li {	
    width: 24%;	
    widht: -webkit-calc((100% - 60px) / 3);
    width: -moz-calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    min-width: auto;	
}
#menu-box #menu ul.menu_main .sub_animal ul li:nth-child(1) {
    background-position: center top !important;
}
#menu-box #menu ul.menu_main .sub_animal ul li:nth-child(2) {
    background-position: center top !important;
}
#menu-box #menu ul.menu_main .sub_animal ul li:nth-child(3) {
    background-position: center top !important;
}
#menu-box #menu ul.menu_main .sub_animal ul li:nth-child(4) {
    background-position: right top !important;
}
#menu-box #menu ul.menu_main .sub_animal ul li a {	
    text-align: center;	
    padding-top: 150px !important;	
}
}
@media screen and (max-width:1199px){
    #menu-box #menu ul.menu_main .sub_animal ul li {
        background: none !important;
    }
}

@media (min-width: 1300px) {
}

/* ポジション配置用初期タグ */
.positionSet {
	position: relative;
}

/* begin clearfix 〜ボックス終わりに自動フロートクリア */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-table;zoom:1;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end clearfix */

/* iepngfix efect */
.iepngfix {
  behavior: expression(IEPNGFIX.fix(this));
}
/* end iepngfix efect */
