@charset "UTF-8";
/* ----------------------------------------------------------------header*/
header {
    position: relative;
}
#header {
    padding: 12px 0 0;
}
.header_logo {
    line-height: 1;
    text-align: left;
    margin-left: 15px;
}
.header_logo h1 {
    display: inline-block;
}
.header_logo img {
    width: 140px;
    height: auto;
}
.header_info {}
.header_sns {
    display: flex;
    align-items: center;
    position: absolute;
    top: 12px;
    right: 15px;
}
.header_sns li:not(:last-child) {
    margin-right: 8px;
}
.header_sns li img {}
.header_btn {
    display: flex;
    justify-content: center;
    padding: 0 0 12px;
}
.header_btn li {
    margin: 12px 6px 0;
    width: 50%;
    max-width: 240px;
}
.header_btn li.btn_s a {
    line-height: 34px;
}
.header_btn li.btn a span {}
@media print, screen and (min-width:768px) {
    #header {
        padding: 20px 30px;
    }
    .header_logo {
        margin-left: 0;
    }
    .header_logo img {
        width: 180px;
    }
    .header_sns {
        top: 20px;
        right: 30px;
    }
    .header_btn {
        padding: 0;
    }
    .header_btn li {
        margin: 12px 12px 0;
    }
}
@media print, screen and (min-width:992px) {
    #header {
        display: flex;
        justify-content: space-between;
        padding: 20px 60px;
    }
    .header_logo {
        margin-left: 0
    }
    .header_logo img {
        width: auto;
    }
    .header_info {
        display: flex;
        align-items: center;
    }
    .header_sns {
        position: relative;
        top: 0;
        right: 0;
    }
    .header_sns li, .header_sns li:not(:last-child)  {
        margin-right: 0;
    }
    .header_sns li, .header_sns li:first-child {
        margin-right: 13px;
    }
    .header_btn li {
        width: 240px;
        margin: 0 0 0 20px;   
    }
}
/*---------HamburgerMenu Icon*/
.menu_btn {
    display: block;
    width: 40px;
    height: 40px;
    background: #DFF3FE;
    border: 2px solid #0568a6;
    position: relative;
}
.menu_btn:hover {
    cursor: pointer;
}
.menu_btn .hambgr {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #0568a6;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 999;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s;
}
.menu_btn .hambgr:before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #0568a6;
    -webkit-transform: translateY(-7px) rotate(0deg);
    transform: translateY(-7px) rotate(0deg);
    transition: all 0.3s;
}
.menu_btn .hambgr:after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #0568a6;
    -webkit-transform: translateY(5px) rotate(0deg);
    transform: translateY(5px) rotate(0deg);
    transition: all 0.3s;
}
.menu_btn.hbg_close {
    top: 12px;
}
.menu_btn.hbg_close .hambgr {
    background: transparent;
}
.menu_btn.hbg_close .hambgr:before {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
}
.menu_btn.hbg_close .hambgr:after {
    -webkit-transform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
}
@media print, screen and (min-width:992px) {
    .menu_btn {
        display: none;
    }
}
/*メニューボタン固定*/
.menu_btn.fixed {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 200;
    animation: mnavslide linear .3s 1;
    -webkit-animation: mnavslide linear .3s 1;
}
@keyframes mnavslide {
    0% {
        top: -55px;
    }
    100% {
        top: 0;
    }
}
@-webkit-keyframes mnavslide {
    0% {
        top: -55px;
    }
    100% {
        top: 0;
    }
}
/*------------------------------------------------------------mainnavi*/
#mainnavi {
    display: none;
    width: 100%;
    height: 100%;
    background: #111;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    overflow: hidden;
}
#mainnavi .container {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
#mainnavi .fixed_logo {
    display: none;
}
#mainnavi ul#m_menu {
    padding: 0 0 100px;
    margin: 70px 0 10px;
    position: relative;
}
#mainnavi ul#m_menu > li:not(:last-child) {
    margin: 0 0 1px;
}
#mainnavi ul#m_menu > li a {
    display: block;
    padding: 10px 5px;
    margin: 0 0 1px 0;
    text-decoration: none;
    color: #fff;
    text-align: center;
}
#mainnavi ul#m_menu > li a:hover, #mainnavi ul#m_menu > li.active a {
    color: #328fc9;
    background: #333;
}
#mainnavi ul#m_menu > li.active a {
    pointer-events: none;
}
@media print, screen and (min-width:992px) {
    #mainnavi {
        display: block;
        height: 60px;
        top: 91px;
        position: absolute;
        overflow: visible;
    }
    #mainnavi .container {
        height: 100%;
        overflow-y: visible;
    }
    #mainnavi ul#m_menu {
        height: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    #mainnavi ul#m_menu > li {
        height: 100%;
    }
    #mainnavi ul#m_menu > li:not(:last-child) {
        margin: 0;
    }
    #mainnavi ul#m_menu > li a {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 22px;
        margin: 0;
    }
    #mainnavi ul#m_menu > li a:hover, #mainnavi ul#m_menu > li.active a {
        color: #328fc9;
        background: transparent;
    }
    /* ナビ固定 */
    #mainnavi.nav-fixed {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
    #mainnavi.nav-fixed .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #mainnavi.nav-fixed .fixed_logo {
        display: inline-block;
    }
}
/*------------------------------------------------------------pagetitle*/
#pagetitle {
    height: 180px;
}
#pagetitle .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#pagetitle h2 {
    font-family: "Noto Serif JP";
    color: #0568a6;
	font-size: 36px;
	font-weight: 700;
    line-height: 1.2;
    text-shadow: 
    1px 1px 2px #fff, -1px 1px 2px #fff,
    1px -1px 2px #fff, -1px -1px 2px #fff,
    1px 1px 10px #fff, -1px 1px 10px #fff,
    1px -1px 10px #fff, -1px -1px 10px #fff;
}
@media print, screen and (min-width:768px) {
    #pagetitle {
        height: 250px;
    }
    #pagetitle h2 {
        font-size: 48px;
    }
}
@media print, screen and (min-width:992px) {
    #pagetitle {
        height: 320px;
        margin-top: 60px;
    }
}
/*------------------------------------------------------------content*/
[class^="content_bg"] {
    padding: 30px 0;
}
.content_bg01 {}
.content_bg02 {
    background: #f3fbff;
}
.section {
    clear: both;
    padding-bottom: 10px;
}
.tx_area p:not(:last-child) {
    margin-bottom: 1em;
}
@media print, screen and (min-width:768px) {
    [class^="content_bg"] {
        padding: 45px 0;
    }
    .section {
        padding-bottom: 30px;
    }
}
@media print, screen and (min-width:992px) {
    [class^="content_bg"] {
        padding: 60px 0;
    }
}
/* ----------------------------------------------------------------footer*/
#contact_area .content {
    background: url("../img/common_img/bg_contact_area.jpg") center no-repeat;
    background-size: cover;
    padding: 40px 0;
}
#contact_area .contact_box {}
#contact_area .contact_title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    background: #111;
    padding: 7px 15px;
}
#contact_area .contact_cont {
    background: rgba(255, 255, 255, .75);
    padding: 15px; 
}
#contact_area .contact_cont .contact_cont_in01 {
    text-align: left;
    border-bottom: 1px dotted #111;
    padding: 0 0 15px;
    margin: 0 0 15px;
}
#contact_area .contact_cont .contact_cont_in01 p:first-child {}
#contact_area .contact_cont .contact_cont_in01 p:first-child .tel_num {
    color: #9a0715;
    font-size: 24px;
    font-weight: 900;
}
#contact_area .contact_cont .contact_cont_in01 p:first-child .tel_num span {
    margin-left: 0.5em;
}
#contact_area .contact_cont .contact_cont_in01 p:first-child .tel_num a {
    color: #9a0715;
}
#contact_area .contact_cont .contact_cont_in01 p:first-child .fax_num {
    font-size: 1.125em;
}
#contact_area .contact_cont .contact_cont_in01 p:first-child .fax_num b {
    font-style: normal;
    font-weight: 700;
}
#contact_area .contact_cont .contact_cont_in01 p:last-child strong {
    font-weight: 700;
}
#contact_area .contact_cont .contact_cont_in02 ul li:first-child {
    margin-bottom: 8px;
}
#contact_area .contact_cont .contact_cont_in02 ul li a {
    line-height: 37px;
}
@media print, screen and (min-width:768px) {
    #contact_area .content {
        padding: 60px 0;
    }
    #contact_area .contact_box {
        margin: 0 30px;
    }
    #contact_area .contact_title {
        font-size: 24px;
        padding: 9px 15px;
    }
    #contact_area .contact_cont {
        padding: 15px 30px; 
    }
    #contact_area .contact_cont .contact_cont_in01 {
        text-align: left;
        border-bottom: 1px dotted #111;
        padding: 0 0 15px;
        margin: 0 0 15px;
    }
    #contact_area .contact_cont .contact_cont_in01 p:first-child {}
    #contact_area .contact_cont .contact_cont_in01 p:first-child .tel_num {
        font-size: 30px;
    }
    #contact_area .contact_cont .contact_cont_in01 p:first-child .fax_num {
        margin-left: 0.25em;
    }
}
@media print, screen and (min-width:992px) {
    #contact_area .content {
        padding: 80px 0;
    }
    #contact_area .contact_box {
        margin: 0 20px;
    }
    #contact_area .contact_title {
        padding: 9px 30px;
    }
    #contact_area .contact_cont {
        display: flex;
        justify-content: center;
        padding: 20px 0; 
    }
    #contact_area .contact_cont .contact_cont_in01 {
        text-align: left;
        border-bottom: 0;
        border-right: 1px dotted #111;
        padding: 0 30px 0 0;
        margin: 0 30px 0 0;
    }
    #contact_area .contact_cont .contact_cont_in01 p:first-child {
        margin-top: 8px;
    }
    #contact_area .contact_cont .contact_cont_in01 p:last-child {
        margin-top: 18px;
    }
    #contact_area .contact_cont .contact_cont_in02 {
        width: 300px;
    }
}
@media print, screen and (min-width:1200px) {
    #contact_area .content {
        background-size: 2000px auto;
    }
    #contact_area .contact_box {
        margin: 0 97px;
    }
    #contact_area .contact_cont .contact_cont_in01 {
        padding: 0 40px 0 0;
        margin: 0 40px 0 0;
    }
}
#footer {
    padding: 42px 0;
    background: #328fc9;
    position: relative;
    overflow: hidden;
}
#footer:before {
    content: "";
    width: 577px;
    height: 60px;
    background: url("../img/common_img/bg_footer_l.png") left bottom no-repeat,url("../img/common_img/bg_footer_r.png") right bottom no-repeat;
    background-size: 231px, 231px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media print, screen and (min-width:576px) {
    #footer:before {
        width: 767px;
        height: 60px;
        background-size: 231px, 231px;
    }
}
@media print, screen and (min-width:768px) {
    #footer {
        padding: 63px 0;
        background-size: auto, auto, auto;
    }
    #footer:before {
        width: 991px;
        height: 109px;
        background-size: 390px, 390px;
    }
}
@media print, screen and (min-width:992px) {
    #footer {
        padding: 85px 0 66px;
    }
    #footer:before {
        width: 1400px;
    }
}
@media print, screen and (min-width:1200px) {
    #footer:before {
        width: 2000px;
        height: 136px;
        background-size: auto, auto;
    }
}
/*footerinfo*/
#footerinfo {
    margin-bottom: 30px;
}
#footerinfo dl {
    color: #fff;
    text-align: left;
    margin-bottom: 15px;
}
#footerinfo dl a {
    color: #fff;
}
#footerinfo dl dt {
    margin-bottom: 15px;
}
#footerinfo dl dt img {
    width: 140px;
    height: auto;
}
#footerinfo .footer_link {
    text-align: left;
}
#footerinfo .footer_link .map_btn {
    margin-bottom: 13px;
}
#footerinfo .footer_link .map_btn a {
    display: block;
    max-width: 200px;
    color: #fff;
    font-size: 0.9375em;
    line-height: 38px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #fff;
}
#footerinfo .footer_link .map_btn a:hover {
    color: #328fc9;
    background: #fff;
}
#footerinfo .footer_link .map_btn a span {
    position: relative;
}
#footerinfo .footer_link .map_btn a span:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    vertical-align: middle;
    margin-right: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#footerinfo .footer_link .map_btn a:hover span:before {
    border-top: 2px solid #328fc9;
    border-right: 2px solid #328fc9;
}
#footerinfo .footer_sns {
    display: flex;
}
#footerinfo .footer_sns li:not(:last-child) {
    margin-right: 15px;
}
@media print, screen and (min-width:576px) {
    #footerinfo {
        display: flex;
        justify-content: center;
    }
    #footerinfo dl {
        margin: 0 30px 15px 0;
    }
    #footerinfo .footer_link {
        width: 45%;
        max-width: 200px;
    }
}
@media print, screen and (min-width:768px) {
    #footerinfo {
        margin-bottom: 0px;
    }
}
@media print, screen and (min-width:992px) {
    #footerinfo {
        margin-bottom: 30px;
    }
    #footerinfo dl {
        display: flex;
        margin: 0 30px 0 0;
    }
    #footerinfo dl dt {
        margin: 0 30px 0 0;
    }
    #footerinfo dl dt img {
        width: auto;
    }
    #footerinfo .footer_link {
        width: 45%;
        max-width: 200px;
    }
}
@media print, screen and (min-width:1200px) {
    #footerinfo {
    }
    #footerinfo dl {
        display: flex;
        margin: 0 50px 0 0;
    }
    #footerinfo dl a {
    }
    #footerinfo dl dt {
        margin: 0 50px 0 0;
    }
}
/*footernavi*/
#footernavi {
    margin-bottom: 20px;
}
#footernavi li {
    display: inline-block;
    position: relative;
}
#footernavi li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 1em;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#footernavi li a {
    padding: 5px 15px;
    display: block;
    color: #fff;
    font-size: 0.9375em;
    text-decoration: none;
}
#footernavi li a:hover {
    text-decoration: underline;
}

.copyrights {
    background: #0568a6;
}
.copyrights p {
    line-height: 24px;
    color: #fff;
}
.copyrights p small {
    font-size: 0.6875em;
}
@media print, screen and (min-width:768px) {
    .copyrights p {
        line-height: 40px;
    }
}

/*カレンダー更新プログラム（フッター）フォーマット*/
.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 {
    display: block;
    margin: auto;
}
/*2*/
.ly_card_2column > div + div,
.ly_card_2column > div + li,
.ly_card_2column > li + div,
.ly_card_2column > li + li {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .ly_card_2column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ly_card_2column > div,
  .ly_card_2column > li {
    width: calc(100% / 2 - 15px);
  }
  .ly_card_2column > div + div,
  .ly_card_2column > div + li,
  .ly_card_2column > li + div,
  .ly_card_2column > li + li {
    margin-top: 0;
  }
  .ly_card_2column > div:nth-child(n+3),
  .ly_card_2column > li:nth-child(n+3) {
    margin-top: 30px;
  }
}

/*3*/
.ly_card_3column > div + div,
.ly_card_3column > div + li,
.ly_card_3column > li + div,
.ly_card_3column > li + li {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .ly_card_3column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ly_card_3column::after {
    content: "";
    display: block;
    width: calc(100% / 3 - 15px);
  }
  .ly_card_3column > div,
  .ly_card_3column > li {
    width: calc(100% / 3 - 15px);
  }
  .ly_card_3column > div + div,
  .ly_card_3column > div + li,
  .ly_card_3column > li + div,
  .ly_card_3column > li + li {
    margin-top: 0;
  }
  .ly_card_3column > div:nth-child(n+4),
  .ly_card_3column > li:nth-child(n+4) {
    margin-top: 30px;
  }
}

/*4*/
.ly_card_4column > div + div,
.ly_card_4column > div + li,
.ly_card_4column > li + div,
.ly_card_4column > li + li {
  margin-top: 16px;
}

@media print, screen and (min-width: 768px) {
  .ly_card_4column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .ly_card_4column::before {
    content: "";
    display: block;
    width: calc(100% / 4 - 15px);
    order: 1;
  }
  .ly_card_4column::after {
    content: "";
    display: block;
    width: calc(100% / 4 - 15px);
  }
  .ly_card_4column > div,
  .ly_card_4column > li {
    width: calc(100% / 4 - 15px);
  }
  .ly_card_4column > div + div,
  .ly_card_4column > div + li,
  .ly_card_4column > li + div,
  .ly_card_4column > li + li {
    margin-top: 0;
  }
  .ly_card_4column > div > div:nth-child(n+5),
  .ly_card_4column > div > li:nth-child(n+5),
  .ly_card_4column > li > div:nth-child(n+5),
  .ly_card_4column > li > li:nth-child(n+5) {
    margin-top: 30px;
  }
}
/*------------------------------------------------------------table*/
.sheet_basic {
    border-collapse: separate;
    width: 100%;
    border: 2px solid #0568a6;
}
.sheet_basic tr th, .sheet_basic tr td {
    display: block;
    font-weight: normal;
    text-align: left;
    padding: 10px 15px;
}
.sheet_basic tr th {
	white-space: nowrap;
    color: #0568a6;
    font-weight: 500;
	border-bottom: 1px dotted #0568a6;
	background: #dff3fe;
}
.sheet_basic tr td {
	border-bottom: 1px solid #0568a6;
	background: #fff;
}
.sheet_basic tr:last-child th {
    border-bottom: none;
	border-right: none;
	border-bottom: 1px dotted #0568a6;
}
.sheet_basic tr:last-child td {
	border-bottom: none;
	border-right: none;
}
@media print, screen and (min-width:768px) {
    .sheet_basic tr th, .sheet_basic tr td {
        padding: 15px;
        display: table-cell;
    }
    .sheet_basic tr th {
        width: 20%;
    }
    .sheet_basic tr td {
        border-bottom: 1px dotted #0568a6;
    }
.sheet_basic tr:last-child th {
	border-bottom: 0px dotted #0568a6;
}
}
/*------------------------------------------------------------list*/
.list_disc {
    text-align: left;
}
.list_disc li {
    padding-left: 1.2em;
    position: relative;
}
.list_disc li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 100%;
    padding-right: .2em;
    position: absolute;
    top: 6px;
    left: 0;
}
/*------------------------------------------------------------btn*/
[class^="btn_"] a {
    display: block;
    color: #fff;
    text-decoration: none;
    background: #0568a6;
    margin: 0 auto;
}
.btn_s a {
    border: 3px solid #328fc9;
}
.btn_b a {
    border: 4px solid #328fc9;
}
[class^="btn_"] a:hover {
    background: #328fc9;
}
[class^="btn_"] a span {
    position: relative;
}
.btn_s a span:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    vertical-align: middle;
    margin-right: 10px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn_b a span:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    vertical-align: middle;
    margin-right: 15px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*------------------------------------------------------------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;
}
@media print, screen and (min-width:768px) {
    hr.line_01 {
        margin: 30px 0px;
    }
}
.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: 700;
    background: url("../img/common_img/bg_title01.png") center bottom no-repeat;
    background-size: 145px;
    padding-bottom: 6px;
    margin-bottom: 18px;
    text-align: center;
}
.title02 {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    background: url("../img/common_img/bg_title02.png") left bottom no-repeat;
    background-size: 220px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.title03 {
    font-size: 16px;
    font-weight: bold;
    color: #6D6D6D;
    padding-left: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #6D6D6D;
}
.title03 span {
    font-size: 12px;
}
@media print, screen and (min-width:768px) {
    .title01 {
        font-size: 30px;
        background-size: auto;
        padding-bottom: 12px;
        margin-bottom: 30px;
    }
    .title02 {
        font-size: 24px;
        background-size: auto;
        padding-bottom: 22px;
        margin-bottom: 24px;
    }
}
/*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;
}
.phbox_right img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.phbox_left {
    text-align: center;
}
.phbox_left img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.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 )";
    transition: all .3s;
}
/*------------------------------------------------------------other*/
/*Pagetop*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop img {
    width: 40px;
    height: auto;
}
@media print, screen and (min-width:768px) {
    #pagetop {
        bottom: 20px;
	    right: 20px;
    }
    #pagetop img {
        width: auto;
    }
}

/*表示・非表示切り替え*/
.sp_none {
    display: none;
}
@media print, screen and (min-width:768px) {
    .pc_none {
        display: none;
    }
    .sp_none {
        display: inline-block;
    }
}

.anchor_point {
    margin-top: -52px;
    padding-top: 52px;
}
@media print, screen and (min-width:992px) {
    .anchor_point {
        margin-top: -60px;
        padding-top: 60px;
    }
}