/* ----------------------------------------------------------------header*/
header {
    text-align: left;
    position: relative;
    width: 100%;
}
#header {
    padding: 10px 0;
    background: rgb(255,255,255,0.9);
    width: 100%;
    height: 75px;
}
.header_logo {
    position: absolute;
    top: 20px;
    left: 15px;
}
.header_logo img {
    width: 120px;
    height: auto;
}
.header_contact {
    position: absolute;
    top: 20px;
    right: 70px;
}
.header_contact p {
    display: none;
}
.header_contact ul {
    display: flex;
}
.header_contact ul li {
    border: 1px solid #333a68;
    padding: 1px 8px;
		background-color: rgba(255,255,255,0.7);
}
.header_contact ul li a {
    color: #333a68;
    text-decoration: none;
}
.header_contact ul li a:hover {
    opacity: 0.7;
}
.header_contact ul li:first-child {
    margin-right: 10px;
	 font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
	color: #333a68;
}
.header_contact ul li:first-child span {
    display: none;
	color: #333a68;
}
.header_contact ul li:first-child i {
	color: #333a68;
}
.header_contact ul li a:first-child:hover {
    opacity: 1;
    cursor: default;
}
.header_contact ul li:nth-child(2) a {
    font-size: 30px;
}

@media print, screen and (min-width:768px) {
#header {
    height: 140px;
}
.header_logo {
    left: 50px;
	top: 30px;
}
.header_logo img {
    width: 180px;
    height: auto;
}
.header_contact {
    position: absolute;
    top: 10px;
    right: 40px;
}
.header_contact p {
    display: block;
}
.header_contact img {
    width: auto;
    height: auto;
}
.header_contact ul li {
    border: none;
    padding-left: 40px;
		background-color: rgba(255,255,255,0.0);
}
.header_contact ul li:first-child span {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0 15px;
	display: inline-block;
}
.header_contact ul li:first-child {
    font-size: 22px;
}
.header_contact ul li:nth-child(2) a {
    font-size: 22px;
    padding-left: 5px;
}
}

@media print, screen and (min-width:1200px) {
.header_logo img {
    width: auto;
    height: auto;
}
}
/*------------------------------------------------------------mainnavi*/
#mainnavi {
    display: none;
    position: absolute;
    top: 0;
    text-align: center;
    background: #fff;
    width: 100%;
    z-index: 100;
}
#mainnavi ul li {
    padding: 10px 0;
}
#mainnavi ul li a {
    font-size: 19px;
    text-decoration: none;
    color: #333333;
}
#mainnavi ul li a:hover, #mainnavi ul li.active a {
    border-bottom: 1px solid #333a68;
}

@media print, screen and (min-width:768px) {
#mainnavi {
    display: block;
    top: 90px;
    right: 15px;
    background: none;
    width: 65%;
    text-align: left;
    float: right;
}
#mainnavi ul {
    font-size: 0;
}
#mainnavi ul li {
    margin: 0 8px;
    padding: 0 0;
    padding-right: 16px;
    border-right: 1px solid #333;
    display: inline-block;
    line-height: 1.5;
}
#mainnavi ul li a {
    font-size: 14px;
    white-space: nowrap;
    line-height: 1;
}
#mainnavi ul li:nth-child(7) {
    border-right: none;
}
}

@media print, screen and (min-width:992px) {
#mainnavi {
    width: auto;
}
#mainnavi ul li {
    padding: 0 16px 0 0px;
}
#mainnavi ul li:nth-child(8), #mainnavi ul li:nth-child(9), #mainnavi ul li:nth-child(10) {
    display: none;
}
}

@media print, screen and (min-width:1200px) {
#mainnavi ul li a {
    font-size: 19px;
}
}
/*------------------------------------------------------------subnavi*/
#subnavi {
    display: none;
}
#subnavi ul {
    display: flex;
}
#subnavi ul li {
    margin: 0 8px;
    padding-right: 16px;
    border-right: 1px solid #333;
}
#subnavi ul li a {
    font-size: 19px;
    text-decoration: none;
    color: #333333;
    line-height: 1;
}
#subnavi ul li:last-child a {
    border-right: none;
}
#subnavi ul li a:hover, #subnavi ul li.active a {
    border-bottom: 1px solid #333a68;
}

@media print, screen and (min-width:768px) {
#subnavi ul li:last-child {
    border-right: none;
}
#subnavi ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #333333;
}
}

@media print, screen and (min-width:992px) {
#subnavi {
    display: block;
    position: absolute;
    top: 30px;
    right: 300px;
}
}

@media print, screen and (min-width:1200px) {
#subnavi ul li a {
    font-size: 19px;
}
}
/*------------------------------------------------------------toggle*/
#toggle {
    display: block;
    position: absolute;
    width: 45px;
    height: 45px;
    top: 20px;
    right: 15px;
    z-index: 100000;
    border: 1px solid #333a68;
    background: #333a68;
}
#toggle span {
    display: block;
    background: #fff;
    width: 28px;
    height: 2px;
    position: absolute;
    left: 9px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
#toggle span:first-child {
    top: 11px;
}
#toggle span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}
#toggle span:last-child {
    bottom: 11px;
}
#toggle.opennav span:first-child {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}
#toggle.opennav span:nth-child(2) {
    opacity: 0;
}
#toggle.opennav span:last-child {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    -moz-transform: translateY(-10px) rotate(-45deg);
    -ms-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
}

@media print, screen and (min-width:768px) {
#toggle {
    display: none;
}
}
/*------------------------------------------------------------content*/
section{
	position: relative;
	z-index: 1;
}
.content_bg01 {
    text-align: left;
    background: url(../img/common_img/bg_gray.jpg);
    padding-top: 10px;
}
.content_bg02 {
    text-align: left;
    padding-top: 10px;
}
.section {
    clear: both;
    margin-bottom: 10px;
}

@media print, screen and (min-width:768px) {
.content_bg01 {
    padding-top: 30px;
}
.content_bg02 {
    padding-top: 30px;
}
.section {
    margin-bottom: 30px;
}
}
/* ----------------------------------------------------------------footer*/
footer {
    text-align: left;
    padding: 30px 0;
    background: url(../img/common_img/footer_bg.png) no-repeat center center;
    background-size: cover;
	box-shadow: 5px 5px 5px #333a68;
}

@media print, screen and (min-width:768px) {
footer {
    padding: 60px 0;
}
}
/*footernavi*/
footer ul {
    width: 100%;
    text-align: center;
    margin: 30px auto 40px;
}
footer ul li {
    border-right: 1px solid #fff;
    display: inline-block;
    margin-bottom: 20px;
}
footer ul li a {
    padding: 0 20px;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
}
footer ul li a:hover {
    text-decoration: underline;
    color: #fff;
}

@media print, screen and (min-width:992px) {
footer ul {
    width: 60%;
    margin: 30px auto;
}
}
/*footerinfo*/
#footerinfo {
    margin-bottom: 20px;
}
#footerinfo p {
    color: #fff;
    font-size: 16px;
}
#footerinfo a {
    color: #fff;
	text-decoration: none;
}
#footerinfo a:hover {
    text-decoration: underline;
}
/*footercontact*/
#footercontact ul {
    width: 100%;
}
#footercontact ul li {
    color: #fff;
    vertical-align: middle;
    display: inline-block;
}
#footercontact ul li:first-child {
    font-size: 30px;
    border: none;
    margin-right: 20px;
}
#footercontact ul li:first-child span {
    padding-left: 10px;
	display: inline-block;
	font-size: 30px;
}
#footercontact ul li span a {
    font-size: 30px;
}
#footercontact ul li:nth-child(2) {
    font-size: 16px;
    border: 1px solid #fff;
    line-height: 1;
}
#footercontact ul li:nth-child(2) a {
    padding: 20px 40px;
}
#footercontact ul li:nth-child(2) a:hover {
    background: #fff;
    color: #333a68;
    text-decoration: none;
}
#footercontact ul li:nth-child(2) span {
    padding-right: 10px;
    font-size: 20px;
}
#footercontact p {
    color: #fff;
    font-size: 20px;
    text-align: center;
}
address {
    margin-top: 20px;
    font-size: 11px;
}
footer small {
    color: #fff;
    display: block;
    text-align: center;
    font-size: 12px;
}
/*カレンダー更新プログラム（フッター）フォーマット*/
.calendar {
    width: 100%;
    padding: 10px 9px;
    margin: 0 0 10px;
    background: #fff;
    position: relative;
}
.calendar .cal_title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.calendar .month {
    font-size: 11px;
    line-height: 1.2;
    font-weight: bold;
    text-align: right;
    position: absolute;
    top: 12px;
    right: 10px;
    z-index: 999;
}
.calendar .month strong {
    font-size: 16px;
}
.calendar table {
    width: 100%;
    border-collapse: collapse;
}
.calendar table th, .calendar table td {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}
.calendar table th {
    background: #C0C0C0;
    font-weight: bold;
}
.calendar table td.color01 {
    font-weight: bold;
    background: url(../img/common_img/holiday.png) no-repeat center center;
}
.calendar table td.color02 {
    font-weight: bold;
    background: url(../img/common_img/half.png) no-repeat center center;
}
.calendar table td.color03 {
    color: #fff;
    font-weight: bold;
    background: url(../img/common_img/monday.png) no-repeat center center;
}
.calendar ul.page_ctl {
    text-align: center;
    padding: 8px 10px;
    margin: 0 0 10px;
}
.calendar ul.page_ctl li {
    font-size: 12px;
    color: #389e7c;
}
.calendar ul.page_ctl li a {
    text-decoration: underline;
}
.calendar ul.page_ctl li a:hover {
    color: #999;
}
.calendar ul.page_ctl .ctl_left {
    float: left;
}
.calendar ul.page_ctl .ctl_right {
    float: right;
}
.calendar .tx_color01 {
    float: left;
    margin-right: 20px;
    padding: 0 0 0 15px;
    background: url(../img/common_img/holiday_s.png) no-repeat left center;
}
.calendar .tx_color02 {
    float: left;
    padding: 0 0 0 15px;
    background: url(../img/common_img/half_s.png) no-repeat left center;
}
.calendar .tx_color03 {
    clear: both;
    padding: 0 0 0 15px;
    background: url(../img/common_img/monday_s.png) no-repeat left center;
}

@media print, screen and (min-width:768px) {
.calendar {
    width: 60%;
    margin: 0 auto 10px;
}
}

@media print, screen and (min-width:992px) {
.calendar {
    width: 100%;
    margin: 0 0 10px;
}
}
/*カレンダー更新プログラム（メインカラム）フォーマット*/
.calender02 .note {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background-color: #969696;
    top: 0px;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 20px;
}
.calender02 .calender_nav {
    width: 260px;
    margin: 0 auto;
    text-align: center;
}
.calender02 div.date {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.calender02 .calender_table {
    overflow-x: auto;
    clear: both;
    position: relative;
}
.calender02 table {
    width: 600px;
    border-collapse: collapse;
    margin-bottom: 10px;
}
.calender02 table tr th {
    text-align: center;
    background: #CBCBCB;
    border: 1px dotted #6F6F6F;
    border-bottom: 1px solid #6F6F6F;
    padding: 10px;
    width: 14%;
}
.calender02 table tr td {
    text-align: center;
    border: 1px dotted #6F6F6F;
    padding: 10px;
}
.calender02 table tr.tr_date td {
    background: #E5E5E5;
}
.calender02 table tr.tr_text td {
    height: 60px;
    vertical-align: top;
}
.calender02 .bg_color01 {
    background: #D5A8A9;
}
.calender02 .bg_color02 {
    background: #B1CAD8;
}
.calender02 .tx_color01 {
    color: #D5A8A9;
}
.calender02 .tx_color02 {
    color: #B1CAD8;
}

@media print, screen and (min-width:768px) {
.calender02 .note {
    display: none;
}
.calender02 table {
    width: 100%;
}
}
/*------------------------------------------------------------Pankuzu*/
/*pankuzu*/
#pankuzu {
    width: 100%;
    margin: 5px 0 15px;
    clear: both;
}
#pankuzu ol {
    list-style: none;
}
#pankuzu ol li {
    float: left;
    font-size: 11px;
    padding: 0 7px 0 10px;
    background: url(../img/common_img/icon_pankuzu.gif) no-repeat 0 50%;
}
#pankuzu ol li em {
    font-style: normal;
}
#pankuzu ol li.home {
    padding-left: 0;
    background: none;
}
#pankuzu ol li a:link, #pankuzu ol li a:visited {
    text-decoration: underline;
}
#pankuzu ol li a:hover, #pankuzu ol li a:active {
    text-decoration: underline;
}
/* ----------------------------------------------------------------rayout*/
.center {
    margin: auto;
}
/*------------------------------------------------------------table*/
.sheet_basic {
    width: 100%;
    border-collapse: collapse;
}
.sheet_basic tr th, .sheet_basic tr td {
    border: 1px dotted #6D6D6D;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    display: block;
}
.sheet_basic tr th {
    background: #a6b3c7;
}
.sheet_basic tr td {
    background: #fff;
}

@media print, screen and (min-width:768px) {
.sheet_basic tr th, .sheet_basic tr td {
    display: table-cell;
}
}
/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin: 20px 0px;
    border-top: 1px dotted #CCC;
    border-right: 0 dotted #CCC;
    border-bottom: 0 dotted #CCC;
    border-left: 0 dotted #CCC;
}
.space_10 {
    height: 10px;
    clear: both;
}
.space_20 {
    height: 20px;
    clear: both;
}
.space_30 {
    height: 30px;
    clear: both;
}
.space_10 hr, .space_20 hr, .space_30 hr {
    display: none;
}
/*------------------------------------------------------------Text*/
/*title*/
.title01 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-align: center;
    position: relative;
    margin-bottom: 2em;
}
.title01:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #7451ce;
    border-radius: 2px;
}
.title02 {
    font-size: 18px;
    font-weight: bold;
    padding: 0.5em;
    color: #fff;
    background: #67719e;
    border-bottom: solid 5px #333a68;
    margin-bottom: 10px;
}
.title02_b {
    font-size: 18px;
    font-weight: bold;
    padding: 0.5em;
    color: #fff;
    background: #67719e;
    border-bottom: solid 5px #333a68;
    margin-bottom: 10px;
}
.title03 {
    font-size: 18px;
    font-weight: bold;
    color: #333a68;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid #333a68;
}
@media print, screen and (min-width:768px) {
.title01 {
    font-size: 30px;
}
.title02_b {
    font-size: 18px;
    width: 55%;
}
}

@media print, screen and (min-width:992px) {
.title02_b {
    width: 65%;
}
}

@media print, screen and (min-width:1200px) {
.title02_b {
    width: 70%;
}
}
/*TextRight*/
.tx_right {
    text-align: right;
}
/*TextLeft*/
.tx_left {
    text-align: left;
}
/*TextCenter*/
.tx_cent {
    text-align: center;
}
/*bold*/
.tx_bold {
    font-style: normal;
    font-weight: bold;
}
/*TextRed*/
.tx_red {
    color: #C33;
}
/*attention*/
.attention {
    font-size: 10px;
    line-height: 130%;
    margin: 5px 0;
}
/*------------------------------------------------------------Float*/
/*FloatLeft*/
.float_left {
    float: left;
}
/*FloatRight*/
.float_right {
    float: right;
}
/*ClearBoth*/
.clearboth {
    clear: both;
}
/*phbox*/
.phbox_right {
    text-align: center;
    margin-bottom: 10px;
}
.phbox_right img {
    max-width: 100%;
    height: auto;
}
.phbox_left {
    text-align: center;
    margin-bottom: 10px;
}
.phbox_left img {
    max-width: 100%;
    height: auto;
}
.ov_hidden {
    overflow: hidden;
}

@media print, screen and (min-width:768px) {
.phbox_right {
    float: right;
    margin-left: 10px;
    margin-bottom: 0px;
}
.phbox_left {
    float: left;
    margin-right: 10px;
    margin-bottom: 0px;
}
}
/*------------------------------------------------------------Margin*/
/*MarginTop*/
.margin_t05 {
    margin-top: 5px;
}
.margin_t10 {
    margin-top: 10px;
}
.margin_t20 {
    margin-top: 20px;
}
.margin_t30 {
    margin-top: 30px;
}
.margin_t40 {
    margin-top: 40px;
}
.margin_t50 {
    margin-top: 50px;
}
/*MarginBottom*/
.margin_b05 {
    margin-bottom: 5px;
}
.margin_b10 {
    margin-bottom: 10px;
}
.margin_b20 {
    margin-bottom: 20px;
}
.margin_b30 {
    margin-bottom: 30px;
}
.margin_b40 {
    margin-bottom: 40px;
}
.margin_b50 {
    margin-bottom: 50px;
}
/*MarginRight*/
.margin_r05 {
    margin-right: 5px;
}
.margin_r10 {
    margin-right: 10px;
}
.margin_r15 {
    margin-right: 15px;
}
.margin_r20 {
    margin-right: 20px;
}
/*MarginLeft*/
.margin_l05 {
    margin-left: 50px;
}
.margin_l10 {
    margin-left: 10px;
}
.margin_l15 {
    margin-left: 15px;
}
.margin_l20 {
    margin-left: 20px;
}
/*Margin_device*/
.margin-xs-b10 {
    margin-bottom: 10px;
}

@media print, screen and (min-width:768px) {
.margin-xs-b10 {
    margin-bottom: 0px;
}
}
/*------------------------------------------------------------ClearFix*/
.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/*------------------------------------------------------------Hoverimg*/
a:hover img.hoverimg {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
}
/*------------------------------------------------------------other*/
/*Pagetop*/
#pagetop {
    position: fixed;
    bottom: 0px;
    right: 0px;
}
#pagetop img {
    width: 40px;
    height: auto;
}

@media print, screen and (min-width:768px) {
#pagetop img {
    width: auto;
    height: auto;
}
}
