@charset "UTF-8";
@media print, screen and (min-width: 1200px) {
    .container {
        /*width: 1030px;*/
        width: 1080px;
    }
}
/* ----------------------------------------------------------------header*/
header {
    text-align: left;
}
#header {
    padding-bottom: 10px;
}
h1 {
    text-align: center;
    font-size: 10px;
    margin: 8px 0 0;
}
.header_logo {
    float: left;
    width: 57%;
    margin-top: 15px;
}
.header_logo img {
    width: 98%;
    height: auto;
}
.header_logo ul {
    display: flex;
    justify-content: space-between;
}
.header_contact {
    float: right;
    margin-top: 10px;
}
.header_contact p.sp_none {
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}
.header_contact img {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}
.header_contact img.pc_none {
    display: inline;
}
header .submenu {
    display: none;
}
header .submenu ul {
    text-align: center;
}
header .submenu ul li {
    display: inline-block;
    border-radius: 5px;
    background-color: #009e53;
    margin-left: 10px;
}
/* header .submenu ul li:first-child {
	background-color: #fff;
}
header .submenu ul li:first-child a {
	padding: 5px 10px;
	color: #333;
	text-decoration: underline;
} */
header .submenu ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 13px;
    display: inline-block;
}
header .submenu ul li a:hover {
    opacity: 0.7;
}
@media print, screen and (min-width: 992px) {
    .header_logo {
        width: auto;
        margin-top: 20px;
    }
    .header_logo img {
        width: auto;
        height: auto;
    }
    .header_logo a {
        margin-right: 5px;
    }
}
@media print, screen and (min-width: 992px) {
    h1 {
        float: left;
        text-align: left;
        margin-bottom: 10px;
    }
    .header_contact {
        margin-top: 0;
    }
    header .submenu ul {
        text-align: left;
    }
    header .submenu ul li {
        border-radius: 0 0 5px 5px;
    }
    .submenu {
        float: right;
        margin-bottom: 10px;
    }
    .header_contact p.sp_none {
        display: block;
    }
    .header_contact img {
        padding-left: 10px;
    }
    .header_contact img.pc_none {
        display: none;
    }
}
@media print, screen and (min-width: 992px) {
    header .submenu {
        display: block;
    }
    .header_logo img {
        width: auto;
        height: auto;
        margin-right: 5px;
        margin-top: -5px;
    }
    .header_contact img {
        width: 360px;
        height: auto;
        vertical-align: middle;
        padding-left: 0;
    }
}
/*-----------------------------------------------------------header.fix*/
header.fix {
    position: fixed;
    animation: mnavslide linear 0.3s 1;
    -webkit-animation: mnavslide linear 0.3s 1;
    top: 0;
    background: #fff;
    box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.2);
    background-position: center top;
    z-index: 1000;
    width: 100%;
}
@media print, screen and (min-width: 768px) {
    header.fix {
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 0px 5px 5px 2px rgba(0, 0, 0, 0.1);
    }
    header.fix #header {
        display: none;
    }
    /* header.fix {
	position: inherit;
	background: none;
	box-shadow: none;
} */
}
/*================
floatingBanner
================*/
.floatingBanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}
@media print, screen and (min-width: 768px) {
    .floatingBanner {
        bottom: auto;
        width: auto;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}
.banner_wrap {
    width: calc(100% - 54px);
    display: flex;
    gap: 2px;
    padding: 0 2px;
    box-sizing: border-box;
}
.banner_wrap li {
    width: 50%;
}
.banner_wrap li a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 153, 0);
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    width: 100%;
    height: 50px;
    border-radius: 6px 6px 0 0;
    text-decoration: none;
    transition: 0.2s;
}
.banner_wrap li a:hover {
    background: #ff6600;
}
.pagetop {
    position: fixed;
    right: 2px;
    bottom: 0;
    z-index: 100;
}
.pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 153, 0);
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 1;
    width: 50px;
    height: 50px;
    border-radius: 6px 6px 0 0;
    text-decoration: none;
    transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
    .banner_wrap {
        flex-direction: column;
        padding: 0;
        gap: 8px;
    }
    .banner_wrap li, .banner_wrap li.pagetop {
        width: 60px;
    }
    .banner_wrap li a {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        height: 160px;
        border-radius: 6px 0 0 6px;
        padding: 1em 0;
        font-size: 16px;
        font-weight: 700;
    }
    .pagetop {
        right: 0;
        bottom: 0;
        z-index: 100;
    }
    .pagetop a {
        width: 60px;
        height: 60px;
        font-size: 19px;
        border-radius: 6px 0 0 0;
        padding: 1.4em 0;
    }
}
/*------------------------------------------------------------mainnavi*/
#mainnavi {
    background-color: #009e52;
}
.sp_nav {
    display: block;
}
.pc_nav {
    display: none;
}
.navbar {
    min-height: inherit;
}
.navbar-toggle {
    position: relative;
    float: none;
    padding: 0;
    margin: 0;
    background-color: inherit;
    border: none;
}
.navbar-toggle img {
    border: 1px solid #ff8f22;
}
.navbar-inverse {
    margin-bottom: 0;
    border: none;
    background-color: inherit;
}
.navbar-collapse {
    padding-right: 0;
}
#mainnavi ul li:first-child {
    border-top: 1px dotted #ccc;
}
#mainnavi ul li {
    border-bottom: 1px dotted #ccc;
    padding: 3px 0;
}
#mainnavi ul li a {
    padding: 6px;
    color: #fff;
}
#mainnavi ul.pc_nav li i.fa, #mainnavi ul.pc_nav li i.fas {
    color: #ffff00;
}
/*ドロップダウンメニュー*/
#mainnavi ul > li ul.child {
    display: none;
    position: absolute;
}
#mainnavi ul > li ul.child {
    z-index: 999;
    margin-top: 3px;
}
#mainnavi ul > li ul.child li {
    width: 100%;
    background-color: #009e52;
    border-left: none;
    border-right: none;
    border-top: 1px dotted #fff;
}
#mainnavi ul > li ul.child li a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}
@media print, screen and (min-width: 992px) {
    .sp_nav {
        display: none;
    }
    .pc_nav {
        display: block;
    }
    #mainnavi ul {
        width: 100%;
    }
    #mainnavi ul > li {
        width: calc(100% / 6);
        text-align: center;
        border-right: 1px dotted #fff;
        border-bottom: none;
    }
    #mainnavi ul > li:first-child {
        border-left: 1px dotted #fff;
        border-top: none;
    }
    #mainnavi ul li a {
        padding: 0;
    }
    #mainnavi ul li a:hover, #mainnavi ul li.nav_active > a {
        padding: 0;
        border-bottom: 3px solid #ff8f22;
        margin-bottom: -3px;
    }
    #mainnavi ul li a:hover {
        opacity: 0.8;
    }
    #mainnavi ul li a:hover img {
        opacity: 1;
    }
    #mainnavi ul li img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    #mainnavi ul > li ul.child li {
        padding: 10px;
    }
    #mainnavi ul li a, #mainnavi ul li a:hover, #mainnavi ul li.nav_active > a {
        padding: 15px 0;
    }
}
.nav_tel {
    margin-left: 15px;
}
.nav_tel img {
    width: 160px;
    height: auto;
}
.nav_tel img.sp_none {
    display: none;
}
@media print, screen and (min-width:992px) {
    .nav_tel img.sp_none {
        display: inline;
    }
}
/*------------------------------------------------------------pagetitle*/
#pagetitle {
    background: #989898;
}
/*------------------------------------------------------------content*/
.content_bg01 {
    text-align: left;
    background: #e0e0e0;
    padding-top: 10px;
}
.content_bg02 {
    text-align: left;
    padding-top: 10px;
}
.content_bg03 {
    text-align: left;
    background: #fff;
    padding-top: 10px;
}
.bg01 {
    background: #eef5f2;
}
.bg02 {
    background: #f7f7f7;
}
.section {
    clear: both;
    margin-bottom: 10px;
    text-align: center;
}
.section img {
    display: inline-block;
    text-align: center;
    width: 100%;
    height: auto;
}
.section p {
    line-height: 180%;
    font-size: 1.2em;
}
#content_right h3 {
    display: inline-block;
    /* text-align: left; */
    text-align: center;
    margin: 30px 0 10px 0;
    padding: 5px 0px;
}
@media print, screen and (min-width: 768px) {
    .content_bg01 {
        padding-top: 30px;
    }
    .content_bg02 {
        padding-top: 30px;
    }
    .content_bg03 {
        padding-top: 30px;
    }
    .section {
        margin-bottom: 50px;
    }
}
/*------------------------------------------------------------main_contents*/
@media print, screen and (min-width: 992px) {
    #main_contents #content_left {
        float: left;
    }
    #main_contents #content_right {
        float: right;
    }
}
/* ----------------------------------------------------------------side_menu*/
#content_left > div {
    margin-bottom: 20px;
}
#content_left > div img {
    max-width: 100%;
}
#content_left h3 {
    font-size: 12px;
    color: #6e6e6e;
}
#content_left .side_blog .side_blog_title {
    background-color: #009e52;
}
#content_left .side_blog ul {
    border-left: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
}
#content_left .side_blog ul li {
    border-bottom: 1px solid #d2d2d2;
    padding: 8px;
    font-size: 13px;
}
#content_left .side_blog ul li span {
    display: block;
    text-decoration: underline;
    text-align: right;
    color: #009e52;
}
#content_left .side_blog ul li a > div:nth-child(1) {
    float: left;
    width: 40%;
    padding-right: 5px;
}
#content_left .side_blog ul li a > div:nth-child(2) {
    float: left;
    width: 60%;
}
#content_left .side_blog_title {
    padding: 10px;
}
#content_left .side_blog_title h3 {
    display: inline-block;
    padding-left: 5px;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
}
#content_left .side_blog_title h3 i {
    font-size: 120%;
}
#content_left .side_blog_title a {
    float: right;
    background-color: #fff;
    border-radius: 30px;
    padding: 0 5px;
    text-decoration: none;
    color: #009e52;
}
#content_left .side_bnr ul {
    text-align: center;
}
div#content_left .side_bnr ul li {
    display: inline-block;
    text-align: left;
    margin-bottom: 10px;
    padding: 5px 0 0 0;
}
/* ----------------------------------------------------------------footer*/
footer {
    text-align: left;
    padding: 20px 0;
    background: #eaeaea;
}
footer p {
    font-size: 12px;
    color: #444;
}
footer img {
    vertical-align: top;
    width: auto !important;
}
footer .section:first-child > div > div {
    margin-bottom: 20px;
}
footer .section:first-child {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
/*footernavi*/
footer div > ul li {
    font-size: 14px !important;
    text-align: left !important;
    line-height: 130% !important;
    padding-left: 0 !important;
    font-weight: normal !important;
}
footer div > ul li a {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 12px;
    color: #009e52;
    text-decoration: none;
    line-height: 130%;
}
footer div > ul li > ul li {
    margin-left: 10px;
}
footer div > ul li > ul li a:before {
    content: "\f0da";
    padding-right: 3px;
    font-family: FontAwesome;
    color: #009e52;
}
footer ul li a:hover {
    text-decoration: underline;
}
@media print, screen and (max-width: 479px) {
    .footer_contact a:first-child {
        margin-bottom: 10px;
        display: block;
    }
}
/*footerinfo*/
#footerinfo dl {
    color: #6d6d6d;
}
@media print, screen and (min-width: 480px) {
    #footerinfo dl dd {
        float: left;
        margin-right: 20px;
    }
}
@media print, screen and (min-width: 768px) {
    #footerinfo {
        margin-bottom: 10px;
    }
    #footerinfo img {
        margin-bottom: 5px;
    }
}
@media print, screen and (min-width: 992px) {
    #footerinfo dl dd {
        float: none;
        margin-right: 0px;
    }
}
/*footerbanner*/
#footerbanner {
    margin-top: 20px;
}
#footerbanner div {
    margin-bottom: 10px;
}
@media print, screen and (min-width: 992px) {
    #footerbanner {
        margin-top: 0;
    }
}
address {
    margin: 0;
    padding: 8px 0;
    background-color: #009e52;
    width: 100%;
    font-size: 10px;
    color: #fff;
}
/*カレンダー更新プログラム（フッター）フォーマット*/
#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;
    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.holiday {
    font-weight: bold;
    background: url(../img/common_img/holiday.png) no-repeat center center;
}
#calendar table td.half {
    font-weight: bold;
    background: url(../img/common_img/half.png) no-repeat center center;
}
#calendar table td.monday {
    color: #fff;
    font-weight: bold;
    background: url(../img/common_img/monday.png) no-repeat center center;
}
ul.page_ctl {
    text-align: center;
    padding: 8px 10px;
    margin: 0 0 10px;
}
ul.page_ctl li {
    font-size: 12px;
    color: #389e7c;
}
ul.page_ctl li a {
    text-decoration: underline;
}
ul.page_ctl li a:hover {
    color: #999;
}
ul.page_ctl .ctl_left {
    float: left;
}
ul.page_ctl .ctl_right {
    float: right;
}
#tx_holiday {
    float: left;
    margin-right: 20px;
    padding: 0 0 0 15px;
    background: url(../img/common_img/holiday_s.png) no-repeat left center;
}
#tx_half {
    float: left;
    padding: 0 0 0 15px;
    background: url(../img/common_img/half_s.png) no-repeat left center;
}
#tx_monday {
    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;
    }
}
/*カレンダー更新プログラム（メインカラム）フォーマット*/
.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;
}
.calender_nav {
    width: 260px;
    margin: 0 auto;
    text-align: center;
}
p.date {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.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;
}
.bg_color01 {
    background: #d5a8a9;
}
.bg_color02 {
    background: #b1cad8;
}
.tx_color01 {
    color: #d5a8a9;
}
.tx_color02 {
    color: #b1cad8;
}
@media print, screen and (min-width: 768px) {
    .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_basic02 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}
.sheet_basic02 tr th, .sheet_basic02 tr td {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    display: block;
}
.sheet_basic02 tr th {
    color: #fff;
    background: #009e52;
}
.sheet_basic02 tr td {
    background: #f4f4f4;
}
@media print, screen and (min-width: 768px) {
    .sheet_basic tr th, .sheet_basic tr td {
        display: table-cell;
    }
    .sheet_basic02 tr th, .sheet_basic02 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 {
    margin: 40px 0;
    background-color: #f8f852;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.2em;
    text-align: left;
    color: #444444;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
    display: inline-block;
}
.title01 i {
    font-size: 125%;
    padding: 0 5px;
}
.title01 span {
    font-size: 75%;
    line-height: 24px;
    vertical-align: middle;
    padding-left: 20px;
}
.title02 {
    font-size: 18px;
    font-weight: bold;
    color: #6d6d6d;
    margin-bottom: 10px;
    border-bottom: 1px dotted #6d6d6d;
}
.title02.type01 {
    color: #009e52;
}
@media print, screen and (min-width: 768px) {
    .title02.type01 {
        margin-bottom: 20px;
        font-size: 24px;
    }
}
.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: 2.1em !important;
        font-weight: bold;
    }
}
/*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;
}
/*small*/
.tx_small {
    font-size: 0.8em;
}
/*big*/
.tx_big {
    font-size: 1.2em;
}
/*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_t00 {
    margin-top: 0px !important;
}
.margin_t05 {
    margin-top: 5px !important;
}
.margin_t10 {
    margin-top: 10px !important;
}
.margin_t20 {
    margin-top: 20px !important;
}
.margin_t30 {
    margin-top: 30px !important;
}
.margin_t40 {
    margin-top: 40px !important;
}
.margin_t50 {
    margin-top: 50px !important;
}
/*MarginBottom*/
.margin_b00 {
    margin-bottom: 0px !important;
}
.margin_b05 {
    margin-bottom: 5px !important;
}
.margin_b10 {
    margin-bottom: 10px !important;
}
.margin_b20 {
    margin-bottom: 20px !important;
}
.margin_b30 {
    margin-bottom: 30px !important;
}
.margin_b40 {
    margin-bottom: 40px !important;
}
.margin_b50 {
    margin-bottom: 50px !important;
}
/*MarginRight*/
.margin_r05 {
    margin-right: 5px !important;
}
.margin_r10 {
    margin-right: 10px !important;
}
.margin_r15 {
    margin-right: 15px !important;
}
.margin_r20 {
    margin-right: 20px !important;
}
/*MarginLeft*/
.margin_l05 {
    margin-left: 50px !important;
}
.margin_l10 {
    margin-left: 10px !important;
}
.margin_l15 {
    margin-left: 15px !important;
}
.margin_l20 {
    margin-left: 20px !important;
}
/*Margin_device*/
.margin-xs-b10 {
    margin-bottom: 10px !important;
}
/*PaddingTop*/
.padding_t00 {
    padding-top: 0px !important;
}
/*PaddingBottom*/
.padding_b00 {
    padding-bottom: 0px !important;
}
@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: 10px;
    right: 10px;
}
@media print, screen and (min-width: 480px) {
    #pagetop {
        position: fixed;
        bottom: 20px;
        right: 20px;
    }
}
.btn {
    padding: 10px 10px 13px;
    border: none;
    border-radius: 25px;
    background-color: #ff8f22;
    color: #fff;
    text-decoration: none;
    line-height: 20px;
    /* box-shadow */
    box-shadow: 3px 3px 6px 0 #ccc;
    -moz-box-shadow: 3px 3px 6px 0 #ccc;
    -webkit-box-shadow: 3px 3px 6px 0 #ccc;
    margin-bottom: 10px;
}
@media print, screen and (min-width: 600px) {
    .btn {
        min-width: 530px;
        padding: 10px 30px;
        line-height: 50px;
        margin-bottom: 0;
        font-size: 1.6em;
    }
}
@media print, screen and (max-width: 599px) {
    .btn {
        width: 100%;
    }
}
@media print, screen and (max-width: 479px) {
    .btn_lg {
        border-radius: 30px;
        font-size: 24px;
        line-height: 15px;
    }
}
@media print, screen and (min-width: 480px) {
    #index_text .btn {
        border-radius: 30px;
        font-size: 24px;
        line-height: 60px;
    }
}
.btn_sm {
    min-width: 275px;
    padding: 0 45px;
    background-color: #009e52;
    line-height: 40px;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.btn i {
    font-size: 125%;
}
.btn:visited {
    color: #fff;
}
.btn:hover {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    opacity: 0.7;
}
img.responsive_img {
    max-width: 100%;
    height: auto;
}
.sp_none {
    display: block;
}
.pc_none {
    display: none;
}
@media print, screen and (max-width: 767px) {
    .sp_none {
        display: none;
    }
    .pc_none {
        display: block;
    }
}
/*------------------------------------------------------------------table*/
section#kotei_area table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-left: none;
    border-right: none;
}
section#kotei_area table tr th, section#kotei_area table tr td {
    border-bottom: 1px dotted #ccc;
    border-right: none;
    padding: 10px;
    text-align: left;
    display: block;
}
@media print, screen and (min-width: 768px) {
    section#kotei_area table tr th, section#kotei_area table tr td {
        border-right: 1px dotted #ccc;
    }
}
section#kotei_area table tr td {
    vertical-align: middle;
}
section#kotei_area table tr th:last-child, section#kotei_area table tr td:last-child {
    border-right: none;
}
@media print, screen and (min-width: 768px) {
    section#kotei_area table tr th, section#kotei_area table tr td {
        display: table-cell;
    }
}
/*----------------------------------------------------------------------キャンペーンページ用*/
section#kotei_area.campaign {
    width: 100%;
    text-align: left;
}
section#kotei_area.campaign .row div > p {
    margin-bottom: 10px;
}
.cmp_copy {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}
section#kotei_area.campaign section img {
    width: 100%;
    border: #ccc 1px solid;
    box-sizing: border-box;
    margin: 10px auto;
}
section#kotei_area.campaign table tr th {
    display: none;
    vertical-align: top;
    background: #e0d8ca;
    border-bottom: none;
    border-right: 1px solid #fff;
}
@media print, screen and (min-width: 768px) {
    section#kotei_area.campaign table tr th {
        display: table-cell;
    }
}
.bg_yellow {
    background-image: linear-gradient(transparent 50%, #ffff00 50%);
}
.bg_pink {
    background-image: linear-gradient(transparent 50%, #ffafaf 50%);
}
.bg_blue {
    background-image: linear-gradient(transparent 50%, #ccffff 50%);
}
/* フローティングメニュー閉じるボタン付き
-----------------------------------------*/
.Bnr {
    position: relative;
    margin: 0 auto;
    width: 300px;
    display: none;
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", Osaka, sans-serif !important;
    float: right;
}
.Bnr .Bnr__img {
    position: fixed;
    bottom: 0;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    z-index: 88;
}
.Bnr__img__inner {
    width: 300px;
    height: 250px;
    box-sizing: border-box;
    padding: 10px;
    background-color: #fafafa;
}
.Bnr__img__inner img {
    width: 100%;
}
.Bnr .Bnr__img__inner a {
    display: block;
}
.Bnr .Bnr__img__inner a:hover {
    opacity: 0.7;
}
.Bnr .Bnr__img p.close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.Bnr .Bnr__img p.close a {
    display: block;
    width: 20px;
    height: 25px;
    text-align: center;
}
.Bnr .Bnr__img p.close a span {
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.Bnr .Bnr__img p.close a i {
    font-size: 20px;
    z-index: 888;
}
.tab {
    width: 100%;
}
.tab li {
    color: #333;
    float: left;
    margin: 0;
    padding: 20px 0px;
    border: 1px solid #226ee8;
    cursor: pointer;
    list-style: none;
    transition: 0.3s;
    width: 33%;
    font-size: 180%;
}
.tab li.active {
    color: #fff;
    background: #226ee8;
    cursor: auto;
}
.tab li:hover {
    color: #fff;
    background: #356599;
    cursor: pointer;
}
.tab img {
    width: 70%;
    margin: 10px 15%;
}
.area article {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
}
.area article.show {
    display: block;
}
.link_tx {
    margin-bottom: 30px;
}
.link_tx a {
    font-weight: bold;
    color: #4472c4;
}
.link_tx a:hover {
    text-decoration: none;
    color: #808080;
}
/* ダウンロード資料ページ用
-----------------------------------------*/
dl.inquiry_divide {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    display: inline-block;
    max-width: 1100px;
}
dl.inquiry_divide:after {
    content: "";
    clear: both;
    height: 0;
}
dl.inquiry_divide dt {
    float: left;
    width: 50%;
}
dl.inquiry_divide dd {
    float: right;
    width: 48%;
}
@media print, screen and (max-width: 480px) {
    dl.inquiry_divide dt {
        float: none;
        width: 100%;
    }
    dl.inquiry_divide dd {
        float: none;
        width: 100%;
        padding: 20px 20px 0 20px;
    }
}
dl.inquiry_divide dt img {
    width: 100%;
}
dl.inquiry_divide dd h3 {
    color: #0660c5;
    font-weight: 700;
    padding: 0;
    margin: 0;
}
dl.inquiry_divide dt ul, dl.inquiry_divide dd ul {
    text-align: left;
    margin-top: 10px;
}
dl.inquiry_divide dt ol, dl.inquiry_divide dd ol {
    text-align: left;
    margin-top: 10px;
}
dl.inquiry_divide dt ul li, dl.inquiry_divide dd ul li {
    list-style-type: disc;
    margin: 0 0 5px 20px;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    color: #424242;
    line-height: 30px;
}
dl.inquiry_divide dt ol li, dl.inquiry_divide dd ol li {
    list-style-type: decimal;
    margin: 0 0 5px 20px;
    text-align: left;
    font-weight: normal;
}