<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

/*Reset*/
*, *:before, *:after { box-sizing: border-box;}
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body { line-height: 1;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}
nav ul { list-style: none;}
blockquote, q { quotes: none;}
blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
ins { text-decoration: none;}
ins, mark { 
	background-color: #ff9;
    color: #000;
}
mark {
    font-style: italic;
    font-weight: 700;
}
del { text-decoration: line-through;}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
input, select { vertical-align: middle;}
ul, ul li { list-style: none;}

/* Setting-Common
=======================================*/
html, body {
    width: 100%;
}
html {
    font-size: 62.5%;
}
body {
    font-family: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    color: #000;
    font-size: 1.8rem;
    line-height: 1.8;
    background: #fff;
}
img {
    width: 100%;
    height: auto;
    vertical-align: top;
}
.imgS {
    width: 80%;
    height: auto;
}
a img:hover {
    opacity: 0.8;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix:before {
    content: "";
    display: block;
    clear: both;
}
.clearfix {
    display: block;
}
.center {text-align: center;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}

/*go-top*/
.button {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 100;
    color: #fff;
    background: #3886c8;
    padding: 10px;
    cursor: pointer;
    transition: .3s;
    text-align: center;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
}
.active {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------
Setting-scroll
--------------------------------------*/

/*--scroll_up
---------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transition: all .3s 0.5s ease;
    transition: all 1.5s;
    transform: translateY(30px);
    opacity: 0;
}
.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

/*--scroll_left
---------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*--scroll_right
---------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*--------------------------------------
Setting-base
--------------------------------------*/
.innertbl{ display: table; width: 940px; margin:60px auto 120px; }
.col2 {
    width: 50%;
    display: table-cell;
    box-sizing: border-box;
    vertical-align: top;
    padding:30px 20px 0 0;
}
.col2.detail {
    padding-left: 20px;
}
h1 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
h4 {
    font-size: 1.6em;
    margin: 30px 0;
    font-weight: bold;
    line-height: 1.2;
    color: #3886c8;
}
h5 {}
h6 {font-weight: normal;}
.inner {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 90px 0px;
}
header .inner {
    padding: 0;
    text-align: right;
    position: absolute;
    left: 0;
    right: 0;
    max-width: 1030px;
}
header .inner img {
    width: 124px;
    height: auto;
}
footer {
    background: #ddd;
    text-align: center;
    padding: 20px 0;
    margin-top: 100px;
}
footer p {
    font-size: 12px;
}

/*--------------------------------------
Setting-section-concept
--------------------------------------*/
.sec { padding: 100px 0;}
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
}
.flex--bet {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}
#message2 .flex {
    flex-direction : row-reverse;
}
.img-container {
    overflow: hidden;
    position: relative;
}
.img-container__img {
    display: block;
    opacity: 0;
    position: relative;
    transition: all .5s .3s ease;
    z-index: 0;
}
.img-container:before {
    background: #3886c8;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transform: translateX(-100%);
    transition: all .8s 0s ease;
    width: 100%;
    z-index: 1;
}
.text-container {
    opacity: 0;
    padding: 0 40px;
    transition: all .3s 0.3s ease;
}
.img-container.active img {
    opacity: 1;
}
.img-container.active:before {
    transform: translateX(100%);
}
.text-container.active {
    opacity: 1;
}
#products .text-container {
    width: 100%;
}
#products .text-container {
    padding: 0;
}
.text-container__title {
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 0;
}
.text-container__title::before {
    background: #3886c8;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transform: translateX(-100%);
    transition: all .8s .3s ease;
    width: 100%;
    z-index: 1;
}
.text-container.active .text-container__title::before {
    transform: translateX(100%);
}
.text-container__title__inner {
    display: inline-block;
    opacity: 0;
    transition: all .8s .5s ease;
}
.text-container.active .text-container__title__inner {
    opacity: 1;
}
#concept {
    margin: 120px 0;
}
#concept div p {
    padding: 1em;
    text-align: center;
}

/*--------------------------------------
Setting-section-tab
--------------------------------------*/
#tab, .spec {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    border-bottom: 10px solid #000;
}
#tab ul {
    width: 70%;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
}
#tab ul li {
    background: #f1f1f1;
    width: 48%;
    text-align: center;
    padding: 20px 0;
}
#tab ul li:hover {
    opacity: 0.8;
}
#tab ul li.m {
    background: #3886c8;
}
#tab ul li.now.l, #tab ul li.l:hover {
    background: #ed86b5;
}
#tab ul li a {
    display: block;
    width: 100%;
    height: 100%;
}
#tab ul li img {
    height: 40px;
    width: auto;
    vertical-align: bottom;
}

/*--------------------------------------
Setting-section-products
--------------------------------------*/

#products {
    padding: 60px 0;
}
.spec {
    border-bottom: 6px solid #e8e8e8;
}
#products .spec .inner {
    padding-top: 30px;
}
.technology .inner {
    padding: 0;
    overflow: visible;
}
.detail ul li {
    background: url("../images/icon_list.png")top left no-repeat;
    background-size: 1.2em;
    text-indent: -0.1em;
    padding-left: 2em;
    padding-bottom: 2em;
}
.technology {
    background: url("../images/men/bg_logo_br_x.png")top left no-repeat;
    background-size: 8% auto;
    margin-top: 30px;
}
#contents-fw .technology,
#contents-ir .technology{
    background: url("../images/men/bg_logo_br_x.png")top right no-repeat;
    background-size: 8% auto;
}
.technology p.ttl-main {
    position: relative;
    border-bottom: 10px solid #3886c8;
}
.technology p.ttl-main img {
    position: absolute;
    width: 55%;
    max-width: 220px;
    bottom: -10px;
    left: 10px;
}
.tecWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 60px 30px 0;
}
.tecWrap &gt; div {
    width: 50%;
}
.explanation p.ttl {
    margin: 0 0 1em;
    font-size: 1.2em;
    font-weight: bold;
    text-indent: -1.5em;
    padding-left: 1em;
}
.explanation p {
    margin: 0 1em;
}
.drawing {
    position: relative;
    padding: 0 40px 40px;
    padding: 0 10px 40px 30px;
    padding: 0 10px 60px 30px;
}
.drawing img {
    border: 1px solid #a6a6a6;
    box-shadow: 5px 5px 3px #ddd;
}
body#men #contents-ir .tecWrap {
    margin-top: 0;
    align-items: flex-end;
}
#contents-ir .bold {
    font-weight: bold;
    display: block;
}
.tecWrap-ex {
    display: block;
    margin: 60px 30px 0;
}
.tecWrap-ex &gt; div {
    width: 100%;
}
#contents-ir .drawing.drawing-ex ul,
#contents-pt .drawing.drawing-ex ul {
    overflow: hidden;
    border: 1px solid #a6a6a6;
    box-shadow: 5px 5px 3px #ddd;
    padding: 15px;
}
.drawing-ex img {
    box-shadow: none !important;
    border: none !important;
}
#contents-ir .drawing.drawing-ex ul li:first-child {
    width: 54%;
    float: left;
    border-right: 1px solid #a6a6a6;
}
#contents-ir .drawing.drawing-ex ul li:last-child {
    width: 43%;
    float: right;
}
#contents-pt .drawing ul {
    overflow: hidden;
    padding: 10px;
}
#contents-pt .drawing .img1 {
    /*position: absolute;
	top: 0;
	left: 0;*/
    width: 63%;
    float: left;
}
#contents-pt .drawing .img2 {
    /*position: absolute;*/
    margin-top: -20px;
    width: 65%;
    float: right;
}
#contents-pt .drawing.drawing-ex ul {
    display: flex;
}
#contents-pt .spec {
    border-bottom: none;
}

/*--------------------
Setting-spec-table
---------------------*/
tbody {
    -webkit-text-size-adjust: 100%;
}
table {
    margin: 20px auto;
    width: 100%;
    max-width: 940px;
    font-size: 13px;
    color: #111;
    border-collapse: collapse;
    margin-bottom: 10px;
    border: 1px solid #111;
}
table th {
    font-weight: normal;
    border: 1px solid #111;
    padding: 6px 5px;
    background: #eee;
    vertical-align: middle;
}
table td {
    text-align: center;
    padding: 6px 5px;
    border: 1px solid #111;
    vertical-align: middle;
}
table td.block2 {
    width: 40%;
}
.kome {
    font-size: 13px;
}

/* open-close */
.acd-check {
    display: none;
}
.acd-label {
    background: #eee;
    display: block;
    margin-bottom: 1px;
    padding: 20px;
    position: relative;
}
.acd-label:after {
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    content: "";
    display: block;
    height: 9px;
    position: absolute;
    right: 22px;
    top: calc(50% - 6px);
    transform: rotate(-45deg);
    width: 9px;
}
.acd-check:checked + .acd-label:after {
    transform: rotate(135deg);
    top: 50%;
}
.acd-content {
    height: 0;
    opacity: 0;
    padding: 0 10px;
    padding: 20px 0;
    transition: .5s;
    visibility: hidden;
    display: none;
}
.acd-check:checked + .acd-label + .acd-content {
    height: auto;
    opacity: 1;
    visibility: visible;
    display: block;
}

/*--------------------------------------
Setting-section-distance-map
--------------------------------------*/

#distance-map h5 {
    width: 70%;
    max-width: 580px;
    margin: 40px auto 0;
}
#distance-map .mapWrap {
    background: #3886c8;
    padding: 60px 0;
}
#distance-map .mapWrap div {
    width: 94%;
    max-width: 1180px;
    background: #fff;
    margin: 0 auto;
    text-align: center;
}
#distance-map img {
    max-width: 940px;
    padding: 40px 20px;
    margin: 0 auto;
}
body#men #distance-map .img-container:before {
    background: #05225F;
}
.credit {text-align: right; font-size: 0.8em; padding: 1em;}

/*--------------------------------------
Setting-section-links
--------------------------------------*/
#links {
    padding: 0 20px;
}
.link_brx_type {
    width: 90%;
    max-width: 800px;
    display: flex;
    gap: 0 40px;
    margin: 100px auto;
}
.bnr_gp {
    width: 50%;
    max-width: 400px;
    margin: 100px auto 60px;
    text-align: center;
}
.brandmenu02_box {
    text-align: center;
    clear: both;
    background: #eeeeee;
    border: 1px solid #d6d6d6;
    text-align: left;
    letter-spacing: normal;
    padding: 20px 0 20px 0;
    overflow: hidden;
    max-width: 1190px;
    margin: 0 auto;
}
.brandmenu02_box .menu_read {
    text-align: center;
    font-size: 22px;
    margin: 0 0 15px 0;
}
.brandmenu02_box ul {
    display: block;
    width: 95%;
    margin: 0 auto;
    padding: 0 0 15px 0;
    width: 96%;
    padding: 0 0 0px 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    align-items: center;
}
.brandmenu02_box ul li {
    display: block;
    width: 32%;
    /*float: left;*/
    margin: 0 2% 0 0;
}
.brandmenu02_box ul li dl dt {
    display: block;
    margin: 0 0 8px 0;
}
.brandmenu02_box ul li dl dd {
    display: block;
    margin: 0 0 8px 0;
    text-align: center;
}
.brandmenu02_box ul li dl dd a {
    font-size: 20px;
    letter-spacing: 1px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}
#xebiogroup {
    border: 1px solid #004093;
    background-color: #e8edf3;
    margin: 0 0 24px 0;
    overflow: hidden;
    max-width: 1190px;
    margin: 0 auto;
}
#xebiogroup p {
    float: left;
    margin: 0 0 0 0;
}
#xebiogroup ul {
    display: block;
    float: left;
    padding: 0 0 0 28px;
}
#xebiogroup ul li {
    display: inline-block;
    padding: 16px 22px 0 0;
    padding: 12px 22px 12px 0;
}
#xebiogroup ul li a {
    background: url(../images/icon02.gif) no-repeat left center;
    padding: 0 0 0 18px;
    color: #000000;
    font-size: 1em;
    text-decoration: none;
}

/*--------------------------------------
Setting-PC
--------------------------------------*/
@media screen and (min-width: 769px) {
.spOnly {
    display: none;
    visibility: hidden;
}
.inner {
    max-width: 940px;
}
.credit.inner {max-width: 1180px;}	
h2 img {
    height: 70px;
    width: auto;
    margin-bottom: 50px;
}
h3 img {
    height: 44px;
    width: auto;
    margin: 60px 0 20px;
}
h3 img.lines {
    height: 88px;
}
.img-container {
    width: 55%;
}
.text-container {
    width: 43%;
}
.detail ul {
    padding-left: 20px;
}
body#men #contents-ir .drawing, 
#contents-pt .drawing.drawing-ex {
    padding: 20px 20px 40px;
}
#contents-pt .drawing {
    padding-bottom: 0;
}
.brandmenu02_box ul li:nth-of-type(3n) {
    margin: 0 0 0 0;
}
#xebiogroup ul li {
    padding-bottom: 0;
}
}

/*--------------------------------------
Setting-SP
--------------------------------------*/
@media screen and (max-width: 768px) {
.pcOnly {
    display: none;
    visibility: hidden;
}
.pb0 {
    padding-bottom: 0 !important;
}
body {
    font-size: 1.4rem;
    line-height: 1.6;
}
.innertbl{ display: block; width: 100%; margin: 0 auto 30px; padding: 40px 0 0 0; }
.col2 {
    width: 100%;
    display:block;
    padding: 0 20px;
    margin: 0 0 50px 0;
}

h1 {
    padding: 30px 0;
}
h2 img {
    height: 50px;
}
h2 img {
    width: 70%;
    max-width: 400px;
    height: auto;
    margin-bottom: 30px;
}
h3 img {
    width: 60%;
    height: auto;
}
header .inner {
    position: relative;
}
header .inner img {
    width: 110px;
}
#main-visual img {
    padding: 0 5px 30px;
}
#message {
    padding: 40px 0 0;
}
.sec {
    padding: 0;
}
.sec div {
    padding: 30px 0;
}
.sec div .text-container__text img {
    padding: 40px 0 0;
    width: 70%;
    margin: 0 auto;
    display: block;
}
#message2 .img-container:before {
    transform: translateX(100%);
}
#message2 .img-container.active::before {
    transform: translateX(-100%);
}
#concept {
    margin: 100px 0 0;
}
#concept div p {
    text-align: left;
}
#tab ul {
    width: 90%;
    margin-top: 30px;
}
#tab ul li img {
    height: 20px;
}
#products {
    padding: 0;
}
#products h3 img {
    margin-top: 0;
}	
.slider {
    margin: 0 auto;
}
body#men .technology,	
body#lady .technology {
	background: none !important;
}
.tecWrap {
    display: block;
}
.tecWrap &gt; div {
    width: 100%;
}
.drawing {
    padding: 20px 10px 40px;
    padding: 20px 10px 60px;
}
#contents-ir .drawing.drawing-ex ul li {
    width: 100% !important;
    float: none !important;
    border: none !important;
}
#contents-ir .drawing.drawing-ex img {
    display: block;
    width: 80%;
    margin: 0 auto;
}
#products .spec .inner {
    padding: 20px 20px 60px;
}
#products .spec table {
    width: 620px;
}
.scroll-table {
    overflow: auto;
    white-space: nowrap;
}
td.left {
    text-align: left;
}
#distance-map .mapWrap div {
    margin: 0 3%;
}
#links {
    padding: 0 20px;
}
.brandmenu02_box .menu_read {
    font-size: 12px;
    margin: 0 0 15px 0;
}
.brandmenu02_box ul li {
    width: 48%;
    float: left;
    margin: 0 1% 8px;
}
.brandmenu02_box ul li dl dd a {
    font-size: 14px;
}
}

@media screen and (max-width: 450px) {
header .inner img {
    width: 80px;
}
footer {
    margin-top: 50px;
}
h3 img {
    width: 80%;
    height: auto;
}
#contents-ir .drawing.drawing-ex img {
    width: 100%;
}
#contents-ir .drawing.drawing-ex ul,  #contents-pt .drawing.drawing-ex ul {
    padding: 5px;
}
table {
    font-size: 12px !important;
}
#distance-map .mapWrap {
    padding: 30px 0;
}
#distance-map img {
    padding: 20px 10px;
}
.link_brx_type,  .bnr_gp {
    display: block;
    width: 65%;
    margin: 50px auto;
}
.link_brx_type li {
    margin: 10px;
}
#xebiogroup ul {
    padding: 0 0 16px 28px;
}
}


/*--------------------------------------
Setting-for-lady
--------------------------------------*/

/*Color---
men:#3886c8
lady:#5bcfde
lady-p:#ed86b5*/

body#lady .img-container:before,
body#lady .text-container__title::before,
body#lady .button{ background: #5bcfde;}
body#lady h4 {color: #5bcfde;}
body#lady #tab ul li.m { background: #f1f1f1;}
body#lady #tab ul li.m:hover { background: #3886c8;}
body#lady .technology {
    background: url("../images/lady/bg_logo_br_x.png")top left no-repeat;
    background-size: 8% auto;
}
body#lady #contents-fw .technology,
body#lady #contents-ir .technology{
    background: url("../images/lady/bg_logo_br_x.png")top right no-repeat;
    background-size: 8% auto;
}
body#lady .technology p.ttl-main { border-bottom: 10px solid #5bcfde;}
body#lady #distance-map .mapWrap { background: #ed86b5;}
body#lady #contents-pt .sp-thumbnails { padding: 0 10%;}
body#lady #distance-map .img-container:before { background: #d40080;}
</pre></body></html>