<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(https://maxst.icons8.com/vue-static/landings/line-awesome/font-awesome-line-awesome/css/all.min.css);
/* web font
*/

:root {
    --main-theme-color: #D4161A;
    /* --ft-en: "Cormorant Garamond", serif; */
    --ft-en: YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
    --main-column: 1328px;
}
* {
    box-sizing: border-box;
    color: #121212;
    font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
    font-weight: 500;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
    transition-duration: .3s;
}
a:hover {
    opacity: .8;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}
/* header */
.header {
    background: #000;
    margin: 0 auto;
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header.fixed {
    position: fixed;
    top: 0;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
    width: 96%;
}
.header-left {
    width: 260px;
}
.header-right {
    width: calc(100% - 300px);
}
.header-nav__inner,
.header-nav__list,
.header-nav__btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list {
    margin-right: 20px;
}
.header-nav__list li:not(:last-child) {
    margin-right: 20px;
}
.header-nav__list li a,
.header-nav__list li p {
    color: #fff;
    font-family: var(--ft-en);
    font-size: 25px;
}
.header-nav__list li .dropdown-btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-nav__list li .dropdown-btn::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: '';
    display: inline-block;
    height: 8px;
    margin: 0 0 0 15px;
    position: relative;
    bottom: 0px;
    transition-duration: .3s;
    transform: rotate(135deg);
    width: 8px;
}
.header-nav__list li.dropdown.active .dropdown-btn::after {
    bottom: -3px;
    transform: rotate(-45deg);
}
.header-nav__btn {
    border: 1px solid #fff;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    height: 100%;
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.header-btn__item {
    height: 100%;
    width: 100%;
}
.header-btn__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 8px 6px;
    width: 100%;
}
.header-btn__item a,
.header-btn__item a span {
    color: #fff;
    font-family: var(--ft-en);
    font-size: 25px;
    font-weight: 600;
}
.header-btn__item a {
    background: #151515;
}
.top .header-btn__item a {
    background: none;
}
.header .dropdown-panel {
    background: rgb(255 255 255 / 80%);
    display: none;
    position: fixed;
    left: 0;
    top: 162px;
    width: 100%;
}
.header .dropdown-panel__inner {
    margin: 0 auto;
    padding: 35px 0 45px;
    width: 95%;
    max-width: 1000px;
}
.header .dropdown-panel__ttl {
    margin: 0 0 25px;
}
.header .dropdown-panel__ttl h3 {
    color: #151515;
    font-family: var(--ft-en);
    font-size: 40px;
    font-weight: 400;
}
.header .dropdown-panel__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.header .dropdown-panel__list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header .dropdown-panel__list li a {
    display: block;
    text-align: right;
}
.header .dropdown-panel__list li a .en {
    color: #151515;
    display: block;
    font-size: 20px;
    font-weight: 500;
}
.header .dropdown-panel__list li a .en::before {
    content: "-";
    margin-right: 10px;
}
.header .dropdown-panel__list li a .ja {
    color: #151515;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.header-search {
    margin: 0 0 20px;
}
.header-search__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-search__box {
    border-radius: 4px;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    overflow: hidden;
    width: 300px;
}
.header-search__box input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 0;
    border-radius: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    height: 55px;
    outline: none;
    padding: 0 15px;
    width: calc(100% - 55px);
}
.header-search__icon {
    background: #fff;
    border-radius: 0;
    border-left: 1px solid #000;
    height: 55px;
    width: 55px;
}
.header-search__icon a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.header-customer {
    margin-left: 25px;
}
.header-customer ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-customer ul li:not(:last-child)::after {
    content: "/";
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 10px;
}
.header-customer ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.header-nav__list.spnav {
    display: none;
}
.header-cart__btn {
    display: none;
}
.contactlink {
    display: none;
}
.header-nav .header-search__box {
    display: none;
}
.sp-logout-btn {
    display: none;
}
@media screen and (max-width: 1468px) {
    .header-nav__list li a,
    .header-nav__list li p {
        font-size: 18px;
    }
}
@media screen and (max-width: 1368px) {
    .header .header-left {
        width: 180px;
    }
    .header .header-right {
        width: calc(100% - 200px);
    }
    .header .header-btn__item a,
    .header .header-btn__item a span {
        font-size: 18px;
    }
    .header .dropdown-panel__ttl h3 {
        font-size: 26px;
    }
    .header .dropdown-panel__list li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 1168px) {
    .header-search {
        display: none;
    }
}
@media screen and (max-width: 1068px) {
    .header .header-nav__list li a,
    .header .header-nav__list li p {
        font-size: 18px;
    }
    .header .header-btn__item a,
    .header .header-btn__item a span {
        font-size: 18px;
    }
    .header .dropdown-panel__list li a {
        font-size: 14px;
    }
}
@media screen and (max-width: 968px) {
    .sp-logout-btn {
        border-top: 1px solid #000;
        display: block;
        margin: 20px 0 0;
        padding: 30px 0 0;
    }
    .sp-logout-btn a {
        background: #dfdfdf;
        color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        height: 50px;
        width: 100%;
    }
    .header {
        padding: 5px 0;
    }
    .header .header-left {
        width: 165px;
    }
    .header .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: calc(100% - 225px);
    }
    .header .header-nav {
        background: #fff;
        height: 100%;
        overflow-y: auto;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 90%;
        max-width: 360px;
    }
    .header .header-nav.open {
        right: 0;
    }
    .header .header-nav__inner {
        display: block;
        padding: 80px 25px 50px;
        width: 100%;
    }
    .header .header-nav__list {
        flex-direction: column;
    }
    .header .header-nav__list li {
        width: 100%;
    }
    .header .header-nav__list li:not(:last-child) {
        margin: 0 0 15px;
    }
    .header .header-nav__list li .dropdown-btn {
        justify-content: flex-start;
    }
    .header .header-nav__list li a,
    .header .header-nav__list li p {
        color: #151515;
    }
    .header .dropdown-panel__list li a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .header .header-nav__list li .dropdown-btn::after {
        border-top: 1px solid #151515;
        border-right: 1px solid #151515;
        height: 6px;
        width: 6px;
    }
    .header-search__box {
        width: 100%;
    }
    .header-search__box input {
        background: #f1f1f1;
        height: 45px;
        width: calc(100% - 45px);
    }
    .header-search__icon {
        background: #f1f1f1;
        border-left: 2px solid #fff;
        height: 45px;
        width: 45px;
    }
    .header .header-nav__btn {
        width: 100px;
    }

    .header-nav__list.spnav {
        border-top: 1px solid #000;
        display: block;
        margin: 25px 0 0;
        padding: 25px 0 0;
    }
    .header-cart__btn {
        display: block;
    }
    .contactlink {
        display: block;
    }
    .header .cart-link {
        display: none;
    }

    .header-nav .header-search__box {
        display: flex;
        margin: 0 0 25px;
    }

    .header .dropdown-panel {
        position: static;
    }
    .header .dropdown-panel__inner {
        margin: 0 auto;
        padding: 15px 0;
        width: 100%;
    }
    .header .dropdown-panel__ttl {
        display: none;
    }
    .header .dropdown-panel__list {
        grid-template-columns: 1fr;
    }
    .header-nav__list li:not(:last-child) {
        margin: 0 0 10px;
    }

    .header .dropdown-panel__list li a .en {
        font-size: 14px;
        font-weight: normal;
    }
    .header .dropdown-panel__list li a .ja {
        font-size: 11px;
        margin: 0 0 0 20px;
        text-align: left;
    }

    /* .hamburger */
    .header-menu {
        height: 20px;
        margin-left: 20px;
        width: 25px;
    }
    .header-menu__trigger {
        cursor: pointer;
        height: 100%;
        position: relative;
        width: 100%;
    }
    .header-menu__trigger span {
        background-color: #fff;
        border-radius: 1px;
        height: 2px;
        position: absolute;
        left: 0;
        width: 100%;    
    }
    .header-menu.active .header-menu__trigger span {
        background: #151515;
    }
    .header-menu__trigger,
    .header-menu__trigger span {
        box-sizing: border-box;
        display: inline-block;
        transition: all .5s;
    }
    .header-menu__trigger span:nth-of-type(1) {
        top: 0;
    }
    .header-menu__trigger span:nth-of-type(2) {
        top: 9px;
    }
    .header-menu__trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .header-menu.active span:nth-of-type(1) {
        top: -12px;
        transform: translateY(20px) rotate(45deg);
    }
    .header-menu.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu.active span:nth-of-type(3) {
        bottom: -9px;
        transform: translateY(-20px) rotate(-45deg);
    }
}
@media screen and (max-width: 568px) {
    .header-nav__btn.sp-menu .header-btn__item a {
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 35px;
        width: 35px;
    }
    .header-nav__btn.sp-menu .header-btn__item a span {
        display: none;
    }
    .header-nav__btn.sp-menu .header-btn__item a::before {
        font-size: 18px;
        margin-right: 0;
        top: 0px;
    }
}

/* footer */
.footer {
    background: #151515;
    margin-top: auto;
    padding: 65px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0 0 50px;
}
.footer-left {
    width: 240px;
}
.footer-right {
    width: calc(100% - 255px);
}
.footer-social {
    margin: 25px 0 0;
}
.footer-social ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-social ul li:not(:last-child) {
    margin-right: 15px;
}
.footer-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    flex-wrap: wrap;
}
.footer-nav__list li:not(:last-child) {
    margin-right: 20px;
}
.footer-nav__list li a,
.footer-nav__list li p {
    color: #fff;
    font-family: var(--ft-en);
    font-size: 25px;
    font-weight: 400;
}
.footer .dropdown {
    position: relative;
}
.footer .dropdown-btn {
    cursor: pointer;
}
.footer .dropdown-btn::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: '';
    display: inline-block;
    height: 8px;
    margin: 0 0 0 15px;
    position: relative;
    bottom: 0px;
    transition-duration: .3s;
    transform: rotate(135deg);
    width: 8px;
}
.footer .dropdown.active .dropdown-btn::after {
    bottom: -3px;
    transform: rotate(-45deg);
}
.footer .dropdown-panel {
    display: none;
    padding: 15px 0;
    position: absolute;
    left: 0;
    top: 25px;
    width: 200px;
}
.footer .dropdown-panel__list li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
}
.footer .dropdown-panel__list li a::before {
    content: "-";
}
.copyright {
    margin: 15px 0 0;
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: 18px;
}
@media screen and (max-width: 1168px) {
    .footer-nav__list li a,
    .footer-nav__list li p {
        font-size: 20px;
    }
}
@media screen and (max-width: 968px) {
    .footer-flex {
        padding: 0 0 150px;
    }
    .footer-left {
        margin: 0 0 25px;
        text-align: center;
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .footer-nav__list {
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
    .footer-flex {
        padding: 0 0 35px;
    }
    .footer-nav__list li {
        text-align: center;
        width: 100%;
    }
    .footer-nav__list li:not(:last-child) {
        margin: 0 0 15px;
    }
    .footer .dropdown-panel {
        display: none;
        padding: 15px 0;
        position: static;
        width: 100%;
    }
    .footer .dropdown-panel__list li a {
        justify-content: center;
    }
    .copyright p {
        font-size: 14px;
    }
}
/* main */
.main {
    padding: 0;
}
.main-inner {
    margin: 0 auto;
    width: 100%;
}
.main-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.main-contents {
    width: 100%;
}
@media screen and (max-width: 968px) {
    .main-flex {
        flex-direction: column-reverse;
    }
    .main-contents {
        width: 100%;
    }
}

/* ftbanner */
.ftbanner-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.ftbanner-card {
    border: 2px solid #000000;
    height: 360px;
    width: 50%;
}
.ftbanner-card:first-child {
    border: 2px solid #3E3E3E;
    background: #3E3E3E;
}
.ftbanner-card a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    text-align: center;
    width: 100%;
}
.ftbanner-card a .box-arrow {
    height: 54px;
    right: 2px;
    bottom: 2px;
    top: inherit;
    left: inherit;
    width: 54px;
}
.ftbanner-card:first-child a .box-arrow {
    background: #fff;
}
.ftbanner-card:first-child a .box-arrow::before {
    background: #000;
}
.ftbanner-card:first-child a .box-arrow::after {
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
}
.ftbanner-card__in p {
    color: #151515;
    font-size: 20px;
    font-weight: 500;
    line-height: 2.5em;
    margin: 15px 0 0;
}
.ftbanner-card__in p span {
    color: #151515;
    font-family: var(--ft-en);
    font-size: 25px;
    font-weight: 400;
}
.ftbanner-card:first-child .ftbanner-card__in p,
.ftbanner-card:first-child .ftbanner-card__in p span {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .ftbanner-card {
        max-height: 200px;
        width: 100%;
    }
    .ftbanner-card:first-child .ftbanner-card__in img {
        height: 45px;
    }
    .ftbanner-card:last-child .ftbanner-card__in img {
        height: 35px;
    }
    .ftbanner-card__in p {
        font-size: 15px;
        margin: 5px 0 0;
    }
    .ftbanner-card__in p span {
        font-size: 20px;
    }
}

/* manual */
.manual-blocks__head {
    margin: 0 auto 45px;
    text-align: center;
}
.manual-blocks__head h2 {
    color: #151515;
    font-size: 30px;
    font-weight: 500;
}
.item .manual-blocks {
    margin: 45px 0 0;
}
.manual-blocks__inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.manual-tab__head {
    background: #3E3E3E;
    margin: 0 0 85px;
    padding: 50px 0;
}
.manual-tab__head p {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 25px;
    text-align: center;
}
.manual-tab__btns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 0 auto;
    width: 95%;
    max-width: 990px;
}
.manual-tab__btn {
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 10px;
    position: relative;
    text-align: center;
}
.manual-tab__btn.active {
    background: #151515;
    border: 1px solid #151515;
}
.manual-tab__btn span {
    color: #fff;
    display: block;
    text-align: center;
}
.manual-tab__btn .en {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}
.manual-tab__btn .ja {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 968px) {
    .manual-blocks__head h2 {
        font-size: 26px;
    }
    .child-category {
        margin: 0 0 65px;
        padding: 30px 0;
    }
    .child-category__head h2 {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .manual-blocks__head h2 {
        font-size: 21px;
    }
    .manual-tab__head p {
        font-size: 18px;
    }
    .manual-tab__btns {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .manual-tab__btn .en {
        font-size: 16px;
    }
    .manual-tab__btn .ja {
        font-size: 12px;
    }
}
@media screen and (max-width: 568px) {
    .manual-tab__btn .en {
        font-size: 14px;
    }
}

.manual-tab__body {
    margin: 0 auto;
    max-width: 1000px;
}
.manual-block {
    display: none;
    padding: 25px 0 0;
}
.manual-block.show {
    display: block;
}
.manual-block h2 {
    color: #151515;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 25px;
    text-align: center;
}
.manual-list {
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
}
.manual-item {
    padding: 25px 20px;
}
.manual-item:not(:last-child) {
    border-bottom: 1px solid #000;
}
.manual-item__ttl {
    padding: 0 0 25px;
}
.manual-item__ttl h3 {
    font-size: 18px;
    font-weight: 600;
}
.manual-item__list {
    background: #3E3E3E;
    border: 1px solid #000;
    border-left: 0;
    border-right: 0;
    padding: 20px 10px;
}
.manual-item__list li {
    background: #fff;
}
.manual-item__list li a {
    display: block;
    font-size: 16px;
    margin: 0 auto;
    padding: 10px;
    width: 95%;
}
@media screen and (max-width: 968px) {
    .manual-block h2 {
        font-size: 26px;
    }
}
@media screen and (max-width: 768px) {
    .manual-block {
        padding: 20px 0 0;
    }
    .manual-block h2 {
        font-size: 21px;
        margin: 0 0 20px;
    }
    .manual-item {
        padding: 20px 12px;
    }
    .manual-item__ttl {
        padding: 0 0 20px;
    }
    .manual-item__list {
        padding: 15px 8px;
    }
    .manual-item__list li a {
        font-size: 14px;
        width: 100%;
    }
}</pre></body></html>