<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ============================================================================
 Update: 2010/01/05
 reset用CSS
============================================================================= */
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

* &gt; *:first-child {
  margin-top: 0;
}

* &gt; *:last-child {
  margin-bottom: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, address, img, strong, figure,
del, ins, dfn, em, abbr, acronym, kbd, q, pre, cite, code, samp, sub, sup, var,
fieldset, form, label, legend,
table, caption, thead, tbody, tfoot, tr, th, td,
dl, dt, dd, ol, ul, li {
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  font-style: normal;
  font-size: 100%;
}

html {
  overflow-y: scroll;
}

ol, ul {
  list-style: none;
}

hr {
  display: none;
}

del, ins {
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

/***************************************************

css

***************************************************/
/* flex box
――――――――――――――――――――――――――――――――――――――――――――――*/
.flex {
  display: flex;
  display: -webkit-flex;
}

.flex-c-c {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
}

.flex-n-c {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
}

.flex-c-n {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* body
――――――――――――――――――――――――――――――――――――――――――――――*/
body {
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* pc sp 出し分けのためのcss
――――――――――――――――――――――――――――――――――――――――――――――*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* デフォルトの設定
――――――――――――――――――――――――――――――――――――――――――――――*/
img {
  display: block;
  max-width: 100%;
}

a {
  transition: 0.2s;
}
a:hover {
  opacity: 0.8;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* 共通のレイアウト
――――――――――――――――――――――――――――――――――――――――――――――*/
/**********************************************************

common

***********************************************************/
.js-fadeAnime {
  opacity: 0;
  transition: opacity 1.5s;
}
.js-fadeAnime.kvArea {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2.5s, transform 3s;
}
.js-fadeAnime.is-show {
  opacity: 1;
  transform: scale(1);
}

/**********************************************************

header

***********************************************************/
header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 10;
}

.lukia_logo {
  margin-top: 20px;
}
.lukia_logo img {
  width: 70px;
}

@media screen and (max-width: 1100px) {
  header {
    top: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  header {
    top: 15px;
    left: 15px;
  }
  .seiko_logo img {
    width: 60px;
  }
  .lukia_logo {
    margin-top: 10px;
  }
  .lukia_logo img {
    width: 35px;
  }
}
/**********************************************************

footer

***********************************************************/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #262627;
  height: 153px;
  padding: 0 30px 0 40px;
}

.foot_l {
  display: flex;
  align-items: center;
  gap: 0 32px;
}

.foot_logo img {
  width: 121px;
}

.copyright {
  font-size: 12px;
  color: #fff;
}

.sns {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.sns li {
  width: 40px;
  height: 40px;
  padding: 5px;
  line-height: 1;
  border-radius: 50%;
  transition: 0.3s;
  background: #3e3e3e;
}

@media screen and (max-width: 767px) {
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background: #262627;
    height: auto;
    padding: 40px 40px 30px;
  }
  .foot_l {
    order: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0 32px;
  }
  .foot_logo {
    margin: 0 0 18px 0;
  }
  .foot_logo img {
    width: 130px;
  }
  .copyright {
    font-size: 14px;
    color: #fff;
  }
  .sns {
    order: 1;
    display: flex;
    align-items: center;
    gap: 0 10px;
    margin: 0 0 40px 0;
  }
  .sns li {
    width: 40px;
    height: 40px;
    padding: 5px;
    line-height: 1;
    border-radius: 50%;
    transition: 0.3s;
    background: #3e3e3e;
  }
}
/**********************************************************

main

***********************************************************/
.main_content {
  background: url(../img/bg_about.png) repeat-y center center;
  background-size: 100% auto;
  overflow: hidden;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* kv
――――――――――――――――――――――――――――――――――――――――――――――*/
.kvArea {
  aspect-ratio: 160/76;
  width: 100%;
  min-height: 500px;
  background: url(../img/img_kv.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 5;
}

.kv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pageTtl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 11.2% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #7a5040;
}
.pageTtl .mainTxt {
  display: block;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.pageTtl .subTxt {
  display: block;
  margin-top: 10px;
  font-size: 32px;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .kvArea {
    aspect-ratio: 76/107;
    width: 100%;
    min-height: 304px;
    background: url(../img/img_kv-sp.png) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 5;
  }
  .kv__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pageTtl {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 124px 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
  }
  .pageTtl .mainTxt {
    font-size: 31px;
    line-height: 1.25;
  }
  .pageTtl .subTxt {
    font-size: 21px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* about
――――――――――――――――――――――――――――――――――――――――――――――*/
.aboutArea {
  position: relative;
  z-index: 5;
}
.aboutArea.about01 {
  padding: 79px 30px 78px;
}
.aboutArea.about02 {
  z-index: 5;
  padding: 100px 30px 64px;
}

.about__bg {
  position: absolute;
  top: 0;
}
.about__bg.left {
  left: 0;
}
.about__bg.right {
  right: 0;
}

.about__mainTxt {
  margin: 0 0 185px 0;
  text-align: center;
  color: #8f6251;
  font-size: 20px;
  line-height: 2.3;
  filter: drop-shadow(0px 0px 3px #FFF);
}

.aboutMesArea {
  position: relative;
}
.aboutArea.about01 .aboutMesArea {
  padding: 0 0 0 90px;
}
.aboutArea.about02 .aboutMesArea {
  padding: 0px 87px 0 0;
}

.boutMes__watch {
  position: absolute;
  top: 0;
  z-index: 5;
}
.aboutArea.about01 .boutMes__watch {
  top: -102px;
  left: -280px;
}
.aboutArea.about02 .boutMes__watch {
  top: -98px;
  right: -193px;
}

.aboutMesBox {
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
}
.aboutMesBox::before {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 4px solid #c21500;
  -o-border-image: linear-gradient(to left, #bea87f 0%, #e8dcc3 100%);
     border-image: linear-gradient(to left, #bea87f 0%, #e8dcc3 100%);
  border-image-slice: 1;
  pointer-events: none;
  content: "";
}
.aboutArea.about01 .aboutMesBox {
  padding: 91px 50px 92px 181px;
}
.aboutArea.about02 .aboutMesBox {
  padding: 88px 50px 92px 116px;
}

.aboutMes__txt {
  font-size: 18px;
  line-height: 2.1;
  color: #8f6251;
}
.aboutArea.about01 .aboutMes__txt:nth-of-type(2) {
  margin: 19px 0 0 0;
  padding: 0 0 0 186px;
}
.aboutArea.about02 .aboutMes__txt + .aboutMes__txt {
  margin-top: 19px;
}

/*** about02 ***/
.about__sakura3 {
  position: absolute;
  top: 100px;
  left: 0px;
  z-index: 5;
}

.about__flower {
  position: absolute;
  top: -250px;
  right: 0px;
  z-index: 15;
}

@media screen and (max-width: 1100px) {
  .aboutArea.about01 .boutMes__watch {
    top: -10px;
    left: -190px;
    width: 390px;
  }
  .aboutArea.about01 .aboutMes__txt:nth-of-type(2) {
    padding: 0 0 0 0;
  }
  .aboutArea.about02 .boutMes__watch {
    width: 390px;
    top: -10px;
    right: -100px;
  }
  .aboutArea.about02 .aboutMesBox {
    padding: 88px 290px 92px 50px;
  }
  .about__sakura3 {
    position: absolute;
    top: 400px;
    left: -100px;
    z-index: 5;
    width: 560px;
  }
  .about__flower {
    position: absolute;
    top: -160px;
    right: 0px;
    z-index: 15;
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .aboutArea {
    position: relative;
    z-index: 5;
  }
  .aboutArea.about01 {
    padding: 6px 12px 58px;
  }
  .aboutArea.about02 {
    z-index: 5;
    padding: 11px 15px 222px;
  }
  .about__bg {
    position: absolute;
    top: 0;
  }
  .about__bg.left {
    left: 0;
    top: 20px;
  }
  .about__bg.left img {
    width: 340px;
  }
  .about__bg.right {
    top: 520px;
    right: 0;
  }
  .about__bg.right img {
    width: 369px;
  }
  .about__mainTxt {
    margin: 0 0 379px 12px;
    text-align: center;
    font-size: 16px;
    line-height: 1.9375;
    font-weight: 600;
  }
  .aboutMesArea {
    position: relative;
  }
  .aboutArea.about01 .aboutMesArea {
    padding: 0 0 0 0;
  }
  .aboutArea.about02 .aboutMesArea {
    padding: 0px 0 0 0;
  }
  .boutMes__watch {
    position: absolute;
    top: 0;
    z-index: 5;
  }
  .aboutArea.about01 .boutMes__watch {
    top: -363px;
    left: 12px;
    width: 258px;
  }
  .aboutArea.about02 .boutMes__watch {
    top: auto;
    bottom: -340px;
    right: -30px;
    width: 258px;
  }
  .aboutMesBox {
    width: 100%;
    max-width: 945px;
    margin: 0 auto;
    position: relative;
  }
  .aboutMesBox::before {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border: 2px solid #c21500;
    -o-border-image: linear-gradient(to left, #bea87f 0%, #e8dcc3 100%);
       border-image: linear-gradient(to left, #bea87f 0%, #e8dcc3 100%);
    border-image-slice: 1;
    pointer-events: none;
    content: "";
  }
  .aboutArea.about01 .aboutMesBox {
    padding: 60px 32px;
  }
  .aboutArea.about02 .aboutMesBox {
    padding: 60px 30px;
    max-width: 400px;
    margin: 0 auto;
  }
  .aboutMes__txt {
    font-size: 14px;
    line-height: 2.07;
  }
  .aboutArea.about01 .aboutMes__txt:nth-of-type(2) {
    margin: 19px 0 0 0;
    padding: 0;
  }
  .aboutArea.about02 .aboutMes__txt + .aboutMes__txt {
    margin-top: 15px;
  }
  /*** about02 ***/
  .about__sakura3 {
    position: absolute;
    top: auto;
    bottom: -90px;
    left: 0px;
    z-index: 5;
    width: 472px;
  }
  .about__flower {
    position: absolute;
    top: -250px;
    right: 0px;
    z-index: 15;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* price
――――――――――――――――――――――――――――――――――――――――――――――*/
.priceArea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 870px;
  padding: 0 30px;
  background: no-repeat center center;
  background-size: 100% 100%;
  position: relative;
  z-index: 1;
}
.priceArea.price01 {
  background-image: url(../img/bg_price-01.png);
}
.priceArea.price02 {
  padding-top: 32px;
  background-image: url(../img/bg_price-02.png);
}
.priceArea .sec-inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
.priceArea.price01 .sec-inner {
  justify-content: flex-end;
  max-width: 962px;
}
.priceArea.price02 .sec-inner {
  justify-content: flex-start;
  max-width: 1202px;
}

.priceList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  position: relative;
  z-index: 5;
  margin-top: -30px;
}

.priceList__item {
  width: 340px;
}

.priceList__imgBox {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 20px 15px;
  height: 360px;
}

.priceList__img {
  height: 280px;
}

.priceList__cont {
  margin-top: 30px;
}

.priceList__name {
  margin: 0 0 10px 0;
  color: #7a5040;
}
.priceList__name .mainTxt {
  display: block;
  text-align: center;
  font-size: 26px;
  line-height: 1;
}
.priceList__name .subTxt {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-size: 20px;
  line-height: 1;
}

.priceList__model {
  font-size: 30px;
  text-align: center;
  color: #111111;
}

.priceList__price {
  font-size: 22px;
  text-align: center;
  color: #111111;
}

.priceList__btmTxt {
  margin-top: 10px;
  color: #111111;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}

/*** price2 ***/
.price__sakura4 {
  position: absolute;
  top: -61px;
  right: 0;
  z-index: 0;
}
.priceList__item .btn {
text-align: center;
margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .priceArea {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 120px 15px;
    background: no-repeat center center;
    background-size: 200% 100%;
    position: relative;
    z-index: 1;
  }
  .priceArea.price01 {
    padding-top: 95px;
    background-image: url(../img/bg_price-01.png);
  }
  .priceArea.price02 {
    padding: 108px 15px 110px;
    background-image: url(../img/bg_price-02.png);
  }
  .priceArea .sec-inner {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .priceArea.price01 .sec-inner {
    justify-content: center;
    max-width: 962px;
  }
  .priceArea.price02 .sec-inner {
    justify-content: center;
    max-width: 1202px;
  }
  .price__flower {
    position: absolute;
    top: -110px;
    right: 0;
    width: 140px;
  }
  .priceList {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px 40px;
    position: relative;
    z-index: 5;
    margin-top: 0;
  }
  .priceList__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 335px;
    background-color: #fff;
    padding: 20px 15px;
    gap: 0 10px;
  }
  .priceList__imgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 0;
    height: auto;
  }
  .priceList__img {
    height: 232px;
  }
  .priceList__cont {
    margin-top: 0;
    position: relative;
    right: -8px;
  }
  .priceList__item.big .priceList__cont {
    right: 7px;
  }
  .priceList__name {
    margin: 0 0 14px 0;
  }
  .priceList__name .mainTxt {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
  }
  .priceList__name .subTxt {
    display: block;
    margin-top: 6px;
    text-align: center;
    font-size: 13px;
    line-height: 1;
  }
  .priceList__model {
    font-size: 24px;
    text-align: center;
    color: #111111;
    line-height: 1.2;
  }
  .priceList__price {
    font-size: 15px;
    text-align: center;
    color: #111111;
  }
  .priceList__btmTxt {
    margin-top: 10px;
    color: #111111;
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
  }
  /*** price2 ***/
  .price__sakura4 {
    position: absolute;
    top: -61px;
    right: 0;
    z-index: 0;
  }
}
.specbtn {
  position: relative;
  display: inline-block;
  width: 10em;
  font-size: 1em;
  padding: 0 0 0 .5em;
  color: #85583b;
  text-decoration: none;
  line-height: 2.777em;
  border: 1px solid #85583b;
  letter-spacing: 0;
  transition: color .3s ease-out, background .3s ease-out;
}
.specbtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1em;
  width: .4444em;
  height: 1em;
  background: url(https://www.seikowatches.com/jp-ja/-/media/HtmlUploader/Japan/Seiko/Home/special/sakura2022/img/icon_btn.png) center center no-repeat;
  background-size: contain;
  transform: translate3d(0,-50%,0);
}
.specbtn:hover {
  color: #fff;
  background: #85583b;
}
.specbtn:hover::before {
  background: url(https://www.seikowatches.com/jp-ja/-/media/HtmlUploader/Japan/Seiko/Home/special/sakura2022/img/icon_btn_w.png) center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 480px) {
  .priceArea {
    height: auto;
  }
  .specbtn {
    width: 9em;
    font-size: 0.9rem;
  }
  .specbtn::before {
    left: 0.5em;
  }
  .about__sakura3 {
    top: auto;
    z-index: 5;
}
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* special
――――――――――――――――――――――――――――――――――――――――――――――*/
.specialArea {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 786px;
  background: url(../img/bg_special.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 0;
  margin-top: -80px;
  padding: 0 30px;
}

.special__sakura {
  position: absolute;
}
.special__sakura.left {
  top: -104px;
  left: 0;
}
.special__sakura.right {
  top: -59px;
  right: 0;
}

.specialBox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  margin-bottom: -200px;
  margin-left: 43px;
}

.special__cont {
  margin: 125px 0 0 0px;
}

.special__ttl {
  margin: 0 0 12px 0;
  font-size: 60px;
  color: #7a5040;
  letter-spacing: 0.05em;
}

.special__lead {
  font-size: 20px;
  color: #111111;
  line-height: 1.9;
}

@media screen and (max-width: 1100px) {
  .special__cont {
    margin: 40px 0 0 0px;
  }
}
@media screen and (max-width: 767px) {
  .specialArea {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: inherit;
    background: url(../img/bg_special.png) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 0;
    margin-top: -80px;
    padding: 140px 15px 53px;
  }
  .special__sakura {
    position: absolute;
  }
  .special__sakura.left {
    top: -20px;
    left: 0;
  }
  .special__sakura.right {
    top: -59px;
    right: 0;
  }
  .specialBox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    z-index: 5;
    margin-bottom: 0;
    margin-left: 0;
  }
  .special__imgBox {
    margin: 21px 0 0 70px;
  }
  .special__imgBox img {
    width: 251px;
  }
  .special__cont {
    margin: -22px 0 0 0px;
    padding: 0 18px;
  }
  .special__ttl {
    margin: 0 0 4px 0;
    font-size: 40px;
    color: #7a5040;
    letter-spacing: 0.05em;
  }
  .special__lead {
    font-size: 16px;
    color: #111111;
    line-height: 1.9;
  }
}/*# sourceMappingURL=style.css.map */
</pre></body></html>