<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------------------------------------------header*/
header {
    position: relative;
    width: 100%;
    height: 260px;
    top: 0;
    left: 0;
}

header h1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    height: 20px;
    padding: 3px 15px 0;
    line-height: 1.1;
    font-family: "NotoSansRegular";
    font-size: 9px;
    color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

header #header {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 2;
    transition: all 0.5s;
}

header #header_logo img {
    width: auto;
    height: 30px;
}

header #header_contact {
    position: fixed;
    top: 20px;
    right: 60px;
    display: flex;
}

header #header_contact li span {
    display: none;
}

header #header_contact li p,
header #header_contact li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    background: #1464ae;
}

header #header_contact li a img {
    width: 23px;
    height: auto;
}

@media print,
screen and (min-width:768px) {
    header {
        height: 440px;
    }

    header h1 {
        padding-top: 5px;
        padding-left: 50px;
        font-size: 10px;
    }

    header #header {
        position: absolute;
        top: 35px;
        left: 0;
        padding: 0 50px;
    }

    header #header_logo {
        padding-top: 0;
    }

    header #header_logo img {
        width: auto;
        height: auto;
    }

    header #header_contact {
        position: relative;
        align-items: center;
        top: 0;
        right: auto;
    }

    header #header_contact li span {
        display: inline;
    }

    header #header_contact li p,
    header #header_contact li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        color: #fff;
        text-decoration: none;
        background: #1464ae;
    }

    header #header_contact li p {
        color: #202020;
        text-decoration: none;
        background: none;
    }

    header #header_contact li:first-child p,
    header #header_contact li:first-child a {
        color: #202020;
        text-decoration: none;
        background: none;
    }

    header #header_contact li:first-child p {
        font-size: 22px;
    }

    header #header_contact li p span {
        margin-left: 8px;
        font-family: 'Oswald', sans-serif;
        font-size: 28px;
        color: #202020;
        text-decoration: none;
        background: none;
    }

    header #header_contact li.mail a {
        width: 140px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background: rgba(20, 100, 174, 1.0);
        transition: all 0.5s;
    }

    header #header_contact li.mail a:hover {
        background: rgba(20, 100, 174, 0.6);
    }

    header #header_contact li.mail a span {
        margin-left: 10px;
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
    }
}

@media print,
screen and (min-width:1200px) {
    header #header {
        position: absolute;
        top: 50px;
        left: 0;
        padding: 0 50px;
    }

    header #header_logo {
        padding-top: 0;
    }

    header #header_logo img {
        width: auto;
        height: auto;
    }

    header #header_contact {
        position: relative;
        align-items: center;
        top: -40px;
        right: auto;
    }
}


/*------------------------------------------------------------toggle*/
.toggle {
    position: fixed;
    top: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #1464ae;
    z-index: 9999999999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.toggle span {
    display: block;
    background: #fff;
    width: 20px;
    height: 2px;
    position: absolute;
    left: 10px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.toggle span:first-child {
    top: 12px;
}

.toggle span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}

.toggle span:nth-child(3) {
    bottom: 12px;
}

.toggle.opennav {
    position: fixed;
    z-index: 99999;
}

.toggle.opennav span {}

.toggle.opennav span:first-child {
    -webkit-transform: translateY(7px) rotate(45deg);
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.toggle.opennav span:nth-child(2) {
    opacity: 0;
}

.toggle.opennav span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

@media print,
screen and (min-width:768px) {
    .toggle {
        display: none;
    }
}

/*------------------------------------------------------------mainnavi*/
#mainnavi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 70px 15px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

#mainnavi ul li a {
    display: block;
    padding: 10px 0;
    line-height: 1.1;
    text-decoration: none;
    font-family: "NotoSansBold";
    font-size: 16px;
    color: #202020;
}

#mainnavi ul li a span {
    display: inline-block;
    padding: 10px 0;
}

#mainnavi ul li.active a span {
    border-bottom: solid 3px #1464ae;
}

/*new icon*/
#mainnavi ul li.new_icon {
    position: relative;
}

#mainnavi ul li.new_icon::before {
    content: "NEW!";
    font-size: 1.0rem;
    font-family: "NotoSansBold";
    background: #ffd800;
    color: #d80000;
    border-radius: 2px;
    display: block;
    width: 46px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto auto;
    transform: translateX(45px);
}

#mainnavi ul li.new_icon::after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 0;
    border-color: #ffd800 transparent transparent transparent;
    position: absolute;
    top:15px;
    right: 0;
    left: 0;
    margin: 0 auto auto;
    transform: translateX(45px);
}

@media print,
screen and (min-width:576px) {
    #mainnavi ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    #mainnavi ul li {
        margin: 0 10px;
    }

    #mainnavi ul li a {
        padding: 0;
    }
}

@media print,
screen and (min-width:768px) {
    #mainnavi {
        display: block;
        position: absolute;
        top: 100px;
        left: 0;
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 0;
        text-align: center;
        background: none;
        z-index: 9999;
    }

    #mainnavi ul li {
        margin: 0 15px;
    }

    #mainnavi ul li a span {
        height: 41px;
        padding: 10px 0 0;
        border-bottom: solid 3px transparent;
        transition: all 0.5s;
    }

    #mainnavi ul li a:hover span {
        border-bottom: solid 3px #1464ae;
    }
    /*new icon*/
    #mainnavi ul li.new_icon::before {
        width: 40px;
        top:-8px;
        transform: translateX(38px);
    }

    #mainnavi ul li.new_icon::after{
        border-width: 8px 8px 0 0;
        top:8px;
        transform: translateX(40px);
    }
}

@media print,
screen and (min-width:1200px) {
    #mainnavi {
        display: block;
        position: absolute;
        top: 70px;
        left: auto;
        right: 50px;
        bottom: auto;
        width: auto;
    }

    #mainnavi ul li {
        margin: 0 0 0 30px;
    }
}

/*------------------------------------------------------------header fixed*/
@media print,
screen and (min-width:768px) {
    header.fixed #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 101px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 50px;
        animation: mnavslide linear .3s 1;
        -webkit-animation: mnavslide linear .3s 1;
        background: rgba(255, 255, 255, 0.85);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        z-index: 9999;
    }

    header.fixed #header_logo {
        padding-top: 10px;
    }

    header.fixed #header_logo img {
        width: auto;
        height: 40px;
    }

    header.fixed #header_contact {
        padding-top: 15px;
    }

    header.fixed #header_contact li:first-child p {
        font-size: 16px;
    }

    header.fixed #header_contact li p span {
        margin-left: 8px;
        font-family: 'Oswald', sans-serif;
        font-size: 22px;
        color: #202020;
        text-decoration: none;
        background: none;
    }

    header.fixed #header_contact li:last-child a {
        width: 140px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    header.fixed #header_contact li:last-child a span {
        margin-left: 10px;
        font-family: 'Oswald', sans-serif;
        font-size: 16px;
    }

    header.fixed #header_contact li:last-child a img {
        width: auto;
        height: 14px;
    }
}

@media print,
screen and (min-width:992px) {
    header.fixed #header {
        height: 74px;
    }

    header.fixed #header_logo {
        padding-top: 17px;
    }

    header.fixed #header_contact {
        top: 0;
        padding-top: 0;
    }
}

@media print,
screen and (min-width:1200px) {
    header.fixed #header {
        height: 74px;
    }

    header.fixed #header_logo {
        padding-top: 17px;
    }
}


/*------------------------------------------------------------mainnavi fixed*/
@media print,
screen and (min-width:768px) {
    header.fixed #mainnavi {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 0;
        text-align: center;
        background: none;
        z-index: 9999;
        animation: mnavslide linear .3s 1;
        -webkit-animation: mnavslide linear .3s 1;
    }

    #mainnavi.fixed ul li {
        margin: 0 15px;
    }

    #mainnavi.fixed ul li a span {
        height: 41px;
        padding: 10px 0;
        border-bottom: solid 3px transparent;
        transition: all 0.5s;
    }

    #mainnavi.fixed ul li a:hover span {
        border-bottom: solid 3px #1464ae;
    }
}

@keyframes mnavslide {
    0% {

        top: -55px;
    }

    100% {
        top: 0;
    }
}

@-webkit-keyframes mnavslide {
    0% {
        top: -55px;
    }

    100% {
        top: 0;
    }
}

@media print,
screen and (min-width:992px) {
    header.fixed #mainnavi {
        top: 33px;
        left: auto;
        right: 50px;
        bottom: auto;
        width: auto;
        height: auto;
    }

    header.fixed #mainnavi ul li {
        margin: 0 0 0 15px;
    }
}

@media print,
screen and (min-width:1200px) {
    header.fixed #mainnavi {
        top: 33px;
        left: auto;
        right: 50px;
        bottom: auto;
        width: auto;
        height: auto;
    }

    header.fixed #mainnavi ul li {
        margin: 0 0 0 30px;
    }
}

/*------------------------------------------------------------pagetitle*/
#pagetitle {
    position: relative;
    height: 100%;
}

#pagetitle div {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 15px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin-top: 30px;
}

#pagetitle div h2 {
    line-height: 1.3;
    font-family: "NotoSansBold";
    font-size: 24px;
    text-shadow:
        #fff 1px 1px 4px, #fff -1px -1px 4px,
        /*å³ä¸‹ã€å·¦ä¸Š*/
        #fff -1px 1px 4px, #fff 1px -1px 4px,
        /*å³ä¸Šã€å·¦ä¸‹*/
        #fff 0px 1px 4px, #fff 0-1px 4px,
        /*å³ã€å·¦*/
        #fff -1px 0 4px, #fff 1px 0 4px;
    /*ä¸Šã€ä¸‹*/
}

#pagetitle div h2 span {
    color: #1464ae;
}

@media print,
screen and (min-width:768px) {
    #pagetitle div {
        margin-top: 60px;
        padding: 0 50px;
    }

    #pagetitle div h2 {
        font-size: 50px;
    }
}


/*------------------------------------------------------------content*/
.content_bg01 {
    padding: 40px 0;
    text-align: left;
}

.content_bg02 {
    padding: 40px 0;
    text-align: left;
    background: #e7eff7;
}

@media print,
screen and (min-width:768px) {
    .content_bg01 {
        padding: 80px 0;
    }

    .content_bg02 {
        padding: 80px 0;
    }
}

/* ----------------------------------------------------------------footer*/
footer {
    box-shadow: 0 1px 0 #1464ae;
}

#footer_contact {
    padding: 40px 0;
    background: url("../img/common_img/contact_bg.jpg") center center no-repeat;
    background-size: cover;
}

#footer_contact h3 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "NotoSansBold";
    font-size: 22px;
}

#footer_contact h3 span {
    margin-top: 8px;
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #1464ae;
}

#footer_contact ul {
    margin-top: 20px;
}

#footer_contact ul li {
    height: 50px;
}

#footer_contact ul li:first-child {
    margin-bottom: 10px;
}

#footer_contact ul li p,
#footer_contact ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #202020;
    background: rgba(255, 255, 255, 0.5);
}

#footer_contact ul li p {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
}

#footer_contact ul li p i {
    font-size: 18px;
    margin-right: 8px;
}

#footer_contact ul li:last-child a {
    text-decoration: none;
    font-family: "NotoSansBold";
    color: #fff;
    background: #1464ae;
}

#footer_contact ul li:last-child a img {
    width: auto;
    height: 18px;
    margin-right: 10px;
}

@media print,
screen and (min-width:576px) {
    #footer_contact p {
        letter-spacing: -0.1rem;
    }

    #footer_contact ul {
        display: flex;
        justify-content: center;
    }

    #footer_contact ul li {
        width: 50%;
        max-width: 480px;
    }

    #footer_contact ul li:first-child {
        margin-bottom: 0;
    }
}

@media print,
screen and (min-width:768px) {
    #footer_contact {
        padding: 80px 0;
    }

    #footer_contact h3 {
        margin-bottom: 30px;
        font-size: 32px;
    }

    #footer_contact h3 span {
        margin-top: 10px;
        font-size: 18px;
    }

    #footer_contact p {
        letter-spacing: 0;
    }

    #footer_contact ul {
        margin-top: 40px;
    }

    #footer_contact ul li {
        height: 70px;
    }

    #footer_contact ul li:first-child {
        margin-bottom: 10px;
    }

    #footer_contact ul li p,
    #footer_contact ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: #202020;
        background: rgba(255, 255, 255, 0.5);
    }

    #footer_contact ul li p {
        font-size: 42px;
    }

    #footer_contact ul li p i {
        font-size: 34px;
        margin-right: 10px;
    }

    #footer_contact ul li:last-child a {
        font-size: 22px;
        transition: all 0.5s;
    }

    #footer_contact ul li:last-child a:hover {
        opacity: 0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
    }

    #footer_contact ul li:last-child a img {
        width: auto;
        height: 26px;
        margin-right: 10px;
    }
}

#footer {
    padding: 40px 0 40px 0;
    text-align: left;
    color: #fff;
    background: url("../img/common_img/footer_ph_sp.png") center bottom no-repeat #1464ae;
    background-size: auto 90%;
}

#footer &gt; div {
    display: flex;
    flex-direction: column-reverse;
}

#footer &gt; div div h2 {
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: "NotoSansBold";
    font-size: 20px;
}

#footer &gt; div div h2 span {
    display: block;
    font-size: 16px;
}

#footer &gt; div div a {
    text-decoration: none;
    color: #fff;
}

#footer &gt; div div p a.btn {
    margin-left: 10px;
    padding: 0 15px;
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border: solid 1px #fff;
}

#footer &gt; div nav {
    margin-bottom: 30px;
}

#footer &gt; div nav ul {
    display: flex;
    flex-wrap: wrap;
}

#footer &gt; div nav ul li {
    margin: 5px 15px 5px 0;
}

#footer &gt; div nav ul li a {
    text-decoration: none;
    color: #fff;
}

#footer div &gt; ul {
    margin: 10px 0;
}

#footer div &gt; ul &gt; li {
    margin: 10px 0;
}

#footer div &gt; ul &gt; li a img {
    width: 200px;
    height: auto;
}

small {
    display: block;
    margin-top: 30px;
    font-size: 10px;
}

@media print,
screen and (min-width:576px) {
    #footer {
        padding: 40px 60px 40px 0;
    }

    small {
        font-size: 11px;
    }
}

@media print,
screen and (min-width:768px) {
    #footer {
        padding: 80px 0;
        background: url("../img/common_img/footer_ph.png") right bottom no-repeat #1464ae;
        background-size: auto 100%;
    }

    #footer &gt; div div h2 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    #footer &gt; div div .f_info {
        float: left;
        width: 100%;
    }

    #footer div &gt; ul &gt; li a img {
        width: auto;
        height: auto;
    }

    #footer &gt; div div p a.btn {
        margin-left: 10px;
        padding: 0 15px;
        display: inline-block;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        border: solid 1px #fff;
        transition: all 0.5s;
    }

    #footer &gt; div div p a.btn:hover {
        color: #1464ae;
        background: #fff;
    }

    #footer div &gt; ul {
        margin: 0 0;
        float: right;
    }

    #footer div &gt; ul &gt; li {
        margin: 0 0 10px;
    }

    #footer &gt; div nav {
        margin-bottom: 50px;
    }

    #footer &gt; div nav ul {
        display: flex;
        flex-wrap: wrap;
    }

    #footer &gt; div nav ul li {
        margin: 0 20px 0 0;
    }

    #footer &gt; div nav ul li a {
        text-decoration: none;
        color: #fff;
    }

    small {
        margin-top: 50px;
    }
}

@media print,
screen and (min-width:992px) {
    #footer &gt; div {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

    #footer &gt; div div .f_info {
        /*width: 56%;*/
    }

    #footer &gt; div div ul {
        width: 40%;
    }

    #footer &gt; div nav {
        margin-left: 80px;
        margin-bottom: 0;
    }

    #footer &gt; div nav ul {
        display: block;
        flex-wrap: none;
    }

    #footer &gt; div nav ul li {
        margin: 0 0 4px;
    }

    #footer &gt; div nav ul li a:hover {
        text-decoration: underline;
    }

    small {
        margin-top: 50px;
    }
}

@media print,
screen and (min-width:1200px) {
    #footer &gt; div nav {
        margin-left: 150px;
        margin-bottom: 0;
    }
}

/*ã‚«ãƒ¬ãƒ³ãƒ€ãƒ¼æ›´æ–°ãƒ—ãƒ­ã‚°ãƒ©ãƒ&nbsp;ï¼ˆãƒ•ãƒƒã‚¿ãƒ¼ï¼‰ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆ*/
.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;
    }
}

/*ã‚«ãƒ¬ãƒ³ãƒ€ãƒ¼æ›´æ–°ãƒ—ãƒ­ã‚°ãƒ©ãƒ&nbsp;ï¼ˆãƒ¡ã‚¤ãƒ³ã‚«ãƒ©ãƒ&nbsp;ï¼‰ãƒ•ã‚©ãƒ¼ãƒžãƒƒãƒˆ*/
.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: 10px 0 0;
    line-height: 1.1;
    text-align: right;
    clear: both;
}

#pankuzu ol {
    display: inline-block;
}

#pankuzu ol li {
    float: left;
    line-height: 1.1;
    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;
}

/*------------------------------------------------------------list*/
.list_basic {
    display: inline-block;
    text-align: left;
}

.list_basic li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
    line-height: 1.4;
}

.list_basic li::before {
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    content: "";
    background: #1464ae;
}

/*------------------------------------------------------------table*/
.sheet_basic {
    width: 100%;
    border-collapse: separate;
    border-spacing: 2px;
}

.sheet_basic tr th,
.sheet_basic tr td {
    padding: 10px 5px;
    line-height: 1.4;
    background: #fff;
}

.sheet_basic tr th {
    text-align: center;
    color: #fff;
    background: rgba(20, 100, 174, 0.75);
}

.sheet_basic tr td {
    background: #e7eff7;
}

@media print,
screen and (min-width:768px) {

    .sheet_basic tr th,
    .sheet_basic tr td {
        padding: 10px;
    }
}

/*------------------------------------------------------------Decoration*/
/*Line*/
hr.line_01 {
    height: 1px;
    clear: both;
    margin: 20px 0px;
    border-top: 1px dotted rgba(20, 100, 174, 0.5);
    border-right: 0 dotted transparent;
    border-bottom: 0 dotted transparent;
    border-left: 0 dotted transparent;
}

@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 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 1.3;
    font-family: "NotoSansBold";
    font-size: 22px;
    text-align: center;
}

.title01 strong {
    font-weight: normal;
    color: #1464ae;
}

.title01 span {
    font-size: 18px;
}

.title01::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 180px;
    height: 3px;
    margin-left: -90px;
    content: "";
    background: #1464ae;
}

.title02 {
    font-size: 18px;
    font-weight: bold;
    color: #6D6D6D;
    margin-bottom: 10px;
    border-bottom: 1px dotted #6D6D6D;
}

.title_catch {
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: "NotoSansBold";
    font-size: 20px;
    text-align: center;
    color: #1464ae;
}

@media print,
screen and (min-width:768px) {
    .title01 {
        margin-bottom: 40px;
        padding-bottom: 30px;
        font-size: 32px;
    }

    .title01 span {
        font-size: 26px;
    }

    .title01::after {
        width: 240px;
        margin-left: -120px;
    }

    .title_catch {
        margin-bottom: 40px;
        font-size: 30px;
    }
}

/*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: 20px;
        margin-bottom: 0px;
    }

    .phbox_left {
        float: left;
        margin-right: 20px;
        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 img.hoverimg {
    transition: all 0.5s;
}

a:hover img.hoverimg {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
}

/*------------------------------------------------------------other*/
/**/
#bnr_side {
    position: fixed;
    bottom: 222px;
    right: 0;
    z-index: 9999;
    display: flex;
}

#bnr_side img.kankou_btn {
    width: auto;
    height: 75px;
    cursor: pointer;
}

#bnr_side &gt; img.hoverimg {
    transition: all 0.5s;
}

#bnr_side &gt; img.hoverimg:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha( opacity=60 )";
}

#bnr_side ul.side_bnr_box {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 3px 0;
    border-top: 2px solid #202020;
    border-bottom: 2px solid #202020;
    box-sizing: border-box;
}

#bnr_side ul.side_bnr_box li img {
    height: 50px;
    width: auto;
    border: 1px solid #222;
    box-sizing: border-box;
}

#bnr_side ul.side_bnr_box li:nth-child(1) img {
    margin-bottom: 4px;
}

@media print,
screen and (min-width:768px) {
    #bnr_side {
        position: fixed;
        bottom: 348px;
        right: 0;
        z-index: 9999;
        display: flex;
    }

    #bnr_side img.kankou_btn {
        width: 90px;
        height: auto;
    }

    #bnr_side ul.side_bnr_box {
        padding: 30px 15px 0 15px;
        border-top: 5px solid #202020;
        border-bottom: 5px solid #202020;
    }

    #bnr_side ul.side_bnr_box li img {
        height: 66px;
        width: auto;
    }

    #bnr_side ul.side_bnr_box li:nth-child(1) img {
        margin-bottom: 15px;
    }

}


/*side*/
#btn_side {
    position: fixed;
    bottom: 62px;
    right: 0;
    z-index: 9999;
}

#btn_side ul li:not(:last-child) {
    margin-bottom: 5px;
}

#btn_side img {
    width: auto;
    height: 75px;
}

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 0;
    z-index: 9999;
}

#pagetop img {
    width: 50px;
    height: auto;
}

@media print,
screen and (min-width:768px) {
    #btn_side {
        position: fixed;
        bottom: 66px;
        right: 0;
        z-index: 9999;
    }

    #btn_side img {
        width: auto;
        height: auto;
    }

    #pagetop {
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 9999;
    }

    #pagetop img {
        width: auto;
        height: auto;
    }
}

.sp_nowrap {
    display: none;
}

@media print,
screen and (min-width:768px) {
    .sp_nowrap {
        display: inline;
    }
}

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

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

/*caution_area*/
.caution_area {
    display: block;
    background: #779fc3;
    padding: 20px 0;
}

.caution_area ul li:not(:last-child) {
    padding-bottom: 15px;
}

@media print,
screen and (min-width:768px) {
    .caution_area {
        padding: 30px 0;
    }

    .caution_area ul {
        display: flex;
        justify-content: space-between;
    }

    .caution_area ul li {
        width: calc(100% / 3 - 20px);
    }

    .caution_area ul li:not(:last-child) {
        padding-bottom: 0;
    }
}

/*---------------------------------------------side animation*/
#bnr_side,
#btr_side,
#pagetop {
    right: -100px;
}

.side_bnr {
    animation: side_anime 0.3s 0.2s forwards;
}

.side_btn {
    animation: side_anime 0.3s 0.1s forwards;
}

.pagetop {
    animation: side_anime 0.3s 0s forwards;
}

@keyframes side_anime {
    0% {
        right: -100px;
    }

    100% {
        right: 0;
    }
}
</pre></body></html>