:root {
  --color-default: #87a6a9;
  --color-inverted: white;
  --color-black: black;
  --color-border: #c9c9c9;
  --bg-default: #f7f8f8;
  --bg-light: #f7f6f0;
  --bg-dark: #f5f0e2;
  --bg-inverted: var(--color-default);
  --color-link: inherit;
  --bg-gradient-light: linear-gradient(to bottom, var(--bg-default), var(--bg-light));
  --bg-gradient-middle: linear-gradient(to bottom, var(--bg-light), var(--bg-dark));
  --bg-gradient-dark: linear-gradient(to bottom, var(--bg-dark), var(--bg-default));
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
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:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

select,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}


/*
====================================================================
 BASE
====================================================================
*/
html,
body {
  min-width: 1200px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-default);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

@media (768px <= width) {
  .sp {
    display: none !important;
  }
}
/*
====================================================================
 HEADER
====================================================================
*/
.header {
  position: fixed;
  width: 100%;
  min-width: 1200px;
  left: 0;
  top: 0;
  z-index: 999;
  transition: transform 0.5s ease-in-out;
}
.header__container {
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
}
.is-visible .header__logo {
  background: url(../images/common/logo_inverted.svg) left center/contain no-repeat;
}
.is-visible .header__logo img {
  opacity: 0;
}

/*
====================================================================
 GLOBAL NAVIGATION
====================================================================
*/
.header-nav {
  display: flex;
  -moz-column-gap: 36px;
       column-gap: 36px;
}
.header-nav__item--reservation {
  padding-left: 18px;
}
.header-nav__item--reservation a {
  background-color: var(--bg-inverted);
  padding: 0 18px;
}
.header-nav__item--reservation a span {
  color: var(--color-inverted) !important;
  letter-spacing: 0.1em;
}
.header-nav span {
  color: var(--color-inverted);
}
.is-visible .header-nav span {
  color: var(--color-default);
}

/*
====================================================================
 COMMON
====================================================================
*/
main {
  width: 100%;
  overflow-x: hidden;
}

.nowrap {
  white-space: nowrap;
}

.section-block {
  padding: 125px 0;
}
.section-block__container {
  padding: 0 56px;
  display: flex;
  flex-wrap: wrap;
}
.section-block__heading {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.section-block__content {
  display: flex;
  justify-content: space-between;
  width: 59.8%;
}
.section-block__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-block__body {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.section-block h2 {
  margin-bottom: 24px;
}

.section-block h2 span {
  display: block;
  margin-top: -.35em;
}

/*
====================================================================
 HERO
====================================================================
*/
.hero__container {
  position: relative;
}
.hero__content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 56px;
}
.page .hero__content--top h1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page .hero__content--top h1 span {
  display: block;
}
.hero__content--bottom {
  border-top: 1px solid var(--color-inverted);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
.hero__content--bottom a {
  color: var(--color-inverted);
}
.hero__content--bottom a.button--instagram, .hero__content--bottom a.button--reservation {
  font-size: 10px;
}

/*
====================================================================
 PAGES
====================================================================
*/
.index-section {
  padding-top: 48px;
  padding-bottom: 0;
}
.index-section .section-block__container {
  justify-content: space-between;
  flex-wrap: nowrap;
}
.index-section .section-block__body {
  width: 59.8%;
  flex-shrink: 0;
}
.index-section .contents-list__item {
  border-bottom: 1px solid var(--color-default);
}
.index-section .contents-list__item a {
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-section .contents-list__item a::after {
  content: "";
  display: block;
  position: static;
  width: 10px;
  height: 10px;
  background: url(../images/common/icon_arrow.svg) right center/contain no-repeat;
  transform: rotate(90deg);
}

.intro-section {
  padding-top: 180px;
}

/*
====================================================================
 FOOTER-UNIT
====================================================================
*/
.map__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-unit {
  padding: 125px 0;
}
/* .page .footer-unit {
  padding-top: 0;
} */
.footer-unit__panel-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 610px;
}
.footer-unit__panel-group img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-unit__panel {
  position: relative;
}
.footer-unit__panel .button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.37);
  padding: 30px 40px;
  display: flex;
  align-items: flex-end;
  transition: background-color 0.4s;
}
.footer-unit__panel .button:hover {
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
}
.footer-unit__panel .button.inverted span {
  font-size: 36px;
  border-bottom: 1px solid var(--color-inverted);
}
.footer-unit__panel .button.inverted span::after {
  width: 20px;
  height: 20px;
  background-size: contain;
}
.footer-unit .marquee {
  margin-bottom: 120px;
  width: calc(100% + 112px);
  overflow: hidden;
  display: flex;
}
.footer-unit .marquee div {
  display: flex;
  animation: marquee 40s linear infinite both;
}
.footer-unit .marquee span {
  display: block;
  font-size: 48px;
  padding: 0 24px;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.footer-unit__cta-button {
  width: 100%;
  max-width: 1400px;
  height: 210px;
  margin: 0 auto;
  background: var(--bg-inverted) url(../images/common/bg_btn_reservation.jpg) left center/cover no-repeat;
}
.footer-unit__cta-button .button {
  height: 100%;
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
}
.footer-unit__cta-button .button.inverted span {
  font-size: 36px;
  border-bottom: 1px solid var(--color-inverted);
  width: 62.5% !important;
}
.footer-unit__cta-button .button.inverted span::after {
  width: 20px;
  height: 20px;
}

/*
====================================================================
 NEWS
====================================================================
*/
.news-section .section-block__heading {
  padding-top: 0;
}
.news-section .section-block__heading h2 {
  font-size: 12px;
}
.news-section .section-block__content {
  width: 100%;
  flex-wrap: wrap;
}
.news-section .section-block__body {
  width: 59.8%;
}
.news-section .news {
  flex-shrink: 0;
  border-top: 1px solid var(--color-default);
}
.news-section .news__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--color-default);
  padding: 19px 0;
}
.news-section .news__date {
  padding: 0 10px;
}
.news-section .button--view-more {
  margin-right: 0;
  margin-left: auto;
}

/*
====================================================================
 FOOTER
====================================================================
*/
.footer {
  background-color: var(--bg-inverted);
  color: var(--color-inverted);
}
.footer__container {
  padding: 56px;
}
.footer__top {
  padding: 56px 0;
  display: grid;
  grid-template-columns: 1fr repeat(2, 300px);
  -moz-column-gap: 7.25%;
       column-gap: 7.25%;
}
.footer img {
  width: auto;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-nav__group {
  margin-bottom: 72px;
}
.footer-nav__heading {
  border-bottom: 1px solid var(--color-inverted);
  margin-bottom: 8px;
  padding-bottom: 6px;
}
.footer-nav li a {
  line-height: 1;
  padding: 12px 0;
}
.footer .button--cta {
  margin-bottom: 14px;
}
.footer .button--google-map {
  margin-top: 32px;
}
.footer .button--instagram {
  border-bottom: none;
}
.footer address {
  display: block;
  margin-top: 32px;
}

.legal {
  display: flex;
  -moz-column-gap: 56px;
       column-gap: 56px;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / BASIC
  ====================================================================
  */
  html,
  body {
    min-width: initial;
    -webkit-text-size-adjust: 100%;
  }

  .is-locked {
    overflow: hidden;
  }

  .nowrap {
    white-space: normal;
  }
  .pc {
    display: none !important;
  }
  /*
  ====================================================================
   SP / HEADER
  ====================================================================
  */

  .header {
    background-color: rgba(0, 0, 0, 0);
    transition: background-color .5s ease-out, transform .5s ease-out;
    min-width: unset;
    /* mix-blend-mode: plus-lighter; */
  }

  .header__container {
    padding: 56px 24px;
    align-items: flex-start;
  }

  .header__logo {
	  width: 165px;
    position: relative;
  }

  .is-open .header__logo img {
    opacity: 1;
  }

  .header nav {
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: scroll;
    width: 100%;
    height: 100dvh;
    background-color: var(--bg-inverted);
    display: flex;
    flex-direction: column;
    color: var(--color-inverted);
    opacity: 0;
    /* transform: translateY(30px); */
    visibility: hidden;
    transition: 0.5s ease-out;
  }

  .header nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header__information .button--google-map {
    margin: 24px 0 56px 0;
  }
  .button--menu {
    position: relative;
    background-color: transparent;
    color: var(--color-inverted);
    transition: color 0.5s;
    margin-top: 2px;
    font-family: inherit;
    letter-spacing: .2em;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 9px;
  }
  .is-visible .button--menu {
    color: var(--color-default);
  }
  .is-open .button--menu {
    color: inherit;
  }

  /*
  ====================================================================
   SP / GLOBAL NAVIGATION
  ====================================================================
  */
  .header-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
    width: 83.6%;
    font-size: 16px;
    margin-top: 40px;
  }
  .header-nav__item {
    margin-bottom: 48px;
  }
  .header-nav__item--contact, .header-nav__item--reservation {
    grid-column: 1/3;
    padding-left: 0;
    margin-bottom: 18px;
  }
  .header-nav__item--contact a, .header-nav__item--reservation a {
    border: 1px solid var(--color-inverted);
    padding: 16px;
  }
  .header-nav__item--contact a span, .header-nav__item--reservation a span {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-nav__item--contact a span::after, .header-nav__item--reservation a span::after {
    content: "";
    display: block;
    position: static;
    width: 10px;
    height: 10px;
    background: url(../images/common/icon_arrow_inverted.svg) right center/contain no-repeat;
    transform: rotate(-90deg);
  }
  .is-visible .header-nav span {
    color: inherit;
  }

  .header__information {
    padding: 0 24px 56px 24px;
  }

  /* @media (height < 730px) {
    .header-nav__item {
      margin-bottom: 20px;
    }

    .header-nav__item--contact {
      margin-top: 12px;
    }

    .header-nav__item--contact a,
    .header-nav__item--reservation a {
      padding: 14px 16px;
    }

    .header__information .button--google-map {
      margin-bottom: 24px;
    }
  } */

  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  section {
    scroll-margin-top: 90px;
  }

  .section-block {
    padding: 90px 0;
  }
  .section-block__container {
    padding: 0 24px;
    display: block;
  }
  .section-block__content {
    display: block;
    width: 100%;
    min-width: unset;
    position: relative;
    padding-left: 40px;
  }
  .section-block__heading {
    position: absolute;
    left: -12px;
    top: 0;
    writing-mode: sideways-lr;
  }
  /*
  ====================================================================
   SP / HERO
  ====================================================================
  */
  .hero {
    width: 100%;
    height: 100%;
  }
  .hero__content {
    padding: 24px;
  }
  .page .hero__content--top h1 {
    display: block;
    border-bottom: 1px solid var(--color-inverted);
    padding-bottom: 8px;
    margin-bottom: 64px;
    width: fit-content;
  }
  .hero__content--bottom {
    border-top: none;
    padding-top: 0;
    display: flex;
    flex-direction: column-reverse;
    row-gap: 32px;
  }
  .hero__content--bottom .button--reservation {
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero__content--bottom .button--scroll-down {
    margin: 32px 0;
  }
  /*
  ====================================================================
   SP / PAGES
  ====================================================================
  */
  .index-section {
    padding-top: 24px;
    padding-bottom: 0;
  }
  .index-section .section-block__container {
    display: flex;
  }
  .index-section .section-block__heading {
    position: static;
    writing-mode: unset;
  }
  .index-section .section-block__body {
    width: 70%;
  }
  .index-section .contents-list__item a {
    padding: 3px 0;
  }
  .index-section .contents-list__item a::after {
    content: "";
    display: block;
    position: static;
    width: 10px;
    height: 10px;
    background: url(../images/common/icon_arrow.svg) right center/contain no-repeat;
    transform: rotate(90deg);
  }

  .intro-section {
    padding-top: 120px;
  }

  /*
  ====================================================================
   SP / FOOTER-UNIT
  ====================================================================
  */
  .map__wrapper {
    padding-bottom: 64.25%;
  }
  .footer-unit {
    padding: 90px 0 60px 0;
  }
  .footer-unit__panel-group {
    display: block;
    height: auto;
  }
  .footer-unit__panel {
    aspect-ratio: 1.6/1;
  }
  .footer-unit__panel .button {
    background-color: none;
    padding: 40px 24px;
  }
  .footer-unit__panel .button.inverted span {
    font-size: 18px;
  }
  .footer-unit__panel .button.inverted span::after {
    width: 12px;
    height: 12px;
  }

  .footer-unit .news-section {
    padding-bottom: 0;
  }

  .footer-unit .marquee {
    margin: 80px -24px;
  }
  .footer-unit__cta-button {
    height: 170px;
    aspect-ratio: 2/1;
    width: calc(100% - 48px);
    background: var(--bg-inverted) url(../images/sp/common/bg_btn_reservation.jpg) left center/cover no-repeat;
  }
  .footer-unit__cta-button .button {
    height: 100%;
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
  }
  .footer-unit__cta-button .button.inverted span {
    font-size: 18px;
    width: 100% !important;
  }
  .footer-unit__cta-button .button.inverted span::after {
    width: 12px;
    height: 12px;
  }
  /*
  ====================================================================
   SP / NEWS
  ====================================================================
  */
  .news-section .section-block__body {
    width: 100%;
  }
  .news-section .news__item {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 18px 0;
  }
  .news-section .news__date {
    padding: 0 10px;
  }
  .news-section .button--view-more {
    margin-left: 0;
  }
  /*
  ====================================================================
   SP / FOOTER
  ====================================================================
  */
  .footer {
    position: relative;
    z-index: 10000;
  }
  .footer__container {
    padding: 24px 24px;
  }
  .footer__top {
    display: flex;
    flex-direction: column;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .footer__logo {
    margin-bottom: 56px;
  }
  .footer-nav__group {
    margin-bottom: 56px;
  }
  .legal {
    display: block;
    margin-bottom: 40px;
  }
  .legal a {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 12px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/* Noto Serif Regular */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/fonts/noto-serif-jp-regular.woff2") format("woff2");
}
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/fonts/noto-serif-jp-medium.woff2") format("woff2");
}
body {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif", serif;
  font-size: 12px;
  line-height: 1.75;
  color: var(--color-default);
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  letter-spacing: 0.1em;
}

em {
  font-style: normal;
  font-weight: 800;
}

small {
  font-size: 70%;
}

sup {
  font-size: 50%;
}

h2 {
  font-size: 48px;
  font-weight: normal;
}
.section-block__heading h2 {
  font-size: 12px !important;
}

p {
  line-height: 3;
  letter-spacing: 0;
}

.page h1 span {
  color: var(--color-inverted);
  font-weight: 300;
  letter-spacing: 0.1em;
}
.page h1 .title {
  font-size: 55px;
}
.page h1 .copy {
  font-size: 18px;
}
.page h2 {
  font-size: 36px;
}
.page th {
  text-align: left;
  font-weight: 300;
}

address {
  font-style: normal;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  h2 {
    font-size: 18px;
  }
  .page h1 {
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.8));
  }
  .page h1 .title {
    font-size: 30px;
  }
  .page h1 .copy {
    font-size: 10px;
  }
  .page h2 {
    font-size: 18px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
a {
  display: block;
  text-decoration: none;
  color: var(--color-link);
  transition: opacity 0.4s;
}
a:hover {
  opacity: 0.8;
}

@media (width <= 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.button.inverted span {
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--color-inverted);
  border-bottom-color: var(--color-inverted);
}
.button.inverted span::after {
  content: "";
  display: block;
  position: static;
  width: 10px;
  height: 10px;
  background: url(../images/common/icon_arrow_inverted.svg) right center/contain no-repeat;
  transform: rotate(-90deg);
}
.button--view-more {
  width: 59.8%;
  border-bottom: 1px solid var(--color-default);
  margin-top: 100px;
  padding-bottom: 24px;
}
.button--view-more.inverted {
  color: var(--color-inverted);
  border-bottom-color: var(--color-inverted);
}
.button--view-more span {
  display: block;
  width: 100%;
  background: url(../images/common/icon_arrow.svg) right center no-repeat;
}
.button--instagram {
  -moz-column-gap: 6px;
       column-gap: 6px;
  justify-content: flex-start;
  border-bottom: 1px solid var(--color-inverted);
  width: -moz-fit-content;
  width: fit-content;
}
.button--instagram::before {
  content: "";
  display: block;
  position: static;
  width: 15px;
  height: 15px;
  background: url("/images/common/icon_instagram.svg") center center/contain no-repeat;
}
.button--reservation {
  border: 1px solid var(--color-inverted);
  padding: 5px 25px 1px 25px;
}
.button--scroll-down {
  padding-left: 24px;
  background: url(../images/common/icon_arrow_inverted.svg) left center no-repeat;
}
.button--scroll-top {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 0;
  margin-left: auto;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/common/icon_pagetop.svg) center center no-repeat;
}
.button--cta {
  border: 1px solid var(--color-inverted);
  padding: 20px;
}
.button--google-map {
  max-width: 152px;
}
.button--google-map span {
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-default);
  background: url(../images/common/icon_arrow.svg) right center no-repeat;
}
.button--legal {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid var(--color-default);
}

.footer .button svg {
  fill: var(--color-inverted);
}
.footer .legal a {
  border-bottom: 1px solid var(--color-inverted);
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  .button--view-more {
    width: 44.4%;
    min-width: 152px;
    margin-top: 64px;
    margin-left: 40px;
    padding-bottom: 10px;
  }
  .access-section .button--view-more {
    margin-left: 0;
  }
  .button--view-more.inverted {
    color: var(--color-inverted);
    border-bottom-color: var(--color-inverted);
  }
  .button--view-more span {
    display: block;
    width: 100%;
    background: url(../images/common/icon_arrow.svg) right center no-repeat;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/